]> granicus.if.org Git - strace/blob - linux/ioctlent.sh
Cosmetic fixes to syscall tables, no code changes
[strace] / linux / ioctlent.sh
1 #! /bin/sh
2 # Copyright (c) 2001 Wichert Akkerman <wichert@cistron.nl>
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 #    notice, this list of conditions and the following disclaimer in the
12 #    documentation and/or other materials provided with the distribution.
13 # 3. The name of the author may not be used to endorse or promote products
14 #    derived from this software without specific prior written permission.
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27 # Validate arg count.
28 case $# in
29 1)
30         dir="$1"
31         asm=asm
32         ;;
33 2)
34         dir="$1"
35         asm="$2"
36         ;;
37 *)
38         echo "usage: $0 include-directory [asm-subdirectory]" >&2
39         exit 1
40         ;;
41 esac
42
43 lookup_ioctls()
44 {
45         type="$1"
46         shift
47
48         # Build the list of all ioctls
49         regexp='^[[:space:]]*#[[:space:]]*define[[:space:]]\+[A-Z][A-Z0-9_]*[[:space:]]\+0x'"$type"'..\>'
50         (cd "$dir" && grep "$regexp" "$@" /dev/null 2>/dev/null) |
51                 sed -ne "s,$asm/,asm/,g"'
52 s/^\(.*\):[[:space:]]*#[[:space:]]*define[[:space:]]*\([A-Z0-9_]*\)[[:space:]]*\(0x'"$type"'..\).*/     { "\1", "\2",   \3      },/p' \
53                 >> ioctls.h
54 }
55
56 > ioctls.h
57
58 lookup_ioctls 03 linux/hdreg.h
59 lookup_ioctls 22 scsi/sg.h
60 lookup_ioctls 46 linux/fb.h
61 lookup_ioctls 4B linux/kd.h
62 lookup_ioctls 4C linux/loop.h
63 lookup_ioctls 53 linux/cdrom.h scsi/scsi.h scsi/scsi_ioctl.h
64 lookup_ioctls 54 $asm/ioctls.h asm-generic/ioctls.h
65 lookup_ioctls 56 linux/vt.h
66 lookup_ioctls '7[12]' linux/videotext.h
67 lookup_ioctls 89 $asm/sockios.h asm-generic/sockios.h linux/sockios.h
68 lookup_ioctls 8B linux/wireless.h
69
70 if [ -e $dir/Kbuild ]; then
71         # kernel has exported user space headers, so query only them
72         files=$(
73                 cd $dir || exit
74                 find . -mindepth 2 -name Kbuild | \
75                         sed -e 's:^\./::' -e 's:/Kbuild:/*:' | \
76                         grep -v '^asm-'
77                 echo "$asm/* asm-generic/*"
78         )
79         # special case: some headers aren't exported directly
80         files="${files} media/* net/bluetooth/* pcmcia/*"
81 else
82         # older kernel so just assume some headers
83         files="linux/* $asm/* asm-generic/* scsi/* sound/*"
84 fi
85
86 # Build the list of all ioctls
87 # Example output:
88 # { "asm/ioctls.h",     "TIOCSWINSZ",   0x5414  },
89 # { "asm/mce.h",        "MCE_GETCLEAR_FLAGS",   _IOC(_IOC_NONE,'M',3,0) },
90 regexp='^[[:space:]]*#[[:space:]]*define[[:space:]]\+[A-Z][A-Z0-9_]*[[:space:]]\+_S\?\(IO\|IOW\|IOR\|IOWR\)\>'
91 (cd $dir && grep $regexp $files 2>/dev/null) | \
92         sed -n \
93         -e "s,$asm/,asm/,g" \
94         -e 's/^\(.*\):[[:space:]]*#[[:space:]]*define[[:space:]]*\([A-Z0-9_]*\)[[:space:]]*_S\?I.*(\([^[,]*\)[[:space:]]*,[[:space:]]*\([^,)]*\).*/     { "\1", "\2",   _IOC(_IOC_NONE,\3,\4,0) },/p' \
95         >> ioctls.h
96
97 # Sort and drop dups?
98 # sort -u <ioctls.h >ioctls1.h && mv ioctls1.h ioctls.h
99
100 > ioctldefs.h
101
102 # Collect potential ioctl names. ('bases' is a bad name. Sigh)
103 # Some use a special base to offset their ioctls on. Extract that as well.
104 # Some use 2 defines: _IOC(_IOC_NONE,DM_IOCTL,DM_LIST_DEVICES_CMD,....)
105 bases=$(sed -n \
106        -e 's/.*_IOC_NONE.*,[[:space:]]*\([A-Z][A-Z0-9_]\+\)[[:space:]]*,[[:space:]]*\([A-Z][A-Z0-9_]\+\)[[:space:]+,].*/\1\n\2/p' \
107        -e 's/.*_IOC_NONE.*,[[:space:]]*\([A-Z][A-Z0-9_]\+\)[[:space:]+,].*/\1/p' \
108        ioctls.h | sort -u)
109
110 for base in $bases; do
111         echo "Looking for $base"
112         regexp="^[[:space:]]*#[[:space:]]*define[[:space:]]\+$base"
113         line=$( (cd $dir && grep -h $regexp 2>/dev/null $files) | grep -v '\<_IO')
114         if [ x"$line" != x ]; then
115                 echo "$base is a #define" # "($line)"
116                 echo "$line" >> ioctldefs.h
117         fi
118
119         if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
120                 # Not all ioctl's are defines ... some (like the DM_* stuff)
121                 # are enums, so we have to extract that crap ourself
122                 (
123                 cd $dir || exit
124                 # -P: inhibit generation of linemarkers
125                 ${CPP:-cpp} -P $(grep -l $base $files 2>/dev/null) | sed '/^$/d' | \
126                 awk -v base="$base" '{
127                         if ($1 == "enum") {
128                                 val = 0
129                                 while ($NF != "};") {
130                                         if (!getline)
131                                                 exit
132                                         gsub(/,/, "")
133                                         if ($0 ~ /=/)
134                                                 val = $NF
135                                         if ($1 == base) {
136                                                 print "#define " base " (" val ")"
137                                                 exit
138                                         }
139                                         val++
140                                 }
141                         }
142                 }'
143                 ) >> ioctldefs.h
144                 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
145                         echo "Can't find the definition for $base"
146                 else
147                         echo "$base is an enum"
148                 fi
149         fi
150 done
151
152 # Sort and drop dups?
153 # sort -u <ioctldefs.h >ioctldefs1.h && mv ioctldefs1.h ioctldefs.h