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
87 egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
88 $include_dir/$file | \
89 awk '{ for (i = 1; i <= NF; i++) \
93 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i }'
95 default: /* Should not reach */
96 printf("<invalid=%ld>", (long)arg);
104 # Automatically generates a C function used when the argument
105 # maps to a #definition
119 egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
120 $include_dir/$file | \
121 awk '{ printf "\t"; \
124 printf "if (arg == %s) \n\t\tprintf(\"%s\");\n", $2, $2 }'
126 else /* Should not reach */
127 printf("<invalid=%ld>", (long)arg);
136 #define _KERNEL_STRUCTURES
139 #include <sys/fcntl.h>
140 #include <sys/stat.h>
141 #include <sys/unistd.h>
142 #include <sys/mman.h>
143 #include <sys/wait.h>
144 #include <sys/socket.h>
145 #include <netinet/in.h>
146 #include <sys/param.h>
147 #include <sys/mount.h>
148 #include <sys/ptrace.h>
149 #include <sys/resource.h>
150 #include <sys/reboot.h>
152 #include <sys/linker.h>
153 #include <sys/extattr.h>
158 #include <sys/rtprio.h>
160 #include <vfs/ufs/quota.h>
162 #include "kdump_subr.h"
165 * These are simple support macros. print_or utilizes a variable
166 * defined in the calling function to track whether or not it should
167 * print a logical-OR character ('|') before a string. if_print_or
168 * simply handles the necessary "if" statement used in many lines
171 #define print_or(str,orflag) do { \\
172 if (orflag) putchar('|'); else orflag = 1; \\
175 #define if_print_or(i,flag,orflag) do { \\
176 if ((i & flag) == flag) \\
177 print_or(#flag,orflag); } \\
181 extern char *signames[]; /* from kdump.c */
185 if (sig > 0 && sig < NSIG && signames[sig] != NULL)
186 printf("SIG%s",signames[sig]);
188 printf("SIG %d", sig);
226 default: /* Should not reach */
227 printf("<invalid=%ld>", (long)cmd);
233 shmctlname (int cmd) {
244 default: /* Should not reach */
245 printf("<invalid=%ld>", (long)cmd);
251 semgetname (int flag) {
253 if_print_or(flag, SEM_R, or);
254 if_print_or(flag, SEM_A, or);
255 if_print_or(flag, (SEM_R>>3), or);
256 if_print_or(flag, (SEM_A>>3), or);
257 if_print_or(flag, (SEM_R>>6), or);
258 if_print_or(flag, (SEM_A>>6), or);
264 * Only used by SYS_open. Unless O_CREAT is set in flags, the
265 * mode argument is unused (and often bogus and misleading).
268 flagsandmodename (int flags, int mode, int decimal) {
271 if ((flags & O_CREAT) == O_CREAT) {
275 printf("<unused>%ld", (long)mode);
277 printf("<unused>%#lx", (long)mode);
285 * [g|s]etsockopt's level argument can either be SOL_SOCKET or a value
286 * referring to a line in /etc/protocols . It might be appropriate
287 * to use getprotoent(3) here.
290 sockoptlevelname (int level, int decimal)
292 if (level == SOL_SOCKET) {
293 printf("SOL_SOCKET");
296 printf("%ld", (long)level);
298 printf("%#lx", (long)level);
305 auto_or_type
"modename" "S_[A-Z]+[[:space:]]+[0-6]{7}" "sys/stat.h"
306 auto_or_type
"flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h"
307 auto_or_type
"accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h"
308 auto_or_type
"mmapprotname" "PROT_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
309 auto_or_type
"mmapflagsname" "MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
310 auto_or_type
"wait4optname" "W[A-Z]+[[:space:]]+[0-9]+" "sys/wait.h"
311 auto_or_type
"getfsstatflagsname" "MNT_[A-Z]+[[:space:]]+[1-9][0-9]*" "sys/mount.h"
312 auto_or_type
"mountflagsname" "MNT_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mount.h"
313 auto_or_type
"rebootoptname" "RB_[A-Z]+[[:space:]]+0x[0-9]+" "sys/reboot.h"
314 auto_or_type
"flockname" "LOCK_[A-Z]+[[:space:]]+0x[0-9]+" "sys/fcntl.h"
315 auto_or_type
"mlockallname" "MCL_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
316 auto_or_type
"shmatname" "SHM_[A-Z]+[[:space:]]+[0-9]{6}+" "sys/shm.h"
317 auto_or_type
"rforkname" "RF[A-Z]+[[:space:]]+\([0-9]+<<[0-9]+\)" "sys/unistd.h"
319 auto_switch_type
"whencename" "SEEK_[A-Z]+[[:space:]]+[0-9]+" "sys/unistd.h"
320 auto_switch_type
"rlimitname" "RLIMIT_[A-Z]+[[:space:]]+[0-9]+" "sys/resource.h"
321 auto_switch_type
"shutdownhowname" "SHUT_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
322 auto_switch_type
"prioname" "PRIO_[A-Z]+[[:space:]]+[0-9]" "sys/resource.h"
323 auto_switch_type
"madvisebehavname" "_?MADV_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
324 auto_switch_type
"msyncflagsname" "MS_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
325 auto_switch_type
"schedpolicyname" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sched.h"
326 auto_switch_type
"extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h"
327 auto_switch_type
"kldsymcmdname" "KLDSYM_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
328 auto_switch_type
"sendfileflagsname" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
329 auto_switch_type
"acltypename" "ACL_TYPE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/acl.h"
330 auto_switch_type
"sigprocmaskhowname" "SIG_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
331 auto_switch_type
"lio_listioname" "LIO_(NO)?WAIT[[:space:]]+[0-9]+" "aio.h"
332 auto_switch_type
"minheritname" "INHERIT_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
333 auto_switch_type
"quotactlname" "Q_[A-Z]+[[:space:]]+0x[0-9]+" "ufs/ufs/quota.h"
334 auto_if_type
"sockdomainname" "PF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
335 auto_if_type
"sockipprotoname" "IPPROTO_[[:alnum:]]+[[:space:]]+" "netinet/in.h"
336 auto_switch_type
"sockoptname" "SO_[A-Z]+[[:space:]]+0x[0-9]+" "sys/socket.h"
337 auto_switch_type
"socktypename" "SOCK_[A-Z]+[[:space:]]+[1-9]+[0-9]*" "sys/socket.h"
338 auto_switch_type
"ptraceopname" "PT_[[:alnum:]]+[[:space:]]+[0-9]+" "sys/ptrace.h"
343 * F_ is used to specify fcntl commands as well as arguments. Both sets are
344 * grouped in fcntl.h, and this awk script grabs the first group.
347 fcntlcmdname (int cmd, int arg, int decimal)
351 egrep "^#[[:space:]]*define[[:space:]]+F_[A-Z]+[[:space:]]+[0-9]+[[:space:]]*" \
352 $include_dir/sys
/fcntl.h | \
353 awk 'BEGIN { o=0 } { for (i = 1; i <= NF; i++) \
358 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i; \
363 default: /* Should not reach */
364 printf("<invalid=%ld>", (long)cmd);
367 if (cmd == F_GETFD || cmd == F_SETFD) {
368 if (arg == FD_CLOEXEC)
369 printf("FD_CLOEXEC");
374 printf("<invalid>%ld", (long)arg);
376 printf("<invalid>%#lx", (long)arg);
378 } else if (cmd == F_SETFL) {
382 printf("%ld", (long)arg);
384 printf("%#lx", (long)arg);
391 * The only reason this is not fully automated is due to the
392 * grep -v RTP_PRIO statement. A better egrep line should
393 * make this capable of being a auto_switch_type() function.
396 rtprioname (int func)
400 egrep "^#[[:space:]]*define[[:space:]]+RTP_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" \
401 $include_dir/sys
/rtprio.h |
grep -v RTP_PRIO | \
402 awk '{ for (i = 1; i <= NF; i++) \
406 printf "\tcase %s:\n\t\tprintf(\"%s\");\n\t\tbreak;\n", $i, $i }'
408 default: /* Should not reach */
409 printf("<invalid=%ld>", (long)func);
416 * The send and recv functions have a flags argument which can be
417 * set to 0. There is no corresponding #define. The auto_ functions
418 * detect this as "invalid", which is incorrect here.
421 sendrecvflagsname (int flags)
430 printf("%#x<", flags);
432 egrep "^#[[:space:]]*define[[:space:]]+MSG_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" $include_dir/sys
/socket.h | \
433 awk '{ for (i = 1; i <= NF; i++) \
437 printf "\tif(!((flags>0)^((%s)>0)))\n\t\tif_print_or(flags, %s, or);\n", $i, $i }'