Home | History | Annotate | Line # | Download | only in kern
makesyscalls.sh revision 1.35.2.2
      1       1.1     glass #! /bin/sh -
      2  1.35.2.2    bouyer #	$NetBSD: makesyscalls.sh,v 1.35.2.2 2000/11/22 16:05:24 bouyer Exp $
      3       1.9       cgd #
      4  1.35.2.1    bouyer # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
      5      1.12       cgd # All rights reserved.
      6      1.12       cgd #
      7      1.12       cgd # Redistribution and use in source and binary forms, with or without
      8      1.12       cgd # modification, are permitted provided that the following conditions
      9      1.12       cgd # are met:
     10      1.12       cgd # 1. Redistributions of source code must retain the above copyright
     11      1.12       cgd #    notice, this list of conditions and the following disclaimer.
     12      1.12       cgd # 2. Redistributions in binary form must reproduce the above copyright
     13      1.12       cgd #    notice, this list of conditions and the following disclaimer in the
     14      1.12       cgd #    documentation and/or other materials provided with the distribution.
     15      1.12       cgd # 3. All advertising materials mentioning features or use of this software
     16      1.12       cgd #    must display the following acknowledgement:
     17      1.12       cgd #      This product includes software developed for the NetBSD Project
     18      1.12       cgd #      by Christopher G. Demetriou.
     19      1.12       cgd # 4. The name of the author may not be used to endorse or promote products
     20      1.12       cgd #    derived from this software without specific prior written permission
     21      1.12       cgd #
     22      1.12       cgd # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23      1.12       cgd # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24      1.12       cgd # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25      1.12       cgd # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26      1.12       cgd # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27      1.12       cgd # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28      1.12       cgd # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29      1.12       cgd # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30      1.12       cgd # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31      1.12       cgd # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32      1.14       cgd 
     33      1.14       cgd #	@(#)makesyscalls.sh	8.1 (Berkeley) 6/10/93
     34       1.1     glass 
     35       1.1     glass set -e
     36       1.1     glass 
     37      1.11       cgd case $# in
     38      1.11       cgd     2)	;;
     39      1.11       cgd     *)	echo "Usage: $0 config-file input-file" 1>&2
     40      1.11       cgd 	exit 1
     41      1.11       cgd 	;;
     42      1.11       cgd esac
     43      1.11       cgd 
     44      1.11       cgd # source the config file.
     45      1.33  christos . ./$1
     46      1.11       cgd 
     47      1.11       cgd # the config file sets the following variables:
     48      1.11       cgd #	sysnames	the syscall names file
     49      1.11       cgd #	sysnumhdr	the syscall numbers file
     50      1.11       cgd #	syssw		the syscall switch file
     51      1.11       cgd #	sysarghdr	the syscall argument struct definitions
     52      1.11       cgd #	compatopts	those syscall types that are for 'compat' syscalls
     53      1.11       cgd #	switchname	the name for the 'struct sysent' we define
     54      1.11       cgd #	namesname	the name for the 'char *[]' we define
     55      1.11       cgd #	constprefix	the prefix for the system call constants
     56      1.30       eeh #	registertype	the type for register_t
     57      1.11       cgd #
     58      1.11       cgd # NOTE THAT THIS makesyscalls.sh DOES NOT SUPPORT 'LIBCOMPAT'.
     59       1.1     glass 
     60       1.1     glass # tmp files:
     61       1.1     glass sysdcl="sysent.dcl"
     62      1.16   thorpej sysprotos="sys.protos"
     63      1.11       cgd syscompat_pref="sysent."
     64       1.1     glass sysent="sysent.switch"
     65      1.27   thorpej sysnamesbottom="sysnames.bottom"
     66       1.1     glass 
     67      1.27   thorpej trap "rm $sysdcl $sysprotos $sysent $sysnamesbottom" 0
     68      1.11       cgd 
     69      1.11       cgd # Awk program (must support nawk extensions)
     70      1.11       cgd # Use "awk" at Berkeley, "nawk" or "gawk" elsewhere.
     71      1.11       cgd awk=${AWK:-awk}
     72      1.11       cgd 
     73      1.11       cgd # Does this awk have a "toupper" function? (i.e. is it GNU awk)
     74      1.11       cgd isgawk=`$awk 'BEGIN { print toupper("true"); exit; }' 2>/dev/null`
     75      1.11       cgd 
     76      1.11       cgd # If this awk does not define "toupper" then define our own.
     77      1.11       cgd if [ "$isgawk" = TRUE ] ; then
     78      1.11       cgd 	# GNU awk provides it.
     79      1.11       cgd 	toupper=
     80      1.11       cgd else
     81      1.11       cgd 	# Provide our own toupper()
     82      1.11       cgd 	toupper='
     83      1.11       cgd function toupper(str) {
     84      1.11       cgd 	_toupper_cmd = "echo "str" |tr a-z A-Z"
     85      1.11       cgd 	_toupper_cmd | getline _toupper_str;
     86      1.11       cgd 	close(_toupper_cmd);
     87      1.11       cgd 	return _toupper_str;
     88      1.11       cgd }'
     89      1.11       cgd fi
     90      1.11       cgd 
     91      1.11       cgd # before handing it off to awk, make a few adjustments:
     92      1.11       cgd #	(1) insert spaces around {, }, (, ), *, and commas.
     93      1.11       cgd #	(2) get rid of any and all dollar signs (so that rcs id use safe)
     94      1.11       cgd #
     95      1.11       cgd # The awk script will deal with blank lines and lines that
     96      1.11       cgd # start with the comment character (';').
     97       1.1     glass 
     98      1.11       cgd sed -e '
     99      1.11       cgd s/\$//g
    100      1.11       cgd :join
    101      1.11       cgd 	/\\$/{a\
    102      1.11       cgd 
    103      1.11       cgd 	N
    104      1.11       cgd 	s/\\\n//
    105      1.11       cgd 	b join
    106      1.11       cgd 	}
    107      1.11       cgd 2,${
    108      1.11       cgd 	/^#/!s/\([{}()*,]\)/ \1 /g
    109      1.11       cgd }
    110      1.11       cgd ' < $2 | $awk "
    111      1.11       cgd $toupper
    112      1.11       cgd BEGIN {
    113      1.18       cgd 	# to allow nested #if/#else/#endif sets
    114      1.18       cgd 	savedepth = 0
    115      1.18       cgd 
    116      1.11       cgd 	sysnames = \"$sysnames\"
    117      1.16   thorpej 	sysprotos = \"$sysprotos\"
    118      1.11       cgd 	sysnumhdr = \"$sysnumhdr\"
    119      1.11       cgd 	sysarghdr = \"$sysarghdr\"
    120      1.11       cgd 	switchname = \"$switchname\"
    121      1.11       cgd 	namesname = \"$namesname\"
    122      1.11       cgd 	constprefix = \"$constprefix\"
    123      1.30       eeh 	registertype = \"$registertype\"
    124      1.30       eeh 	if (!registertype) {
    125      1.30       eeh 	    registertype = \"register_t\"
    126      1.30       eeh 	}
    127      1.11       cgd 
    128      1.11       cgd 	sysdcl = \"$sysdcl\"
    129      1.11       cgd 	syscompat_pref = \"$syscompat_pref\"
    130      1.11       cgd 	sysent = \"$sysent\"
    131      1.27   thorpej 	sysnamesbottom = \"$sysnamesbottom\"
    132      1.11       cgd 	infile = \"$2\"
    133      1.11       cgd 
    134      1.11       cgd 	compatopts = \"$compatopts\"
    135      1.11       cgd 	"'
    136      1.11       cgd 
    137  1.35.2.1    bouyer 	printf "/* \$NetBSD\$ */\n\n" > sysdcl
    138      1.11       cgd 	printf "/*\n * System call switch table.\n *\n" > sysdcl
    139      1.11       cgd 	printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysdcl
    140      1.11       cgd 
    141      1.11       cgd 	ncompat = split(compatopts,compat)
    142      1.11       cgd 	for (i = 1; i <= ncompat; i++) {
    143      1.11       cgd 		compat_upper[i] = toupper(compat[i])
    144      1.11       cgd 
    145      1.17   mycroft 		printf "\n#ifdef %s\n", compat_upper[i] > sysent
    146      1.17   mycroft 		printf "#define %s(func) __CONCAT(%s_,func)\n", compat[i], \
    147      1.17   mycroft 		    compat[i] > sysent
    148      1.17   mycroft 		printf "#else\n" > sysent
    149      1.17   mycroft 		printf "#define %s(func) sys_nosys\n", compat[i] > sysent
    150      1.17   mycroft 		printf "#endif\n" > sysent
    151      1.11       cgd 	}
    152      1.11       cgd 
    153      1.17   mycroft 	printf "\n#define\ts(type)\tsizeof(type)\n\n" > sysent
    154      1.17   mycroft 	printf "struct sysent %s[] = {\n",switchname > sysent
    155      1.17   mycroft 
    156  1.35.2.1    bouyer 	printf "/* \$NetBSD\$ */\n\n" > sysnames
    157      1.11       cgd 	printf "/*\n * System call names.\n *\n" > sysnames
    158      1.11       cgd 	printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnames
    159      1.11       cgd 
    160      1.16   thorpej 	printf "\n/*\n * System call prototypes.\n */\n\n" > sysprotos
    161      1.16   thorpej 
    162  1.35.2.1    bouyer 	printf "/* \$NetBSD\$ */\n\n" > sysnumhdr
    163      1.11       cgd 	printf "/*\n * System call numbers.\n *\n" > sysnumhdr
    164      1.11       cgd 	printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysnumhdr
    165      1.11       cgd 
    166  1.35.2.1    bouyer 	printf "/* \$NetBSD\$ */\n\n" > sysarghdr
    167      1.13   mycroft 	printf "/*\n * System call argument lists.\n *\n" > sysarghdr
    168      1.11       cgd 	printf " * DO NOT EDIT-- this file is automatically generated.\n" > sysarghdr
    169      1.11       cgd }
    170      1.11       cgd NR == 1 {
    171      1.11       cgd 	printf " * created from%s\n */\n\n", $0 > sysdcl
    172      1.11       cgd 
    173      1.11       cgd 	printf " * created from%s\n */\n\n", $0 > sysnames
    174      1.28   thorpej 
    175      1.28   thorpej 	# System call names are included by userland (kdump(1)), so
    176      1.28   thorpej 	# hide the include files from it.
    177      1.28   thorpej 	printf "#if defined(_KERNEL) && !defined(_LKM)\n" > sysnames
    178      1.28   thorpej 
    179      1.28   thorpej 	printf "#endif /* _KERNEL && ! _LKM */\n\n" > sysnamesbottom
    180  1.35.2.2    bouyer 	printf "const char * const %s[] = {\n",namesname > sysnamesbottom
    181      1.11       cgd 
    182      1.11       cgd 	printf " * created from%s\n */\n\n", $0 > sysnumhdr
    183      1.11       cgd 
    184      1.11       cgd 	printf " * created from%s\n */\n\n", $0 > sysarghdr
    185      1.31       erh 	printf "#ifndef _" constprefix "_SYSCALLARGS_H_\n" > sysarghdr
    186      1.31       erh 	printf "#define _" constprefix "_SYSCALLARGS_H_\n\n" > sysarghdr
    187      1.30       eeh 	printf "#ifdef\tsyscallarg\n" > sysarghdr
    188      1.30       eeh 	printf "#undef\tsyscallarg\n" > sysarghdr
    189      1.30       eeh 	printf "#endif\n\n" > sysarghdr
    190      1.35   thorpej 	printf "#define\tsyscallarg(x)\t\t\t\t\t\t\t\\\n" > sysarghdr
    191      1.35   thorpej 	printf "\tunion {\t\t\t\t\t\t\t\t\\\n" > sysarghdr
    192      1.35   thorpej 	printf "\t\t%s pad;\t\t\t\t\t\t\\\n", registertype > sysarghdr
    193      1.35   thorpej 	printf "\t\tstruct { x datum; } le;\t\t\t\t\t\\\n" > sysarghdr
    194      1.35   thorpej 	printf "\t\tstruct {\t\t\t\t\t\t\\\n" > sysarghdr
    195      1.35   thorpej 	printf "\t\t\tint8_t pad[ (sizeof (%s) < sizeof (x))\t\\\n", \
    196      1.30       eeh 		registertype > sysarghdr
    197      1.35   thorpej 	printf "\t\t\t\t? 0\t\t\t\t\t\\\n" > sysarghdr
    198      1.35   thorpej 	printf "\t\t\t\t: sizeof (%s) - sizeof (x)];\t\\\n", \
    199      1.30       eeh 		registertype > sysarghdr
    200      1.35   thorpej 	printf "\t\t\tx datum;\t\t\t\t\t\\\n" > sysarghdr
    201      1.35   thorpej 	printf "\t\t} be;\t\t\t\t\t\t\t\\\n" > sysarghdr
    202      1.35   thorpej 	printf "\t}\n" > sysarghdr
    203      1.11       cgd 	next
    204      1.11       cgd }
    205      1.11       cgd NF == 0 || $1 ~ /^;/ {
    206      1.11       cgd 	next
    207      1.11       cgd }
    208      1.11       cgd $1 ~ /^#[ 	]*include/ {
    209      1.11       cgd 	print > sysdcl
    210      1.27   thorpej 	print > sysnames
    211      1.11       cgd 	next
    212      1.11       cgd }
    213      1.11       cgd $1 ~ /^#[ 	]*if/ {
    214      1.11       cgd 	print > sysent
    215      1.16   thorpej 	print > sysprotos
    216      1.27   thorpej 	print > sysnamesbottom
    217      1.18       cgd 	savesyscall[++savedepth] = syscall
    218      1.11       cgd 	next
    219      1.11       cgd }
    220      1.11       cgd $1 ~ /^#[ 	]*else/ {
    221      1.11       cgd 	print > sysent
    222      1.16   thorpej 	print > sysprotos
    223      1.27   thorpej 	print > sysnamesbottom
    224      1.18       cgd 	if (savedepth <= 0) {
    225      1.18       cgd 		printf "%s: line %d: unbalenced #else\n", \
    226      1.18       cgd 		    infile, NR
    227      1.18       cgd 		exit 1
    228      1.18       cgd 	}
    229      1.18       cgd 	syscall = savesyscall[savedepth]
    230      1.11       cgd 	next
    231      1.11       cgd }
    232      1.11       cgd $1 ~ /^#/ {
    233      1.18       cgd 	if ($1 ~ /^#[       ]*endif/) {
    234      1.18       cgd 		if (savedepth <= 0) {
    235      1.32  christos 			printf "%s: line %d: unbalanced #endif\n", \
    236      1.18       cgd 			    infile, NR
    237      1.18       cgd 			exit 1
    238      1.18       cgd 		}
    239      1.18       cgd 		savedepth--;
    240      1.18       cgd 	}
    241      1.11       cgd 	print > sysent
    242      1.16   thorpej 	print > sysprotos
    243      1.27   thorpej 	print > sysnamesbottom
    244      1.11       cgd 	next
    245      1.11       cgd }
    246      1.11       cgd syscall != $1 {
    247      1.11       cgd 	printf "%s: line %d: syscall number out of sync at %d\n", \
    248      1.11       cgd 	   infile, NR, syscall
    249      1.11       cgd 	printf "line is:\n"
    250      1.11       cgd 	print
    251      1.11       cgd 	exit 1
    252      1.11       cgd }
    253      1.11       cgd function parserr(was, wanted) {
    254      1.11       cgd 	printf "%s: line %d: unexpected %s (expected %s)\n", \
    255      1.11       cgd 	    infile, NR, was, wanted
    256      1.32  christos 	printf "line is:\n"
    257      1.32  christos 	print
    258      1.11       cgd 	exit 1
    259      1.11       cgd }
    260      1.11       cgd function parseline() {
    261      1.11       cgd 	f=3			# toss number and type
    262      1.11       cgd 	if ($NF != "}") {
    263      1.11       cgd 		funcalias=$NF
    264      1.11       cgd 		end=NF-1
    265      1.11       cgd 	} else {
    266      1.11       cgd 		funcalias=""
    267      1.11       cgd 		end=NF
    268      1.11       cgd 	}
    269      1.11       cgd 	if ($f != "{")
    270      1.11       cgd 		parserr($f, "{")
    271      1.11       cgd 	f++
    272      1.11       cgd 	if ($end != "}")
    273      1.11       cgd 		parserr($end, "}")
    274      1.11       cgd 	end--
    275      1.11       cgd 	if ($end != ";")
    276      1.11       cgd 		parserr($end, ";")
    277      1.11       cgd 	end--
    278      1.11       cgd 	if ($end != ")")
    279      1.11       cgd 		parserr($end, ")")
    280      1.11       cgd 	end--
    281      1.11       cgd 
    282      1.19       cgd 	returntype = oldf = "";
    283      1.19       cgd 	do {
    284      1.19       cgd 		if (returntype != "" && oldf != "*")
    285      1.19       cgd 			returntype = returntype" ";
    286      1.19       cgd 		returntype = returntype$f;
    287      1.19       cgd 		oldf = $f;
    288      1.19       cgd 		f++
    289      1.19       cgd 	} while (f < (end - 1) && $(f+1) != "(");
    290      1.19       cgd 	if (f == (end - 1)) {
    291      1.19       cgd 		parserr($f, "function argument definition (maybe \"(\"?)");
    292      1.19       cgd 	}
    293      1.11       cgd 
    294      1.11       cgd 	funcname=$f
    295      1.17   mycroft 	if (funcalias == "") {
    296      1.11       cgd 		funcalias=funcname
    297      1.17   mycroft 		sub(/^([^_]+_)*sys_/, "", funcalias)
    298      1.17   mycroft 	}
    299      1.11       cgd 	f++
    300      1.11       cgd 
    301      1.11       cgd 	if ($f != "(")
    302      1.11       cgd 		parserr($f, ")")
    303      1.11       cgd 	f++
    304      1.11       cgd 
    305      1.19       cgd 	argc=0;
    306      1.11       cgd 	if (f == end) {
    307      1.11       cgd 		if ($f != "void")
    308      1.11       cgd 			parserr($f, "argument definition")
    309      1.19       cgd 		isvarargs = 0;
    310      1.19       cgd 		varargc = 0;
    311      1.11       cgd 		return
    312      1.11       cgd 	}
    313      1.11       cgd 
    314      1.19       cgd 	# some system calls (open() and fcntl()) can accept a variable
    315      1.19       cgd 	# number of arguments.  If syscalls accept a variable number of
    316      1.19       cgd 	# arguments, they must still have arguments specified for
    317      1.19       cgd 	# the remaining argument "positions," because of the way the
    318      1.19       cgd 	# kernel system call argument handling works.
    319      1.19       cgd 	#
    320      1.19       cgd 	# Indirect system calls, e.g. syscall(), are exceptions to this
    321      1.19       cgd 	# rule, since they are handled entirely by machine-dependent code
    322      1.19       cgd 	# and do not need argument structures built.
    323      1.19       cgd 
    324      1.19       cgd 	isvarargs = 0;
    325      1.11       cgd 	while (f <= end) {
    326      1.19       cgd 		if ($f == "...") {
    327      1.19       cgd 			f++;
    328      1.19       cgd 			isvarargs = 1;
    329      1.19       cgd 			varargc = argc;
    330      1.19       cgd 			continue;
    331      1.19       cgd 		}
    332      1.11       cgd 		argc++
    333      1.11       cgd 		argtype[argc]=""
    334      1.14       cgd 		oldf=""
    335      1.11       cgd 		while (f < end && $(f+1) != ",") {
    336      1.14       cgd 			if (argtype[argc] != "" && oldf != "*")
    337      1.11       cgd 				argtype[argc] = argtype[argc]" ";
    338      1.11       cgd 			argtype[argc] = argtype[argc]$f;
    339      1.14       cgd 			oldf = $f;
    340      1.11       cgd 			f++
    341      1.11       cgd 		}
    342      1.11       cgd 		if (argtype[argc] == "")
    343      1.11       cgd 			parserr($f, "argument definition")
    344      1.11       cgd 		argname[argc]=$f;
    345      1.11       cgd 		f += 2;			# skip name, and any comma
    346      1.11       cgd 	}
    347      1.19       cgd 	# must see another argument after varargs notice.
    348      1.19       cgd 	if (isvarargs) {
    349      1.19       cgd 		if (argc == varargc && $2 != "INDIR")
    350      1.19       cgd 			parserr($f, "argument definition")
    351      1.19       cgd 	} else
    352      1.19       cgd 		varargc = argc;
    353      1.11       cgd }
    354      1.17   mycroft function putent(nodefs, compatwrap) {
    355      1.21       cgd 	# output syscall declaration for switch table.  INDIR functions
    356      1.21       cgd 	# get none, since they always have sys_nosys() for their table
    357      1.21       cgd 	# entries.
    358      1.21       cgd 	if (nodefs != "INDIR") {
    359  1.35.2.1    bouyer 		prototype = "(struct proc *, void *, register_t *)"
    360      1.21       cgd 		if (compatwrap == "")
    361  1.35.2.1    bouyer 			printf("int\t%s%s;\n", funcname,
    362      1.21       cgd 			    prototype) > sysprotos
    363      1.21       cgd 		else
    364  1.35.2.1    bouyer 			printf("int\t%s_%s%s;\n", compatwrap, funcname,
    365      1.21       cgd 			    prototype) > sysprotos
    366      1.21       cgd 	}
    367      1.11       cgd 
    368      1.11       cgd 	# output syscall switch entry
    369      1.19       cgd 	if (nodefs == "INDIR") {
    370      1.21       cgd 		printf("\t{ 0, 0,\n\t    sys_nosys },\t\t\t/* %d = %s (indir) */\n", \
    371      1.21       cgd 		    syscall, funcalias) > sysent
    372      1.19       cgd 	} else {
    373      1.19       cgd #		printf("\t{ { %d", argc) > sysent
    374      1.19       cgd #		for (i = 1; i <= argc; i++) {
    375      1.19       cgd #			if (i == 5) 		# wrap the line
    376      1.19       cgd #				printf(",\n\t    ") > sysent
    377      1.19       cgd #			else
    378      1.19       cgd #				printf(", ") > sysent
    379      1.19       cgd #			printf("s(%s)", argtypenospc[i]) > sysent
    380      1.19       cgd #		}
    381      1.19       cgd 		printf("\t{ %d, ", argc) > sysent
    382      1.19       cgd 		if (argc == 0)
    383      1.19       cgd 			printf("0") > sysent
    384      1.19       cgd 		else if (compatwrap == "")
    385      1.19       cgd 			printf("s(struct %s_args)", funcname) > sysent
    386      1.19       cgd 		else
    387      1.19       cgd 			printf("s(struct %s_%s_args)", compatwrap,
    388      1.19       cgd 			    funcname) > sysent
    389      1.19       cgd 		if (compatwrap == "")
    390      1.19       cgd 			wfn = sprintf("%s", funcname);
    391      1.19       cgd 		else
    392      1.19       cgd 			wfn = sprintf("%s(%s)", compatwrap, funcname);
    393      1.19       cgd 		printf(",\n\t    %s },", wfn) > sysent
    394      1.19       cgd 		for (i = 0; i < (33 - length(wfn)) / 8; i++)
    395      1.19       cgd 			printf("\t") > sysent
    396      1.19       cgd 		if (compatwrap == "")
    397      1.19       cgd 			printf("/* %d = %s */\n", syscall, funcalias) > sysent
    398      1.19       cgd 		else
    399      1.19       cgd 			printf("/* %d = %s %s */\n", syscall, compatwrap,
    400      1.19       cgd 			    funcalias) > sysent
    401      1.19       cgd 	}
    402      1.11       cgd 
    403      1.11       cgd 	# output syscall name for names table
    404      1.11       cgd 	if (compatwrap == "")
    405      1.11       cgd 		printf("\t\"%s\",\t\t\t/* %d = %s */\n", funcalias, syscall,
    406      1.27   thorpej 		    funcalias) > sysnamesbottom
    407      1.11       cgd 	else
    408      1.11       cgd 		printf("\t\"%s_%s\",\t/* %d = %s %s */\n", compatwrap,
    409      1.27   thorpej 		    funcalias, syscall, compatwrap, funcalias) > sysnamesbottom
    410      1.11       cgd 
    411      1.11       cgd 	# output syscall number of header, if appropriate
    412      1.19       cgd 	if (nodefs == "" || nodefs == "NOARGS" || nodefs == "INDIR") {
    413      1.19       cgd 		# output a prototype, to be used to generate lint stubs in
    414      1.19       cgd 		# libc.
    415      1.19       cgd 		printf("/* syscall: \"%s\" ret: \"%s\" args:", funcalias,
    416      1.19       cgd 		    returntype) > sysnumhdr
    417      1.19       cgd 		for (i = 1; i <= varargc; i++)
    418      1.19       cgd 			printf(" \"%s\"", argtype[i]) > sysnumhdr
    419      1.19       cgd 		if (isvarargs)
    420      1.19       cgd 			printf(" \"...\"") > sysnumhdr
    421      1.19       cgd 		printf(" */\n") > sysnumhdr
    422      1.19       cgd 
    423      1.19       cgd 		printf("#define\t%s%s\t%d\n\n", constprefix, funcalias,
    424      1.11       cgd 		    syscall) > sysnumhdr
    425      1.29   thorpej 	} else if (nodefs == "COMPAT") {
    426      1.29   thorpej 		# Just define the syscall number with a comment.  These
    427      1.29   thorpej 		# may be used by compatibility stubs in libc.
    428      1.29   thorpej 		printf("#define\t%s%s_%s\t%d\n\n",
    429      1.29   thorpej 		    constprefix, compatwrap, funcalias, syscall) > sysnumhdr
    430      1.19       cgd 	} else if (nodefs != "NODEF")
    431      1.19       cgd 		printf("\t\t\t\t/* %d is %s %s */\n\n", syscall,
    432      1.11       cgd 		    compatwrap, funcalias) > sysnumhdr
    433      1.11       cgd 
    434      1.11       cgd 	# output syscall argument structure, if it has arguments
    435      1.21       cgd 	if (argc != 0 && nodefs != "NOARGS" && nodefs != "INDIR") {
    436      1.11       cgd 		if (compatwrap == "")
    437      1.11       cgd 			printf("\nstruct %s_args {\n", funcname) > sysarghdr
    438      1.11       cgd 		else
    439      1.11       cgd 			printf("\nstruct %s_%s_args {\n", compatwrap,
    440      1.11       cgd 			    funcname) > sysarghdr
    441      1.11       cgd 		for (i = 1; i <= argc; i++)
    442      1.11       cgd 			printf("\tsyscallarg(%s) %s;\n", argtype[i],
    443      1.11       cgd 			    argname[i]) > sysarghdr
    444      1.11       cgd 		printf("};\n") > sysarghdr
    445      1.11       cgd 	}
    446      1.11       cgd }
    447      1.11       cgd $2 == "STD" {
    448      1.11       cgd 	parseline()
    449      1.17   mycroft 	putent("", "");
    450      1.11       cgd 	syscall++
    451      1.11       cgd 	next
    452      1.11       cgd }
    453      1.19       cgd $2 == "NODEF" || $2 == "NOARGS" || $2 == "INDIR" {
    454      1.11       cgd 	parseline()
    455      1.17   mycroft 	putent($2, "")
    456      1.11       cgd 	syscall++
    457      1.11       cgd 	next
    458      1.11       cgd }
    459      1.34  christos $2 == "OBSOL" || $2 == "UNIMPL" || $2 == "EXCL" {
    460      1.11       cgd 	if ($2 == "OBSOL")
    461      1.11       cgd 		comment="obsolete"
    462      1.34  christos 	else if ($2 == "EXCL")
    463      1.34  christos 		comment="excluded"
    464      1.11       cgd 	else
    465      1.11       cgd 		comment="unimplemented"
    466      1.11       cgd 	for (i = 3; i <= NF; i++)
    467      1.11       cgd 		comment=comment " " $i
    468      1.11       cgd 
    469      1.17   mycroft 	printf("\t{ 0, 0,\n\t    sys_nosys },\t\t\t/* %d = %s */\n", \
    470      1.11       cgd 	    syscall, comment) > sysent
    471      1.11       cgd 	printf("\t\"#%d (%s)\",\t\t/* %d = %s */\n", \
    472      1.27   thorpej 	    syscall, comment, syscall, comment) > sysnamesbottom
    473      1.11       cgd 	if ($2 != "UNIMPL")
    474      1.11       cgd 		printf("\t\t\t\t/* %d is %s */\n", syscall, comment) > sysnumhdr
    475      1.11       cgd 	syscall++
    476      1.11       cgd 	next
    477      1.11       cgd }
    478      1.11       cgd {
    479      1.11       cgd 	for (i = 1; i <= ncompat; i++) {
    480      1.11       cgd 		if ($2 == compat_upper[i]) {
    481      1.11       cgd 			parseline();
    482      1.29   thorpej 			putent("COMPAT", compat[i])
    483      1.11       cgd 			syscall++
    484      1.11       cgd 			next
    485      1.11       cgd 		}
    486      1.11       cgd 	}
    487      1.11       cgd 	printf "%s: line %d: unrecognized keyword %s\n", infile, NR, $2
    488       1.1     glass 	exit 1
    489      1.11       cgd }
    490      1.11       cgd END {
    491      1.11       cgd 	printf("};\n\n") > sysent
    492      1.27   thorpej 	printf("};\n") > sysnamesbottom
    493      1.15  christos 	printf("#define\t%sMAXSYSCALL\t%d\n", constprefix, syscall) > sysnumhdr
    494      1.11       cgd } '
    495       1.1     glass 
    496      1.17   mycroft cat $sysprotos >> $sysarghdr
    497      1.31       erh echo "#endif /* _${constprefix}_SYSCALLARGS_H_ */" >> $sysarghdr
    498      1.16   thorpej cat $sysdcl $sysent > $syssw
    499      1.27   thorpej cat $sysnamesbottom >> $sysnames
    500       1.1     glass 
    501      1.15  christos #chmod 444 $sysnames $sysnumhdr $syssw
    502