[BACK]Return to mksubr CVS log [TXT][DIR] Up to [local] / src / usr.bin / kdump

Annotation of src/usr.bin/kdump/mksubr, Revision 1.17

1.1       otto        1: #!/bin/sh
1.17    ! guenther    2: # $OpenBSD: mksubr,v 1.16 2013/07/01 17:16:46 guenther Exp $
1.1       otto        3: #
                      4: # Copyright (c) 2006 David Kirchner <dpk@dpk.net>
                      5: #
                      6: # Permission to use, copy, modify, and distribute this software for any
                      7: # purpose with or without fee is hereby granted, provided that the above
                      8: # copyright notice and this permission notice appear in all copies.
                      9: #
                     10: # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11: # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12: # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13: # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14: # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15: # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16: # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17: #
                     18: # $FreeBSD: src/usr.bin/kdump/mksubr,v 1.17 2011/06/06 19:00:38 dchagin Exp $
                     19: #
                     20: # Generates kdump_subr.c
                     21: # mkioctls is a special-purpose script, and works fine as it is
                     22: # now, so it remains independent. The idea behind how it generates
                     23: # its list was heavily borrowed here.
                     24: #
                     25: # Some functions here are automatically generated. This can mean
                     26: # the user will see unusual kdump output or errors while building
                     27: # if the underlying .h files are changed significantly.
                     28: #
                     29: # Key:
                     30: # AUTO: Completely auto-generated with either the "or" or the "switch"
                     31: # method.
                     32: # AUTO - Special: Generated automatically, but with some extra commands
                     33: # that the auto_*_type() functions are inappropriate for.
                     34: # MANUAL: Manually entered and must therefore be manually updated.
                     35:
                     36: set -e
                     37:
                     38: LC_ALL=C; export LC_ALL
                     39:
                     40: if [ -z "$1" ]
                     41: then
                     42:        echo "usage: sh $0 include-dir"
                     43:        exit 1
                     44: fi
                     45: include_dir=$1
                     46:
                     47: #
                     48: # Automatically generates a C function that will print out the
                     49: # numeric input as a pipe-delimited string of the appropriate
                     50: # #define keys. ex:
1.12      guenther   51: # 0x1a4<S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH>
1.1       otto       52: # The XOR is necessary to prevent including the "0"-value in every
                     53: # line.
                     54: #
                     55: auto_or_type () {
                     56:        local name grep file
                     57:        name=$1
                     58:        grep=$2
                     59:        file=$3
                     60:
                     61:        cat <<_EOF_
                     62: /* AUTO */
                     63: void
                     64: $name (int arg)
                     65: {
                     66:        int     or = 0;
                     67:        printf("%#x<", arg);
                     68: _EOF_
                     69:        egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
                     70:                $include_dir/$file | \
                     71:        awk '{ for (i = 1; i <= NF; i++) \
                     72:                if ($i ~ /define/) \
                     73:                        break; \
                     74:                ++i; \
                     75:                printf "\tif(!((arg>0)^((%s)>0)))\n\t\tif_print_or(arg, %s, or);\n", $i, $i }'
                     76: cat <<_EOF_
                     77:        printf(">");
                     78:        if (or == 0)
                     79:                (void)printf("<invalid>%ld", (long)arg);
                     80: }
                     81:
                     82: _EOF_
                     83: }
                     84:
                     85: #
1.8       guenther   86: # Like auto_or_type(), but a zero value is valid and prints as "0<>"
                     87: #
                     88: auto_orz_type () {
                     89:        local name grep file
                     90:        name=$1
                     91:        grep=$2
                     92:        file=$3
                     93:
                     94:        cat <<_EOF_
                     95: /* AUTO */
                     96: void
                     97: $name (int arg)
                     98: {
                     99:        int     or = 0;
                    100:        if (arg == 0) {
                    101:                printf("0<>");
                    102:                return;
                    103:        }
                    104:        printf("%#x<", arg);
                    105: _EOF_
                    106:        egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
                    107:                $include_dir/$file | \
                    108:        awk '{ for (i = 1; i <= NF; i++) \
                    109:                if ($i ~ /define/) \
                    110:                        break; \
                    111:                ++i; \
                    112:                printf "\tif(!((arg>0)^((%s)>0)))\n\t\tif_print_or(arg, %s, or);\n", $i, $i }'
                    113: cat <<_EOF_
                    114:        printf(">");
                    115:        if (or == 0)
                    116:                (void)printf("<invalid>%ld", (long)arg);
                    117: }
                    118:
                    119: _EOF_
                    120: }
                    121:
                    122: #
