[BACK]Return to main.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Annotation of src/usr.bin/netstat/main.c, Revision 1.102

1.102   ! schwarze    1: /*     $OpenBSD: main.c,v 1.101 2014/06/23 03:46:17 guenther Exp $     */
1.2       deraadt     2: /*     $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */
1.1       deraadt     3:
                      4: /*
                      5:  * Copyright (c) 1983, 1988, 1993
                      6:  *     Regents of the University of California.  All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.36      millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  */
                     32:
                     33: #include <sys/param.h>
                     34: #include <sys/protosw.h>
                     35: #include <sys/socket.h>
1.86      claudio    36: #include <sys/sysctl.h>
1.1       deraadt    37:
1.68      claudio    38: #include <net/route.h>
1.1       deraadt    39: #include <netinet/in.h>
                     40:
                     41: #include <ctype.h>
1.61      djm        42: #include <err.h>
1.1       deraadt    43: #include <errno.h>
1.96      guenther   44: #include <fcntl.h>
1.1       deraadt    45: #include <kvm.h>
                     46: #include <limits.h>
                     47: #include <netdb.h>
                     48: #include <nlist.h>
                     49: #include <paths.h>
                     50: #include <stdio.h>
                     51: #include <stdlib.h>
                     52: #include <string.h>
                     53: #include <unistd.h>
                     54: #include "netstat.h"
                     55:
                     56: struct nlist nl[] = {
1.71      deraadt    57: #define N_TCBTABLE     0
1.1       deraadt    58:        { "_tcbtable" },
1.71      deraadt    59: #define N_UDBTABLE     1
1.1       deraadt    60:        { "_udbtable" },
1.71      deraadt    61:
1.99      guenther   62: #define N_MFCHASHTBL   2
1.1       deraadt    63:        { "_mfchashtbl" },
1.99      guenther   64: #define N_MFCHASH      3
1.1       deraadt    65:        { "_mfchash" },
1.99      guenther   66: #define N_VIFTABLE     4
1.1       deraadt    67:        { "_viftable" },
1.71      deraadt    68:
1.99      guenther   69: #define N_MF6CTABLE    5
1.19      itojun     70:        { "_mf6ctable" },
1.99      guenther   71: #define N_MIF6TABLE    6
1.19      itojun     72:        { "_mif6table" },
1.71      deraadt    73:
1.99      guenther   74: #define N_RTREE                7
1.71      deraadt    75:        { "_rt_tables"},
1.99      guenther   76: #define N_RTMASK       8
1.71      deraadt    77:        { "_mask_rnhead" },
1.99      guenther   78: #define N_AF2RTAFIDX   9
1.71      deraadt    79:        { "_af2rtafidx" },
1.99      guenther   80: #define N_RTBLIDMAX    10
1.71      deraadt    81:        { "_rtbl_id_max" },
                     82:
1.99      guenther   83: #define N_RAWIPTABLE   11
1.40      markus     84:        { "_rawcbtable" },
1.99      guenther   85: #define N_RAWIP6TABLE  12
1.40      markus     86:        { "_rawin6pcbtable" },
1.99      guenther   87: #define N_DIVBTABLE    13
1.80      michele    88:        { "_divbtable" },
1.99      guenther   89: #define N_DIVB6TABLE   14
1.81      michele    90:        { "_divb6table" },
1.71      deraadt    91:
1.87      bluhm      92:        { "" }
1.1       deraadt    93: };
                     94:
                     95: struct protox {
1.87      bluhm      96:        u_char  pr_index;               /* index into nlist of cb head */
1.90      mikeb      97:        void    (*pr_cblocks)(u_long, char *, int, u_int, u_long);
1.87      bluhm      98:                                        /* control blocks printing routine */
                     99:        void    (*pr_stats)(char *);    /* statistics printing routine */
                    100:        char    *pr_name;               /* well-known name */
1.1       deraadt   101: } protox[] = {
1.87      bluhm     102:        { N_TCBTABLE,   protopr,        tcp_stats,      "tcp" },
                    103:        { N_UDBTABLE,   protopr,        udp_stats,      "udp" },
                    104:        { N_RAWIPTABLE, protopr,        ip_stats,       "ip" },
                    105:        { N_DIVBTABLE,  protopr,        div_stats,      "divert" },
                    106:        { -1,           NULL,           icmp_stats,     "icmp" },
                    107:        { -1,           NULL,           igmp_stats,     "igmp" },
                    108:        { -1,           NULL,           ah_stats,       "ah" },
                    109:        { -1,           NULL,           esp_stats,      "esp" },
                    110:        { -1,           NULL,           ipip_stats,     "ipencap" },
                    111:        { -1,           NULL,           etherip_stats,  "etherip" },
                    112:        { -1,           NULL,           ipcomp_stats,   "ipcomp" },
                    113:        { -1,           NULL,           carp_stats,     "carp" },
                    114:        { -1,           NULL,           pfsync_stats,   "pfsync" },
                    115:        { -1,           NULL,           pim_stats,      "pim" },
                    116:        { -1,           NULL,           pflow_stats,    "pflow" },
                    117:        { -1,           NULL,           NULL,           NULL }
1.1       deraadt   118: };
                    119:
