2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)mbufs.c 8.1 (Berkeley) 6/6/93
30 * $FreeBSD: src/usr.bin/systat/ip6.c,v 1.3 2006/04/30 04:47:23 bde Exp $
34 #include <sys/param.h>
35 #include <sys/types.h>
36 #include <sys/socket.h>
37 #include <sys/sysctl.h>
39 #include <netinet/in.h>
40 #include <netinet/in_systm.h>
41 #include <netinet/ip.h>
42 #include <netinet6/ip6_var.h>
52 static struct ip6stat curstat
, initstat
, oldstat
;
56 --0123456789012345678901234567890123456789012345678901234567890123456789012345
57 00 IPv6 Input IPv6 Output
58 019999999 total packets received 999999999 total packets sent
59 029999999 - too short for header 999999999 - generated locally
60 039999999 - too short for data 999999999 - output drops
61 049999999 - with invalid version 999999999 output fragments generated
62 059999999 total fragments received 999999999 - fragmentation failed
63 069999999 - fragments dropped 999999999 destinations unreachable
64 079999999 - fragments timed out 999999999 packets output via raw IP
65 089999999 - fragments overflown
66 099999999 - packets reassembled ok Input next-header histogram
67 109999999 packets forwarded 999999999 - destination options
68 119999999 - unreachable dests 999999999 - hop-by-hop options
69 129999999 - redirects generated 999999999 - IPv4
70 139999999 option errors 999999999 - TCP
71 149999999 unwanted multicasts 999999999 - UDP
72 159999999 delivered to upper layer 999999999 - IPv6
73 169999999 bad scope packets 999999999 - routing header
74 179999999 address selection failed 999999999 - fragmentation header
77 --0123456789012345678901234567890123456789012345678901234567890123456789012345
84 return (subwin(stdscr
, LINES
-4-1, 0, 4, 0));
100 wmove(wnd
, 0, 0); wclrtoeol(wnd
);
101 #define L(row, str) mvwprintw(wnd, row, 10, str)
102 #define R(row, str) mvwprintw(wnd, row, 45, str);
103 L(1, "IPv6 Input"); R(1, "IPv6 Output");
104 L(2, "total packets received"); R(2, "total packets sent");
105 L(3, "- too short for header"); R(3, "- generated locally");
106 L(4, "- too short for data"); R(4, "- output drops");
107 L(5, "- with invalid version"); R(5, "output fragments generated");
108 L(6, "total fragments received"); R(6, "- fragmentation failed");
109 L(7, "- fragments dropped"); R(7, "destinations unreachable");
110 L(8, "- fragments timed out"); R(8, "packets output via raw IP");
111 L(9, "- fragments overflown");
112 L(10, "- packets reassembled ok"); R(10, "Input next-header histogram");
113 L(11, "packets forwarded"); R(11, " - destination options");
114 L(12, "- unreachable dests"); R(12, " - hop-by-hop options");
115 L(13, "- redirects generated"); R(13, " - IPv4");
116 L(14, "option errors"); R(14, " - TCP");
117 L(15, "unwanted multicasts"); R(15, " - UDP");
118 L(16, "delivered to upper layer"); R(16, " - IPv6");
119 L(17, "bad scope packets"); R(17, " - routing header");
120 L(18, "address selection failed"); R(18, " - fragmentation header");
128 domode(struct ip6stat
*ret
)
130 const struct ip6stat
*sub
;
133 switch(currentmode
) {
148 #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor
153 DO(ip6s_fragdropped
);
154 DO(ip6s_fragtimeout
);
155 DO(ip6s_fragoverflow
);
157 DO(ip6s_cantforward
);
158 DO(ip6s_redirectsent
);
162 DO(ip6s_reassembled
);
171 for (i
= 0; i
< 256; i
++)
174 DO(ip6s_sources_none
);
181 struct ip6stat stats
;
185 totalout
= stats
.ip6s_forward
+ stats
.ip6s_localout
;
187 #define DO(stat, row, col) \
188 mvwprintw(wnd, row, col, "%9lu", stats.stat)
190 DO(ip6s_total
, 2, 0);
191 mvwprintw(wnd
, 2, 35, "%9lu", totalout
);
192 DO(ip6s_tooshort
, 3, 0);
193 DO(ip6s_localout
, 3, 35);
194 DO(ip6s_toosmall
, 4, 0);
195 DO(ip6s_odropped
, 4, 35);
196 DO(ip6s_badvers
, 5, 0);
197 DO(ip6s_ofragments
, 5, 35);
198 DO(ip6s_fragments
, 6, 0);
199 DO(ip6s_cantfrag
, 6, 35);
200 DO(ip6s_fragdropped
, 7, 0);
201 DO(ip6s_noroute
, 7, 35);
202 DO(ip6s_fragtimeout
, 8, 0);
203 DO(ip6s_rawout
, 8, 35);
204 DO(ip6s_fragoverflow
, 9, 0);
205 DO(ip6s_reassembled
, 10, 0);
206 DO(ip6s_forward
, 11, 0);
207 DO(ip6s_nxthist
[IPPROTO_DSTOPTS
], 11, 35);
208 DO(ip6s_cantforward
, 12, 0);
209 DO(ip6s_nxthist
[IPPROTO_HOPOPTS
], 12, 35);
210 DO(ip6s_redirectsent
, 13, 0);
211 DO(ip6s_nxthist
[IPPROTO_IPV4
], 13, 35);
212 DO(ip6s_badoptions
, 14, 0);
213 DO(ip6s_nxthist
[IPPROTO_TCP
], 14, 35);
214 DO(ip6s_notmember
, 15, 0);
215 DO(ip6s_nxthist
[IPPROTO_UDP
], 15, 35);
216 DO(ip6s_delivered
, 16, 0);
217 DO(ip6s_nxthist
[IPPROTO_IPV6
], 16, 35);
218 DO(ip6s_badscope
, 17, 0);
219 DO(ip6s_nxthist
[IPPROTO_ROUTING
], 17, 35);
220 DO(ip6s_sources_none
, 18, 0);
221 DO(ip6s_nxthist
[IPPROTO_FRAGMENT
], 18, 35);
222 DO(ip6s_nxthist
[IPPROTO_ICMPV6
], 19, 35);
223 DO(ip6s_nxthist
[IPPROTO_NONE
], 20, 35);
235 name
[2] = IPPROTO_IPV6
;
236 name
[3] = IPV6CTL_STATS
;
239 if (sysctl(name
, 4, 0, &len
, 0, 0) < 0) {
240 error("sysctl getting ip6stat size failed");
243 if (len
> sizeof curstat
) {
244 error("ip6stat structure has grown--recompile systat!");
247 if (sysctl(name
, 4, &initstat
, &len
, 0, 0) < 0) {
248 error("sysctl getting ip6stat failed");
263 name
[2] = IPPROTO_IPV6
;
264 name
[3] = IPV6CTL_STATS
;
266 len
= sizeof initstat
;
267 if (sysctl(name
, 4, &initstat
, &len
, 0, 0) < 0) {
268 error("sysctl getting ipstat failed");
283 name
[2] = IPPROTO_IPV6
;
284 name
[3] = IPV6CTL_STATS
;
285 len
= sizeof curstat
;
287 if (sysctl(name
, 4, &curstat
, &len
, 0, 0) < 0)