1.12      guenther  123: # Automatically generates a C function that will print out a
                    124: # file flags input as a pipe-delimited string of the appropriate
                    125: # #define keys. ex:
                    126: # 0x30000<O_RDONLY|O_CLOEXEC|O_DIRECTORY>
                    127: # This is different than the others to handle O_RDONLY correctly when
                    128: # other flags are present and to diagnose an invalid O_ACCMODE value
                    129: #
                    130: auto_fflags_type () {
                    131:        local name grep file
                    132:        name=$1
                    133:        grep=$2
                    134:        file=$3
                    135:
                    136:        cat <<_EOF_
                    137: /* AUTO */
                    138: void
                    139: $name (int arg)
                    140: {
                    141:        printf("%#x<", arg);
                    142:        switch (arg & O_ACCMODE) {
                    143:        case O_RDONLY:
                    144:                printf("O_RDONLY");
                    145:                break;
                    146:        case O_WRONLY:
                    147:                printf("O_WRONLY");
                    148:                break;
                    149:        case O_RDWR:
                    150:                printf("O_RDWR");
                    151:                break;
                    152:        default:
                    153:                printf("<invalid>O_ACCMODE");
                    154:                break;
                    155:        }
                    156: _EOF_
                    157:        egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
                    158:                $include_dir/$file | \
                    159:        egrep -v 'O_(RD(ONLY|WR)|WRONLY|ACCMODE)' | \
                    160:        awk '{ for (i = 1; i <= NF; i++) \
                    161:                if ($i ~ /define/) \
                    162:                        break; \
                    163:                ++i; \
                    164:                printf "\tif (arg & %s) printf (\"|%%s\", \"%s\");\n", $i, $i }'
                    165: cat <<_EOF_
                    166:        printf(">");
                    167: }
                    168:
                    169: _EOF_
                    170: }
                    171:
                    172:
                    173: #
1.1       otto      174: # Automatically generates a C function used when the argument
                    175: # maps to a single, specific #definition
                    176: #
                    177: auto_switch_type () {
                    178:        local name grep file
                    179:        name=$1
                    180:        grep=$2
                    181:        file=$3
                    182:
                    183:        cat <<_EOF_
                    184: /* AUTO */
                    185: void
                    186: $name (int arg)
                    187: {
                    188:        switch (arg) {
                    189: _EOF_
                    190:        egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
                    191:                $include_dir/$file | \
                    192:        awk '{ for (i = 1; i <= NF; i++) \
                    193:                if ($i ~ /define/) \
                    194:                        break; \
                    195:                ++i; \
                    196:                printf "\tcase %s:\n\t\t(void)printf(\"%s\");\n\t\tbreak;\n", $i, $i }'
                    197: cat <<_EOF_
                    198:        default: /* Should not reach */
                    199:                (void)printf("<invalid=%ld>", (long)arg);
                    200:        }
                    201: }
                    202:
                    203: _EOF_
                    204: }
                    205:
                    206: #
                    207: # Automatically generates a C function used when the argument
                    208: # maps to a #definition
                    209: #
                    210: auto_if_type () {
                    211:        local name grep file
                    212:        name=$1
                    213:        grep=$2
                    214:        file=$3
                    215:
                    216:        cat <<_EOF_
                    217: /* AUTO */
                    218: void
                    219: $name (int arg)
                    220: {
                    221: _EOF_
                    222:        egrep "^#[[:space:]]*define[[:space:]]+"${grep}"[[:space:]]*" \
                    223:                $include_dir/$file | \
                    224:        awk '{ printf "\t"; \
                    225:                if (NR > 1) \
                    226:                        printf "else " ; \
                    227:                printf "if (arg == %s) \n\t\tprintf(\"%s\");\n", $2, $2 }'
                    228: cat <<_EOF_
                    229:        else /* Should not reach */
                    230:                (void)printf("<invalid=%ld>", (long)arg);
                    231: }
                    232:
                    233: _EOF_
                    234: }
                    235:
                    236: # C start
                    237:
                    238: cat <<_EOF_
                    239: #include <stdio.h>