1.19      itojun    120: struct protox ip6protox[] = {
1.87      bluhm     121:        { N_TCBTABLE,   protopr,        NULL,           "tcp" },
                    122:        { N_UDBTABLE,   protopr,        NULL,           "udp" },
                    123:        { N_RAWIP6TABLE,protopr,        ip6_stats,      "ip6" },
                    124:        { N_DIVB6TABLE, protopr,        div6_stats,     "divert6" },
                    125:        { -1,           NULL,           icmp6_stats,    "icmp6" },
                    126:        { -1,           NULL,           pim6_stats,     "pim6" },
                    127:        { -1,           NULL,           rip6_stats,     "rip6" },
                    128:        { -1,           NULL,           NULL,           NULL }
1.19      itojun    129: };
                    130:
1.34      deraadt   131: struct protox *protoprotox[] = {
1.89      henning   132:        protox, ip6protox, NULL
1.34      deraadt   133: };
1.1       deraadt   134:
1.90      mikeb     135: static void printproto(struct protox *, char *, int, u_int, u_long);
1.30      millert   136: static void usage(void);
                    137: static struct protox *name2protox(char *);
                    138: static struct protox *knownname(char *);
1.86      claudio   139: u_int gettable(const char *);
                    140:
1.95      deraadt   141: int hideroot;
1.1       deraadt   142:
                    143: kvm_t *kvmd;
                    144:
                    145: int
