11.14Schristos#!/bin/sh
21.57Sroy#	$NetBSD: mkioctls,v 1.57 2020/09/12 01:36:26 roy 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.37Sapb
381.38Sapb: ${AWK:=awk}
391.37Sapb: ${CC:=cc}
401.38Sapb: ${SED:=sed}
411.37Sapb
421.16Schristosecho "/* Automatically generated file, do not edit! */"
431.21Schristos#echo "#define const" 	# XXX: timepps lossage
441.14Schristosecho "#define COMPAT_43"
451.35Sjoergecho "#define COMPAT_FREEBSD_NET80211"
461.14Schristosecho "struct lwp;"
471.24Schristosecho "struct crap { int _xxx; };" # XXX arm video lossage
481.24Schristosecho "typedef struct crap videomemory_t;" # XXX arm video lossage
491.24Schristosecho "typedef struct crap RF_AccTotals_t;" # XXX Raidframe lossage
501.24Schristosecho "struct rf_test_acc { int _xxx; };" # XXX Raidframe lossage
511.42Schristosecho "struct map_info { int _xxx[22]; };" # XXX Xorg lossage
521.24Schristosecho "#include <stdio.h>"
531.14Schristosecho "#include <sys/types.h>"
541.14Schristosecho "#include <sys/param.h>"
551.51Smrgecho "#include <sys/mutex.h>"
561.29Sheecho "#ifndef NBPG"
571.29Sheecho "#define NBPG 4096 /* workaround / dummy for sparc */"
581.29Sheecho "#endif /* NBPG */"
591.14Schristosecho "#include <sys/disk.h>"
601.17Shannkenecho "#include <sys/dkbad.h>"
611.14Schristosecho "#include <sys/mount.h>"
621.14Schristosecho "#include <sys/termios.h>"
631.16Schristosecho "#include <sys/disklabel.h>"
641.43Smattecho "#include <sys/exec_elf.h>"
651.14Schristosecho "#include <net/if.h>"
661.24Schristosecho "#include <net/if_ether.h>"
671.14Schristosecho "#include <net/route.h>"
681.14Schristosecho "#include <net/ppp_defs.h>"
691.14Schristosecho "#include <netinet/in.h>"
701.57Sroyecho "#include <netinet/in_var.h>"
711.14Schristosecho "#include <netinet/in_systm.h>"
721.14Schristosecho "#include <netinet/ip.h>"
731.14Schristosecho "#include <netinet/ip_mroute.h>"
741.14Schristosecho "#include <netinet/ip_compat.h>"
751.14Schristosecho "#include <net80211/ieee80211.h>"
761.24Schristosecho "#include <net80211/ieee80211_radiotap.h>"
771.24Schristosecho "#include <netinet6/in6_var.h>"
781.24Schristosecho "#include <netinet6/nd6.h>"
791.24Schristosecho "#include <dev/ic/hd44780reg.h>"
801.24Schristosecho "#include <dev/pci/mlyreg.h>"
811.24Schristosecho "#include <prop/proplib.h>"
821.53Srmindecho "#include <nv.h>"
831.41Sdslecho
841.37Sapb
851.46Schristos# kernel headers <sys/*.h> and <net/*.h> should not include stdbool.h
861.46Schristos# but they do; then xf86Opt.h needs a bool struct field.
871.46Schristos
881.46Schristosneedundef=true
891.14Schristosfor i
901.14Schristosdo
911.46Schristos	case $i in
921.46Schristos	*X11*)
931.46Schristos		if $needundef; then
941.46Schristos			echo "#undef bool"
951.46Schristos			needundef=false;
961.46Schristos		fi;;
971.46Schristos	esac
981.14Schristos	echo "#include <$i>"
991.52Schristosdone | ${SED} -e "s,${DESTDIR}/usr/include/,,g" \
1001.52Schristos	-e "s,${DESTDIR}/usr/X11R7/include/,,g" \
1011.52Schristos	-e "s,${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common/,,g"
1021.14Schristos
1031.46Schristosif ! $needundef; then
1041.46Schristos    echo "#define bool _Bool"
1051.46Schristosfi
1061.46Schristos
1071.52Schristos${CC} -E -nostdinc -isystem ${DESTDIR}/usr/include ${CPPFLAGS} -dM "${@}" | \
1081.52Schristos    ${AWK} '
1091.1ScgdBEGIN {
1101.17Shannken	keep["SLIOCGUNIT"] = 1;	# Same as PPPIOCGASYNCMAP
1111.19Schristos	keep["TUNSLMODE"] = 1;	# Same as PPPIOCGASYNCMAP
1121.17Shannken	keep["SIOCRMNAT"] = 1;	# Same as SIOCRMAFR
1131.17Shannken	keep["SIOCADNAT"] = 1;	# Same as SIOCADAFR
1141.17Shannken	keep["SIOCDELST"] = 1;	# Same as SIOCRMNAT
1151.22Schristos	keep["SIOCPROXY"] = 1; # Same as SIOCLOOKUPSTAT
1161.17Shannken	keep["CHIOGPICKER"] = 1; # Same as CDIOREADTOCHEADER
1171.20Schristos	keep["KBDSTPMAT"] = 1;	# Same as LMREADY, pcvt is gone so ok.
1181.24Schristos	keep["SIOCSLOWAT"] = 1;	# Same as SATIOSBUFSIZE
1191.24Schristos	keep["UTOPPYIOTURBO"] = 1; # Same as OTIOCSETD
1201.24Schristos	keep["TIOCHPCL"] = 1; # Same as UTOPPYIOCANCEL
1211.24Schristos	keep["TIOCCBRK"] = 1; # Same as CONSOLE_X_MODE_OFF
1221.24Schristos	keep["TIOCSDTR"] = 1; # Same as CONSOLE_X_MODE_ON
1231.24Schristos	keep["APM_IOC_SUSPEND"] = 1; # Same as AGPIOC_RELEASE
1241.24Schristos	keep["APM_IOC_STANDBY"] = 1; # Same as AGPIOC_ACQUIRE
1251.24Schristos	keep["BTDEV_GETINFO"] = 1; # Same as BTSCO_GETINFO
1261.24Schristos	keep["BTHSET_GETINFO"] = 1; # Same as BTSCO_GETINFO
1271.24Schristos	keep["JOY_GET_X_OFFSET"] = 1; # Same as GDT_IOCTL_CTRCNT
1281.24Schristos	keep["JOY_GET_X_OFFSET"] = 1; # Same as GDT_IOCTL_CTRCNT
1291.24Schristos	keep["SCIOC_USE_ADF"] = 1; # Same as STICIO_STARTQ
1301.24Schristos	keep["SCBUSIOLLSCAN"] = 1; # Same as USB_DISCOVER
1311.26Schristos	keep["OPIOCGETNEXT"] = 1; # Same as OFIOCGETNEXT
1321.26Schristos	keep["OPIOCGET"] = 1; # Same as OFIOCGET
1331.26Schristos	keep["OPIOCGETCHILD"] = 1; # Same as OFIOCGETCHILD
1341.26Schristos	keep["OPIOCFINDDEVICE"] = 1; # Same as OFIOCFINDDEVICE
1351.26Schristos	keep["OPIOCGETOPTNODE"] = 1; # Same as OFIOCGETOPTNODE
1361.26Schristos	keep["OPIOCNEXTPROP"] = 1; # Same as OFIOCNEXTPROP
1371.26Schristos	keep["OPIOCSET"] = 1; # Same as OFIOCSET
1381.27She	keep["MBPPIOCSPARAM"] = 1; # Same as PARIOCSPARAM
1391.27She	keep["MBPPIOCGPARAM"] = 1; # Same as PARIOCGPARAM
1401.28She	keep["CLOCKCTL_ADJTIME"] = 1; # Same as TCTRL_MODEM_PWR
1411.32She	keep["OFIOCNEXTPROP"] = 1; # Same as PNVIOCGETNUMGE
1421.32She	keep["OFIOCGET"] = 1; # Same as PNVIOCGET
1431.35Sjoerg	keep["SIOCPHASE2"] = 1; # Same as GRESADDRS
1441.35Sjoerg	keep["I4B_CTL_CLR_CHIPSTAT"] = 1; # Same as CLOCKCTL_NTP_ADJTIME
1451.35Sjoerg	keep["STICIO_STARTQ"] = 1; # Same as SPKRTONE
1461.35Sjoerg	keep["STICIO_RESET860"] = 1; # Same as SCIOCRESTART
1471.35Sjoerg	keep["STICIO_START860"] = 1; # Same as SPKRTUNE
1481.35Sjoerg	keep["I4B_CTL_SET_DEBUG"] = 1; # Same as CLOCKCTL_SETTIMEOFDAY
1491.35Sjoerg
1501.35Sjoerg	keep["SIOCGETSGCNT_IN6"] = 1; # Type sioc_sg_req6 not exported
1511.35Sjoerg	keep["SIOCGPRLST_IN6"] = 1; Type in6_oprlist not exported
1521.35Sjoerg	keep["SIOCGETMIFCNT_IN6"] = 1; Type sioc_mif_req6 not exported
1531.24Schristos
1541.24Schristos	i = 1;
1551.24Schristos	altqt[i++] = "RED";
1561.24Schristos	altqt[i++] = "BLUE";
1571.24Schristos	altqt[i++] = "RIO";
1581.24Schristos	altqt[i++] = "FIFOQ";
1591.24Schristos	altqt[i++] = "HFSC";
1601.24Schristos	altqt[i++] = "PRIQ";
1611.24Schristos	altqt[i++] = "WFQ";
1621.24Schristos	altqt[i++] = "CBQ";
1631.24Schristos	altqt[i++] = "CNDR";
1641.24Schristos
1651.24Schristos	i = 1;
1661.24Schristos	altqf[i++] = "IF_ATTACH";
1671.24Schristos	altqf[i++] = "DISABLE";
1681.24Schristos	altqf[i++] = "ENABLE";
1691.24Schristos	altqf[i++] = "CONFIG";
1701.24Schristos	altqf[i++] = "GETSTATS";
1711.24Schristos	altqf[i++] = "IF_DETACH";
1721.24Schristos	altqf[i++] = "ADD_CLASS";
1731.24Schristos	altqf[i++] = "DEL_CLASS";
1741.24Schristos	altqf[i++] = "MOD_CLASS";
1751.24Schristos	altqf[i++] = "ADD_FILTER";
1761.24Schristos	altqf[i++] = "DEL_FILTER";
1771.24Schristos	altqf[i++] = "CLEAR_HIERARCHY";
1781.24Schristos
1791.24Schristos	for (t in altqt) {
1801.24Schristos		for (f in altqf) {
1811.24Schristos			keep[altqt[t] "_" altqf[f]] = 1;
1821.24Schristos		}
1831.24Schristos	}
1841.16Schristos
1851.10Slukem	print ""
1861.21Schristos	print "#include \"ktrace.h\""
1871.1Scgd	print ""
1881.21Schristos	print "const char *"
1891.21Schristos	print "ioctlname(u_long val)"
1901.1Scgd	print "{"
1911.1Scgd	print ""
1921.16Schristos	print "\tswitch (val) {\n"
1931.1Scgd}
1941.1Scgd
1951.42Schristos/^#[ 	]*define[ 	]*[A-Z0-9_]*[ 	]*[D]*[R]*[M]*_IO[W]*[R]*[ 	]*\(/ {
1961.1Scgd	
1971.1Scgd	# find where the name starts
1981.1Scgd	for (i = 1; i <= NF; i++)
1991.1Scgd		if ($i ~ /define/)
2001.1Scgd			break;
2011.1Scgd	++i;
2021.54Schristos	name = $i;
2031.54Schristos	printf("/* %s [%s] */\n", $0, name);
2041.1Scgd	# 
2051.54Schristos	if (name !~ /^[A-Z0-9a-z_]*$/)
2061.54Schristos		next;
2071.54Schristos	if (keep[name] == 1)
2081.54Schristos		next;
2091.54Schristos	keep[name] = 1;
2101.54Schristos	printf("\t#ifdef %s\n", name);
2111.54Schristos	printf("\tcase %s:\n\t\treturn \"%s\";\n", name, name);
2121.54Schristos	printf("\t#endif /* %s */\n", $i);
2131.54Schristos	name = name;
2141.54Schristos	names[name] = name;
2151.54Schristos	exprs[name] = "";
2161.54Schristos	files[name] = filename;
2171.54Schristos	do {
2181.54Schristos		++i;
2191.54Schristos		exprs[name] = exprs[name] " " $i;
2201.54Schristos	} while ($i !~ /.*)/);
2211.54Schristos	exprs[name] = substr(exprs[name], 2);
2221.1Scgd}
2231.1ScgdEND {
2241.16Schristos	print "\tdefault:\n\t\treturn NULL;\n"
2251.16Schristos	print "\t}\n"
2261.1Scgd	print "}"
2271.54Schristos	print "const struct ioctlinfo ioctlinfo[] = {\n";
2281.54Schristos	for (name in names) {
2291.54Schristos		printf("\t{ .name = \"%s\", .expr = \"%s\", .value = %s },\n",
2301.54Schristos		    names[name], exprs[name], names[name]);
2311.54Schristos	}
2321.54Schristos	print "\t{ .name = NULL, .expr = NULL, .value = 0 },\n};";
2331.1Scgd}
2341.5Smycroft'
235