1.2       otto      240: #include <sys/param.h>
1.1       otto      241: #include <sys/fcntl.h>
                    242: #include <sys/stat.h>
                    243: #include <sys/unistd.h>
                    244: #include <sys/mman.h>
                    245: #include <sys/wait.h>
1.2       otto      246: #include <sys/proc.h>
1.1       otto      247: #define _KERNEL
1.2       otto      248: #define COMPAT_43
1.1       otto      249: #include <sys/socket.h>
                    250: #undef _KERNEL
                    251: #include <netinet/in.h>
                    252: #include <sys/param.h>
                    253: #include <sys/mount.h>
1.14      guenther  254: #include <sys/poll.h>
1.1       otto      255: #include <sys/ptrace.h>
                    256: #include <sys/resource.h>
                    257: #include <sys/reboot.h>
                    258: #include <sched.h>
1.2       otto      259: #if 0
1.1       otto      260: #include <sys/linker.h>
                    261: #define _KERNEL
                    262: #include <sys/thr.h>
                    263: #undef _KERNEL
                    264: #include <sys/extattr.h>
                    265: #include <sys/acl.h>
                    266: #include <aio.h>
1.2       otto      267: #endif
1.1       otto      268: #include <sys/sem.h>
                    269: #include <sys/ipc.h>
1.2       otto      270: #if 0
1.1       otto      271: #include <sys/rtprio.h>
1.2       otto      272: #endif
1.1       otto      273: #include <sys/shm.h>
1.2       otto      274: #if 0
1.1       otto      275: #include <nfsserver/nfs.h>
1.2       otto      276: #endif
1.1       otto      277: #include <ufs/ufs/quota.h>
                    278:
                    279: #include "kdump_subr.h"
                    280:
                    281: _EOF_
                    282:
1.8       guenther  283: auto_orz_type "modename" "S_[A-Z]+[[:space:]]+[0-6]{7}" "sys/stat.h"
1.12      guenther  284: auto_fflags_type "flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h"
1.8       guenther  285: auto_orz_type "atflagsname" "AT_[A-Z_]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h"
1.3       otto      286: auto_or_type "accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h"
1.1       otto      287: auto_or_type "mmapprotname" "PROT_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
1.13      matthew   288: auto_or_type "mmapflagsname" "(__)?MAP_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/mman.h"
1.8       guenther  289: auto_orz_type "wait4optname" "W[A-Z]+[[:space:]]+[0-9]+" "sys/wait.h"
                    290: #auto_or_type "timerflagsname" "TIMER_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/time.h"
1.2       otto      291: #auto_or_type "getfsstatflagsname" "MNT_[A-Z]+[[:space:]]+[1-9][0-9]*" "sys/mount.h"
                    292: #auto_or_type "mountflagsname" "MNT_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mount.h"
                    293: #auto_or_type "rebootoptname" "RB_[A-Z]+[[:space:]]+0x[0-9]+" "sys/reboot.h"
1.3       otto      294: auto_or_type "flockname" "LOCK_[A-Z]+[[:space:]]+0x[0-9]+" "sys/fcntl.h"
1.2       otto      295: #auto_or_type "thrcreateflagsname" "THR_[A-Z]+[[:space:]]+0x[0-9]+" "sys/thr.h"
1.3       otto      296: auto_or_type "mlockallname" "MCL_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
1.8       guenther  297: auto_orz_type "shmatname" "SHM_[A-Z]+[[:space:]]+[0-9]{6}" "sys/shm.h"
1.2       otto      298: #auto_or_type "nfssvcname" "NFSSVC_[A-Z]+[[:space:]]+0x[0-9]+" "nfsserver/nfs.h"
                    299: #