1.34      deraadt   146: main(int argc, char *argv[])
1.1       deraadt   147: {
                    148:        extern char *optarg;
                    149:        extern int optind;
1.68      claudio   150:        const char *errstr;
1.28      mpech     151:        struct protoent *p;
                    152:        struct protox *tp = NULL; /* for printing cblocks & stats */
1.1       deraadt   153:        int ch;
1.59      markus    154:        char *nlistf = NULL, *memf = NULL, *ep;
1.1       deraadt   155:        char buf[_POSIX2_LINE_MAX];
1.61      djm       156:        gid_t gid;
1.59      markus    157:        u_long pcbaddr = 0;
1.91      mikeb     158:        u_int tableid;
1.86      claudio   159:        int Tflag = 0;
1.82      tedu      160:        int repeatcount = 0;
1.96      guenther  161:        int need_nlist;
1.95      deraadt   162:
                    163:        hideroot = getuid();
1.1       deraadt   164:
                    165:        af = AF_UNSPEC;
1.91      mikeb     166:        tableid = getrtable();
1.1       deraadt   167:
1.88      jsing     168:        while ((ch = getopt(argc, argv,
1.93      tedu      169:            "AaBbc:dFf:ghI:ilM:mN:np:P:qrsT:tuvW:w:")) != -1)
1.31      deraadt   170:                switch (ch) {
1.1       deraadt   171:                case 'A':
                    172:                        Aflag = 1;
                    173:                        break;
                    174:                case 'a':
                    175:                        aflag = 1;
1.24      camield   176:                        break;
1.88      jsing     177:                case 'B':
                    178:                        Bflag = 1;
                    179:                        break;
1.24      camield   180:                case 'b':
                    181:                        bflag = 1;
1.1       deraadt   182:                        break;
1.82      tedu      183:                case 'c':
                    184:                        repeatcount = strtonum(optarg, 1, INT_MAX, &errstr);
1.100     tedu      185:                        if (errstr)
                    186:                                errx(1, "count is %s", errstr);
1.82      tedu      187:                        break;
1.1       deraadt   188:                case 'd':
                    189:                        dflag = 1;
1.64      pyr       190:                        break;
                    191:                case 'F':
                    192:                        Fflag = 1;
1.1       deraadt   193:                        break;
                    194:                case 'f':
1.4       mickey    195:                        if (strcmp(optarg, "inet") == 0)
1.1       deraadt   196:                                af = AF_INET;
1.19      itojun    197:                        else if (strcmp(optarg, "inet6") == 0)
                    198:                                af = AF_INET6;
1.7       kstailey  199:                        else if (strcmp(optarg, "local") == 0)
                    200:                                af = AF_LOCAL;
1.1       deraadt   201:                        else if (strcmp(optarg, "unix") == 0)
                    202:                                af = AF_UNIX;
1.10      angelos   203:                        else if (strcmp(optarg, "encap") == 0)
1.16      angelos   204:                                af = PF_KEY;
1.75      claudio   205:                        else if (strcmp(optarg, "mpls") == 0)
                    206:                                af = AF_MPLS;
1.76      gollo     207:                        else if (strcmp(optarg, "pflow") == 0)
                    208:                                af = PF_PFLOW;
1.63      claudio   209:                        else if (strcmp(optarg, "mask") == 0)
                    210:                                af = 0xff;
1.1       deraadt   211:                        else {
                    212:                                (void)fprintf(stderr,
                    213:                                    "%s: %s: unknown address family\n",
1.2       deraadt   214:                                    __progname, optarg);
1.1       deraadt   215:                                exit(1);
                    216:                        }
                    217:                        break;
                    218:                case 'g':
                    219:                        gflag = 1;
1.93      tedu      220:                        break;
                    221:                case 'h':
                    222:                        hflag = 1;
1.1       deraadt   223:                        break;
1.2       deraadt   224:                case 'I':
1.1       deraadt   225:                        iflag = 1;
1.2       deraadt   226:                        interface = optarg;
1.1       deraadt   227:                        break;
                    228:                case 'i':
                    229:                        iflag = 1;
                    230:                        break;
1.19      itojun    231:                case 'l':
                    232:                        lflag = 1;
                    233:                        break;
1.1       deraadt   234:                case 'M':
                    235:                        memf = optarg;
                    236:                        break;
                    237:                case 'm':
                    238:                        mflag = 1;
                    239:                        break;
                    240:                case 'N':
                    241:                        nlistf = optarg;
                    242:                        break;
                    243:                case 'n':
                    244:                        nflag = 1;
                    245:                        break;
                    246:                case 'p':
                    247:                        if ((tp = name2protox(optarg)) == NULL) {
                    248:                                (void)fprintf(stderr,
1.42      jmc       249:                                    "%s: %s: unknown protocol\n",
1.2       deraadt   250:                                    __progname, optarg);
1.1       deraadt   251:                                exit(1);
                    252:                        }
                    253:                        pflag = 1;
1.27      brian     254:                        break;
1.59      markus    255:                case 'P':
                    256:                        errno = 0;
                    257:                        pcbaddr = strtoul(optarg, &ep, 16);
                    258:                        if (optarg[0] == '\0' || *ep != '\0' ||
                    259:                            errno == ERANGE) {
                    260:                                (void)fprintf(stderr,
                    261:                                    "%s: %s: invalid PCB address\n",
                    262:                                    __progname, optarg);
                    263:                                exit(1);
                    264:                        }
                    265:                        Pflag = 1;
                    266:                        break;
1.27      brian     267:                case 'q':
                    268:                        qflag = 1;
1.1       deraadt   269:                        break;
                    270:                case 'r':
                    271:                        rflag = 1;
1.46      cedric    272:                        break;
1.1       deraadt   273:                case 's':
                    274:                        ++sflag;
                    275:                        break;
1.68      claudio   276:                case 'T':
1.86      claudio   277:                        Tflag = 1;
                    278:                        tableid = gettable(optarg);
1.68      claudio   279:                        break;
1.1       deraadt   280:                case 't':
                    281:                        tflag = 1;
                    282:                        break;
                    283:                case 'u':
                    284:                        af = AF_UNIX;
1.13      peter     285:                        break;
                    286:                case 'v':
                    287:                        vflag = 1;
1.1       deraadt   288:                        break;
1.56      reyk      289:                case 'W':
                    290:                        Wflag = 1;
                    291:                        interface = optarg;
                    292:                        break;
1.1       deraadt   293:                case 'w':
1.100     tedu      294:                        interval = strtonum(optarg, 1, INT_MAX, &errstr);
                    295:                        if (errstr)
                    296:                                errx(1, "interval is %s", errstr);
1.1       deraadt   297:                        iflag = 1;
                    298:                        break;
                    299:                case '?':
                    300:                default:
                    301:                        usage();
                    302:                }
                    303:        argv += optind;
                    304:        argc -= optind;
                    305:
1.33      deraadt   306:        /*
1.56      reyk      307:         * Show per-interface statistics which don't need access to
                    308:         * kernel memory (they're using IOCTLs)
                    309:         */
                    310:        if (Wflag) {
                    311:                if (interface == NULL)
                    312:                        usage();
                    313:                net80211_ifstats(interface);
                    314:                exit(0);
                    315:        }
                    316:
1.84      lum       317: #define        BACKWARD_COMPATIBILITY
                    318: #ifdef BACKWARD_COMPATIBILITY
                    319:        if (*argv) {
1.98      deraadt   320:                if (isdigit((unsigned char)**argv)) {
1.100     tedu      321:                        interval = strtonum(*argv, 1, INT_MAX, &errstr);
                    322:                        if (errstr)
                    323:                                errx(1, "interval is %s", errstr);
1.84      lum       324:                        ++argv;
                    325:                        iflag = 1;
                    326:                }
                    327:                if (*argv) {
                    328:                        nlistf = *argv;
                    329:                        if (*++argv)
                    330:                                memf = *argv;
                    331:                }
                    332:        }
                    333: #endif
                    334:
1.96      guenther  335:        need_nlist = !mflag && (pflag || nlistf != NULL || memf != NULL ||
                    336:            (!iflag && !sflag && (rflag ? Aflag :
                    337:            (gflag || af != AF_UNIX || Pflag))));
                    338:
1.56      reyk      339:        /*
1.33      deraadt   340:         * Discard setgid privileges if not the running kernel so that bad
                    341:         * guys can't print interesting stuff from kernel memory.
1.59      markus    342:         * Dumping PCB info is also restricted.
1.33      deraadt   343:         */
1.61      djm       344:        gid = getgid();
                    345:        if (nlistf != NULL || memf != NULL || Pflag)
                    346:                if (setresgid(gid, gid, gid) == -1)
                    347:                        err(1, "setresgid");
1.73      claudio   348:
1.96      guenther  349:        if ((kvmd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY |
                    350:            (need_nlist ? 0 : KVM_NO_FILES), buf)) == NULL) {
1.78      deraadt   351:                fprintf(stderr, "%s: kvm_openfiles: %s\n", __progname, buf);
1.33      deraadt   352:                exit(1);
                    353:        }
