]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/kdump/mksubr
MFC 232072: Pretty-print the advice constants passed to posix_fadvise(2).
[FreeBSD/stable/8.git] / usr.bin / kdump / mksubr
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 "David Kirchner" <dpk@dpk.net>. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 #    notice, this list of conditions and the following disclaimer in the
12 #    documentation and/or other materials provided with the distribution.
13 #
14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 # SUCH DAMAGE.
25 #
26 # $FreeBSD$
27 #
28 # Generates kdump_subr.c
29 # mkioctls is a special-purpose script, and works fine as it is
30 # now, so it remains independent. The idea behind how it generates
31 # its list was heavily borrowed here.
32 #
33 # Some functions here are automatically generated. This can mean
34 # the user will see unusual kdump output or errors while building
35 # if the underlying .h files are changed significantly.
36 #
37 # Key:
38 # AUTO: Completely auto-generated with either the "or" or the "switch"
39 # method.
40 # AUTO - Special: Generated automatically, but with some extra commands
41 # that the auto_*_type() functions are inappropriate for.
42 # MANUAL: Manually entered and must therefore be manually updated.
43
44 set -e
45
46 LC_ALL=C; export LC_ALL
47
48 if [ -z "$1" ]
49 then
50         echo "usage: sh $0 include-dir"
51         exit 1
52 fi
53 include_dir=$1
54
55 #
56 # Automatically generates a C function that will print out the
57 # numeric input as a pipe-delimited string of the appropriate
58 # #define keys. ex:
59 # S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH
60 # The XOR is necessary to prevent including the "0"-value in every
61 # line.
62 #
63 auto_or_type () {
64         local name grep file
65         name=$1
66         grep=$2
67         file=$3
68
69         cat <<_EOF_
70 /* AUTO */
71 void
72 $name (int arg)
73 {
74         int     or = 0;
75 _EOF_
76         egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
77                 $include_dir/$file | \
78         awk '{ for (i = 1; i <= NF; i++) \
79                 if ($i ~ /define/) \
80                         break; \
81                 ++i; \
82                 printf "\tif(!((arg>0)^((%s)>0)))\n\t\tif_print_or(arg, %s, or);\n", $i, $i }'
83 cat <<_EOF_
84         if (or == 0)
85                 (void)printf("<invalid>%ld", (long)arg);
86 }
87
88 _EOF_
89 }
90
91 #
92 # Automatically generates a C function used when the argument
93 # maps to a single, specific #definition
94 #
95 auto_switch_type () {
96         local name grep file
97         name=$1
98         grep=$2
99         file=$3
100
101         cat <<_EOF_
102 /* AUTO */
103 void
104 $name (int arg)
105 {
106         switch (arg) {
107 _EOF_
108         egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
109                 $include_dir/$file | \
110         awk '{ for (i = 1; i <= NF; i++) \
111                 if ($i ~ /define/) \
112                         break; \
113                 ++i; \
114                 printf "\tcase %s:\n\t\t(void)printf(\"%s\");\n\t\tbreak;\n", $i, $i }'
115 cat <<_EOF_
116         default: /* Should not reach */
117                 (void)printf("<invalid=%ld>", (long)arg);
118         }
119 }
120
121 _EOF_
122 }
123
124 #
125 # Automatically generates a C function used when the argument
126 # maps to a #definition
127 #
128 auto_if_type () {
129         local name grep file
130         name=$1
131         grep=$2
132         file=$3
133
134         cat <<_EOF_
135 /* AUTO */
136 void
137 $name (int arg)
138 {
139 _EOF_
140         egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
141                 $include_dir/$file | \
142         awk '{ printf "\t"; \
143                 if (NR > 1) \
144                         printf "else " ; \
145                 printf "if (arg == %s) \n\t\tprintf(\"%s\");\n", $2, $2 }'
146 cat <<_EOF_
147         else /* Should not reach */
148                 (void)printf("<invalid=%ld>", (long)arg);
149 }
150
151 _EOF_
152 }
153
154 # C start
155
156 cat <<_EOF_
157 #include <stdio.h>
158 #include <sys/fcntl.h>
159 #include <sys/stat.h>
160 #include <sys/unistd.h>
161 #include <sys/mman.h>
162 #include <sys/wait.h>
163 #define _KERNEL
164 #include <sys/socket.h>
165 #undef _KERNEL
166 #include <netinet/in.h>
167 #include <sys/param.h>
168 #include <sys/mount.h>
169 #include <sys/ptrace.h>
170 #include <sys/resource.h>
171 #include <sys/reboot.h>
172 #include <sched.h>
173 #include <sys/linker.h>
174 #define _KERNEL
175 #include <sys/thr.h>
176 #undef _KERNEL
177 #include <sys/extattr.h>
178 #include <sys/acl.h>
179 #include <aio.h>
180 #include <sys/sem.h>
181 #include <sys/ipc.h>
182 #include <sys/rtprio.h>
183 #include <sys/shm.h>
184 #include <nfsserver/nfs.h>
185 #include <ufs/ufs/quota.h>
186
187 #include "kdump_subr.h"
188
189 /*
190  * These are simple support macros. print_or utilizes a variable
191  * defined in the calling function to track whether or not it should
192  * print a logical-OR character ('|') before a string. if_print_or
193  * simply handles the necessary "if" statement used in many lines
194  * of this file.
195  */
196 #define print_or(str,orflag) do {                  \\
197         if (orflag) putchar('|'); else orflag = 1; \\
198         printf (str); }                            \\
199         while (0)
200 #define if_print_or(i,flag,orflag) do {            \\
201         if ((i & flag) == flag)                    \\
202         print_or(#flag,orflag); }                  \\
203         while (0)
204
205 /* MANUAL */
206 extern char *signames[]; /* from kdump.c */
207 void
208 signame (int sig)
209 {
210         if (sig > 0 && sig < NSIG)
211                 (void)printf("SIG%s",signames[sig]);
212         else
213                 (void)printf("SIG %d", sig);
214 }
215
216 /* MANUAL */
217 void
218 semctlname (int cmd)
219 {
220         switch (cmd) {
221         case GETNCNT:
222                 (void)printf("GETNCNT");
223                 break;
224         case GETPID:
225                 (void)printf("GETPID");
226                 break;
227         case GETVAL:
228                 (void)printf("GETVAL");
229                 break;
230         case GETALL:
231                 (void)printf("GETALL");
232                 break;
233         case GETZCNT:
234                 (void)printf("GETZCNT");
235                 break;
236         case SETVAL:
237                 (void)printf("SETVAL");
238                 break;
239         case SETALL:
240                 (void)printf("SETALL");
241                 break;
242         case IPC_RMID:
243                 (void)printf("IPC_RMID");
244                 break;
245         case IPC_SET:
246                 (void)printf("IPC_SET");
247                 break;
248         case IPC_STAT:
249                 (void)printf("IPC_STAT");
250                 break;
251         default: /* Should not reach */
252                 (void)printf("<invalid=%ld>", (long)cmd);
253         }
254 }
255
256 /* MANUAL */
257 void
258 shmctlname (int cmd) {
259         switch (cmd) {
260         case IPC_RMID:
261                 (void)printf("IPC_RMID");
262                 break;
263         case IPC_SET:
264                 (void)printf("IPC_SET");
265                 break;
266         case IPC_STAT:
267                 (void)printf("IPC_STAT");
268                 break;
269         default: /* Should not reach */
270                 (void)printf("<invalid=%ld>", (long)cmd);
271         }
272 }
273
274 /* MANUAL */
275 void
276 semgetname (int flag) {
277         int     or = 0;
278         if_print_or(flag, IPC_CREAT, or);
279         if_print_or(flag, IPC_EXCL, or);
280         if_print_or(flag, SEM_R, or);
281         if_print_or(flag, SEM_A, or);
282         if_print_or(flag, (SEM_R>>3), or);
283         if_print_or(flag, (SEM_A>>3), or);
284         if_print_or(flag, (SEM_R>>6), or);
285         if_print_or(flag, (SEM_A>>6), or);
286 }
287
288 /*
289  * MANUAL
290  *
291  * Only used by SYS_open. Unless O_CREAT is set in flags, the
292  * mode argument is unused (and often bogus and misleading).
293  */
294 void
295 flagsandmodename (int flags, int mode, int decimal) {
296         flagsname (flags);
297         (void)putchar(',');
298         if ((flags & O_CREAT) == O_CREAT) {
299                 modename (mode);
300         } else {
301                 if (decimal) {
302                         (void)printf("<unused>%ld", (long)mode);
303                 } else {
304                         (void)printf("<unused>%#lx", (long)mode);
305                 }
306         }
307 }
308
309 /*
310  * MANUAL
311  *
312  * [g|s]etsockopt's level argument can either be SOL_SOCKET or a value
313  * referring to a line in /etc/protocols . It might be appropriate
314  * to use getprotoent(3) here.
315  */
316 void
317 sockoptlevelname (int level, int decimal)
318 {
319         if (level == SOL_SOCKET) {
320                 (void)printf("SOL_SOCKET");
321         } else {
322                 if (decimal) {
323                         (void)printf("%ld", (long)level);
324                 } else {
325                         (void)printf("%#lx", (long)level);
326                 }
327         }
328 }
329
330 _EOF_
331
332 auto_or_type "modename" "S_[A-Z]+[[:space:]]+[0-6]{7}" "sys/stat.h"
333 auto_or_type "flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h"
334 auto_or_type "accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h"
335 auto_or_type "mmapprotname" "PROT_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
336 auto_or_type "mmapflagsname" "MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
337 auto_or_type "wait4optname" "W[A-Z]+[[:space:]]+[0-9]+" "sys/wait.h"
338 auto_or_type "getfsstatflagsname" "MNT_[A-Z]+[[:space:]]+[1-9][0-9]*" "sys/mount.h"
339 auto_or_type "mountflagsname" "MNT_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mount.h"
340 auto_or_type "rebootoptname" "RB_[A-Z]+[[:space:]]+0x[0-9]+" "sys/reboot.h"
341 auto_or_type "flockname" "LOCK_[A-Z]+[[:space:]]+0x[0-9]+" "sys/fcntl.h"
342 auto_or_type "thrcreateflagsname" "THR_[A-Z]+[[:space:]]+0x[0-9]+" "sys/thr.h"
343 auto_or_type "mlockallname" "MCL_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
344 auto_or_type "shmatname" "SHM_[A-Z]+[[:space:]]+[0-9]{6}+" "sys/shm.h"
345 auto_or_type "rforkname" "RF[A-Z]+[[:space:]]+\([0-9]+<<[0-9]+\)" "sys/unistd.h"
346 auto_or_type "nfssvcname" "NFSSVC_[A-Z]+[[:space:]]+0x[0-9]+" "nfsserver/nfs.h"
347
348 auto_switch_type "whencename" "SEEK_[A-Z]+[[:space:]]+[0-9]+" "sys/unistd.h"
349 auto_switch_type "rlimitname" "RLIMIT_[A-Z]+[[:space:]]+[0-9]+" "sys/resource.h"
350 auto_switch_type "shutdownhowname" "SHUT_[A-Z]+[[:space:]]+0x[0-9]+" "sys/socket.h"
351 auto_switch_type "prioname" "PRIO_[A-Z]+[[:space:]]+[0-9]" "sys/resource.h"
352 auto_switch_type "fadvisebehavname" "POSIX_FADV_[A-Z]+[[:space:]]+[0-9]+" "sys/fcntl.h"
353 auto_switch_type "madvisebehavname" "_?MADV_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
354 auto_switch_type "msyncflagsname" "MS_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
355 auto_switch_type "schedpolicyname" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sched.h"
356 auto_switch_type "kldunloadfflagsname" "LINKER_UNLOAD_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
357 auto_switch_type "extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h"
358 auto_switch_type "kldsymcmdname" "KLDSYM_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
359 auto_switch_type "sendfileflagsname" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
360 auto_switch_type "acltypename" "ACL_TYPE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/acl.h"
361 auto_switch_type "sigprocmaskhowname" "SIG_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
362 auto_switch_type "lio_listioname" "LIO_(NO)?WAIT[[:space:]]+[0-9]+" "aio.h"
363 auto_switch_type "minheritname" "INHERIT_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
364 auto_switch_type "quotactlname" "Q_[A-Z]+[[:space:]]+0x[0-9]+" "ufs/ufs/quota.h"
365 auto_if_type "sockdomainname" "PF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
366 auto_if_type "sockfamilyname" "AF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
367 auto_if_type "sockipprotoname" "IPPROTO_[[:alnum:]]+[[:space:]]+" "netinet/in.h"
368 auto_switch_type "sockoptname" "SO_[A-Z]+[[:space:]]+0x[0-9]+" "sys/socket.h"
369 auto_switch_type "socktypename" "SOCK_[A-Z]+[[:space:]]+[1-9]+[0-9]*" "sys/socket.h"
370 auto_switch_type "ptraceopname" "PT_[[:alnum:]_]+[[:space:]]+[0-9]+" "sys/ptrace.h"
371
372 cat <<_EOF_
373 /*
374  * AUTO - Special
375  * F_ is used to specify fcntl commands as well as arguments. Both sets are
376  * grouped in fcntl.h, and this awk script grabs the first group.
377  */
378 void
379 fcntlcmdname (int cmd, int arg, int decimal)
380 {
381         switch (cmd) {
382 _EOF_
383 egrep "^#[[:space:]]*define[[:space:]]+F_[A-Z]+[[:space:]]+[0-9]+[[:space:]]*" \
384         $include_dir/sys/fcntl.h | \
385         awk 'BEGIN { o=0 } { for (i = 1; i <= NF; i++) \
386                 if ($i ~ /define/) \
387                         break; \
388                 ++i; \
389                 if (o <= $(i+1)) \
390                         printf "\tcase %s:\n\t\t(void)printf(\"%s\");\n\t\tbreak;\n", $i, $i; \
391                 else \
392                         exit; \
393                 o = $(i+1) }'
394 cat <<_EOF_
395         default: /* Should not reach */
396                 (void)printf("<invalid=%ld>", (long)cmd);
397         }
398         (void)putchar(',');
399         if (cmd == F_GETFD || cmd == F_SETFD) {
400                 if (arg == FD_CLOEXEC)
401                         (void)printf("FD_CLOEXEC");
402                 else if (arg == 0)
403                         (void)printf("0");
404                 else {
405                         if (decimal)
406                                 (void)printf("<invalid>%ld", (long)arg);
407                         else
408                                 (void)printf("<invalid>%#lx", (long)arg);
409                 }
410         } else if (cmd == F_SETFL) {
411                 flagsname(arg);
412         } else {
413                 if (decimal)
414                         (void)printf("%ld", (long)arg);
415                 else
416                         (void)printf("%#lx", (long)arg);
417         }
418 }
419
420 /*
421  * AUTO - Special
422  *
423  * The only reason this is not fully automated is due to the
424  * grep -v RTP_PRIO statement. A better egrep line should
425  * make this capable of being a auto_switch_type() function.
426  */
427 void
428 rtprioname (int func)
429 {
430         switch (func) {
431 _EOF_
432 egrep "^#[[:space:]]*define[[:space:]]+RTP_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" \
433         $include_dir/sys/rtprio.h | grep -v RTP_PRIO | \
434         awk '{ for (i = 1; i <= NF; i++) \
435                 if ($i ~ /define/) \
436                         break; \
437                 ++i; \
438                 printf "\tcase %s:\n\t\t(void)printf(\"%s\");\n\t\tbreak;\n", $i, $i }'
439 cat <<_EOF_
440         default: /* Should not reach */
441                 (void)printf("<invalid=%ld>", (long)func);
442         }
443 }
444
445 /*
446  * AUTO - Special
447  *
448  * The send and recv functions have a flags argument which can be
449  * set to 0. There is no corresponding #define. The auto_ functions
450  * detect this as "invalid", which is incorrect here.
451  */
452 void
453 sendrecvflagsname (int flags)
454 {
455         int     or = 0;
456
457         if (flags == 0) {
458                 (void)printf("0");
459                 return;
460         }
461 _EOF_
462 egrep "^#[[:space:]]*define[[:space:]]+MSG_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" $include_dir/sys/socket.h | \
463         awk '{ for (i = 1; i <= NF; i++) \
464                 if ($i ~ /define/) \
465                         break; \
466                 ++i; \
467                 printf "\tif(!((flags>0)^((%s)>0)))\n\t\tif_print_or(flags, %s, or);\n", $i, $i }'
468 cat <<_EOF_
469 }
470
471 _EOF_