10d699286b49f2cb6d114ba50dec71e3d33e3f57
[platform/upstream/glibc.git] / sysdeps / unix / make-syscalls.sh
1 #! /bin/sh
2
3 # Usage: make-syscalls.sh ../sysdeps/unix/common
4 # Expects $sysdirs in environment.
5
6 ##############################################################################
7
8 # Syscall Signature Key Letters for BP Thunks:
9 #
10 # a: unchecked address (e.g., 1st arg to mmap)
11 # b: non-NULL buffer (e.g., 2nd arg to read; return value from mmap)
12 # B: optionally-NULL buffer (e.g., 4th arg to getsockopt)
13 # f: buffer of 2 ints (e.g., 4th arg to socketpair)
14 # F: 3rd arg to fcntl
15 # i: scalar (any signedness & size: int, long, long long, enum, whatever)
16 # I: 3rd arg to ioctl
17 # n: scalar buffer length (e.g., 3rd arg to read)
18 # N: pointer to value/return scalar buffer length (e.g., 6th arg to recvfrom)
19 # p: non-NULL pointer to typed object (e.g., any non-void* arg)
20 # P: optionally-NULL pointer to typed object (e.g., 2nd argument to gettimeofday)
21 # s: non-NULL string (e.g., 1st arg to open)
22 # S: optionally-NULL string (e.g., 1st arg to acct)
23 # v: vararg scalar (e.g., optional 3rd arg to open)
24 # V: byte-per-page vector (3rd arg to mincore)
25 # W: wait status, optionally-NULL pointer to int (e.g., 2nd arg of wait4)
26
27 ptr='[abBfFINpPsSWV]'   # all pointer keyletters
28 int='[inv]'             # all scalar keyletters
29 typ='[ifnNpP]'          # typed-arg keyletters: we capture type for use in thunk
30
31 ##############################################################################
32
33 thisdir=$1; shift
34
35 echo ''
36 echo \#### DIRECTORY = $thisdir
37 # Check each sysdep dir with higher priority than this one,
38 # and remove from $calls all the functions found in other dirs.
39 # Punt when we reach the directory defining these syscalls.
40 sysdirs=`for dir in $sysdirs; do
41          test $dir = $thisdir && break; echo $dir; done`
42 echo \#### SYSDIRS = $sysdirs
43
44 # Get the list of system calls for this directory.
45 calls=`sed 's/#.*$//
46 /^[     ]*$/d' $thisdir/syscalls.list`
47
48 calls=`echo "$calls" |
49 while read file caller rest; do
50   # Remove each syscall that is implemented by a file in $dir.
51   # If a syscall specified a "caller", then only compile that syscall
52   # if the caller function is also implemented in this directory.
53   srcfile=-;
54   for dir in $sysdirs; do
55      { test -f $dir/$file.c && srcfile=$dir/$file.c; } ||
56      { test -f $dir/$file.S && srcfile=$dir/$file.S; } ||
57      { test -f $dir/$file.s && srcfile=$dir/$file.s; } ||
58      { test x$caller != x- &&
59         { { test -f $dir/$caller.c && srcfile=$dir/$caller.c; } ||
60           { test -f $dir/$caller.S && srcfile=$dir/$caller.S; } ||
61           { test -f $dir/$caller.s && srcfile=$dir/$caller.s; }; }; } && break;
62   done;
63   echo $file $srcfile $caller $rest;
64 done`
65
66 # Any calls left?
67 test -n "$calls" || exit 0
68
69 # Emit rules to compile the syscalls remaining in $calls.
70 echo "$calls" |
71 while read file srcfile caller syscall args strong weak; do
72
73   # Figure out if $syscall is defined with a number in syscall.h.
74   callnum=-
75   eval `{ echo "#include <sysdep.h>";
76         echo "callnum=SYS_ify ($syscall)"; } |
77           $asm_CPP -D__OPTIMIZE__ - |
78           sed -n -e "/^callnum=.*$syscall/d" \
79                  -e "/^\(callnum=\)[    ]*\(.*\)/s//\1'\2'/p"`
80
81   # Derive the number of arguments from the argument signature
82   case $args in
83   [0-9]) nargs=$args;;
84   ?:) nargs=0;;
85   ?:?) nargs=1;;
86   ?:??) nargs=2;;
87   ?:???) nargs=3;;
88   ?:????) nargs=4;;
89   ?:?????) nargs=5;;
90   ?:??????) nargs=6;;
91   ?:???????) nargs=7;;
92   ?:????????) nargs=8;;
93   ?:?????????) nargs=9;;
94   esac
95
96   # Make sure only the first syscall rule is used, if multiple dirs
97   # define the same syscall.
98   echo ''
99   echo "#### CALL=$file NUMBER=$callnum ARGS=$args SOURCE=$srcfile"
100
101  case x$srcfile"$callnum" in
102  x*-) ;; ### Do nothing for undefined callnum
103  x-*)
104   echo "ifeq (,\$(filter $file,\$(unix-syscalls)))"
105
106   case $weak in
107   *@*)
108     # The versioned symbols are only in the shared library.
109     echo "ifneq (,\$(filter .os,\$(object-suffixes)))"
110     ;;
111   esac
112   # Accumulate the list of syscall files for this directory.
113   echo "unix-syscalls += $file"
114   test x$caller = x- || echo "unix-extra-syscalls += $file"
115
116   # Emit a compilation rule for this syscall.
117   case $weak in
118   *@*)
119     # The versioned symbols are only in the shared library.
120     echo "\
121 shared-only-routines += $file
122 \$(objpfx)${file}.os: \\"
123     ;;
124   *)
125     echo "\
126 \$(foreach o,\$(object-suffixes),\$(objpfx)$file\$o): \\"
127     ;;
128   esac
129   echo "                \$(common-objpfx)s-proto.d
130         (echo '#include <sysdep.h>'; \\
131          echo 'PSEUDO ($strong, $syscall, $nargs)'; \\
132          echo ' ret'; \\
133          echo 'PSEUDO_END($strong)'; \\"
134
135   # Append any weak aliases or versions defined for this syscall function.
136
137   # A shortcoming in the current gas is that it will only allow one
138   # version-alias per symbol.  So we create new strong aliases as needed.
139   vcount=""
140
141   for name in $weak; do
142     case $name in
143       *@@*)
144         base=`echo $name | sed 's/@@.*//'`
145         ver=`echo $name | sed 's/.*@@//'`
146         if test -z "$vcount" ; then
147           source=$strong
148           vcount=1
149         else
150           source="${strong}_${vcount}"
151           vcount=`expr $vcount + 1`
152           echo "         echo 'strong_alias ($strong, $source)'; \\"
153         fi
154         echo "   echo 'default_symbol_version($source, $base, $ver)'; \\"
155         ;;
156       *@*)
157         base=`echo $name | sed 's/@.*//'`
158         ver=`echo $name | sed 's/.*@//'`
159         if test -z "$vcount" ; then
160           source=$strong
161           vcount=1
162         else
163           source="${strong}_${vcount}"
164           vcount=`expr $vcount + 1`
165           echo "         echo 'strong_alias ($strong, $source)'; \\"
166         fi
167         echo "   echo 'symbol_version($source, $base, $ver)'; \\"
168         ;;
169       *)
170         echo "   echo 'weak_alias ($strong, $name)'; \\"
171         ;;
172     esac
173   done
174
175   # And finally, pipe this all into the compiler.
176   echo '        ) | $(COMPILE.S) -x assembler-with-cpp -o $@ -'
177
178   case $weak in
179   *@*)
180     # The versioned symbols are only in the shared library.
181     echo endif
182     ;;
183   esac
184
185   echo endif
186  ;;
187  esac
188
189   case x"$callnum",$srcfile,$args in
190   x-,-,* | x*,*.[sS],*V*) ;;
191   x*,-,*$ptr* | x*,*.[sS],*$ptr*)
192
193     nv_weak=`for name in $weak; do
194                 case $name in
195                 *@*) ;;
196                 *) echo $name;;
197                 esac; done`
198
199     # choose the name with the fewest leading underscores, preferably none
200     set `echo $strong $nv_weak |tr '@ \t' ' \n\n' |sort -r`
201     callname=$1
202
203     # convert signature string to individual numbered arg names
204     # e.g., i:ipbN -> i0 i1 p2 b3 N4
205     set `echo $args |
206         sed -e 's/^\(.\):\(.*\)/\2 <\10>/' \
207             -e 's/^\([^ ]\)\(.*\)/\2 <\11>/' \
208             -e 's/^\([^ ]\)\(.*\)/\2 <\12>/' \
209             -e 's/^\([^ ]\)\(.*\)/\2 <\13>/' \
210             -e 's/^\([^ ]\)\(.*\)/\2 <\14>/' \
211             -e 's/^\([^ ]\)\(.*\)/\2 <\15>/' \
212             -e 's/^\([^ ]\)\(.*\)/\2 <\16>/' \
213             -e 's/^\([^ ]\)\(.*\)/\2 <\17>/' \
214             -e 's/^\([^ ]\)\(.*\)/\2 <\18>/' \
215             -e 's/^\([^ ]\)\(.*\)/\2 <\19>/'`
216     rtn=$1; shift
217     args=$*
218     arglist=`echo $* |sed 's/ /, /g'`
219
220     # The best way to understand what's going on here is to examine
221     # the output in BUILDDIR/sysd-syscalls.
222
223     # generate makefile envelope & rule head
224     echo "ifeq (,\$(filter $file,\$(bp-thunks)))"
225     echo "bp-thunks += $file"
226     echo "\$(objpfx)\$(bppfx)$file.ob: \$(common-objpfx)s-proto.d"
227
228     # generate macro head
229     echo "      (echo '#define $callname(`echo $arglist | \
230             sed -e 's/[<>]//g'`) `echo $rtn | \
231             sed -e 's/<\('$typ'0\)>/\1v;/g' \
232                 -e 's/<\(b0\)>/x0; extern char \1v;/g'` \\'; \\"
233
234     # generate extern decls of dummy variables for each arg
235     echo "       echo '`echo $args | \
236             sed -e 's/<\('$typ'[1-9]\)>/extern \1, \1v;/g' \
237                 -e 's/<\([abBFIsSV][1-9]\)>/extern char \1v;/g' \
238                 -e 's/<\([Wv][1-9]\)>/extern int \1v;/g'` \\'; \\"
239
240     # generate bounded-pointer thunk declarator
241     echo "       echo '`echo $rtn | \
242             sed -e 's/<\('$ptr'0\)>/__typeof (\1v) *__bounded/g' \
243                 -e 's/<\('$int'0\)>/__typeof (\1v)/g'` BP_SYM ($strong) (`echo $arglist | \
244             sed -e 's/<\('$ptr'[1-9]\)>/__typeof (\1v) *__bounded \1a/g' \
245                 -e 's/<\('$int'[1-9]\)>/__typeof (\1v) \1a/g'`) { \\'; \\"
246
247     # generate extern primitive syscall declaration
248     echo "       echo '  extern `echo $rtn | \
249             sed -e 's/<\('$ptr'0\)>/__typeof (\1v) *__unbounded/g' \
250                 -e 's/<\('$int'0\)>/__typeof (\1v)/g'` ($callname) (`echo $arglist | \
251             sed -e 's/<\('$ptr'[1-9]\)>/__typeof (\1v) *__unbounded/g' \
252                 -e 's/<\('$int'[1-9]\)>/__typeof (\1v)/g'`); \\'; \\"
253
254     # generate call the primtive system call, optionally wrapping bounds
255     # around the result if the signature's return keyletter is `b'.
256     echo "       echo '  return `echo $rtn |
257             sed -e 's/<b0>/BOUNDED_N (/' \
258                 -e 's/<.0>//'`($callname) (`echo $arglist | \
259             sed -e 's/<\(a[1-9]\)>/__ptrvalue (\1a)/g' \
260                 -e 's/<\(n[1-9]\)>, <\(V[1-9]\)>/\1a, CHECK_N_PAGES (\2a, \1a)/g' \
261                 -e 's/<\(b[1-9]\)>, <\(n[1-9]\)>/CHECK_N (\1a, \2a), \2a/g' \
262                 -e 's/<\(b[1-9]\)>, <\(N[1-9]\)>/CHECK_N (\1a, *CHECK_1 (\2a)), __ptrvalue (\2a)/g' \
263                 -e 's/<\(B[1-9]\)>, <\(n[1-9]\)>/CHECK_N_NULL_OK (\1a, \2a), \2a/g' \
264                 -e 's/<\(B[1-9]\)>, <\(N[1-9]\)>/CHECK_N_NULL_OK (\1a, *CHECK_1 (\2a)), __ptrvalue (\2a)/g' \
265                 -e 's/<\(f[1-9]\)>/CHECK_N (\1a, 2)/g' \
266                 -e 's/<\(i[1-9]\)>, <\(F[1-9]\)>/\1a, CHECK_FCNTL (\2a, \1a)/g' \
267                 -e 's/<\(i[1-9]\)>, <\(I[1-9]\)>/\1a, CHECK_IOCTL (\2a, \1a)/g' \
268                 -e 's/<\(p[1-9]\)>/CHECK_1 (\1a)/g' \
269                 -e 's/<\([PW][1-9]\)>/CHECK_1_NULL_OK (\1a)/g' \
270                 -e 's/<\(s[1-9]\)>/CHECK_STRING (\1a)/g' \
271                 -e 's/<\(S[1-9]\)>/CHECK_STRING_NULL_OK (\1a)/g' \
272                 -e 's/<\([ivn][1-9]\)>/\1a/g'`)`echo $rtn $args |
273             sed -e 's/<b0>.*<\(n[1-9]\)>.*/, \1a)/' \
274                 -e 's/<.0>.*//'`; \\'; \\"
275
276     echo "       echo '} \\'; \\"
277
278     # generate thunk aliases
279     for name in $nv_weak; do
280       echo "     echo 'weak_alias (BP_SYM ($strong), BP_SYM ($name)) \\'; \\"
281     done
282
283     # wrap up
284     echo "\
285          echo ''; \\
286          echo '#include <bp-thunks.h>'; \\
287         ) | \$(COMPILE.c) -x c -o \$@ -"
288 ### Use this for debugging intermediate output:
289 ###     ) >\$(@:.ob=.c)
290 ###     \$(subst -c,-E,\$(COMPILE.c)) -o \$(@:.ob=.ib) \$(@:.ob=.c)
291 ###     \$(COMPILE.c) -x cpp-output -o \$@ \$(@:.ob=.ib)"
292     echo endif
293     ;;
294   esac
295
296 done