1.61      djm       354:
                    355:        if (nlistf == NULL && memf == NULL && !Pflag)
                    356:                if (setresgid(gid, gid, gid) == -1)
                    357:                        err(1, "setresgid");
1.14      deraadt   358:
1.96      guenther  359:        if (need_nlist && (kvm_nlist(kvmd, nl) < 0 || nl[0].n_type == 0)) {
1.1       deraadt   360:                if (nlistf)
1.2       deraadt   361:                        fprintf(stderr, "%s: %s: no namelist\n", __progname,
                    362:                            nlistf);
1.1       deraadt   363:                else
1.2       deraadt   364:                        fprintf(stderr, "%s: no namelist\n", __progname);
1.1       deraadt   365:                exit(1);
                    366:        }
                    367:        if (mflag) {
1.70      deraadt   368:                mbpr();
1.1       deraadt   369:                exit(0);
                    370:        }
                    371:        if (pflag) {
1.90      mikeb     372:                printproto(tp, tp->pr_name, af, tableid, pcbaddr);
1.1       deraadt   373:                exit(0);
                    374:        }
                    375:        if (iflag) {
1.82      tedu      376:                intpr(interval, repeatcount);
1.1       deraadt   377:                exit(0);
                    378:        }
                    379:        if (rflag) {
                    380:                if (sflag)
1.73      claudio   381:                        rt_stats();
                    382:                else if (Aflag || nlistf != NULL || memf != NULL)
1.63      claudio   383:                        routepr(nl[N_RTREE].n_value, nl[N_RTMASK].n_value,
1.79      claudio   384:                            nl[N_AF2RTAFIDX].n_value, nl[N_RTBLIDMAX].n_value,
                    385:                            tableid);
1.73      claudio   386:                else
1.92      mikeb     387:                        p_rttables(af, tableid);
1.1       deraadt   388:                exit(0);
                    389:        }
                    390:        if (gflag) {
1.19      itojun    391:                if (sflag) {
                    392:                        if (af == AF_INET || af == AF_UNSPEC)
1.71      deraadt   393:                                mrt_stats();
1.19      itojun    394:                        if (af == AF_INET6 || af == AF_UNSPEC)
1.71      deraadt   395:                                mrt6_stats();
1.70      deraadt   396:                } else {
1.19      itojun    397:                        if (af == AF_INET || af == AF_UNSPEC)
1.71      deraadt   398:                                mroutepr(nl[N_MFCHASHTBL].n_value,
1.19      itojun    399:                                    nl[N_MFCHASH].n_value,
                    400:                                    nl[N_VIFTABLE].n_value);
                    401:                        if (af == AF_INET6 || af == AF_UNSPEC)
1.71      deraadt   402:                                mroute6pr(nl[N_MF6CTABLE].n_value,
1.19      itojun    403:                                    nl[N_MIF6TABLE].n_value);
                    404:                }
1.1       deraadt   405:                exit(0);
                    406:        }
                    407:        if (af == AF_INET || af == AF_UNSPEC) {
                    408:                setprotoent(1);
                    409:                setservent(1);
                    410:                /* ugh, this is O(MN) ... why do we do this? */
1.11      millert   411:                while ((p = getprotoent())) {
1.1       deraadt   412:                        for (tp = protox; tp->pr_name; tp++)
                    413:                                if (strcmp(tp->pr_name, p->p_name) == 0)
                    414:                                        break;
1.71      deraadt   415:                        if (tp->pr_name == 0)
1.1       deraadt   416:                                continue;
1.90      mikeb     417:                        printproto(tp, p->p_name, AF_INET, tableid, pcbaddr);
1.1       deraadt   418:                }
                    419:                endprotoent();
1.76      gollo     420:        }
                    421:        if (af == PF_PFLOW || af == AF_UNSPEC) {
                    422:                tp = name2protox("pflow");
1.90      mikeb     423:                printproto(tp, tp->pr_name, af, tableid, pcbaddr);
1.1       deraadt   424:        }
1.19      itojun    425:        if (af == AF_INET6 || af == AF_UNSPEC)
                    426:                for (tp = ip6protox; tp->pr_name; tp++)
