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