1.3       otto      300: auto_switch_type "whencename" "SEEK_[A-Z]+[[:space:]]+[0-9]+" "sys/unistd.h"
1.14      guenther  301: auto_switch_type "pathconfname" "_PC_[_A-Z]+[[:space:]]+[0-9]+" "sys/unistd.h"
1.3       otto      302: auto_switch_type "rlimitname" "RLIMIT_[A-Z]+[[:space:]]+[0-9]+" "sys/resource.h"
1.14      guenther  303: auto_switch_type "shutdownhowname" "SHUT_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
1.2       otto      304: #auto_switch_type "prioname" "PRIO_[A-Z]+[[:space:]]+[0-9]" "sys/resource.h"
1.3       otto      305: auto_switch_type "madvisebehavname" "_?MADV_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
                    306: auto_switch_type "msyncflagsname" "MS_[A-Z]+[[:space:]]+0x[0-9]+" "sys/mman.h"
1.15      guenther  307: auto_switch_type "clocktypename" "CLOCK_[_A-Z]+[[:space:]]+[0-9]+" "sys/_time.h"
1.2       otto      308: #auto_switch_type "schedpolicyname" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sched.h"
                    309: #auto_switch_type "kldunloadfflagsname" "LINKER_UNLOAD_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
                    310: #auto_switch_type "extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h"
                    311: #auto_switch_type "kldsymcmdname" "KLDSYM_[A-Z]+[[:space:]]+[0-9]+" "sys/linker.h"
                    312: #auto_switch_type "sendfileflagsname" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
                    313: #auto_switch_type "acltypename" "ACL_TYPE_[A-Z4_]+[[:space:]]+0x[0-9]+" "sys/acl.h"
1.16      guenther  314: auto_switch_type "rusagewho" "RUSAGE_[A-Z]+[[:space:]]+[-0-9()]+" "sys/resource.h"
1.9       guenther  315: auto_orz_type "sigactionflagname" "SA_[A-Z]+[[:space:]]+0x[0-9]+" "sys/signal.h"
1.1       otto      316: auto_switch_type "sigprocmaskhowname" "SIG_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
1.7       deraadt   317: auto_switch_type "sigill_name" "ILL_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    318: auto_switch_type "sigtrap_name" "TRAP_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    319: auto_switch_type "sigemt_name" "EMT_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    320: auto_switch_type "sigfpe_name" "FPE_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    321: auto_switch_type "sigbus_name" "BUS_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    322: auto_switch_type "sigsegv_name" "SEGV_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
                    323: auto_switch_type "sigchld_name" "CLD_[A-Z]+[[:space:]]+[0-9]+" "sys/siginfo.h"
1.2       otto      324: #auto_switch_type "lio_listioname" "LIO_(NO)?WAIT[[:space:]]+[0-9]+" "aio.h"
1.3       otto      325: auto_switch_type "minheritname" "INHERIT_[A-Z]+[[:space:]]+[0-9]+" "sys/mman.h"
1.2       otto      326: #auto_switch_type "quotactlname" "Q_[A-Z]+[[:space:]]+0x[0-9]+" "ufs/ufs/quota.h"
1.3       otto      327: auto_if_type "sockdomainname" "PF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
1.5       otto      328: auto_if_type "sockfamilyname" "AF_[[:alnum:]]+[[:space:]]+" "sys/socket.h"
1.3       otto      329: auto_if_type "sockipprotoname" "IPPROTO_[[:alnum:]]+[[:space:]]+" "netinet/in.h"
                    330: auto_switch_type "sockoptname" "SO_[A-Z]+[[:space:]]+0x[0-9]+" "sys/socket.h"
                    331: auto_switch_type "socktypename" "SOCK_[A-Z]+[[:space:]]+[1-9]+[0-9]*" "sys/socket.h"
