3 # Generates kdump_subr.c
4 # mkioctls is a special-purpose script, and works fine as it is
5 # now, so it remains independent. The idea behind how it generates
6 # its list was heavily borrowed here.
8 # Some functions here are automatically generated. This can mean
9 # the user will see unusual kdump output or errors while building
10 # if the underlying .h files are changed significantly.
13 # AUTO: Completely auto-generated with either the "or" or the "switch"
15 # AUTO - Special: Generated automatically, but with some extra commands
16 # that the auto_*_type() functions are inappropriate for.
17 # MANUAL: Manually entered and must therefore be manually updated.
19 # $FreeBSD: src/usr.bin/kdump/mksubr,v 1.9 2007/04/09 19:16:24 emaste Exp $
23 LC_ALL
=C
; export LC_ALL
27 echo "usage: sh $0 include-dir"
33 # Automatically generates a C function that will print out the
34 # numeric input as a pipe-delimited string of the appropriate
36 # S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH
37 # The XOR is necessary to prevent including the "0"-value in every
54 egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
55 $include_dir/$file | \
56 awk '{ for (i = 1; i <= NF; i++) \
60 printf "\tif(!((arg>0)^((%s)>0)))\n\t\tif_print_or(arg, %s, or);\n", $i, $i }'
64 printf("<invalid>%ld", (long)arg);
71 # Automatically generates a C function used when the argument
72 # maps to a single, specific #definition
75 local name
grep file noinvdef
88 egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
89 $include_dir/$file | \
90 awk '{ for (i = 1; i <= NF; i++) \
94 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i }'
95 if [ -z "$noinvdef" ]; then
97 default: /* Should not reach */
98 printf("<invalid=%ld>", (long)arg);
106 printf("%ld", (long)arg);
115 # Automatically generates a C function used when the argument
116 # maps to a #definition
130 egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
131 $include_dir/$file | \
132 awk '{ printf "\t"; \
135 printf "if (arg == %s) \n\t\tprintf(\"%s\");\n", $2, $2 }'
137 else /* Should not reach */
138 printf("<invalid=%ld>", (long)arg);
147 #define _KERNEL_STRUCTURES
151 #include <sys/fcntl.h>
152 #include <sys/stat.h>
153 #include <sys/unistd.h>
154 #include <sys/mman.h>
155 #include <sys/wait.h>
156 #include <sys/socket.h>
157 #include <netinet/in.h>
158 #include <sys/param.h>
159 #include <sys/mount.h>
160 #include <sys/resource.h>
161 #include <sys/reboot.h>
163 #include <sys/usched.h>
164 #include <sys/linker.h>
165 #include <sys/extattr.h>
170 #include <sys/rtprio.h>
172 #include <vfs/ufs/quota.h>
173 #include <sys/kenv.h>
174 #include <sys/checkpoint.h>
175 #include <sys/procctl.h>
176 #include <sys/mountctl.h>
177 #include <sys/varsym.h>
179 #include "kdump_subr.h"
182 * These are simple support macros. print_or utilizes a variable
183 * defined in the calling function to track whether or not it should
184 * print a logical-OR character ('|') before a string. if_print_or
185 * simply handles the necessary "if" statement used in many lines
188 #define print_or(str,orflag) do { \\
189 if (orflag) putchar('|'); else orflag = 1; \\
192 #define if_print_or(i,flag,orflag) do { \\
193 if ((i & flag) == flag) \\
194 print_or(#flag,orflag); } \\
198 extern char *signames[]; /* from kdump.c */
202 if (sig > 0 && sig < NSIG && signames[sig] != NULL)
203 printf("SIG%s",signames[sig]);
205 printf("SIG %d", sig);
243 default: /* Should not reach */
244 printf("<invalid=%ld>", (long)cmd);
250 shmctlname (int cmd) {
261 default: /* Should not reach */
262 printf("<invalid=%ld>", (long)cmd);
268 semgetname (int flag) {
270 if_print_or(flag, SEM_R, or);
271 if_print_or(flag, SEM_A, or);
272 if_print_or(flag, (SEM_R>>3), or);
273 if_print_or(flag, (SEM_A>>3), or);
274 if_print_or(flag, (SEM_R>>6), or);
275 if_print_or(flag, (SEM_A>>6), or);
281 * Only used by SYS_open. Unless O_CREAT is set in flags, the
282 * mode argument is unused (and often bogus and misleading).
285 flagsandmodename (int flags, int mode, int decimal) {
288 if ((flags & O_CREAT) == O_CREAT) {
292 printf("<unused>%ld", (long)mode);
294 printf("<unused>%#lx", (long)mode);
302 * [g|s]etsockopt's level argument can either be SOL_SOCKET or a value
303 * referring to a line in /etc/protocols . It might be appropriate
304 * to use getprotoent(3) here.
307 sockoptlevelname (int level, int decimal)
309 if (level == SOL_SOCKET) {
310 printf("SOL_SOCKET");
313 printf("%ld", (long)level);
315 printf("%#lx", (long)level);
322 auto_or_type
"modename" "S_[A-Z]+[[:space:]]+[0-6]{7}" "sys/stat.h"
323 auto_or_type
"flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h"
324 auto_or_type
"accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h"
325 auto_or_type
"mmapprotname" "PROT_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
326 auto_or_type
"mmapflagsname" "MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
327 auto_or_type
"wait4optname" "W[A-Z]+[[:space:]]+[0-9]+" "sys/wait.h"
328 auto_or_type
"getfsstatflagsname" "MNT_[A-Z]+[[:space:]]+0x[0-9][0-9][0-9][0-9][^0-9]" "sys/mount.h"
329 auto_or_type
"mountflagsname" "MNT_[A-Z]+[[:space:]]+0x[0-9][0-9][0-9][0-9][0-9]+" "sys/mount.h"
330 auto_or_type
"rebootoptname" "RB_[A-Z]+[[:space:]]+0x[0-9]+" "sys/reboot.h"
331 auto_or_type
"flockname" "LOCK_[A-Z]+[[:space:]]+0x[0-9]+" "sys/fcntl.h"
332 auto_or_type
"mlockallname" "MCL_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
333 auto_or_type
"shmatname" "SHM_[A-Z]+[[:space:]]+[0-9]{6}+" "sys/shm.h"
334 auto_or_type
"rforkname" "RF[A-Z]+[[:space:]]+\([0-9]+<<[0-9]+\)" "sys/unistd.h"
335 auto_or_type
"chflagsname" "[SU]F_[A-Z]+[[:space:]]+0x[0-9]+" "sys/stat.h"
336 auto_or_type
"atflagsname" "AT_[A-Z_]+[[:space:]]+[1-9]+[0-9]*" "sys/fcntl.h"
338 auto_switch_type
"whencename" "SEEK_[A-Z]+[[:space:]]+[0-9]+" "sys/unistd.h"
339 auto_switch_type
"rlimitname" "RLIMIT_[A-Z]+[[:space:]]+[0-9]+" "sys/resource.h"
340 auto_switch_type
"shutdownhowname" "SHUT_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
341 auto_switch_type
"prioname" "PRIO_[A-Z]+[[:space:]]+[0-9]" "sys/resource.h"
342 auto_switch_type
"madvisebehavname" "_?MADV_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
343 auto_switch_type
"msyncflagsname" "MS_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
344 auto_switch_type
"schedpolicyname" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sched.h"
345 auto_switch_type
"extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h"
346 auto_switch_type
"kldsymcmdname" "KLDSYM_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
347 auto_switch_type
"sendfileflagsname" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
348 auto_switch_type
"acltypename" "ACL_TYPE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/acl.h"
349 auto_switch_type
"sigprocmaskhowname" "SIG_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
350 auto_switch_type
"lio_listioname" "LIO_(NO)?WAIT[[:space:]]+[0-9]+" "aio.h"
351 auto_switch_type
"minheritname" "INHERIT_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
352 auto_switch_type
"quotactlname" "Q_[A-Z]+[[:space:]]+0x[0-9]+" "ufs/ufs/quota.h"
353 auto_if_type
"sockdomainname" "PF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
354 auto_if_type
"sockipprotoname" "IPPROTO_[[:alnum:]]+[[:space:]]+" "netinet/in.h"
355 auto_switch_type
"sockoptname" "SO_[A-Z]+[[:space:]]+0x[0-9]+" "sys/socket.h"
356 auto_switch_type
"socktypename" "SOCK_[A-Z]+[[:space:]]+[1-9]+[0-9]*" "sys/socket.h"
357 auto_switch_type
"clockidname" "CLOCK_[[:alnum:]]+" "time.h" "noinvdef"
358 auto_switch_type
"pathconfname" "_PC_[[:alnum:]]+" "sys/unistd.h"
359 auto_switch_type
"uschedcmdname" "USCHED_[[:alnum:]]+" "sys/usched.h"
360 auto_switch_type
"ckpttypename" "CKPT_[[:alnum:]]+" "sys/checkpoint.h"
361 auto_switch_type
"procctlcmdname" "PROC_[[:alnum:]]+" "sys/procctl.h"
362 auto_switch_type
"mountctlopname" "MOUNTCTL_[[:alnum:]]+" "sys/mountctl.h"
363 auto_switch_type
"varsymlvlname" "VARSYM_[A-Z]+[[:space:]]+[1-9]+[0-9]*" "sys/varsym.h"
368 * F_ is used to specify fcntl commands as well as arguments. Both sets are
369 * grouped in fcntl.h, and this awk script grabs the first group.
372 fcntlcmdname (int cmd, int arg, int decimal)
376 egrep "^#[[:space:]]*define[[:space:]]+F_[A-Z0-9_]+[[:space:]]+[0-9]+[[:space:]]*" \
377 $include_dir/sys
/fcntl.h | \
378 awk 'BEGIN { o=0 } { for (i = 1; i <= NF; i++) \
383 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i; \
388 default: /* Should not reach */
389 printf("<invalid=%ld>", (long)cmd);
392 if (cmd == F_GETFD || cmd == F_SETFD) {
393 if (arg == FD_CLOEXEC)
394 printf("FD_CLOEXEC");
399 printf("<invalid>%ld", (long)arg);
401 printf("<invalid>%#lx", (long)arg);
403 } else if (cmd == F_SETFL) {
407 printf("%ld", (long)arg);
409 printf("%#lx", (long)arg);
416 * The only reason this is not fully automated is due to the
417 * grep -v RTP_PRIO statement. A better egrep line should
418 * make this capable of being a auto_switch_type() function.
421 rtprioname (int func)
425 egrep "^#[[:space:]]*define[[:space:]]+RTP_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" \
426 $include_dir/sys
/rtprio.h |
grep -v RTP_PRIO | \
427 awk '{ for (i = 1; i <= NF; i++) \
431 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i }'
433 default: /* Should not reach */
434 printf("<invalid=%ld>", (long)func);
441 * The send and recv functions have a flags argument which can be
442 * set to 0. There is no corresponding #define. The auto_ functions
443 * detect this as "invalid", which is incorrect here.
446 sendrecvflagsname (int flags)
455 printf("%#x<", flags);
457 egrep "^#[[:space:]]*define[[:space:]]+MSG_[A-Z_]+[[:space:]]+0x[0-9]+[[:space:]]*" $include_dir/sys
/socket.h | \
458 awk '{ for (i = 1; i <= NF; i++) \
462 printf "\tif(!((flags>0)^((%s)>0)))\n\t\tif_print_or(flags, %s, or);\n", $i, $i }'
470 * The only reason this is not fully automated is due to the
471 * grep -vw ... statement. A better egrep line should
472 * make this capable of being a auto_switch_type() function.
475 kenvactname (int act)
479 egrep "^#[[:space:]]*define[[:space:]]+KENV_[A-Z]+[[:space:]]+[0-9]+[[:space:]]*" \
480 $include_dir/sys
/kenv.h |
grep -vw -e KENV_MNAMELEN
-e KENV_MVALLEN | \
481 awk '{ for (i = 1; i <= NF; i++) \
485 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i }'
487 default: /* Should not reach */
488 printf("<invalid=%ld>", (long)act);