1.90      mikeb     427:                        printproto(tp, tp->pr_name, AF_INET6, tableid,
                    428:                            pcbaddr);
1.1       deraadt   429:        if ((af == AF_UNIX || af == AF_UNSPEC) && !sflag)
1.96      guenther  430:                unixpr(kvmd, pcbaddr);
1.1       deraadt   431:        exit(0);
                    432: }
                    433:
                    434: /*
                    435:  * Print out protocol statistics or control blocks (per sflag).
                    436:  * If the interface was not specifically requested, and the symbol
                    437:  * is not in the namelist, ignore this one.
                    438:  */
                    439: static void
1.90      mikeb     440: printproto(struct protox *tp, char *name, int af, u_int tableid,
                    441:     u_long pcbaddr)
1.1       deraadt   442: {
                    443:        if (sflag) {
1.71      deraadt   444:                if (tp->pr_stats != NULL)
                    445:                        (*tp->pr_stats)(name);
1.1       deraadt   446:        } else {
1.71      deraadt   447:                u_char i = tp->pr_index;
                    448:                if (tp->pr_cblocks != NULL &&
                    449:                    i < sizeof(nl) / sizeof(nl[0]) &&
                    450:                    (nl[i].n_value || af != AF_UNSPEC))
1.90      mikeb     451:                        (*tp->pr_cblocks)(nl[i].n_value, name, af, tableid,
                    452:                            pcbaddr);
1.1       deraadt   453:        }
                    454: }
                    455:
                    456: /*
                    457:  * Read kernel memory, return 0 on success.
                    458:  */
                    459: int
1.53      jaredy    460: kread(u_long addr, void *buf, int size)
1.1       deraadt   461: {
                    462:
                    463:        if (kvm_read(kvmd, addr, buf, size) != size) {
1.2       deraadt   464:                (void)fprintf(stderr, "%s: %s\n", __progname,
1.1       deraadt   465:                    kvm_geterr(kvmd));
                    466:                return (-1);
                    467:        }
                    468:        return (0);
                    469: }
                    470:
                    471: char *
