Home | History | Annotate | Line # | Download | only in sys
makelintstub revision 1.3
      1  1.1      cgd #!/bin/sh -
      2  1.3     fvdl #	$NetBSD: makelintstub,v 1.3 1998/03/01 10:20:06 fvdl Exp $
      3  1.1      cgd #
      4  1.2  thorpej # Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
      5  1.1      cgd #
      6  1.1      cgd # Redistribution and use in source and binary forms, with or without
      7  1.1      cgd # modification, are permitted provided that the following conditions
      8  1.1      cgd # are met:
      9  1.1      cgd # 1. Redistributions of source code must retain the above copyright
     10  1.1      cgd #    notice, this list of conditions and the following disclaimer.
     11  1.1      cgd # 2. Redistributions in binary form must reproduce the above copyright
     12  1.1      cgd #    notice, this list of conditions and the following disclaimer in the
     13  1.1      cgd #    documentation and/or other materials provided with the distribution.
     14  1.1      cgd # 3. All advertising materials mentioning features or use of this software
     15  1.1      cgd #    must display the following acknowledgement:
     16  1.1      cgd #      This product includes software developed for the NetBSD Project
     17  1.1      cgd #      by Christopher G. Demetriou.
     18  1.1      cgd # 4. The name of the author may not be used to endorse or promote products
     19  1.1      cgd #    derived from this software without specific prior written permission
     20  1.1      cgd #
     21  1.1      cgd # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1      cgd # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1      cgd # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1      cgd # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1      cgd # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1      cgd # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1      cgd # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1      cgd # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1      cgd # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1      cgd # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1      cgd 
     32  1.2  thorpej usage()
     33  1.2  thorpej {
     34  1.2  thorpej 
     35  1.2  thorpej 	echo "usage: $0 [-n|-p] [-o filename] object ..."
     36  1.1      cgd 	exit 1
     37  1.2  thorpej }
     38  1.1      cgd 
     39  1.2  thorpej header()
     40  1.2  thorpej {
     41  1.1      cgd 
     42  1.2  thorpej 	cat <<- __EOF__
     43  1.2  thorpej 	/*
     44  1.2  thorpej 	 * THIS IS AN AUTOMATICALLY GENERATED FILE.  DO NOT EDIT.
     45  1.2  thorpej 	 */
     46  1.2  thorpej 
     47  1.2  thorpej 	#include <sys/param.h>
     48  1.2  thorpej 	#include <sys/time.h>
     49  1.2  thorpej 	#include <sys/mount.h>
     50  1.2  thorpej 	#include <sys/stat.h>
     51  1.3     fvdl 	#include <ufs/ufs/dinode.h>
     52  1.2  thorpej 	#include <ufs/lfs/lfs.h>
     53  1.2  thorpej 	#include <sys/resource.h>
     54  1.2  thorpej 	#include <sys/poll.h>
     55  1.2  thorpej 	#include <sys/uio.h>
     56  1.2  thorpej 	#include <sys/ipc.h>
     57  1.2  thorpej 	#include <sys/msg.h>
     58  1.2  thorpej 	#include <sys/sem.h>
     59  1.2  thorpej 	#include <sys/shm.h>
     60  1.2  thorpej 	#include <sys/timex.h>
     61  1.2  thorpej 	#include <sys/socket.h>
     62  1.2  thorpej 	#ifdef __STDC__
     63  1.2  thorpej 	#include <stdarg.h>
     64  1.2  thorpej 	#else
     65  1.2  thorpej 	#include <varargs.h>
     66  1.2  thorpej 	#endif
     67  1.2  thorpej 
     68  1.2  thorpej 	__EOF__
     69  1.2  thorpej }
     70  1.2  thorpej 
     71  1.2  thorpej syscall_stub()
     72  1.2  thorpej {
     73  1.2  thorpej 
     74  1.2  thorpej 	syscallhdr="$1"
     75  1.2  thorpej 	syscallname="$2"
     76  1.2  thorpej 	funcname="$3"
     77  1.2  thorpej 
     78  1.2  thorpej 	arglist="`printf '#include "'"$syscallhdr"'"' | cpp -C | \
     79  1.2  thorpej     	grep '^/\* syscall: "'"$syscallname"'" ' | \
     80  1.2  thorpej     	sed -e 's,^/\* syscall: ,,;s, \*/$,,'`"
     81  1.2  thorpej 
     82  1.2  thorpej 	eval set -f -- "$arglist"
     83  1.2  thorpej 
     84  1.2  thorpej 	if [ $# -lt 4 ]; then
     85  1.2  thorpej 		echo syscall $syscallname not found! 1>&2
     86  1.2  thorpej 		exit 1
     87  1.2  thorpej 	fi
     88  1.1      cgd 
     89  1.2  thorpej 	syscallname=$1
     90  1.2  thorpej 	shift 2			# kill name and "ret:"
     91  1.2  thorpej 	returntype=$1
     92  1.2  thorpej 	shift 2			# kill return type and "args:"
     93  1.2  thorpej 
     94  1.2  thorpej 	cat <<- __EOF__
     95  1.2  thorpej 	/*ARGSUSED*/
     96  1.2  thorpej 	$returntype
     97  1.2  thorpej 	__EOF__
     98  1.2  thorpej 
     99  1.2  thorpej 	if [ "`eval echo -n \\$$#`" = "..." ]; then
    100  1.2  thorpej 		varargs=YES
    101  1.2  thorpej 		nargs=$(($# - 1))
    102  1.2  thorpej 	else
    103  1.2  thorpej 		varargs=NO
    104  1.2  thorpej 		nargs=$#
    105  1.2  thorpej 	fi
    106  1.2  thorpej 	nargswithva=$#
    107  1.1      cgd 
    108  1.2  thorpej 	# do ANSI C function header
    109  1.2  thorpej 	if [ $varargs = YES ]; then
    110  1.2  thorpej 		echo	"#ifdef __STDC__"
    111  1.2  thorpej 
    112  1.2  thorpej 		echo -n	"$funcname("
    113  1.2  thorpej 		i=1
    114  1.2  thorpej 		while [ $i -le $nargs ]; do
    115  1.2  thorpej 			eval echo -n \""\$$i"\"
    116  1.2  thorpej 			echo -n	" arg$i"
    117  1.2  thorpej 			if [ $i -lt $nargswithva ]; then
    118  1.2  thorpej 				echo -n	", "
    119  1.2  thorpej 			fi
    120  1.2  thorpej 			i=$(($i + 1))
    121  1.2  thorpej 		done
    122  1.2  thorpej 		if [ $varargs = YES ]; then
    123  1.2  thorpej 			echo -n "..."
    124  1.2  thorpej 		fi
    125  1.2  thorpej 		echo	")"
    126  1.1      cgd 
    127  1.2  thorpej 		# do K&R C function header
    128  1.2  thorpej 		echo	"#else"
    129  1.2  thorpej 	fi
    130  1.1      cgd 
    131  1.2  thorpej 	echo -n	"$funcname("
    132  1.2  thorpej 	i=1
    133  1.2  thorpej 	while [ $i -le $nargs ]; do
    134  1.2  thorpej 		echo -n	"arg$i"
    135  1.2  thorpej 		if [ $i -lt $nargswithva ]; then
    136  1.2  thorpej 			echo -n	", "
    137  1.2  thorpej 		fi
    138  1.2  thorpej 		i=$(($i + 1))
    139  1.2  thorpej 	done
    140  1.2  thorpej 	if [ $varargs = YES ]; then
    141  1.2  thorpej 		echo -n "va_alist"
    142  1.2  thorpej 	fi
    143  1.2  thorpej 	echo	")"
    144  1.2  thorpej 	i=1
    145  1.2  thorpej 	while [ $i -le $nargs ]; do
    146  1.2  thorpej 		eval echo -n \""        \$$i"\"
    147  1.2  thorpej 		echo	" arg$i;"
    148  1.2  thorpej 		i=$(($i + 1))
    149  1.2  thorpej 	done
    150  1.2  thorpej 	if [ $varargs = YES ]; then
    151  1.2  thorpej 		echo	"        va_dcl"
    152  1.2  thorpej 	fi
    153  1.1      cgd 
    154  1.2  thorpej 	# do function body
    155  1.2  thorpej 	if [ $varargs = YES ]; then
    156  1.2  thorpej 		echo	"#endif"
    157  1.1      cgd 	fi
    158  1.2  thorpej 	echo	"{"
    159  1.2  thorpej 	if [ "$returntype" != "void" ]; then
    160  1.2  thorpej 		echo "        return (($returntype)0);"
    161  1.2  thorpej 	fi
    162  1.2  thorpej 	echo	"}"
    163  1.2  thorpej }
    164  1.2  thorpej 
    165  1.2  thorpej trailer()
    166  1.2  thorpej {
    167  1.2  thorpej 
    168  1.2  thorpej 	cat <<- __EOF__
    169  1.2  thorpej 	/* END */
    170  1.2  thorpej 	__EOF__
    171  1.2  thorpej }
    172  1.2  thorpej 
    173  1.2  thorpej set -- `getopt no:ps: $*`
    174  1.2  thorpej 
    175  1.2  thorpej pflag=NO
    176  1.2  thorpej nflag=NO
    177  1.2  thorpej oarg=""
    178  1.2  thorpej syscallhdr=/usr/include/sys/syscall.h
    179  1.2  thorpej 
    180  1.2  thorpej if test $? -ne 0; then
    181  1.2  thorpej 	usage
    182  1.2  thorpej fi
    183  1.2  thorpej for i; do
    184  1.2  thorpej 	case "$i" in
    185  1.2  thorpej 	-n)	nflag=YES; shift;;
    186  1.2  thorpej 	-o)	oarg=$2; shift; shift;;
    187  1.2  thorpej 	-p)	pflag=YES; shift;;
    188  1.2  thorpej 	-s)	syscallhdr=$2; shift; shift;;
    189  1.2  thorpej 	--)	shift; break;;
    190  1.2  thorpej 	esac
    191  1.1      cgd done
    192  1.1      cgd 
    193  1.2  thorpej if [ $pflag = YES ] && [ $nflag = YES ]; then
    194  1.2  thorpej 	echo "$0: -n flag and -p flag may not be used together"
    195  1.2  thorpej 	echo ""
    196  1.2  thorpej 	usage
    197  1.2  thorpej fi
    198  1.2  thorpej 
    199  1.2  thorpej if [ "X$oarg" != "X" ]; then
    200  1.2  thorpej 	exec > $oarg
    201  1.2  thorpej fi
    202  1.2  thorpej 
    203  1.2  thorpej header
    204  1.2  thorpej for syscall; do
    205  1.2  thorpej 	fnname=`echo $syscall | sed -e 's,\.o$,,'`
    206  1.2  thorpej 	if [ $pflag = YES ]; then
    207  1.2  thorpej 		scname=`echo $fnname | sed -e 's,^_,,'`
    208  1.2  thorpej 	else
    209  1.2  thorpej 		scname=$fnname
    210  1.1      cgd 	fi
    211  1.2  thorpej 	syscall_stub $syscallhdr $scname $fnname
    212  1.2  thorpej 	echo ""
    213  1.1      cgd done
    214  1.2  thorpej trailer
    215  1.1      cgd 
    216  1.1      cgd exit 0
    217