1.2       otto      332: #auto_switch_type "ptraceopname" "PT_[[:alnum:]_]+[[:space:]]+[0-9]+" "sys/ptrace.h"
1.1       otto      333:
                    334: cat <<_EOF_
                    335: /*
                    336:  * AUTO - Special
                    337:  * F_ is used to specify fcntl commands as well as arguments. Both sets are
                    338:  * grouped in fcntl.h, and this awk script grabs the first group.
                    339:  */
                    340: void
1.4       otto      341: fcntlcmdname (int cmd, int arg)
1.1       otto      342: {
                    343:        switch (cmd) {
                    344: _EOF_
1.6       matthew   345: egrep "^#[[:space:]]*define[[:space:]]+F_[A-Z_]+[[:space:]]+[0-9]+[[:space:]]*" \
1.1       otto      346:        $include_dir/sys/fcntl.h | \
                    347:        awk 'BEGIN { o=0 } { for (i = 1; i <= NF; i++) \
                    348:                if ($i ~ /define/) \
                    349:                        break; \
                    350:                ++i; \
                    351:                if (o <= $(i+1)) \
                    352:                        printf "\tcase %s:\n\t\t(void)printf(\"%s\");\n\t\tbreak;\n", $i, $i; \
                    353:                else \
                    354:                        exit; \
                    355:                o = $(i+1) }'
                    356: cat <<_EOF_
                    357:        default: /* Should not reach */
                    358:                (void)printf("<invalid=%ld>", (long)cmd);
                    359:        }
1.14      guenther  360:        if (cmd == F_SETFD) {
                    361:                (void)putchar(',');
1.1       otto      362:                if (arg == FD_CLOEXEC)
                    363:                        (void)printf("FD_CLOEXEC");
                    364:                else if (arg == 0)
                    365:                        (void)printf("0");
                    366:                else {
                    367:                        if (decimal)
                    368:                                (void)printf("<invalid>%ld", (long)arg);
                    369:                        else
                    370:                                (void)printf("<invalid>%#lx", (long)arg);
                    371:                }
1.14      guenther  372:
1.1       otto      373:        } else if (cmd == F_SETFL) {
1.14      guenther  374:                (void)putchar(',');
1.1       otto      375:                flagsname(arg);
1.14      guenther  376:        } else if (!fancy || (cmd != F_GETFD && cmd != F_GETFL)) {
                    377:                (void)putchar(',');
1.1       otto      378:                if (decimal)
                    379:                        (void)printf("%ld", (long)arg);
                    380:                else
                    381:                        (void)printf("%#lx", (long)arg);
                    382:        }
                    383: }
                    384:
                    385: /*
                    386:  * AUTO - Special
                    387:  *
                    388:  * The send and recv functions have a flags argument which can be
                    389:  * set to 0. There is no corresponding #define. The auto_ functions
                    390:  * detect this as "invalid", which is incorrect here.
                    391:  */
                    392: void
                    393: sendrecvflagsname (int flags)
                    394: {
                    395:        int     or = 0;
                    396:
                    397:        if (flags == 0) {
                    398:                (void)printf("0");
                    399:                return;
                    400:        }
                    401:
                    402:        printf("%#x<", flags);
                    403: _EOF_
                    404: egrep "^#[[:space:]]*define[[:space:]]+MSG_[A-Z]+[[:space:]]+0x[0-9]+[[:space:]]*" $include_dir/sys/socket.h | \
                    405:        awk '{ for (i = 1; i <= NF; i++) \
                    406:                if ($i ~ /define/) \
                    407:                        break; \
                    408:                ++i; \
                    409:                printf "\tif(!((flags>0)^((%s)>0)))\n\t\tif_print_or(flags, %s, or);\n", $i, $i }'
                    410: cat <<_EOF_
                    411:        printf(">");
                    412: }
                    413:
                    414: _EOF_