]>
git.saurik.com Git - apple/network_cmds.git/blob - netstat.tproj/main.c
2 * Copyright (c) 2008-2012 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1983, 1988, 1993
30 * Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 char const copyright
[] =
63 "@(#) Copyright (c) 1983, 1988, 1993\n\
64 Regents of the University of California. All rights reserved.\n";
67 #include <sys/param.h>
69 #include <sys/socket.h>
71 #include <netinet/in.h>
72 #include <net/pfkeyv2.h>
86 #include <sys/types.h>
87 #include <sys/sysctl.h>
90 #include <TargetConditionals.h>
94 * ----------------------------------------------------------------------------
95 * "THE BEER-WARE LICENSE" (Revision 42):
96 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
97 * can do whatever you want with this stuff. If we meet some day, and you think
98 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
99 * ----------------------------------------------------------------------------
101 * $Id: main.c,v 1.8 2004/10/14 22:24:09 lindak Exp $
105 static struct nlist nl
[] = {
130 #define N_ESISSTAT 12
138 #define N_CLTPSTAT 16
158 #define N_ICMP6STAT 29
160 #define N_IPSECSTAT 30
162 #define N_IPSEC6STAT 31
164 #define N_PIM6STAT 32
166 #define N_MRT6PROTO 33
168 #define N_MRT6STAT 34
170 #define N_MF6CTABLE 35
172 #define N_MIF6TABLE 36
174 #define N_PFKEYSTAT 37
180 #define N_NMBCLUSTERS 40
191 u_char pr_index
; /* index into nlist of cb head */
192 u_char pr_sindex
; /* index into nlist of stat block */
193 u_char pr_wanted
; /* 1 if wanted, 0 otherwise */
194 void (*pr_cblocks
)(uint32_t, char *, int);
195 /* control blocks printing routine */
196 void (*pr_stats
)(uint32_t, char *, int);
197 /* statistics printing routine */
198 void (*pr_istats
)(char *); /* per/if statistics printing routine */
199 char *pr_name
; /* well-known name */
200 int pr_usesysctl
; /* true if we use sysctl, not kvm */
202 { -1, -1, 1, protopr
,
203 tcp_stats
, NULL
, "tcp", IPPROTO_TCP
},
204 { -1, -1, 1, protopr
,
205 udp_stats
, NULL
, "udp", IPPROTO_UDP
},
206 { -1, -1, 1, protopr
,
207 NULL
, NULL
, "divert",IPPROTO_DIVERT
},
208 { -1, -1, 1, protopr
,
209 ip_stats
, NULL
, "ip", IPPROTO_RAW
},
210 { -1, -1, 1, protopr
,
211 icmp_stats
, NULL
, "icmp", IPPROTO_ICMP
},
212 { -1, -1, 1, protopr
,
213 igmp_stats
, NULL
, "igmp", IPPROTO_IGMP
},
216 ipsec_stats
, NULL
, "ipsec", IPPROTO_ESP
},
223 struct protox ip6protox
[] = {
224 { -1, -1, 1, protopr
,
225 tcp_stats
, NULL
, "tcp", IPPROTO_TCP
},
226 { -1, -1, 1, protopr
,
227 udp_stats
, NULL
, "udp", IPPROTO_UDP
},
228 { -1, N_IP6STAT
, 1, protopr
,
229 ip6_stats
, ip6_ifstats
, "ip6", IPPROTO_RAW
},
230 { -1, N_ICMP6STAT
, 1, protopr
,
231 icmp6_stats
, icmp6_ifstats
, "icmp6",IPPROTO_ICMPV6
},
233 { -1, N_IPSEC6STAT
, 1, 0,
234 ipsec_stats
, NULL
, "ipsec6",IPPROTO_ESP
},
237 { -1, N_PIM6STAT
, 1, 0,
238 pim6_stats
, NULL
, "pim6", 0 },
241 rip6_stats
, NULL
, "rip6", IPPROTO_RAW
},
248 struct protox pfkeyprotox
[] = {
249 { -1, N_PFKEYSTAT
, 1, 0,
250 pfkey_stats
, NULL
, "pfkey", PF_KEY_V2
},
256 struct protox
*protoprotox
[] = {
266 static void printproto (struct protox
*, char *);
267 static void usage (void);
268 static struct protox
*name2protox (char *);
269 static struct protox
*knownname (char *);
271 extern void _serv_cache_close();
274 int Aflag
; /* show addresses of protocol control block */
275 int aflag
; /* show all sockets (including servers) */
276 int bflag
; /* show i/f total bytes in/out */
277 int cflag
; /* show specific classq */
278 int dflag
; /* show i/f dropped packets */
279 #if defined(__APPLE__)
280 int gflag
; /* show group (multicast) routing or stats */
282 int iflag
; /* show interfaces */
283 int lflag
; /* show routing table with use and ref */
284 int Lflag
; /* show size of listen queues */
285 int mflag
; /* show memory stats */
286 int nflag
; /* show addresses numerically */
287 static int pflag
; /* show given protocol */
288 int prioflag
= -1; /* show packet priority statistics */
289 int Rflag
; /* show reachability information */
290 int rflag
; /* show routing tables (or routing stats) */
291 int sflag
; /* show protocol statistics */
292 int tflag
; /* show i/f watchdog timers */
293 int vflag
; /* more verbose */
294 int Wflag
; /* wide display */
295 int qflag
; /* classq stats display */
296 int Qflag
; /* opportunistic polling stats display */
297 int xflag
; /* show extended link-layer reachability information */
299 int cq
= -1; /* send classq index (-1 for all) */
300 int interval
; /* repeat interval for i/f stats */
302 char *interface
; /* desired i/f for stats, or NULL for all i/fs */
303 int unit
; /* unit number for above */
305 int af
; /* address family */
312 register struct protox
*tp
= NULL
; /* for printing cblocks & stats */
317 while ((ch
= getopt(argc
, argv
, "Aabc:df:gI:iLlmnP:p:qQrRstuvWw:x")) != -1)
336 if (strcmp(optarg
, "ipx") == 0)
338 else if (strcmp(optarg
, "inet") == 0)
341 else if (strcmp(optarg
, "inet6") == 0)
345 else if (strcmp(optarg
, "pfkey") == 0)
348 else if (strcmp(optarg
, "unix") == 0)
351 errx(1, "%s: unknown address family", optarg
);
354 #if defined(__APPLE__)
363 for (cp
= interface
= optarg
; isalpha(*cp
); cp
++)
384 prioflag
= atoi(optarg
);
387 if ((tp
= name2protox(optarg
)) == NULL
) {
389 "%s: unknown or uninstrumented protocol",
422 interval
= atoi(optarg
);
436 #define BACKWARD_COMPATIBILITY
437 #ifdef BACKWARD_COMPATIBILITY
439 if (isdigit(**argv
)) {
440 interval
= atoi(*argv
);
453 if (iflag
&& !sflag
&& !gflag
&& !qflag
&& !Qflag
) {
464 routepr(nl
[N_RTREE
].n_value
);
467 if (qflag
|| Qflag
) {
468 if (interface
== NULL
) {
469 fprintf(stderr
, "%s statistics option "
470 "requires interface name\n", qflag
? "Queue" :
480 #if defined(__APPLE__)
482 #if !TARGET_OS_EMBEDDED
484 if (af
== AF_INET
|| af
== AF_UNSPEC
)
487 if (af
== AF_INET6
|| af
== AF_UNSPEC
)
491 if (af
== AF_INET
|| af
== AF_UNSPEC
)
494 if (af
== AF_INET6
|| af
== AF_UNSPEC
)
498 #endif /* !TARGET_OS_EMBEDDED */
505 printproto(tp
, tp
->pr_name
);
508 if (af
== AF_INET
|| af
== AF_UNSPEC
)
509 for (tp
= protox
; tp
->pr_name
; tp
++)
510 printproto(tp
, tp
->pr_name
);
512 if (af
== AF_INET6
|| af
== AF_UNSPEC
)
513 for (tp
= ip6protox
; tp
->pr_name
; tp
++)
514 printproto(tp
, tp
->pr_name
);
517 if (af
== PF_KEY
|| af
== AF_UNSPEC
)
518 for (tp
= pfkeyprotox
; tp
->pr_name
; tp
++)
519 printproto(tp
, tp
->pr_name
);
521 if ((af
== AF_UNIX
|| af
== AF_UNSPEC
) && !Lflag
&& !sflag
)
530 * Print out protocol statistics or control blocks (per sflag).
531 * If the interface was not specifically requested, and the symbol
532 * is not in the namelist, ignore this one.
536 register struct protox
*tp
;
539 void (*pr
)(uint32_t, char *, int);
543 if (iflag
&& !pflag
) {
545 intpr(tp
->pr_istats
);
547 printf("%s: no per-interface stats routine\n",
555 printf("%s: no stats routine\n",
559 off
= tp
->pr_usesysctl
? tp
->pr_usesysctl
560 : nl
[tp
->pr_sindex
].n_value
;
566 printf("%s: no PCB routine\n", tp
->pr_name
);
569 off
= tp
->pr_usesysctl
? tp
->pr_usesysctl
570 : nl
[tp
->pr_index
].n_value
;
572 if (pr
!= NULL
&& (off
|| af
!= AF_UNSPEC
)) {
573 if (sflag
&& iflag
&& pflag
)
574 intervalpr(pr
, off
, name
, af
);
576 (*pr
)(off
, name
, af
);
578 printf("### no stats for %s\n", name
);
585 return (n
!= 1 ? "s" : "");
591 return (n
!= 1 ? "es" : "");
595 * Find the protox for the given "well-known" name.
597 static struct protox
*
598 knownname(char *name
)
600 struct protox
**tpp
, *tp
;
602 for (tpp
= protoprotox
; *tpp
; tpp
++)
603 for (tp
= *tpp
; tp
->pr_name
; tp
++)
604 if (strcmp(tp
->pr_name
, name
) == 0)
610 * Find the protox corresponding to name.
612 static struct protox
*
613 name2protox(char *name
)
616 char **alias
; /* alias from p->aliases */
620 * Try to find the name in the list of "well-known" names. If that
621 * fails, check if name is an alias for an Internet protocol.
623 if ((tp
= knownname(name
)) != NULL
)
626 setprotoent(1); /* make protocol lookup cheaper */
627 while ((p
= getprotoent()) != NULL
) {
628 /* assert: name not same as p->name */
629 for (alias
= p
->p_aliases
; *alias
; alias
++)
630 if (strcmp(name
, *alias
) == 0) {
632 return (knownname(p
->p_name
));
639 #define NETSTAT_USAGE "\
640 Usage: netstat [-AaLlnW] [-f address_family | -p protocol]\n\
641 netstat [-gilns] [-f address_family]\n\
642 netstat -i | -I interface [-w wait] [-abdgRt]\n\
643 netstat -s [-s] [-f address_family | -p protocol] [-w wait]\n\
644 netstat -i | -I interface -s [-f address_family | -p protocol]\n\
646 netstat -r [-Aaln] [-f address_family]\n\
653 (void) fprintf(stderr
, "%s\n", NETSTAT_USAGE
);