mkioctls revision 1.36
11.14Schristos#!/bin/sh
21.36Schristos#	$NetBSD: mkioctls,v 1.36 2008/03/23 18:53:51 christos Exp $
31.7Sjtc#
41.7Sjtc# Copyright (c) 1994
51.7Sjtc#	The Regents of the University of California.  All rights reserved.
61.7Sjtc#
71.7Sjtc# Redistribution and use in source and binary forms, with or without
81.7Sjtc# modification, are permitted provided that the following conditions
91.7Sjtc# are met:
101.7Sjtc# 1. Redistributions of source code must retain the above copyright
111.7Sjtc#    notice, this list of conditions and the following disclaimer.
121.7Sjtc# 2. Redistributions in binary form must reproduce the above copyright
131.7Sjtc#    notice, this list of conditions and the following disclaimer in the
141.7Sjtc#    documentation and/or other materials provided with the distribution.
151.7Sjtc# 3. All advertising materials mentioning features or use of this software
161.7Sjtc#    must display the following acknowledgement:
171.7Sjtc#	This product includes software developed by the University of
181.7Sjtc#	California, Berkeley and its contributors.
191.7Sjtc# 4. Neither the name of the University nor the names of its contributors
201.7Sjtc#    may be used to endorse or promote products derived from this software
211.7Sjtc#    without specific prior written permission.
221.7Sjtc#
231.7Sjtc# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
241.7Sjtc# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
251.7Sjtc# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
261.7Sjtc# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
271.7Sjtc# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
281.7Sjtc# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
291.7Sjtc# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
301.7Sjtc# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
311.7Sjtc# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
321.7Sjtc# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
331.7Sjtc# SUCH DAMAGE.
341.7Sjtc#
351.7Sjtc#	@(#)mkioctls	8.2 (Berkeley) 4/28/95
361.3Smycroft#
371.16Schristosecho "/* Automatically generated file, do not edit! */"
381.21Schristos#echo "#define const" 	# XXX: timepps lossage
391.14Schristosecho "#define COMPAT_43"
401.35Sjoergecho "#define COMPAT_FREEBSD_NET80211"
411.14Schristosecho "struct lwp;"
421.24Schristosecho "struct crap { int _xxx; };" # XXX arm video lossage
431.24Schristosecho "typedef struct crap videomemory_t;" # XXX arm video lossage
441.24Schristosecho "typedef struct crap RF_AccTotals_t;" # XXX Raidframe lossage
451.24Schristosecho "struct rf_test_acc { int _xxx; };" # XXX Raidframe lossage
461.24Schristosecho "#include <stdio.h>"
471.14Schristosecho "#include <sys/types.h>"
481.14Schristosecho "#include <sys/param.h>"
491.29Sheecho "#ifndef NBPG"
501.29Sheecho "#define NBPG 4096 /* workaround / dummy for sparc */"
511.29Sheecho "#endif /* NBPG */"
521.14Schristosecho "#include <sys/disk.h>"
531.17Shannkenecho "#include <sys/dkbad.h>"
541.14Schristosecho "#include <sys/mount.h>"
551.14Schristosecho "#include <sys/termios.h>"
561.16Schristosecho "#include <sys/disklabel.h>"
571.14Schristosecho "#include <net/if.h>"
581.24Schristosecho "#include <net/if_ether.h>"
591.14Schristosecho "#include <net/route.h>"
601.14Schristosecho "#include <net/ppp_defs.h>"
611.14Schristosecho "#include <netinet/in.h>"
621.14Schristosecho "#include <netinet/in_systm.h>"
631.14Schristosecho "#include <netinet/ip.h>"
641.14Schristosecho "#include <netinet/ip_mroute.h>"
651.14Schristosecho "#include <netinet/ip_compat.h>"
661.14Schristosecho "#include <net80211/ieee80211.h>"
671.24Schristosecho "#include <net80211/ieee80211_radiotap.h>"
681.24Schristosecho "#include <netinet6/in6_var.h>"
691.24Schristosecho "#include <netinet6/nd6.h>"
701.14Schristosecho "#include <netiso/iso.h>"
711.24Schristosecho "#include <dev/ic/hd44780reg.h>"
721.24Schristosecho "#include <dev/pci/mlyreg.h>"
731.24Schristosecho "#include <prop/proplib.h>"
741.14Schristosfor i
751.14Schristosdo
761.14Schristos	echo "#include <$i>"
771.14Schristosdone | sed -e "s,${DESTDIR}/usr/include/,,g"
781.14Schristos
791.36Schristos${CC:-cc} -E -nostdinc -idirafter ${DESTDIR}/usr/include -dM ${1+"$@"} | \
801.36Schristos${AWK:-awk} '
811.1ScgdBEGIN {
821.17Shannken	keep["SLIOCGUNIT"] = 1;	# Same as PPPIOCGASYNCMAP
831.19Schristos	keep["TUNSLMODE"] = 1;	# Same as PPPIOCGASYNCMAP
841.17Shannken	keep["SIOCRMNAT"] = 1;	# Same as SIOCRMAFR
851.17Shannken	keep["SIOCADNAT"] = 1;	# Same as SIOCADAFR
861.17Shannken	keep["SIOCDELST"] = 1;	# Same as SIOCRMNAT
871.22Schristos	keep["SIOCPROXY"] = 1; # Same as SIOCLOOKUPSTAT
881.17Shannken	keep["CHIOGPICKER"] = 1; # Same as CDIOREADTOCHEADER
891.20Schristos	keep["KBDSTPMAT"] = 1;	# Same as LMREADY, pcvt is gone so ok.
901.24Schristos	keep["SIOCSLOWAT"] = 1;	# Same as SATIOSBUFSIZE
911.24Schristos	keep["UTOPPYIOTURBO"] = 1; # Same as OTIOCSETD
921.24Schristos	keep["TIOCHPCL"] = 1; # Same as UTOPPYIOCANCEL
931.24Schristos	keep["TIOCCBRK"] = 1; # Same as CONSOLE_X_MODE_OFF
941.24Schristos	keep["TIOCSDTR"] = 1; # Same as CONSOLE_X_MODE_ON
951.24Schristos	keep["APM_IOC_SUSPEND"] = 1; # Same as AGPIOC_RELEASE
961.24Schristos	keep["APM_IOC_STANDBY"] = 1; # Same as AGPIOC_ACQUIRE
971.24Schristos	keep["BTDEV_GETINFO"] = 1; # Same as BTSCO_GETINFO
981.24Schristos	keep["BTHSET_GETINFO"] = 1; # Same as BTSCO_GETINFO
991.24Schristos	keep["JOY_GET_X_OFFSET"] = 1; # Same as GDT_IOCTL_CTRCNT
1001.24Schristos	keep["JOY_GET_X_OFFSET"] = 1; # Same as GDT_IOCTL_CTRCNT
1011.24Schristos	keep["SCIOC_USE_ADF"] = 1; # Same as STICIO_STARTQ
1021.24Schristos	keep["SCBUSIOLLSCAN"] = 1; # Same as USB_DISCOVER
1031.26Schristos	keep["OPIOCGETNEXT"] = 1; # Same as OFIOCGETNEXT
1041.26Schristos	keep["OPIOCGET"] = 1; # Same as OFIOCGET
1051.26Schristos	keep["OPIOCGETCHILD"] = 1; # Same as OFIOCGETCHILD
1061.26Schristos	keep["OPIOCFINDDEVICE"] = 1; # Same as OFIOCFINDDEVICE
1071.26Schristos	keep["OPIOCGETOPTNODE"] = 1; # Same as OFIOCGETOPTNODE
1081.26Schristos	keep["OPIOCNEXTPROP"] = 1; # Same as OFIOCNEXTPROP
1091.26Schristos	keep["OPIOCSET"] = 1; # Same as OFIOCSET
1101.27She	keep["MBPPIOCSPARAM"] = 1; # Same as PARIOCSPARAM
1111.27She	keep["MBPPIOCGPARAM"] = 1; # Same as PARIOCGPARAM
1121.28She	keep["CLOCKCTL_ADJTIME"] = 1; # Same as TCTRL_MODEM_PWR
1131.32She	keep["OFIOCNEXTPROP"] = 1; # Same as PNVIOCGETNUMGE
1141.32She	keep["OFIOCGET"] = 1; # Same as PNVIOCGET
1151.35Sjoerg	keep["SIOCPHASE2"] = 1; # Same as GRESADDRS
1161.35Sjoerg	keep["I4B_CTL_CLR_CHIPSTAT"] = 1; # Same as CLOCKCTL_NTP_ADJTIME
1171.35Sjoerg	keep["STICIO_STARTQ"] = 1; # Same as SPKRTONE
1181.35Sjoerg	keep["STICIO_RESET860"] = 1; # Same as SCIOCRESTART
1191.35Sjoerg	keep["STICIO_START860"] = 1; # Same as SPKRTUNE
1201.35Sjoerg	keep["I4B_CTL_SET_DEBUG"] = 1; # Same as CLOCKCTL_SETTIMEOFDAY
1211.35Sjoerg
1221.35Sjoerg	keep["SIOCGETSGCNT_IN6"] = 1; # Type sioc_sg_req6 not exported
1231.35Sjoerg	keep["SIOCGPRLST_IN6"] = 1; Type in6_oprlist not exported
1241.35Sjoerg	keep["SIOCGETMIFCNT_IN6"] = 1; Type sioc_mif_req6 not exported
1251.24Schristos
1261.24Schristos	i = 1;
1271.24Schristos	altqt[i++] = "RED";
1281.24Schristos	altqt[i++] = "BLUE";
1291.24Schristos	altqt[i++] = "RIO";
1301.24Schristos	altqt[i++] = "FIFOQ";
1311.24Schristos	altqt[i++] = "HFSC";
1321.24Schristos	altqt[i++] = "PRIQ";
1331.24Schristos	altqt[i++] = "WFQ";
1341.24Schristos	altqt[i++] = "CBQ";
1351.24Schristos	altqt[i++] = "CNDR";
1361.24Schristos
1371.24Schristos	i = 1;
1381.24Schristos	altqf[i++] = "IF_ATTACH";
1391.24Schristos	altqf[i++] = "DISABLE";
1401.24Schristos	altqf[i++] = "ENABLE";
1411.24Schristos	altqf[i++] = "CONFIG";
1421.24Schristos	altqf[i++] = "GETSTATS";
1431.24Schristos	altqf[i++] = "IF_DETACH";
1441.24Schristos	altqf[i++] = "ADD_CLASS";
1451.24Schristos	altqf[i++] = "DEL_CLASS";
1461.24Schristos	altqf[i++] = "MOD_CLASS";
1471.24Schristos	altqf[i++] = "ADD_FILTER";
1481.24Schristos	altqf[i++] = "DEL_FILTER";
1491.24Schristos	altqf[i++] = "CLEAR_HIERARCHY";
1501.24Schristos
1511.24Schristos	for (t in altqt) {
1521.24Schristos		for (f in altqf) {
1531.24Schristos			keep[altqt[t] "_" altqf[f]] = 1;
1541.24Schristos		}
1551.24Schristos	}
1561.16Schristos
1571.10Slukem	print ""
1581.21Schristos	print "#include \"ktrace.h\""
1591.1Scgd	print ""
1601.21Schristos	print "const char *"
1611.21Schristos	print "ioctlname(u_long val)"
1621.1Scgd	print "{"
1631.1Scgd	print ""
1641.16Schristos	print "\tswitch (val) {\n"
1651.1Scgd}
1661.1Scgd
1671.35Sjoerg/^#[ 	]*define[ 	]*[A-Z0-9_]*[ 	]*_IO[W]*[R]*[ 	]*\(/ {
1681.1Scgd	
1691.1Scgd	# find where the name starts
1701.1Scgd	for (i = 1; i <= NF; i++)
1711.1Scgd		if ($i ~ /define/)
1721.1Scgd			break;
1731.1Scgd	++i;
1741.19Schristos	printf("/* %s [%s] */\n", $0, $i);
1751.1Scgd	# 
1761.19Schristos	if ($i ~ /^[A-Z0-9a-z_]*$/) {
1771.19Schristos		if (keep[$i] != 1) {
1781.36Schristos			printf("\t#ifdef %s\n", $i);
1791.19Schristos			printf("\tcase %s:\n\t\treturn \"%s\";\n", $i, $i);
1801.36Schristos			printf("\t#endif /* %s */\n", $i);
1811.19Schristos			keep[$i] = 1;
1821.19Schristos		}
1831.16Schristos	}
1841.1Scgd}
1851.1ScgdEND {
1861.16Schristos	print "\tdefault:\n\t\treturn NULL;\n"
1871.16Schristos	print "\t}\n"
1881.1Scgd	print "}"
1891.1Scgd}
1901.5Smycroft'
191