Home | History | Annotate | Line # | Download | only in netstat
main.c revision 1.27.4.1
      1  1.27.4.1    itojun /*	$NetBSD: main.c,v 1.27.4.1 2000/10/05 14:54:33 itojun Exp $	*/
      2       1.8   thorpej 
      3       1.1       cgd /*
      4       1.6   mycroft  * Copyright (c) 1983, 1988, 1993
      5       1.6   mycroft  *	Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8       1.1       cgd  * modification, are permitted provided that the following conditions
      9       1.1       cgd  * are met:
     10       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16       1.1       cgd  *    must display the following acknowledgement:
     17       1.1       cgd  *	This product includes software developed by the University of
     18       1.1       cgd  *	California, Berkeley and its contributors.
     19       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20       1.1       cgd  *    may be used to endorse or promote products derived from this software
     21       1.1       cgd  *    without specific prior written permission.
     22       1.1       cgd  *
     23       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33       1.1       cgd  * SUCH DAMAGE.
     34       1.1       cgd  */
     35       1.1       cgd 
     36      1.12     lukem #include <sys/cdefs.h>
     37       1.1       cgd #ifndef lint
     38      1.12     lukem __COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n\
     39      1.12     lukem 	Regents of the University of California.  All rights reserved.\n");
     40       1.1       cgd #endif /* not lint */
     41       1.1       cgd 
     42       1.1       cgd #ifndef lint
     43       1.8   thorpej #if 0
     44       1.8   thorpej static char sccsid[] = "from: @(#)main.c	8.4 (Berkeley) 3/1/94";
     45       1.8   thorpej #else
     46  1.27.4.1    itojun __RCSID("$NetBSD: main.c,v 1.27.4.1 2000/10/05 14:54:33 itojun Exp $");
     47       1.8   thorpej #endif
     48       1.1       cgd #endif /* not lint */
     49       1.1       cgd 
     50       1.1       cgd #include <sys/param.h>
     51       1.6   mycroft #include <sys/file.h>
     52       1.6   mycroft #include <sys/protosw.h>
     53       1.1       cgd #include <sys/socket.h>
     54       1.6   mycroft 
     55       1.6   mycroft #include <netinet/in.h>
     56       1.6   mycroft 
     57       1.6   mycroft #include <ctype.h>
     58      1.15       mrg #include <err.h>
     59       1.1       cgd #include <errno.h>
     60       1.6   mycroft #include <kvm.h>
     61       1.6   mycroft #include <limits.h>
     62       1.1       cgd #include <netdb.h>
     63       1.1       cgd #include <nlist.h>
     64       1.6   mycroft #include <paths.h>
     65       1.1       cgd #include <stdio.h>
     66       1.1       cgd #include <stdlib.h>
     67       1.1       cgd #include <string.h>
     68       1.6   mycroft #include <unistd.h>
     69       1.6   mycroft #include "netstat.h"
     70       1.1       cgd 
     71       1.1       cgd struct nlist nl[] = {
     72       1.1       cgd #define	N_MBSTAT	0
     73       1.1       cgd 	{ "_mbstat" },
     74       1.1       cgd #define	N_IPSTAT	1
     75       1.1       cgd 	{ "_ipstat" },
     76       1.7   mycroft #define	N_TCBTABLE	2
     77       1.7   mycroft 	{ "_tcbtable" },
     78       1.1       cgd #define	N_TCPSTAT	3
     79       1.1       cgd 	{ "_tcpstat" },
     80       1.7   mycroft #define	N_UDBTABLE	4
     81       1.7   mycroft 	{ "_udbtable" },
     82       1.1       cgd #define	N_UDPSTAT	5
     83       1.1       cgd 	{ "_udpstat" },
     84       1.1       cgd #define	N_IFNET		6
     85       1.1       cgd 	{ "_ifnet" },
     86       1.1       cgd #define	N_IMP		7
     87       1.1       cgd 	{ "_imp_softc" },
     88       1.6   mycroft #define	N_ICMPSTAT	8
     89       1.1       cgd 	{ "_icmpstat" },
     90       1.6   mycroft #define	N_RTSTAT	9
     91       1.1       cgd 	{ "_rtstat" },
     92       1.6   mycroft #define	N_UNIXSW	10
     93       1.1       cgd 	{ "_unixsw" },
     94       1.6   mycroft #define N_IDP		11
     95       1.1       cgd 	{ "_nspcb"},
     96       1.6   mycroft #define N_IDPSTAT	12
     97       1.1       cgd 	{ "_idpstat"},
     98       1.6   mycroft #define N_SPPSTAT	13
     99       1.1       cgd 	{ "_spp_istat"},
    100       1.6   mycroft #define N_NSERR		14
    101       1.1       cgd 	{ "_ns_errstat"},
    102       1.6   mycroft #define	N_CLNPSTAT	15
    103       1.1       cgd 	{ "_clnp_stat"},
    104       1.6   mycroft #define	IN_NOTUSED	16
    105       1.1       cgd 	{ "_tp_inpcb" },
    106       1.6   mycroft #define	ISO_TP		17
    107       1.6   mycroft 	{ "_tp_refinfo" },
    108       1.6   mycroft #define	N_TPSTAT	18
    109       1.1       cgd 	{ "_tp_stat" },
    110       1.6   mycroft #define	N_ESISSTAT	19
    111       1.1       cgd 	{ "_esis_stat"},
    112       1.6   mycroft #define N_NIMP		20
    113       1.1       cgd 	{ "_nimp"},
    114       1.6   mycroft #define N_RTREE		21
    115       1.6   mycroft 	{ "_rt_tables"},
    116       1.6   mycroft #define N_CLTP		22
    117       1.1       cgd 	{ "_cltb"},
    118       1.6   mycroft #define N_CLTPSTAT	23
    119       1.1       cgd 	{ "_cltpstat"},
    120       1.6   mycroft #define	N_NFILE		24
    121       1.6   mycroft 	{ "_nfile" },
    122       1.6   mycroft #define	N_FILE		25
    123       1.6   mycroft 	{ "_file" },
    124       1.6   mycroft #define N_IGMPSTAT	26
    125       1.4    brezak 	{ "_igmpstat" },
    126       1.6   mycroft #define N_MRTPROTO	27
    127       1.4    brezak 	{ "_ip_mrtproto" },
    128       1.6   mycroft #define N_MRTSTAT	28
    129       1.4    brezak 	{ "_mrtstat" },
    130       1.7   mycroft #define N_MFCHASHTBL	29
    131       1.7   mycroft 	{ "_mfchashtbl" },
    132       1.7   mycroft #define	N_MFCHASH	30
    133       1.7   mycroft 	{ "_mfchash" },
    134       1.7   mycroft #define N_VIFTABLE	31
    135       1.4    brezak 	{ "_viftable" },
    136      1.10  jonathan #define N_MSIZE		32
    137      1.10  jonathan 	{ "_msize" },
    138      1.10  jonathan #define N_MCLBYTES	33
    139      1.10  jonathan 	{ "_mclbytes" },
    140      1.11  christos #define N_DDPSTAT	34
    141      1.11  christos 	{ "_ddpstat"},
    142      1.11  christos #define N_DDPCB		35
    143      1.11  christos 	{ "_ddpcb"},
    144      1.21  sommerfe #define N_MBPOOL	36
    145      1.21  sommerfe 	{ "_mbpool" },
    146      1.21  sommerfe #define N_MCLPOOL	37
    147      1.21  sommerfe 	{ "_mclpool" },
    148      1.23    itojun #define N_DIVPCB	38
    149      1.23    itojun 	{ "_divcb"},
    150      1.23    itojun #define N_DIVSTAT	39
    151      1.23    itojun 	{ "_divstat"},
    152      1.23    itojun #define N_IP6STAT	40
    153      1.23    itojun 	{ "_ip6stat" },
    154      1.23    itojun #define N_TCB6		41
    155      1.23    itojun 	{ "_tcb6" },
    156      1.23    itojun #define N_TCP6STAT	42
    157      1.23    itojun 	{ "_tcp6stat" },
    158      1.23    itojun #define N_UDB6		43
    159      1.23    itojun 	{ "_udb6" },
    160      1.23    itojun #define N_UDP6STAT	44
    161      1.23    itojun 	{ "_udp6stat" },
    162      1.23    itojun #define N_ICMP6STAT	45
    163      1.23    itojun 	{ "_icmp6stat" },
    164      1.23    itojun #define N_IPSECSTAT	46
    165      1.23    itojun 	{ "_ipsecstat" },
    166      1.23    itojun #define N_IPSEC6STAT	47
    167      1.23    itojun 	{ "_ipsec6stat" },
    168      1.23    itojun #define N_PIM6STAT	48
    169      1.23    itojun 	{ "_pim6stat" },
    170      1.23    itojun #define N_MRT6PROTO	49
    171      1.23    itojun 	{ "_ip6_mrtproto" },
    172      1.23    itojun #define N_MRT6STAT	50
    173      1.23    itojun 	{ "_mrt6stat" },
    174      1.23    itojun #define N_MF6CTABLE	51
    175      1.23    itojun 	{ "_mf6ctable" },
    176      1.23    itojun #define N_MIF6TABLE	52
    177      1.23    itojun 	{ "_mif6table" },
    178      1.26    itojun #define N_PFKEYSTAT	53
    179      1.26    itojun 	{ "_pfkeystat" },
    180      1.11  christos 	{ "" },
    181       1.1       cgd };
    182       1.1       cgd 
    183       1.1       cgd struct protox {
    184       1.1       cgd 	u_char	pr_index;		/* index into nlist of cb head */
    185       1.1       cgd 	u_char	pr_sindex;		/* index into nlist of stat block */
    186       1.1       cgd 	u_char	pr_wanted;		/* 1 if wanted, 0 otherwise */
    187      1.11  christos 	void	(*pr_cblocks)		/* control blocks printing routine */
    188      1.11  christos 			__P((u_long, char *));
    189      1.11  christos 	void	(*pr_stats)		/* statistics printing routine */
    190      1.11  christos 			__P((u_long, char *));
    191      1.25    itojun 	void	(*pr_istats)
    192      1.25    itojun 			__P((char *));	/* per/if statistics printing routine */
    193      1.14   thorpej 	void	(*pr_dump)		/* PCB state dump routine */
    194      1.14   thorpej 			__P((u_long));
    195       1.1       cgd 	char	*pr_name;		/* well-known name */
    196       1.1       cgd } protox[] = {
    197       1.7   mycroft 	{ N_TCBTABLE,	N_TCPSTAT,	1,	protopr,
    198      1.25    itojun 	  tcp_stats,	NULL,		tcp_dump,	"tcp" },
    199       1.7   mycroft 	{ N_UDBTABLE,	N_UDPSTAT,	1,	protopr,
    200      1.25    itojun 	  udp_stats,	NULL,		0,	"udp" },
    201       1.1       cgd 	{ -1,		N_IPSTAT,	1,	0,
    202      1.25    itojun 	  ip_stats,	NULL,		0,	"ip" },
    203       1.1       cgd 	{ -1,		N_ICMPSTAT,	1,	0,
    204      1.25    itojun 	  icmp_stats,	NULL,		0,	"icmp" },
    205       1.4    brezak 	{ -1,		N_IGMPSTAT,	1,	0,
    206      1.25    itojun 	  igmp_stats,	NULL,		0,	"igmp" },
    207      1.23    itojun #ifdef IPSEC
    208      1.23    itojun 	{ -1,		N_IPSECSTAT,	1,	0,
    209      1.25    itojun 	  ipsec_stats,	NULL,		0,	"ipsec" },
    210      1.23    itojun #endif
    211       1.1       cgd 	{ -1,		-1,		0,	0,
    212      1.25    itojun 	  0,		NULL,		0,	0 }
    213       1.1       cgd };
    214       1.1       cgd 
    215      1.23    itojun #ifdef INET6
    216      1.23    itojun struct protox ip6protox[] = {
    217      1.23    itojun 	{ -1,		N_IP6STAT,	1,	0,
    218      1.25    itojun 	  ip6_stats,	ip6_ifstats,	0,	"ip6" },
    219      1.23    itojun 	{ -1,		N_ICMP6STAT,	1,	0,
    220      1.25    itojun 	  icmp6_stats,	icmp6_ifstats,	0,	"icmp6" },
    221      1.23    itojun #ifdef TCP6
    222      1.23    itojun 	{ N_TCB6,	N_TCP6STAT,	1,	ip6protopr,
    223      1.25    itojun 	  tcp6_stats,	NULL,		tcp6_dump,	"tcp6" },
    224      1.23    itojun #else
    225      1.23    itojun 	{ N_TCB6,	N_TCP6STAT,	1,	ip6protopr,
    226      1.25    itojun 	  tcp_stats,	NULL,		tcp_dump,	"tcp6" },
    227      1.23    itojun #endif
    228      1.23    itojun 	{ N_UDB6,	N_UDP6STAT,	1,	ip6protopr,
    229      1.25    itojun 	  udp6_stats,	NULL,		0,	"udp6" },
    230      1.23    itojun #ifdef IPSEC
    231      1.23    itojun 	{ -1,		N_IPSEC6STAT,	1,	0,
    232      1.25    itojun 	  ipsec_stats,	NULL,		0,	"ipsec6" },
    233      1.23    itojun #endif
    234      1.23    itojun 	{ -1,		N_PIM6STAT,	1,	0,
    235      1.25    itojun 	  pim6_stats,	NULL,		0,	"pim6" },
    236      1.23    itojun 	{ -1,		-1,		0,	0,
    237      1.25    itojun 	  0,		NULL,		0,	0 }
    238      1.23    itojun };
    239      1.23    itojun #endif
    240      1.23    itojun 
    241      1.26    itojun #ifdef IPSEC
    242      1.26    itojun struct protox pfkeyprotox[] = {
    243      1.26    itojun 	{ -1,		N_PFKEYSTAT,	1,	0,
    244      1.26    itojun 	  pfkey_stats,	NULL,		0,	"pfkey" },
    245  1.27.4.1    itojun #if 0
    246      1.26    itojun 	{ -1,		-1,		0,	0,
    247      1.26    itojun 	  0,		NULL,		0,	0 }
    248  1.27.4.1    itojun #endif
    249      1.26    itojun };
    250      1.26    itojun #endif
    251      1.26    itojun 
    252      1.18       mrg #ifndef SMALL
    253      1.11  christos struct protox atalkprotox[] = {
    254      1.11  christos 	{ N_DDPCB,	N_DDPSTAT,	1,	atalkprotopr,
    255      1.25    itojun 	  ddp_stats,	NULL,		0,	"ddp" },
    256      1.11  christos 	{ -1,		-1,		0,	0,
    257      1.25    itojun 	  0,		NULL,		0 }
    258      1.11  christos };
    259      1.11  christos 
    260       1.1       cgd struct protox nsprotox[] = {
    261       1.1       cgd 	{ N_IDP,	N_IDPSTAT,	1,	nsprotopr,
    262      1.25    itojun 	  idp_stats,	NULL,		0,	"idp" },
    263       1.1       cgd 	{ N_IDP,	N_SPPSTAT,	1,	nsprotopr,
    264      1.25    itojun 	  spp_stats,	NULL,		0,	"spp" },
    265       1.1       cgd 	{ -1,		N_NSERR,	1,	0,
    266      1.25    itojun 	  nserr_stats,	NULL,		0,	"ns_err" },
    267       1.1       cgd 	{ -1,		-1,		0,	0,
    268      1.25    itojun 	  0,		NULL,		0 }
    269       1.1       cgd };
    270       1.1       cgd 
    271       1.1       cgd struct protox isoprotox[] = {
    272       1.1       cgd 	{ ISO_TP,	N_TPSTAT,	1,	iso_protopr,
    273      1.25    itojun 	  tp_stats,	NULL,		0,	"tp" },
    274       1.1       cgd 	{ N_CLTP,	N_CLTPSTAT,	1,	iso_protopr,
    275      1.25    itojun 	  cltp_stats,	NULL,		0,	"cltp" },
    276       1.1       cgd 	{ -1,		N_CLNPSTAT,	1,	 0,
    277      1.25    itojun 	  clnp_stats,	NULL,		0,	"clnp"},
    278       1.1       cgd 	{ -1,		N_ESISSTAT,	1,	 0,
    279      1.25    itojun 	  esis_stats,	NULL,		0,	"esis"},
    280       1.1       cgd 	{ -1,		-1,		0,	0,
    281      1.25    itojun 	  0,		NULL,		0,	0 }
    282       1.1       cgd };
    283      1.18       mrg #endif
    284       1.1       cgd 
    285      1.18       mrg struct protox *protoprotox[] = { protox,
    286      1.23    itojun #ifdef INET6
    287      1.23    itojun 				 ip6protox,
    288      1.23    itojun #endif
    289      1.26    itojun #ifdef IPSEC
    290      1.26    itojun 				 pfkeyprotox,
    291      1.26    itojun #endif
    292      1.18       mrg #ifndef SMALL
    293      1.18       mrg 				 atalkprotox, nsprotox, isoprotox,
    294      1.18       mrg #endif
    295      1.18       mrg 				 NULL };
    296       1.1       cgd 
    297      1.11  christos int main __P((int, char *[]));
    298       1.6   mycroft static void printproto __P((struct protox *, char *));
    299       1.6   mycroft static void usage __P((void));
    300       1.6   mycroft static struct protox *name2protox __P((char *));
    301       1.6   mycroft static struct protox *knownname __P((char *));
    302       1.1       cgd 
    303       1.6   mycroft kvm_t *kvmd;
    304       1.1       cgd 
    305       1.6   mycroft int
    306       1.1       cgd main(argc, argv)
    307       1.1       cgd 	int argc;
    308       1.6   mycroft 	char *argv[];
    309       1.1       cgd {
    310      1.12     lukem 	struct protoent *p;
    311      1.12     lukem 	struct protox *tp;	/* for printing cblocks & stats */
    312       1.1       cgd 	int ch;
    313       1.6   mycroft 	char *nlistf = NULL, *memf = NULL;
    314      1.14   thorpej 	char buf[_POSIX2_LINE_MAX], *cp;
    315      1.14   thorpej 	u_long pcbaddr;
    316      1.15       mrg 	gid_t egid = getegid();
    317       1.6   mycroft 
    318      1.15       mrg 	(void)setegid(getgid());
    319      1.12     lukem 	tp = NULL;
    320       1.6   mycroft 	af = AF_UNSPEC;
    321      1.14   thorpej 	pcbaddr = 0;
    322       1.1       cgd 
    323      1.25    itojun 	while ((ch = getopt(argc, argv, "Aabdf:ghI:LliM:mN:nP:p:rstuvw:")) != -1)
    324       1.6   mycroft 		switch(ch) {
    325       1.1       cgd 		case 'A':
    326       1.1       cgd 			Aflag = 1;
    327       1.1       cgd 			break;
    328       1.1       cgd 		case 'a':
    329       1.1       cgd 			aflag = 1;
    330      1.13       kml 			break;
    331      1.13       kml 		case 'b':
    332      1.13       kml 			bflag = 1;
    333       1.1       cgd 			break;
    334       1.1       cgd 		case 'd':
    335       1.1       cgd 			dflag = 1;
    336       1.1       cgd 			break;
    337       1.1       cgd 		case 'f':
    338       1.1       cgd 			if (strcmp(optarg, "ns") == 0)
    339       1.1       cgd 				af = AF_NS;
    340       1.1       cgd 			else if (strcmp(optarg, "inet") == 0)
    341       1.1       cgd 				af = AF_INET;
    342      1.23    itojun 			else if (strcmp(optarg, "inet6") == 0)
    343      1.23    itojun 				af = AF_INET6;
    344      1.17     lukem 			else if (strcmp(optarg, "unix") == 0
    345      1.17     lukem 			    || strcmp(optarg, "local") == 0)
    346      1.17     lukem 				af = AF_LOCAL;
    347       1.1       cgd 			else if (strcmp(optarg, "iso") == 0)
    348       1.1       cgd 				af = AF_ISO;
    349      1.11  christos 			else if (strcmp(optarg, "atalk") == 0)
    350      1.11  christos 				af = AF_APPLETALK;
    351      1.16       mrg 			else
    352      1.16       mrg 				errx(1, "%s: unknown address family",
    353      1.16       mrg 				    optarg);
    354       1.1       cgd 			break;
    355      1.18       mrg #ifndef SMALL
    356       1.6   mycroft 		case 'g':
    357       1.6   mycroft 			gflag = 1;
    358       1.1       cgd 			break;
    359      1.18       mrg #endif
    360       1.9   thorpej 		case 'I':
    361       1.1       cgd 			iflag = 1;
    362       1.9   thorpej 			interface = optarg;
    363       1.1       cgd 			break;
    364       1.1       cgd 		case 'i':
    365       1.1       cgd 			iflag = 1;
    366      1.24        is 			break;
    367      1.24        is 		case 'L':
    368      1.24        is 			Lflag = 1;
    369       1.1       cgd 			break;
    370      1.23    itojun 		case 'l':
    371      1.23    itojun 			lflag = 1;
    372      1.23    itojun 			break;
    373       1.1       cgd 		case 'M':
    374       1.6   mycroft 			memf = optarg;
    375       1.1       cgd 			break;
    376       1.1       cgd 		case 'm':
    377       1.1       cgd 			mflag = 1;
    378       1.1       cgd 			break;
    379       1.1       cgd 		case 'N':
    380       1.6   mycroft 			nlistf = optarg;
    381       1.1       cgd 			break;
    382       1.1       cgd 		case 'n':
    383       1.1       cgd 			nflag = 1;
    384       1.1       cgd 			break;
    385      1.14   thorpej 		case 'P':
    386      1.14   thorpej 			pcbaddr = strtoul(optarg, &cp, 16);
    387      1.16       mrg 			if (*cp != '\0' || errno == ERANGE)
    388      1.16       mrg 				errx(1, "invalid PCB address %s",
    389      1.16       mrg 				    optarg);
    390      1.14   thorpej 			Pflag = 1;
    391      1.14   thorpej 			break;
    392       1.1       cgd 		case 'p':
    393      1.16       mrg 			if ((tp = name2protox(optarg)) == NULL)
    394      1.16       mrg 				errx(1, "%s: unknown or uninstrumented protocol",
    395      1.16       mrg 				    optarg);
    396       1.1       cgd 			pflag = 1;
    397       1.1       cgd 			break;
    398       1.1       cgd 		case 'r':
    399       1.1       cgd 			rflag = 1;
    400       1.1       cgd 			break;
    401       1.1       cgd 		case 's':
    402       1.6   mycroft 			++sflag;
    403       1.1       cgd 			break;
    404       1.1       cgd 		case 't':
    405       1.1       cgd 			tflag = 1;
    406       1.1       cgd 			break;
    407       1.1       cgd 		case 'u':
    408      1.17     lukem 			af = AF_LOCAL;
    409       1.1       cgd 			break;
    410      1.19       kml 		case 'v':
    411      1.19       kml 			vflag = 1;
    412      1.19       kml 			break;
    413       1.1       cgd 		case 'w':
    414       1.1       cgd 			interval = atoi(optarg);
    415       1.6   mycroft 			iflag = 1;
    416       1.1       cgd 			break;
    417       1.1       cgd 		case '?':
    418       1.1       cgd 		default:
    419       1.1       cgd 			usage();
    420       1.1       cgd 		}
    421       1.1       cgd 	argv += optind;
    422       1.1       cgd 	argc -= optind;
    423       1.1       cgd 
    424       1.1       cgd #define	BACKWARD_COMPATIBILITY
    425       1.1       cgd #ifdef	BACKWARD_COMPATIBILITY
    426       1.1       cgd 	if (*argv) {
    427       1.1       cgd 		if (isdigit(**argv)) {
    428       1.1       cgd 			interval = atoi(*argv);
    429       1.1       cgd 			if (interval <= 0)
    430       1.1       cgd 				usage();
    431       1.1       cgd 			++argv;
    432       1.1       cgd 			iflag = 1;
    433       1.1       cgd 		}
    434       1.1       cgd 		if (*argv) {
    435       1.6   mycroft 			nlistf = *argv;
    436       1.6   mycroft 			if (*++argv)
    437       1.6   mycroft 				memf = *argv;
    438       1.1       cgd 		}
    439       1.1       cgd 	}
    440       1.1       cgd #endif
    441       1.6   mycroft 
    442       1.6   mycroft 	/*
    443      1.15       mrg 	 * Discard setgid privileges.  If not the running kernel, we toss
    444      1.15       mrg 	 * them away totally so that bad guys can't print interesting stuff
    445      1.15       mrg 	 * from kernel memory, otherwise switch back to kmem for the
    446      1.15       mrg 	 * duration of the kvm_openfiles() call.
    447       1.6   mycroft 	 */
    448      1.20  explorer 	if (nlistf != NULL || memf != NULL || Pflag)
    449      1.15       mrg 		(void)setgid(getgid());
    450      1.15       mrg 	else
    451      1.15       mrg 		(void)setegid(egid);
    452       1.6   mycroft 
    453       1.9   thorpej 	if ((kvmd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY,
    454      1.15       mrg 	    buf)) == NULL)
    455      1.15       mrg 		errx(1, "%s", buf);
    456      1.15       mrg 
    457      1.16       mrg 	/* do this now anyway */
    458      1.15       mrg 	if (nlistf == NULL && memf == NULL)
    459      1.15       mrg 		(void)setgid(getgid());
    460      1.15       mrg 
    461       1.6   mycroft 	if (kvm_nlist(kvmd, nl) < 0 || nl[0].n_type == 0) {
    462       1.6   mycroft 		if (nlistf)
    463      1.16       mrg 			errx(1, "%s: no namelist", nlistf);
    464       1.6   mycroft 		else
    465      1.16       mrg 			errx(1, "no namelist");
    466       1.1       cgd 	}
    467       1.1       cgd 	if (mflag) {
    468      1.10  jonathan 		mbpr(nl[N_MBSTAT].n_value,  nl[N_MSIZE].n_value,
    469      1.21  sommerfe 		    nl[N_MCLBYTES].n_value, nl[N_MBPOOL].n_value,
    470      1.21  sommerfe 		    nl[N_MCLPOOL].n_value);
    471       1.1       cgd 		exit(0);
    472       1.1       cgd 	}
    473      1.14   thorpej 	if (Pflag) {
    474      1.14   thorpej 		if (tp == NULL) {
    475      1.14   thorpej 			/* Default to TCP. */
    476      1.14   thorpej 			tp = name2protox("tcp");
    477      1.14   thorpej 		}
    478      1.14   thorpej 		if (tp->pr_dump)
    479      1.14   thorpej 			(*tp->pr_dump)(pcbaddr);
    480      1.14   thorpej 		else
    481      1.14   thorpej 			printf("%s: no PCB dump routine\n", tp->pr_name);
    482      1.14   thorpej 		exit(0);
    483      1.14   thorpej 	}
    484       1.1       cgd 	if (pflag) {
    485      1.25    itojun 		if (iflag && tp->pr_istats)
    486      1.25    itojun 			intpr(interval, nl[N_IFNET].n_value, tp->pr_istats);
    487      1.25    itojun 		else if (tp->pr_stats)
    488       1.1       cgd 			(*tp->pr_stats)(nl[tp->pr_sindex].n_value,
    489       1.1       cgd 				tp->pr_name);
    490       1.1       cgd 		else
    491       1.1       cgd 			printf("%s: no stats routine\n", tp->pr_name);
    492       1.1       cgd 		exit(0);
    493       1.1       cgd 	}
    494       1.1       cgd 	/*
    495       1.1       cgd 	 * Keep file descriptors open to avoid overhead
    496       1.1       cgd 	 * of open/close on each call to get* routines.
    497       1.1       cgd 	 */
    498       1.1       cgd 	sethostent(1);
    499       1.1       cgd 	setnetent(1);
    500       1.1       cgd 	if (iflag) {
    501      1.25    itojun 		if (af != AF_UNSPEC)
    502      1.25    itojun 			goto protostat;
    503      1.25    itojun 
    504      1.25    itojun 		intpr(interval, nl[N_IFNET].n_value, NULL);
    505       1.1       cgd 		exit(0);
    506       1.1       cgd 	}
    507       1.1       cgd 	if (rflag) {
    508       1.1       cgd 		if (sflag)
    509       1.5       cgd 			rt_stats(nl[N_RTSTAT].n_value);
    510       1.1       cgd 		else
    511       1.6   mycroft 			routepr(nl[N_RTREE].n_value);
    512       1.1       cgd 		exit(0);
    513       1.1       cgd 	}
    514      1.18       mrg #ifndef SMALL
    515       1.6   mycroft 	if (gflag) {
    516      1.23    itojun 		if (sflag) {
    517      1.23    itojun 			if (af == AF_INET || af == AF_UNSPEC)
    518      1.23    itojun 				mrt_stats(nl[N_MRTPROTO].n_value,
    519      1.23    itojun 					  nl[N_MRTSTAT].n_value);
    520      1.23    itojun #ifdef INET6
    521      1.23    itojun 			if (af == AF_INET6 || af == AF_UNSPEC)
    522      1.23    itojun 				mrt6_stats(nl[N_MRT6PROTO].n_value,
    523      1.23    itojun 					   nl[N_MRT6STAT].n_value);
    524      1.23    itojun #endif
    525      1.23    itojun 		}
    526      1.23    itojun 		else {
    527      1.23    itojun 			if (af == AF_INET || af == AF_UNSPEC)
    528      1.23    itojun 				mroutepr(nl[N_MRTPROTO].n_value,
    529      1.23    itojun 					 nl[N_MFCHASHTBL].n_value,
    530      1.23    itojun 					 nl[N_MFCHASH].n_value,
    531      1.23    itojun 					 nl[N_VIFTABLE].n_value);
    532      1.23    itojun #ifdef INET6
    533      1.23    itojun 			if (af == AF_INET6 || af == AF_UNSPEC)
    534      1.23    itojun 				mroute6pr(nl[N_MRT6PROTO].n_value,
    535      1.23    itojun 					  nl[N_MF6CTABLE].n_value,
    536      1.23    itojun 					  nl[N_MIF6TABLE].n_value);
    537      1.23    itojun #endif
    538      1.23    itojun 		}
    539       1.4    brezak 		exit(0);
    540       1.4    brezak 	}
    541      1.18       mrg #endif
    542      1.25    itojun   protostat:
    543       1.6   mycroft 	if (af == AF_INET || af == AF_UNSPEC) {
    544       1.6   mycroft 		setprotoent(1);
    545       1.6   mycroft 		setservent(1);
    546       1.6   mycroft 		/* ugh, this is O(MN) ... why do we do this? */
    547      1.11  christos 		while ((p = getprotoent()) != NULL) {
    548       1.6   mycroft 			for (tp = protox; tp->pr_name; tp++)
    549       1.6   mycroft 				if (strcmp(tp->pr_name, p->p_name) == 0)
    550       1.6   mycroft 					break;
    551       1.6   mycroft 			if (tp->pr_name == 0 || tp->pr_wanted == 0)
    552       1.6   mycroft 				continue;
    553       1.6   mycroft 			printproto(tp, p->p_name);
    554      1.23    itojun 			tp->pr_wanted = 0;
    555       1.6   mycroft 		}
    556       1.6   mycroft 		endprotoent();
    557      1.23    itojun 		for (tp = protox; tp->pr_name; tp++)
    558      1.23    itojun 			if (tp->pr_wanted)
    559      1.23    itojun 				printproto(tp, tp->pr_name);
    560       1.6   mycroft 	}
    561      1.23    itojun #ifdef INET6
    562      1.23    itojun 	if (af == AF_INET6 || af == AF_UNSPEC)
    563      1.23    itojun 		for (tp = ip6protox; tp->pr_name; tp++)
    564      1.26    itojun 			printproto(tp, tp->pr_name);
    565      1.26    itojun #endif
    566      1.26    itojun #ifdef IPSEC
    567      1.26    itojun 	if (af == PF_KEY || af == AF_UNSPEC)
    568      1.26    itojun 		for (tp = pfkeyprotox; tp->pr_name; tp++)
    569      1.23    itojun 			printproto(tp, tp->pr_name);
    570      1.23    itojun #endif
    571      1.18       mrg #ifndef SMALL
    572      1.11  christos 	if (af == AF_APPLETALK || af == AF_UNSPEC)
    573      1.11  christos 		for (tp = atalkprotox; tp->pr_name; tp++)
    574      1.11  christos 			printproto(tp, tp->pr_name);
    575       1.6   mycroft 	if (af == AF_NS || af == AF_UNSPEC)
    576       1.6   mycroft 		for (tp = nsprotox; tp->pr_name; tp++)
    577       1.6   mycroft 			printproto(tp, tp->pr_name);
    578       1.6   mycroft 	if (af == AF_ISO || af == AF_UNSPEC)
    579       1.6   mycroft 		for (tp = isoprotox; tp->pr_name; tp++)
    580       1.6   mycroft 			printproto(tp, tp->pr_name);
    581      1.17     lukem 	if ((af == AF_LOCAL || af == AF_UNSPEC) && !sflag)
    582       1.6   mycroft 		unixpr(nl[N_UNIXSW].n_value);
    583      1.18       mrg #endif
    584       1.6   mycroft 	exit(0);
    585       1.6   mycroft }
    586       1.4    brezak 
    587       1.6   mycroft /*
    588       1.6   mycroft  * Print out protocol statistics or control blocks (per sflag).
    589       1.6   mycroft  * If the interface was not specifically requested, and the symbol
    590       1.6   mycroft  * is not in the namelist, ignore this one.
    591       1.6   mycroft  */
    592       1.6   mycroft static void
    593       1.6   mycroft printproto(tp, name)
    594      1.12     lukem 	struct protox *tp;
    595       1.6   mycroft 	char *name;
    596       1.6   mycroft {
    597      1.11  christos 	void (*pr) __P((u_long, char *));
    598       1.6   mycroft 	u_long off;
    599       1.1       cgd 
    600       1.6   mycroft 	if (sflag) {
    601      1.25    itojun 		if (iflag) {
    602      1.25    itojun 			if (tp->pr_istats)
    603      1.25    itojun 				intpr(interval, nl[N_IFNET].n_value,
    604      1.25    itojun 				      tp->pr_istats);
    605      1.25    itojun 			return;
    606      1.25    itojun 		}
    607      1.25    itojun 		else {
    608      1.25    itojun 			pr = tp->pr_stats;
    609      1.25    itojun 			off = nl[tp->pr_sindex].n_value;
    610      1.25    itojun 		}
    611       1.6   mycroft 	} else {
    612       1.6   mycroft 		pr = tp->pr_cblocks;
    613       1.6   mycroft 		off = nl[tp->pr_index].n_value;
    614       1.1       cgd 	}
    615       1.6   mycroft 	if (pr != NULL && (off || af != AF_UNSPEC))
    616       1.6   mycroft 		(*pr)(off, name);
    617       1.6   mycroft }
    618       1.6   mycroft 
    619       1.6   mycroft /*
    620       1.6   mycroft  * Read kernel memory, return 0 on success.
    621       1.6   mycroft  */
    622       1.6   mycroft int
    623       1.6   mycroft kread(addr, buf, size)
    624       1.6   mycroft 	u_long addr;
    625       1.6   mycroft 	char *buf;
    626       1.6   mycroft 	int size;
    627       1.6   mycroft {
    628       1.6   mycroft 
    629       1.6   mycroft 	if (kvm_read(kvmd, addr, buf, size) != size) {
    630      1.16       mrg 		warnx("%s\n", kvm_geterr(kvmd));
    631       1.6   mycroft 		return (-1);
    632       1.1       cgd 	}
    633       1.6   mycroft 	return (0);
    634       1.1       cgd }
    635       1.1       cgd 
    636       1.1       cgd char *
    637       1.1       cgd plural(n)
    638       1.1       cgd 	int n;
    639       1.1       cgd {
    640      1.16       mrg 
    641       1.1       cgd 	return (n != 1 ? "s" : "");
    642       1.1       cgd }
    643       1.1       cgd 
    644       1.6   mycroft char *
    645       1.6   mycroft plurales(n)
    646       1.6   mycroft 	int n;
    647       1.6   mycroft {
    648      1.16       mrg 
    649       1.6   mycroft 	return (n != 1 ? "es" : "");
    650       1.6   mycroft }
    651       1.6   mycroft 
    652       1.1       cgd /*
    653       1.1       cgd  * Find the protox for the given "well-known" name.
    654       1.1       cgd  */
    655       1.6   mycroft static struct protox *
    656       1.1       cgd knownname(name)
    657       1.1       cgd 	char *name;
    658       1.1       cgd {
    659       1.1       cgd 	struct protox **tpp, *tp;
    660       1.1       cgd 
    661       1.1       cgd 	for (tpp = protoprotox; *tpp; tpp++)
    662       1.6   mycroft 		for (tp = *tpp; tp->pr_name; tp++)
    663       1.6   mycroft 			if (strcmp(tp->pr_name, name) == 0)
    664       1.6   mycroft 				return (tp);
    665       1.6   mycroft 	return (NULL);
    666       1.1       cgd }
    667       1.1       cgd 
    668       1.1       cgd /*
    669       1.1       cgd  * Find the protox corresponding to name.
    670       1.1       cgd  */
    671       1.6   mycroft static struct protox *
    672       1.1       cgd name2protox(name)
    673       1.1       cgd 	char *name;
    674       1.1       cgd {
    675       1.1       cgd 	struct protox *tp;
    676       1.1       cgd 	char **alias;			/* alias from p->aliases */
    677       1.1       cgd 	struct protoent *p;
    678       1.1       cgd 
    679       1.1       cgd 	/*
    680       1.1       cgd 	 * Try to find the name in the list of "well-known" names. If that
    681       1.1       cgd 	 * fails, check if name is an alias for an Internet protocol.
    682       1.1       cgd 	 */
    683      1.11  christos 	if ((tp = knownname(name)) != NULL)
    684       1.6   mycroft 		return (tp);
    685       1.1       cgd 
    686       1.1       cgd 	setprotoent(1);			/* make protocol lookup cheaper */
    687      1.11  christos 	while ((p = getprotoent()) != NULL) {
    688       1.1       cgd 		/* assert: name not same as p->name */
    689       1.1       cgd 		for (alias = p->p_aliases; *alias; alias++)
    690       1.1       cgd 			if (strcmp(name, *alias) == 0) {
    691       1.1       cgd 				endprotoent();
    692       1.6   mycroft 				return (knownname(p->p_name));
    693       1.1       cgd 			}
    694       1.1       cgd 	}
    695       1.1       cgd 	endprotoent();
    696       1.6   mycroft 	return (NULL);
    697       1.1       cgd }
    698       1.1       cgd 
    699       1.6   mycroft static void
    700       1.1       cgd usage()
    701       1.1       cgd {
    702       1.1       cgd 	(void)fprintf(stderr,
    703       1.9   thorpej "usage: %s [-Aan] [-f address_family] [-M core] [-N system]\n", __progname);
    704       1.1       cgd 	(void)fprintf(stderr,
    705      1.22  kristerw "       %s [-gimnrsv] [-f address_family] [-M core] [-N system]\n",
    706      1.19       kml 	__progname);
    707       1.1       cgd 	(void)fprintf(stderr,
    708       1.9   thorpej "       %s [-n] [-I interface] [-M core] [-N system] [-w wait]\n", __progname);
    709       1.1       cgd 	(void)fprintf(stderr,
    710       1.9   thorpej "       %s [-M core] [-N system] [-p protocol]\n", __progname);
    711      1.14   thorpej 	(void)fprintf(stderr,
    712      1.14   thorpej "       %s [-M core] [-N system] [-p protocol] -P pcbaddr\n", __progname);
    713       1.1       cgd 	exit(1);
    714       1.1       cgd }
    715