1.77      claudio   472: plural(u_int64_t n)
1.1       deraadt   473: {
                    474:        return (n != 1 ? "s" : "");
                    475: }
                    476:
                    477: char *
1.77      claudio   478: plurales(u_int64_t n)
1.1       deraadt   479: {
                    480:        return (n != 1 ? "es" : "");
                    481: }
                    482:
                    483: /*
                    484:  * Find the protox for the given "well-known" name.
                    485:  */
                    486: static struct protox *
1.34      deraadt   487: knownname(char *name)
1.1       deraadt   488: {
                    489:        struct protox **tpp, *tp;
                    490:
                    491:        for (tpp = protoprotox; *tpp; tpp++)
                    492:                for (tp = *tpp; tp->pr_name; tp++)
                    493:                        if (strcmp(tp->pr_name, name) == 0)
                    494:                                return (tp);
                    495:        return (NULL);
                    496: }
                    497:
                    498: /*
                    499:  * Find the protox corresponding to name.
                    500:  */
                    501: static struct protox *
1.34      deraadt   502: name2protox(char *name)
1.1       deraadt   503: {
                    504:        struct protox *tp;
                    505:        char **alias;                   /* alias from p->aliases */
                    506:        struct protoent *p;
                    507:
                    508:        /*
                    509:         * Try to find the name in the list of "well-known" names. If that
                    510:         * fails, check if name is an alias for an Internet protocol.
                    511:         */
1.11      millert   512:        if ((tp = knownname(name)))
1.1       deraadt   513:                return (tp);
                    514:
                    515:        setprotoent(1);                 /* make protocol lookup cheaper */
1.11      millert   516:        while ((p = getprotoent())) {
1.1       deraadt   517:                /* assert: name not same as p->name */
                    518:                for (alias = p->p_aliases; *alias; alias++)
                    519:                        if (strcmp(name, *alias) == 0) {
                    520:                                endprotoent();
                    521:                                return (knownname(p->p_name));
                    522:                        }
                    523:        }
                    524:        endprotoent();
                    525:        return (NULL);
                    526: }
                    527:
                    528: static void
1.34      deraadt   529: usage(void)
1.1       deraadt   530: {
                    531:        (void)fprintf(stderr,
1.88      jsing     532:            "usage: %s [-AaBn] [-f address_family] [-M core] [-N system]\n"
1.69      sobrado   533:            "       %s [-bdFgilmnqrstu] [-f address_family] [-M core] [-N system]\n"
                    534:            "               [-T tableid]\n"
1.94      tedu      535:            "       %s [-bdhn] [-c count] [-I interface] [-M core] [-N system] [-w wait]\n"
1.87      bluhm     536:            "       %s [-v] [-M core] [-N system] -P pcbaddr\n"
1.60      jaredy    537:            "       %s [-s] [-M core] [-N system] [-p protocol]\n"
                    538:            "       %s [-a] [-f address_family] [-i | -I interface]\n"
                    539:            "       %s [-W interface]\n",
                    540:            __progname, __progname, __progname, __progname,
                    541:            __progname, __progname, __progname);
1.1       deraadt   542:        exit(1);
                    543: }
1.86      claudio   544:
                    545: u_int
                    546: gettable(const char *s)
                    547: {
                    548:        const char *errstr;
                    549:        struct rt_tableinfo info;
                    550:        int mib[6];
                    551:        size_t len;
                    552:        u_int tableid;
                    553:
                    554:        tableid = strtonum(s, 0, RT_TABLEID_MAX, &errstr);
                    555:        if (errstr)
                    556:                errx(1, "invalid table id: %s", errstr);
                    557:
                    558:        mib[0] = CTL_NET;
1.101     guenther  559:        mib[1] = PF_ROUTE;
1.86      claudio   560:        mib[2] = 0;
                    561:        mib[3] = 0;
                    562:        mib[4] = NET_RT_TABLE;
                    563:        mib[5] = tableid;
                    564:
                    565:        len = sizeof(info);
                    566:        if (sysctl(mib, 6, &info, &len, NULL, 0) == -1)
1.97      deraadt   567:                err(1, "routing table %d", tableid);
1.86      claudio   568:
                    569:        return (tableid);
                    570: }