xref: /freebsd/usr.bin/netstat/main.c (revision b3aaa0cc21c63d388230c7ef2a80abd631ff20d5)
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_MFCTABLE	4
86 	{ .n_name = "_mfctable" },
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 	{ .n_name = NULL },
186 };
187 
188 struct protox {
189 	int	pr_index;		/* index into nlist of cb head */
190 	int	pr_sindex;		/* index into nlist of stat block */
191 	u_char	pr_wanted;		/* 1 if wanted, 0 otherwise */
192 	void	(*pr_cblocks)(u_long, const char *, int, int);
193 					/* control blocks printing routine */
194 	void	(*pr_stats)(u_long, const char *, int, int);
195 					/* statistics printing routine */
196 	void	(*pr_istats)(char *);	/* per/if statistics printing routine */
197 	const char	*pr_name;		/* well-known name */
198 	int	pr_usesysctl;		/* non-zero if we use sysctl, not kvm */
199 	int	pr_protocol;
200 } protox[] = {
201 	{ N_TCBINFO,	N_TCPSTAT,	1,	protopr,
202 	  tcp_stats,	NULL,		"tcp",	1,	IPPROTO_TCP },
203 	{ N_UDBINFO,	N_UDPSTAT,	1,	protopr,
204 	  udp_stats,	NULL,		"udp",	1,	IPPROTO_UDP },
205 #ifdef SCTP
206 	{ -1,		N_SCTPSTAT,	1,	sctp_protopr,
207 	  sctp_stats,	NULL,		"sctp",	1,	IPPROTO_SCTP },
208 #endif
209 	{ N_DIVCBINFO,	-1,		1,	protopr,
210 	  NULL,		NULL,		"divert", 1,	IPPROTO_DIVERT },
211 	{ N_RIPCBINFO,	N_IPSTAT,	1,	protopr,
212 	  ip_stats,	NULL,		"ip",	1,	IPPROTO_RAW },
213 	{ N_RIPCBINFO,	N_ICMPSTAT,	1,	protopr,
214 	  icmp_stats,	NULL,		"icmp",	1,	IPPROTO_ICMP },
215 	{ N_RIPCBINFO,	N_IGMPSTAT,	1,	protopr,
216 	  igmp_stats,	NULL,		"igmp",	1,	IPPROTO_IGMP },
217 #ifdef IPSEC
218 	{ -1,		N_IPSECSTAT,	1,	NULL,	/* keep as compat */
219 	  ipsec_stats,	NULL,		"ipsec", 0,	0},
220 	{ -1,		N_AHSTAT,	1,	NULL,
221 	  ah_stats,	NULL,		"ah",	0,	0},
222 	{ -1,		N_ESPSTAT,	1,	NULL,
223 	  esp_stats,	NULL,		"esp",	0,	0},
224 	{ -1,		N_IPCOMPSTAT,	1,	NULL,
225 	  ipcomp_stats,	NULL,		"ipcomp", 0,	0},
226 #endif
227 	{ N_RIPCBINFO,	N_PIMSTAT,	1,	protopr,
228 	  pim_stats,	NULL,		"pim",	1,	IPPROTO_PIM },
229 	{ -1,		N_CARPSTAT,	1,	NULL,
230 	  carp_stats,	NULL,		"carp",	1,	0 },
231 	{ -1,		N_PFSYNCSTAT,	1,	NULL,
232 	  pfsync_stats,	NULL,		"pfsync", 1,	0 },
233 	{ -1,		-1,		0,	NULL,
234 	  NULL,		NULL,		NULL,	0,	0 }
235 };
236 
237 #ifdef INET6
238 struct protox ip6protox[] = {
239 	{ N_TCBINFO,	N_TCPSTAT,	1,	protopr,
240 	  tcp_stats,	NULL,		"tcp",	1,	IPPROTO_TCP },
241 	{ N_UDBINFO,	N_UDPSTAT,	1,	protopr,
242 	  udp_stats,	NULL,		"udp",	1,	IPPROTO_UDP },
243 	{ N_RIPCBINFO,	N_IP6STAT,	1,	protopr,
244 	  ip6_stats,	ip6_ifstats,	"ip6",	1,	IPPROTO_RAW },
245 	{ N_RIPCBINFO,	N_ICMP6STAT,	1,	protopr,
246 	  icmp6_stats,	icmp6_ifstats,	"icmp6", 1,	IPPROTO_ICMPV6 },
247 #ifdef IPSEC
248 	{ -1,		N_IPSEC6STAT,	1,	NULL,
249 	  ipsec_stats,	NULL,		"ipsec6", 0,	0 },
250 #endif
251 #ifdef notyet
252 	{ -1,		N_PIM6STAT,	1,	NULL,
253 	  pim6_stats,	NULL,		"pim6",	1,	0 },
254 #endif
255 	{ -1,		N_RIP6STAT,	1,	NULL,
256 	  rip6_stats,	NULL,		"rip6",	1,	0 },
257 	{ -1,		-1,		0,	NULL,
258 	  NULL,		NULL,		NULL,	0,	0 }
259 };
260 #endif /*INET6*/
261 
262 #ifdef IPSEC
263 struct protox pfkeyprotox[] = {
264 	{ -1,		N_PFKEYSTAT,	1,	NULL,
265 	  pfkey_stats,	NULL,		"pfkey", 0,	0 },
266 	{ -1,		-1,		0,	NULL,
267 	  NULL,		NULL,		NULL,	0,	0 }
268 };
269 #endif
270 
271 struct protox atalkprotox[] = {
272 	{ N_DDPCB,	N_DDPSTAT,	1,	atalkprotopr,
273 	  ddp_stats,	NULL,		"ddp",	0,	0 },
274 	{ -1,		-1,		0,	NULL,
275 	  NULL,		NULL,		NULL,	0,	0 }
276 };
277 #ifdef NETGRAPH
278 struct protox netgraphprotox[] = {
279 	{ N_NGSOCKS,	-1,		1,	netgraphprotopr,
280 	  NULL,		NULL,		"ctrl",	0,	0 },
281 	{ N_NGSOCKS,	-1,		1,	netgraphprotopr,
282 	  NULL,		NULL,		"data",	0,	0 },
283 	{ -1,		-1,		0,	NULL,
284 	  NULL,		NULL,		NULL,	0,	0 }
285 };
286 #endif
287 #ifdef IPX
288 struct protox ipxprotox[] = {
289 	{ N_IPX,	N_IPXSTAT,	1,	ipxprotopr,
290 	  ipx_stats,	NULL,		"ipx",	0,	0 },
291 	{ N_IPX,	N_SPXSTAT,	1,	ipxprotopr,
292 	  spx_stats,	NULL,		"spx",	0,	0 },
293 	{ -1,		-1,		0,	NULL,
294 	  NULL,		NULL,		0,	0,	0 }
295 };
296 #endif
297 
298 struct protox *protoprotox[] = {
299 					 protox,
300 #ifdef INET6
301 					 ip6protox,
302 #endif
303 #ifdef IPSEC
304 					 pfkeyprotox,
305 #endif
306 #ifdef IPX
307 					 ipxprotox,
308 #endif
309 					 atalkprotox, NULL };
310 
311 static void printproto(struct protox *, const char *);
312 static void usage(void);
313 static struct protox *name2protox(const char *);
314 static struct protox *knownname(const char *);
315 
316 static kvm_t *kvmd;
317 static char *nlistf = NULL, *memf = NULL;
318 
319 int	Aflag;		/* show addresses of protocol control block */
320 int	aflag;		/* show all sockets (including servers) */
321 int	Bflag;		/* show information about bpf consumers */
322 int	bflag;		/* show i/f total bytes in/out */
323 int	dflag;		/* show i/f dropped packets */
324 int	gflag;		/* show group (multicast) routing or stats */
325 int	hflag;		/* show counters in human readable format */
326 int	iflag;		/* show interfaces */
327 int	Lflag;		/* show size of listen queues */
328 int	mflag;		/* show memory stats */
329 int	numeric_addr;	/* show addresses numerically */
330 int	numeric_port;	/* show ports numerically */
331 static int pflag;	/* show given protocol */
332 int	rflag;		/* show routing tables (or routing stats) */
333 int	sflag;		/* show protocol statistics */
334 int	tflag;		/* show i/f watchdog timers */
335 int	Wflag;		/* wide display */
336 int	xflag;		/* extra information, includes all socket buffer info */
337 int	zflag;		/* zero stats */
338 
339 int	interval;	/* repeat interval for i/f stats */
340 
341 char	*interface;	/* desired i/f for stats, or NULL for all i/fs */
342 int	unit;		/* unit number for above */
343 
344 int	af;		/* address family */
345 int	live;		/* true if we are examining a live system */
346 
347 int
348 main(int argc, char *argv[])
349 {
350 	struct protox *tp = NULL;  /* for printing cblocks & stats */
351 	int ch;
352 
353 	af = AF_UNSPEC;
354 
355 	while ((ch = getopt(argc, argv, "AaBbdf:ghI:iLlM:mN:np:rSstuWw:xz")) != -1)
356 		switch(ch) {
357 		case 'A':
358 			Aflag = 1;
359 			break;
360 		case 'a':
361 			aflag = 1;
362 			break;
363 		case 'B':
364 			Bflag = 1;
365 			break;
366 		case 'b':
367 			bflag = 1;
368 			break;
369 		case 'd':
370 			dflag = 1;
371 			break;
372 		case 'f':
373 			if (strcmp(optarg, "ipx") == 0)
374 				af = AF_IPX;
375 			else if (strcmp(optarg, "inet") == 0)
376 				af = AF_INET;
377 #ifdef INET6
378 			else if (strcmp(optarg, "inet6") == 0)
379 				af = AF_INET6;
380 #endif
381 #ifdef IPSEC
382 			else if (strcmp(optarg, "pfkey") == 0)
383 				af = PF_KEY;
384 #endif
385 			else if (strcmp(optarg, "unix") == 0)
386 				af = AF_UNIX;
387 			else if (strcmp(optarg, "atalk") == 0)
388 				af = AF_APPLETALK;
389 #ifdef NETGRAPH
390 			else if (strcmp(optarg, "ng") == 0
391 			    || strcmp(optarg, "netgraph") == 0)
392 				af = AF_NETGRAPH;
393 #endif
394 			else if (strcmp(optarg, "link") == 0)
395 				af = AF_LINK;
396 			else {
397 				errx(1, "%s: unknown address family", optarg);
398 			}
399 			break;
400 		case 'g':
401 			gflag = 1;
402 			break;
403 		case 'h':
404 			hflag = 1;
405 			break;
406 		case 'I': {
407 			char *cp;
408 
409 			iflag = 1;
410 			for (cp = interface = optarg; isalpha(*cp); cp++)
411 				continue;
412 			unit = atoi(cp);
413 			break;
414 		}
415 		case 'i':
416 			iflag = 1;
417 			break;
418 		case 'L':
419 			Lflag = 1;
420 			break;
421 		case 'M':
422 			memf = optarg;
423 			break;
424 		case 'm':
425 			mflag = 1;
426 			break;
427 		case 'N':
428 			nlistf = optarg;
429 			break;
430 		case 'n':
431 			numeric_addr = numeric_port = 1;
432 			break;
433 		case 'p':
434 			if ((tp = name2protox(optarg)) == NULL) {
435 				errx(1,
436 				     "%s: unknown or uninstrumented protocol",
437 				     optarg);
438 			}
439 			pflag = 1;
440 			break;
441 		case 'r':
442 			rflag = 1;
443 			break;
444 		case 's':
445 			++sflag;
446 			break;
447 		case 'S':
448 			numeric_addr = 1;
449 			break;
450 		case 't':
451 			tflag = 1;
452 			break;
453 		case 'u':
454 			af = AF_UNIX;
455 			break;
456 		case 'W':
457 		case 'l':
458 			Wflag = 1;
459 			break;
460 		case 'w':
461 			interval = atoi(optarg);
462 			iflag = 1;
463 			break;
464 		case 'x':
465 			xflag = 1;
466 			break;
467 		case 'z':
468 			zflag = 1;
469 			break;
470 		case '?':
471 		default:
472 			usage();
473 		}
474 	argv += optind;
475 	argc -= optind;
476 
477 #define	BACKWARD_COMPATIBILITY
478 #ifdef	BACKWARD_COMPATIBILITY
479 	if (*argv) {
480 		if (isdigit(**argv)) {
481 			interval = atoi(*argv);
482 			if (interval <= 0)
483 				usage();
484 			++argv;
485 			iflag = 1;
486 		}
487 		if (*argv) {
488 			nlistf = *argv;
489 			if (*++argv)
490 				memf = *argv;
491 		}
492 	}
493 #endif
494 
495 	/*
496 	 * Discard setgid privileges if not the running kernel so that bad
497 	 * guys can't print interesting stuff from kernel memory.
498 	 */
499 	live = (nlistf == NULL && memf == NULL);
500 	if (!live)
501 		setgid(getgid());
502 
503 	if (Bflag) {
504 		if (!live)
505 			usage();
506 		bpf_stats(interface);
507 		exit(0);
508 	}
509 	if (mflag) {
510 		if (!live) {
511 			if (kread(0, NULL, 0) == 0)
512 				mbpr(kvmd, nl[N_MBSTAT].n_value);
513 		} else
514 			mbpr(NULL, 0);
515 		exit(0);
516 	}
517 #if 0
518 	/*
519 	 * Keep file descriptors open to avoid overhead
520 	 * of open/close on each call to get* routines.
521 	 */
522 	sethostent(1);
523 	setnetent(1);
524 #else
525 	/*
526 	 * This does not make sense any more with DNS being default over
527 	 * the files.  Doing a setXXXXent(1) causes a tcp connection to be
528 	 * used for the queries, which is slower.
529 	 */
530 #endif
531 	kread(0, NULL, 0);
532 	if (iflag && !sflag) {
533 		intpr(interval, nl[N_IFNET].n_value, NULL);
534 		exit(0);
535 	}
536 	if (rflag) {
537 		if (sflag)
538 			rt_stats(nl[N_RTSTAT].n_value, nl[N_RTTRASH].n_value);
539 		else
540 			routepr(nl[N_RTREE].n_value);
541 		exit(0);
542 	}
543 	if (gflag) {
544 		if (sflag) {
545 			if (af == AF_INET || af == AF_UNSPEC)
546 				mrt_stats(nl[N_MRTSTAT].n_value);
547 #ifdef INET6
548 			if (af == AF_INET6 || af == AF_UNSPEC)
549 				mrt6_stats(nl[N_MRT6STAT].n_value);
550 #endif
551 		} else {
552 			if (af == AF_INET || af == AF_UNSPEC)
553 				mroutepr(nl[N_MFCTABLE].n_value,
554 					 nl[N_VIFTABLE].n_value);
555 #ifdef INET6
556 			if (af == AF_INET6 || af == AF_UNSPEC)
557 				mroute6pr(nl[N_MF6CTABLE].n_value,
558 					  nl[N_MIF6TABLE].n_value);
559 #endif
560 		}
561 		exit(0);
562 	}
563 
564 	if (tp) {
565 		printproto(tp, tp->pr_name);
566 		exit(0);
567 	}
568 	if (af == AF_INET || af == AF_UNSPEC)
569 		for (tp = protox; tp->pr_name; tp++)
570 			printproto(tp, tp->pr_name);
571 #ifdef INET6
572 	if (af == AF_INET6 || af == AF_UNSPEC)
573 		for (tp = ip6protox; tp->pr_name; tp++)
574 			printproto(tp, tp->pr_name);
575 #endif /*INET6*/
576 #ifdef IPSEC
577 	if (af == PF_KEY || af == AF_UNSPEC)
578 		for (tp = pfkeyprotox; tp->pr_name; tp++)
579 			printproto(tp, tp->pr_name);
580 #endif /*IPSEC*/
581 #ifdef IPX
582 	if (af == AF_IPX || af == AF_UNSPEC) {
583 		for (tp = ipxprotox; tp->pr_name; tp++)
584 			printproto(tp, tp->pr_name);
585 	}
586 #endif /* IPX */
587 	if (af == AF_APPLETALK || af == AF_UNSPEC)
588 		for (tp = atalkprotox; tp->pr_name; tp++)
589 			printproto(tp, tp->pr_name);
590 #ifdef NETGRAPH
591 	if (af == AF_NETGRAPH || af == AF_UNSPEC)
592 		for (tp = netgraphprotox; tp->pr_name; tp++)
593 			printproto(tp, tp->pr_name);
594 #endif /* NETGRAPH */
595 	if ((af == AF_UNIX || af == AF_UNSPEC) && !sflag)
596 		unixpr(nl[N_UNP_COUNT].n_value, nl[N_UNP_GENCNT].n_value,
597 		    nl[N_UNP_DHEAD].n_value, nl[N_UNP_SHEAD].n_value);
598 	exit(0);
599 }
600 
601 /*
602  * Print out protocol statistics or control blocks (per sflag).
603  * If the interface was not specifically requested, and the symbol
604  * is not in the namelist, ignore this one.
605  */
606 static void
607 printproto(tp, name)
608 	struct protox *tp;
609 	const char *name;
610 {
611 	void (*pr)(u_long, const char *, int, int);
612 	u_long off;
613 
614 	if (sflag) {
615 		if (iflag) {
616 			if (tp->pr_istats)
617 				intpr(interval, nl[N_IFNET].n_value,
618 				      tp->pr_istats);
619 			else if (pflag)
620 				printf("%s: no per-interface stats routine\n",
621 				    tp->pr_name);
622 			return;
623 		} else {
624 			pr = tp->pr_stats;
625 			if (!pr) {
626 				if (pflag)
627 					printf("%s: no stats routine\n",
628 					    tp->pr_name);
629 				return;
630 			}
631 			if (tp->pr_usesysctl && live)
632 				off = 0;
633 			else if (tp->pr_sindex < 0) {
634 				if (pflag)
635 					printf(
636 				    "%s: stats routine doesn't work on cores\n",
637 					    tp->pr_name);
638 				return;
639 			} else
640 				off = nl[tp->pr_sindex].n_value;
641 		}
642 	} else {
643 		pr = tp->pr_cblocks;
644 		if (!pr) {
645 			if (pflag)
646 				printf("%s: no PCB routine\n", tp->pr_name);
647 			return;
648 		}
649 		if (tp->pr_usesysctl && live)
650 			off = 0;
651 		else if (tp->pr_index < 0) {
652 			if (pflag)
653 				printf(
654 				    "%s: PCB routine doesn't work on cores\n",
655 				    tp->pr_name);
656 			return;
657 		} else
658 			off = nl[tp->pr_index].n_value;
659 	}
660 	if (pr != NULL && (off || (live && tp->pr_usesysctl) ||
661 	    af != AF_UNSPEC))
662 		(*pr)(off, name, af, tp->pr_protocol);
663 }
664 
665 /*
666  * Read kernel memory, return 0 on success.
667  */
668 int
669 kread(u_long addr, void *buf, size_t size)
670 {
671 	char errbuf[_POSIX2_LINE_MAX];
672 
673 	if (kvmd == NULL) {
674 		kvmd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
675 		setgid(getgid());
676 		if (kvmd != NULL) {
677 			if (kvm_nlist(kvmd, nl) < 0) {
678 				if (nlistf)
679 					errx(1, "%s: kvm_nlist: %s", nlistf,
680 					     kvm_geterr(kvmd));
681 				else
682 					errx(1, "kvm_nlist: %s", kvm_geterr(kvmd));
683 			}
684 
685 			if (nl[0].n_type == 0) {
686 				if (nlistf)
687 					errx(1, "%s: no namelist", nlistf);
688 				else
689 					errx(1, "no namelist");
690 			}
691 		} else {
692 			warnx("kvm not available: %s", errbuf);
693 			return(-1);
694 		}
695 	}
696 	if (!buf)
697 		return (0);
698 	if (kvm_read(kvmd, addr, buf, size) != (ssize_t)size) {
699 		warnx("%s", kvm_geterr(kvmd));
700 		return (-1);
701 	}
702 	return (0);
703 }
704 
705 const char *
706 plural(uintmax_t n)
707 {
708 	return (n != 1 ? "s" : "");
709 }
710 
711 const char *
712 plurales(uintmax_t n)
713 {
714 	return (n != 1 ? "es" : "");
715 }
716 
717 const char *
718 pluralies(uintmax_t n)
719 {
720 	return (n != 1 ? "ies" : "y");
721 }
722 
723 /*
724  * Find the protox for the given "well-known" name.
725  */
726 static struct protox *
727 knownname(const char *name)
728 {
729 	struct protox **tpp, *tp;
730 
731 	for (tpp = protoprotox; *tpp; tpp++)
732 		for (tp = *tpp; tp->pr_name; tp++)
733 			if (strcmp(tp->pr_name, name) == 0)
734 				return (tp);
735 	return (NULL);
736 }
737 
738 /*
739  * Find the protox corresponding to name.
740  */
741 static struct protox *
742 name2protox(const char *name)
743 {
744 	struct protox *tp;
745 	char **alias;			/* alias from p->aliases */
746 	struct protoent *p;
747 
748 	/*
749 	 * Try to find the name in the list of "well-known" names. If that
750 	 * fails, check if name is an alias for an Internet protocol.
751 	 */
752 	if ((tp = knownname(name)) != NULL)
753 		return (tp);
754 
755 	setprotoent(1);			/* make protocol lookup cheaper */
756 	while ((p = getprotoent()) != NULL) {
757 		/* assert: name not same as p->name */
758 		for (alias = p->p_aliases; *alias; alias++)
759 			if (strcmp(name, *alias) == 0) {
760 				endprotoent();
761 				return (knownname(p->p_name));
762 			}
763 	}
764 	endprotoent();
765 	return (NULL);
766 }
767 
768 static void
769 usage(void)
770 {
771 	(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",
772 "usage: netstat [-AaLnSWx] [-f protocol_family | -p protocol]\n"
773 "               [-M core] [-N system]",
774 "       netstat -i | -I interface [-abdhntW] [-f address_family]\n"
775 "               [-M core] [-N system]",
776 "       netstat -w wait [-I interface] [-d] [-M core] [-N system]",
777 "       netstat -s [-s] [-z] [-f protocol_family | -p protocol]\n"
778 "               [-M core] [-N system]",
779 "       netstat -i | -I interface -s [-f protocol_family | -p protocol]\n"
780 "               [-M core] [-N system]",
781 "       netstat -m [-M core] [-N system]",
782 "       netstat -B [-I interface]",
783 "       netstat -r [-AanW] [-f address_family] [-M core] [-N system]",
784 "       netstat -rs [-s] [-M core] [-N system]",
785 "       netstat -g [-W] [-f address_family] [-M core] [-N system]",
786 "       netstat -gs [-s] [-f address_family] [-M core] [-N system]");
787 	exit(1);
788 }
789