]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/netstat/main.c
Sync: merge r215396 through r215463 from ^/head.
[FreeBSD/FreeBSD.git] / usr.bin / netstat / main.c
1 /*-
2  * Copyright (c) 1983, 1988, 1993
3  *      Regents of the University of California.  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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 char const copyright[] =
36 "@(#) Copyright (c) 1983, 1988, 1993\n\
37         Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #if 0
41 #ifndef lint
42 static char sccsid[] = "@(#)main.c      8.4 (Berkeley) 3/1/94";
43 #endif /* not lint */
44 #endif
45
46 #include <sys/cdefs.h>
47 __FBSDID("$FreeBSD$");
48
49 #include <sys/param.h>
50 #include <sys/file.h>
51 #include <sys/protosw.h>
52 #include <sys/socket.h>
53 #include <sys/socketvar.h>
54
55 #include <netinet/in.h>
56
57 #ifdef NETGRAPH
58 #include <netgraph/ng_socket.h>
59 #endif
60
61 #include <ctype.h>
62 #include <err.h>
63 #include <errno.h>
64 #include <kvm.h>
65 #include <limits.h>
66 #include <netdb.h>
67 #include <nlist.h>
68 #include <paths.h>
69 #include <stdint.h>
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <string.h>
73 #include <unistd.h>
74 #include "netstat.h"
75
76 static struct nlist nl[] = {
77 #define N_IFNET         0
78         { .n_name = "_ifnet" },
79 #define N_RTSTAT        1
80         { .n_name = "_rtstat" },
81 #define N_RTREE         2
82         { .n_name = "_rt_tables"},
83 #define N_MRTSTAT       3
84         { .n_name = "_mrtstat" },
85 #define N_MFCHASHTBL    4
86         { .n_name = "_mfchashtbl" },
87 #define N_VIFTABLE      5
88         { .n_name = "_viftable" },
89 #define N_IPX           6
90         { .n_name = "_ipxpcb_list"},
91 #define N_IPXSTAT       7
92         { .n_name = "_ipxstat"},
93 #define N_SPXSTAT       8
94         { .n_name = "_spx_istat"},
95 #define N_DDPSTAT       9
96         { .n_name = "_ddpstat"},
97 #define N_DDPCB         10
98         { .n_name = "_ddpcb"},
99 #define N_NGSOCKS       11
100         { .n_name = "_ngsocklist"},
101 #define N_IP6STAT       12
102         { .n_name = "_ip6stat" },
103 #define N_ICMP6STAT     13
104         { .n_name = "_icmp6stat" },
105 #define N_IPSECSTAT     14
106         { .n_name = "_ipsec4stat" },
107 #define N_IPSEC6STAT    15
108         { .n_name = "_ipsec6stat" },
109 #define N_PIM6STAT      16
110         { .n_name = "_pim6stat" },
111 #define N_MRT6STAT      17
112         { .n_name = "_mrt6stat" },
113 #define N_MF6CTABLE     18
114         { .n_name = "_mf6ctable" },
115 #define N_MIF6TABLE     19
116         { .n_name = "_mif6table" },
117 #define N_PFKEYSTAT     20
118         { .n_name = "_pfkeystat" },
119 #define N_MBSTAT        21
120         { .n_name = "_mbstat" },
121 #define N_MBTYPES       22
122         { .n_name = "_mbtypes" },
123 #define N_NMBCLUSTERS   23
124         { .n_name = "_nmbclusters" },
125 #define N_NMBUFS        24
126         { .n_name = "_nmbufs" },
127 #define N_MBHI          25
128         { .n_name = "_mbuf_hiwm" },
129 #define N_CLHI          26
130         { .n_name = "_clust_hiwm" },
131 #define N_NCPUS         27
132         { .n_name = "_smp_cpus" },
133 #define N_PAGESZ        28
134         { .n_name = "_pagesize" },
135 #define N_MBPSTAT       29
136         { .n_name = "_mb_statpcpu" },
137 #define N_RTTRASH       30
138         { .n_name = "_rttrash" },
139 #define N_MBLO          31
140         { .n_name = "_mbuf_lowm" },
141 #define N_CLLO          32
142         { .n_name = "_clust_lowm" },
143 #define N_CARPSTAT      33
144         { .n_name = "_carpstats" },
145 #define N_PFSYNCSTAT    34
146         { .n_name = "_pfsyncstats" },
147 #define N_AHSTAT        35
148         { .n_name = "_ahstat" },
149 #define N_ESPSTAT       36
150         { .n_name = "_espstat" },
151 #define N_IPCOMPSTAT    37
152         { .n_name = "_ipcompstat" },
153 #define N_TCPSTAT       38
154         { .n_name = "_tcpstat" },
155 #define N_UDPSTAT       39
156         { .n_name = "_udpstat" },
157 #define N_IPSTAT        40
158         { .n_name = "_ipstat" },
159 #define N_ICMPSTAT      41
160         { .n_name = "_icmpstat" },
161 #define N_IGMPSTAT      42
162         { .n_name = "_igmpstat" },
163 #define N_PIMSTAT       43
164         { .n_name = "_pimstat" },
165 #define N_TCBINFO       44
166         { .n_name = "_tcbinfo" },
167 #define N_UDBINFO       45
168         { .n_name = "_udbinfo" },
169 #define N_DIVCBINFO     46
170         { .n_name = "_divcbinfo" },
171 #define N_RIPCBINFO     47
172         { .n_name = "_ripcbinfo" },
173 #define N_UNP_COUNT     48
174         { .n_name = "_unp_count" },
175 #define N_UNP_GENCNT    49
176         { .n_name = "_unp_gencnt" },
177 #define N_UNP_DHEAD     50
178         { .n_name = "_unp_dhead" },
179 #define N_UNP_SHEAD     51
180         { .n_name = "_unp_shead" },
181 #define N_RIP6STAT      52
182         { .n_name = "_rip6stat" },
183 #define N_SCTPSTAT      53
184         { .n_name = "_sctpstat" },
185 #define N_MFCTABLESIZE  54
186         { .n_name = "_mfctablesize" },
187 #define N_ARPSTAT       55
188         { .n_name = "_arpstat" },
189 #define N_UNP_SPHEAD    56
190         { .n_name = "unp_sphead" },
191         { .n_name = NULL },
192 };
193
194 struct protox {
195         int     pr_index;               /* index into nlist of cb head */
196         int     pr_sindex;              /* index into nlist of stat block */
197         u_char  pr_wanted;              /* 1 if wanted, 0 otherwise */
198         void    (*pr_cblocks)(u_long, const char *, int, int);
199                                         /* control blocks printing routine */
200         void    (*pr_stats)(u_long, const char *, int, int);
201                                         /* statistics printing routine */
202         void    (*pr_istats)(char *);   /* per/if statistics printing routine */
203         const char      *pr_name;               /* well-known name */
204         int     pr_usesysctl;           /* non-zero if we use sysctl, not kvm */
205         int     pr_protocol;
206 } protox[] = {
207         { N_TCBINFO,    N_TCPSTAT,      1,      protopr,
208           tcp_stats,    NULL,           "tcp",  1,      IPPROTO_TCP },
209         { N_UDBINFO,    N_UDPSTAT,      1,      protopr,
210           udp_stats,    NULL,           "udp",  1,      IPPROTO_UDP },
211 #ifdef SCTP
212         { -1,           N_SCTPSTAT,     1,      sctp_protopr,
213           sctp_stats,   NULL,           "sctp", 1,      IPPROTO_SCTP },
214 #endif
215         { N_DIVCBINFO,  -1,             1,      protopr,
216           NULL,         NULL,           "divert", 1,    IPPROTO_DIVERT },
217         { N_RIPCBINFO,  N_IPSTAT,       1,      protopr,
218           ip_stats,     NULL,           "ip",   1,      IPPROTO_RAW },
219         { N_RIPCBINFO,  N_ICMPSTAT,     1,      protopr,
220           icmp_stats,   NULL,           "icmp", 1,      IPPROTO_ICMP },
221         { N_RIPCBINFO,  N_IGMPSTAT,     1,      protopr,
222           igmp_stats,   NULL,           "igmp", 1,      IPPROTO_IGMP },
223 #ifdef IPSEC
224         { -1,           N_IPSECSTAT,    1,      NULL,   /* keep as compat */
225           ipsec_stats,  NULL,           "ipsec", 0,     0},
226         { -1,           N_AHSTAT,       1,      NULL,
227           ah_stats,     NULL,           "ah",   0,      0},
228         { -1,           N_ESPSTAT,      1,      NULL,
229           esp_stats,    NULL,           "esp",  0,      0},
230         { -1,           N_IPCOMPSTAT,   1,      NULL,
231           ipcomp_stats, NULL,           "ipcomp", 0,    0},
232 #endif
233         { N_RIPCBINFO,  N_PIMSTAT,      1,      protopr,
234           pim_stats,    NULL,           "pim",  1,      IPPROTO_PIM },
235         { -1,           N_CARPSTAT,     1,      NULL,
236           carp_stats,   NULL,           "carp", 1,      0 },
237         { -1,           N_PFSYNCSTAT,   1,      NULL,
238           pfsync_stats, NULL,           "pfsync", 1,    0 },
239         { -1,           N_ARPSTAT,      1,      NULL,
240           arp_stats,    NULL,           "arp", 1,       0 },
241         { -1,           -1,             0,      NULL,
242           NULL,         NULL,           NULL,   0,      0 }
243 };
244
245 #ifdef INET6
246 struct protox ip6protox[] = {
247         { N_TCBINFO,    N_TCPSTAT,      1,      protopr,
248           tcp_stats,    NULL,           "tcp",  1,      IPPROTO_TCP },
249         { N_UDBINFO,    N_UDPSTAT,      1,      protopr,
250           udp_stats,    NULL,           "udp",  1,      IPPROTO_UDP },
251         { N_RIPCBINFO,  N_IP6STAT,      1,      protopr,
252           ip6_stats,    ip6_ifstats,    "ip6",  1,      IPPROTO_RAW },
253         { N_RIPCBINFO,  N_ICMP6STAT,    1,      protopr,
254           icmp6_stats,  icmp6_ifstats,  "icmp6", 1,     IPPROTO_ICMPV6 },
255 #ifdef IPSEC
256         { -1,           N_IPSEC6STAT,   1,      NULL,
257           ipsec_stats,  NULL,           "ipsec6", 0,    0 },
258 #endif
259 #ifdef notyet
260         { -1,           N_PIM6STAT,     1,      NULL,
261           pim6_stats,   NULL,           "pim6", 1,      0 },
262 #endif
263         { -1,           N_RIP6STAT,     1,      NULL,
264           rip6_stats,   NULL,           "rip6", 1,      0 },
265         { -1,           -1,             0,      NULL,
266           NULL,         NULL,           NULL,   0,      0 }
267 };
268 #endif /*INET6*/
269
270 #ifdef IPSEC
271 struct protox pfkeyprotox[] = {
272         { -1,           N_PFKEYSTAT,    1,      NULL,
273           pfkey_stats,  NULL,           "pfkey", 0,     0 },
274         { -1,           -1,             0,      NULL,
275           NULL,         NULL,           NULL,   0,      0 }
276 };
277 #endif
278
279 struct protox atalkprotox[] = {
280         { N_DDPCB,      N_DDPSTAT,      1,      atalkprotopr,
281           ddp_stats,    NULL,           "ddp",  0,      0 },
282         { -1,           -1,             0,      NULL,
283           NULL,         NULL,           NULL,   0,      0 }
284 };
285 #ifdef NETGRAPH
286 struct protox netgraphprotox[] = {
287         { N_NGSOCKS,    -1,             1,      netgraphprotopr,
288           NULL,         NULL,           "ctrl", 0,      0 },
289         { N_NGSOCKS,    -1,             1,      netgraphprotopr,
290           NULL,         NULL,           "data", 0,      0 },
291         { -1,           -1,             0,      NULL,
292           NULL,         NULL,           NULL,   0,      0 }
293 };
294 #endif
295 #ifdef IPX
296 struct protox ipxprotox[] = {
297         { N_IPX,        N_IPXSTAT,      1,      ipxprotopr,
298           ipx_stats,    NULL,           "ipx",  0,      0 },
299         { N_IPX,        N_SPXSTAT,      1,      ipxprotopr,
300           spx_stats,    NULL,           "spx",  0,      0 },
301         { -1,           -1,             0,      NULL,
302           NULL,         NULL,           0,      0,      0 }
303 };
304 #endif
305
306 struct protox *protoprotox[] = {
307                                          protox,
308 #ifdef INET6
309                                          ip6protox,
310 #endif
311 #ifdef IPSEC
312                                          pfkeyprotox,
313 #endif
314 #ifdef IPX
315                                          ipxprotox,
316 #endif
317                                          atalkprotox, NULL };
318
319 static void printproto(struct protox *, const char *);
320 static void usage(void);
321 static struct protox *name2protox(const char *);
322 static struct protox *knownname(const char *);
323
324 static kvm_t *kvmd;
325 static char *nlistf = NULL, *memf = NULL;
326
327 int     Aflag;          /* show addresses of protocol control block */
328 int     aflag;          /* show all sockets (including servers) */
329 int     Bflag;          /* show information about bpf consumers */
330 int     bflag;          /* show i/f total bytes in/out */
331 int     dflag;          /* show i/f dropped packets */
332 int     gflag;          /* show group (multicast) routing or stats */
333 int     hflag;          /* show counters in human readable format */
334 int     iflag;          /* show interfaces */
335 int     Lflag;          /* show size of listen queues */
336 int     mflag;          /* show memory stats */
337 int     noutputs = 0;   /* how much outputs before we exit */
338 int     numeric_addr;   /* show addresses numerically */
339 int     numeric_port;   /* show ports numerically */
340 static int pflag;       /* show given protocol */
341 int     Qflag;          /* show netisr information */
342 int     rflag;          /* show routing tables (or routing stats) */
343 int     sflag;          /* show protocol statistics */
344 int     Wflag;          /* wide display */
345 int     Tflag;          /* TCP Information */
346 int     xflag;          /* extra information, includes all socket buffer info */
347 int     zflag;          /* zero stats */
348
349 int     interval;       /* repeat interval for i/f stats */
350
351 char    *interface;     /* desired i/f for stats, or NULL for all i/fs */
352 int     unit;           /* unit number for above */
353
354 int     af;             /* address family */
355 int     live;           /* true if we are examining a live system */
356
357 int
358 main(int argc, char *argv[])
359 {
360         struct protox *tp = NULL;  /* for printing cblocks & stats */
361         int ch;
362
363         af = AF_UNSPEC;
364
365         while ((ch = getopt(argc, argv, "AaBbdf:ghI:iLlM:mN:np:Qq:rSTsuWw:xz"))
366             != -1)
367                 switch(ch) {
368                 case 'A':
369                         Aflag = 1;
370                         break;
371                 case 'a':
372                         aflag = 1;
373                         break;
374                 case 'B':
375                         Bflag = 1;
376                         break;
377                 case 'b':
378                         bflag = 1;
379                         break;
380                 case 'd':
381                         dflag = 1;
382                         break;
383                 case 'f':
384                         if (strcmp(optarg, "ipx") == 0)
385                                 af = AF_IPX;
386                         else if (strcmp(optarg, "inet") == 0)
387                                 af = AF_INET;
388 #ifdef INET6
389                         else if (strcmp(optarg, "inet6") == 0)
390                                 af = AF_INET6;
391 #endif
392 #ifdef IPSEC
393                         else if (strcmp(optarg, "pfkey") == 0)
394                                 af = PF_KEY;
395 #endif
396                         else if (strcmp(optarg, "unix") == 0)
397                                 af = AF_UNIX;
398                         else if (strcmp(optarg, "atalk") == 0)
399                                 af = AF_APPLETALK;
400 #ifdef NETGRAPH
401                         else if (strcmp(optarg, "ng") == 0
402                             || strcmp(optarg, "netgraph") == 0)
403                                 af = AF_NETGRAPH;
404 #endif
405                         else if (strcmp(optarg, "link") == 0)
406                                 af = AF_LINK;
407                         else {
408                                 errx(1, "%s: unknown address family", optarg);
409                         }
410                         break;
411                 case 'g':
412                         gflag = 1;
413                         break;
414                 case 'h':
415                         hflag = 1;
416                         break;
417                 case 'I': {
418                         char *cp;
419
420                         iflag = 1;
421                         for (cp = interface = optarg; isalpha(*cp); cp++)
422                                 continue;
423                         unit = atoi(cp);
424                         break;
425                 }
426                 case 'i':
427                         iflag = 1;
428                         break;
429                 case 'L':
430                         Lflag = 1;
431                         break;
432                 case 'M':
433                         memf = optarg;
434                         break;
435                 case 'm':
436                         mflag = 1;
437                         break;
438                 case 'N':
439                         nlistf = optarg;
440                         break;
441                 case 'n':
442                         numeric_addr = numeric_port = 1;
443                         break;
444                 case 'p':
445                         if ((tp = name2protox(optarg)) == NULL) {
446                                 errx(1,
447                                      "%s: unknown or uninstrumented protocol",
448                                      optarg);
449                         }
450                         pflag = 1;
451                         break;
452                 case 'Q':
453                         Qflag = 1;
454                         break;
455                 case 'q':
456                         noutputs = atoi(optarg);
457                         if (noutputs != 0)
458                                 noutputs++;
459                         break;
460                 case 'r':
461                         rflag = 1;
462                         break;
463                 case 's':
464                         ++sflag;
465                         break;
466                 case 'S':
467                         numeric_addr = 1;
468                         break;
469                 case 'u':
470                         af = AF_UNIX;
471                         break;
472                 case 'W':
473                 case 'l':
474                         Wflag = 1;
475                         break;
476                 case 'w':
477                         interval = atoi(optarg);
478                         iflag = 1;
479                         break;
480                 case 'T':
481                         Tflag = 1;
482                         break;
483                 case 'x':
484                         xflag = 1;
485                         break;
486                 case 'z':
487                         zflag = 1;
488                         break;
489                 case '?':
490                 default:
491                         usage();
492                 }
493         argv += optind;
494         argc -= optind;
495
496 #define BACKWARD_COMPATIBILITY
497 #ifdef  BACKWARD_COMPATIBILITY
498         if (*argv) {
499                 if (isdigit(**argv)) {
500                         interval = atoi(*argv);
501                         if (interval <= 0)
502                                 usage();
503                         ++argv;
504                         iflag = 1;
505                 }
506                 if (*argv) {
507                         nlistf = *argv;
508                         if (*++argv)
509                                 memf = *argv;
510                 }
511         }
512 #endif
513
514         /*
515          * Discard setgid privileges if not the running kernel so that bad
516          * guys can't print interesting stuff from kernel memory.
517          */
518         live = (nlistf == NULL && memf == NULL);
519         if (!live)
520                 setgid(getgid());
521
522         if (xflag && Tflag) 
523                 errx(1, "-x and -T are incompatible, pick one.");
524
525         if (Bflag) {
526                 if (!live)
527                         usage();
528                 bpf_stats(interface);
529                 exit(0);
530         }
531         if (mflag) {
532                 if (!live) {
533                         if (kread(0, NULL, 0) == 0)
534                                 mbpr(kvmd, nl[N_MBSTAT].n_value);
535                 } else
536                         mbpr(NULL, 0);
537                 exit(0);
538         }
539         if (Qflag) {
540                 if (!live) {
541                         if (kread(0, NULL, 0) == 0)
542                                 netisr_stats(kvmd);
543                 } else
544                         netisr_stats(NULL);
545                 exit(0);
546         }
547 #if 0
548         /*
549          * Keep file descriptors open to avoid overhead
550          * of open/close on each call to get* routines.
551          */
552         sethostent(1);
553         setnetent(1);
554 #else
555         /*
556          * This does not make sense any more with DNS being default over
557          * the files.  Doing a setXXXXent(1) causes a tcp connection to be
558          * used for the queries, which is slower.
559          */
560 #endif
561         kread(0, NULL, 0);
562         if (iflag && !sflag) {
563                 intpr(interval, nl[N_IFNET].n_value, NULL);
564                 exit(0);
565         }
566         if (rflag) {
567                 if (sflag)
568                         rt_stats(nl[N_RTSTAT].n_value, nl[N_RTTRASH].n_value);
569                 else
570                         routepr(nl[N_RTREE].n_value);
571                 exit(0);
572         }
573         if (gflag) {
574                 if (sflag) {
575                         if (af == AF_INET || af == AF_UNSPEC)
576                                 mrt_stats(nl[N_MRTSTAT].n_value);
577 #ifdef INET6
578                         if (af == AF_INET6 || af == AF_UNSPEC)
579                                 mrt6_stats(nl[N_MRT6STAT].n_value);
580 #endif
581                 } else {
582                         if (af == AF_INET || af == AF_UNSPEC)
583                                 mroutepr(nl[N_MFCHASHTBL].n_value,
584                                          nl[N_MFCTABLESIZE].n_value,
585                                          nl[N_VIFTABLE].n_value);
586 #ifdef INET6
587                         if (af == AF_INET6 || af == AF_UNSPEC)
588                                 mroute6pr(nl[N_MF6CTABLE].n_value,
589                                           nl[N_MIF6TABLE].n_value);
590 #endif
591                 }
592                 exit(0);
593         }
594
595         if (tp) {
596                 printproto(tp, tp->pr_name);
597                 exit(0);
598         }
599         if (af == AF_INET || af == AF_UNSPEC)
600                 for (tp = protox; tp->pr_name; tp++)
601                         printproto(tp, tp->pr_name);
602 #ifdef INET6
603         if (af == AF_INET6 || af == AF_UNSPEC)
604                 for (tp = ip6protox; tp->pr_name; tp++)
605                         printproto(tp, tp->pr_name);
606 #endif /*INET6*/
607 #ifdef IPSEC
608         if (af == PF_KEY || af == AF_UNSPEC)
609                 for (tp = pfkeyprotox; tp->pr_name; tp++)
610                         printproto(tp, tp->pr_name);
611 #endif /*IPSEC*/
612 #ifdef IPX
613         if (af == AF_IPX || af == AF_UNSPEC) {
614                 for (tp = ipxprotox; tp->pr_name; tp++)
615                         printproto(tp, tp->pr_name);
616         }
617 #endif /* IPX */
618         if (af == AF_APPLETALK || af == AF_UNSPEC)
619                 for (tp = atalkprotox; tp->pr_name; tp++)
620                         printproto(tp, tp->pr_name);
621 #ifdef NETGRAPH
622         if (af == AF_NETGRAPH || af == AF_UNSPEC)
623                 for (tp = netgraphprotox; tp->pr_name; tp++)
624                         printproto(tp, tp->pr_name);
625 #endif /* NETGRAPH */
626         if ((af == AF_UNIX || af == AF_UNSPEC) && !sflag)
627                 unixpr(nl[N_UNP_COUNT].n_value, nl[N_UNP_GENCNT].n_value,
628                     nl[N_UNP_DHEAD].n_value, nl[N_UNP_SHEAD].n_value,
629                     nl[N_UNP_SPHEAD].n_value);
630         exit(0);
631 }
632
633 /*
634  * Print out protocol statistics or control blocks (per sflag).
635  * If the interface was not specifically requested, and the symbol
636  * is not in the namelist, ignore this one.
637  */
638 static void
639 printproto(tp, name)
640         struct protox *tp;
641         const char *name;
642 {
643         void (*pr)(u_long, const char *, int, int);
644         u_long off;
645
646         if (sflag) {
647                 if (iflag) {
648                         if (tp->pr_istats)
649                                 intpr(interval, nl[N_IFNET].n_value,
650                                       tp->pr_istats);
651                         else if (pflag)
652                                 printf("%s: no per-interface stats routine\n",
653                                     tp->pr_name);
654                         return;
655                 } else {
656                         pr = tp->pr_stats;
657                         if (!pr) {
658                                 if (pflag)
659                                         printf("%s: no stats routine\n",
660                                             tp->pr_name);
661                                 return;
662                         }
663                         if (tp->pr_usesysctl && live)
664                                 off = 0;
665                         else if (tp->pr_sindex < 0) {
666                                 if (pflag)
667                                         printf(
668                                     "%s: stats routine doesn't work on cores\n",
669                                             tp->pr_name);
670                                 return;
671                         } else
672                                 off = nl[tp->pr_sindex].n_value;
673                 }
674         } else {
675                 pr = tp->pr_cblocks;
676                 if (!pr) {
677                         if (pflag)
678                                 printf("%s: no PCB routine\n", tp->pr_name);
679                         return;
680                 }
681                 if (tp->pr_usesysctl && live)
682                         off = 0;
683                 else if (tp->pr_index < 0) {
684                         if (pflag)
685                                 printf(
686                                     "%s: PCB routine doesn't work on cores\n",
687                                     tp->pr_name);
688                         return;
689                 } else
690                         off = nl[tp->pr_index].n_value;
691         }
692         if (pr != NULL && (off || (live && tp->pr_usesysctl) ||
693             af != AF_UNSPEC))
694                 (*pr)(off, name, af, tp->pr_protocol);
695 }
696
697 /*
698  * Read kernel memory, return 0 on success.
699  */
700 int
701 kread(u_long addr, void *buf, size_t size)
702 {
703         char errbuf[_POSIX2_LINE_MAX];
704
705         if (kvmd == NULL) {
706                 kvmd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
707                 setgid(getgid());
708                 if (kvmd != NULL) {
709                         if (kvm_nlist(kvmd, nl) < 0) {
710                                 if (nlistf)
711                                         errx(1, "%s: kvm_nlist: %s", nlistf,
712                                              kvm_geterr(kvmd));
713                                 else
714                                         errx(1, "kvm_nlist: %s", kvm_geterr(kvmd));
715                         }
716
717                         if (nl[0].n_type == 0) {
718                                 if (nlistf)
719                                         errx(1, "%s: no namelist", nlistf);
720                                 else
721                                         errx(1, "no namelist");
722                         }
723                 } else {
724                         warnx("kvm not available: %s", errbuf);
725                         return(-1);
726                 }
727         }
728         if (!buf)
729                 return (0);
730         if (kvm_read(kvmd, addr, buf, size) != (ssize_t)size) {
731                 warnx("%s", kvm_geterr(kvmd));
732                 return (-1);
733         }
734         return (0);
735 }
736
737 const char *
738 plural(uintmax_t n)
739 {
740         return (n != 1 ? "s" : "");
741 }
742
743 const char *
744 plurales(uintmax_t n)
745 {
746         return (n != 1 ? "es" : "");
747 }
748
749 const char *
750 pluralies(uintmax_t n)
751 {
752         return (n != 1 ? "ies" : "y");
753 }
754
755 /*
756  * Find the protox for the given "well-known" name.
757  */
758 static struct protox *
759 knownname(const char *name)
760 {
761         struct protox **tpp, *tp;
762
763         for (tpp = protoprotox; *tpp; tpp++)
764                 for (tp = *tpp; tp->pr_name; tp++)
765                         if (strcmp(tp->pr_name, name) == 0)
766                                 return (tp);
767         return (NULL);
768 }
769
770 /*
771  * Find the protox corresponding to name.
772  */
773 static struct protox *
774 name2protox(const char *name)
775 {
776         struct protox *tp;
777         char **alias;                   /* alias from p->aliases */
778         struct protoent *p;
779
780         /*
781          * Try to find the name in the list of "well-known" names. If that
782          * fails, check if name is an alias for an Internet protocol.
783          */
784         if ((tp = knownname(name)) != NULL)
785                 return (tp);
786
787         setprotoent(1);                 /* make protocol lookup cheaper */
788         while ((p = getprotoent()) != NULL) {
789                 /* assert: name not same as p->name */
790                 for (alias = p->p_aliases; *alias; alias++)
791                         if (strcmp(name, *alias) == 0) {
792                                 endprotoent();
793                                 return (knownname(p->p_name));
794                         }
795         }
796         endprotoent();
797         return (NULL);
798 }
799
800 static void
801 usage(void)
802 {
803         (void)fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
804 "usage: netstat [-AaLnSTWx] [-f protocol_family | -p protocol]\n"
805 "               [-M core] [-N system]",
806 "       netstat -i | -I interface [-abdhnW] [-f address_family]\n"
807 "               [-M core] [-N system]",
808 "       netstat -w wait [-I interface] [-d] [-M core] [-N system] [-q howmany]",
809 "       netstat -s [-s] [-z] [-f protocol_family | -p protocol]\n"
810 "               [-M core] [-N system]",
811 "       netstat -i | -I interface -s [-f protocol_family | -p protocol]\n"
812 "               [-M core] [-N system]",
813 "       netstat -m [-M core] [-N system]",
814 "       netstat -B [-I interface]",
815 "       netstat -r [-AanW] [-f address_family] [-M core] [-N system]",
816 "       netstat -rs [-s] [-M core] [-N system]",
817 "       netstat -g [-W] [-f address_family] [-M core] [-N system]",
818 "       netstat -gs [-s] [-f address_family] [-M core] [-N system]",
819 "       netstat -Q");
820         exit(1);
821 }