#!/bin/sh # # $FreeBSD: src/usr.bin/kdump/mkioctls,v 1.15.2.5 2002/11/15 18:22:31 ru Exp $ set -e if [ "x$1" = "x-s" ]; then use_switch=1 shift else use_switch=0 fi if [ -z "$1" ]; then echo "usage: sh $0 [-s] include-dir" exit 1 fi LC_ALL=C; export LC_ALL # Build a list of headers that have ioctls in them. # XXX should we use an ANSI cpp? # XXX leave out cam/, fs/, netsmb/, # and ufs/ because they are fake softlinks ioctl_includes=` cd $1 find -s * -name '*.h' -follow | egrep -v '^(cam/)|^(fs/)|^(netsmb/)|^(ufs/)' | xargs egrep -l \ '^#[ ]*define[ ]+[A-Za-z_][A-Za-z0-9_]*[ ]+_IO[^a-z0-9_]' | awk '{printf("#include <%s>\\\\n", $1)}' ` awk -v x="$ioctl_includes" 'BEGIN {print x}' | gcc -D_KERNEL_STRUCTURES -E -I$1 -dM - | awk -v ioctl_includes="$ioctl_includes" -v use_switch="$use_switch" ' BEGIN { print "/* XXX obnoxious prerequisites. */" print "#define COMPAT_43" print "#define _KERNEL_STRUCTURES" print "#include " print "#include " print "#include " print "#include " print "#include " print "#include " print "#include " print "#include " print "#include " print "" print ioctl_includes print "const char *ioctlname(u_long);" print "" print "const char *" print "ioctlname(u_long val)" print "{" if (use_switch) print "\tswitch(val) {" } /^#[ ]*define[ ]+[A-Za-z_][A-Za-z0-9_]*[ ]+_IO/ { # find where the name starts for (i = 1; i <= NF; i++) if ($i ~ /define/) break; ++i; # if (use_switch) printf("\tcase %s:\n\t\treturn(\"%s\");\n", $i, $i); else printf("\tif (val == %s)\n\t\treturn(\"%s\");\n", $i, $i); } END { if (use_switch) print "\t}" print "\n\treturn(NULL);" print "}" } '