1f29d8c1aSDavid Malone /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
4f29d8c1aSDavid Malone * Copyright (c) 1980, 1992, 1993
5f29d8c1aSDavid Malone * The Regents of the University of California. All rights reserved.
6f29d8c1aSDavid Malone *
7f29d8c1aSDavid Malone * Redistribution and use in source and binary forms, with or without
8f29d8c1aSDavid Malone * modification, are permitted provided that the following conditions
9f29d8c1aSDavid Malone * are met:
10f29d8c1aSDavid Malone * 1. Redistributions of source code must retain the above copyright
11f29d8c1aSDavid Malone * notice, this list of conditions and the following disclaimer.
12f29d8c1aSDavid Malone * 2. Redistributions in binary form must reproduce the above copyright
13f29d8c1aSDavid Malone * notice, this list of conditions and the following disclaimer in the
14f29d8c1aSDavid Malone * documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
16f29d8c1aSDavid Malone * may be used to endorse or promote products derived from this software
17f29d8c1aSDavid Malone * without specific prior written permission.
18f29d8c1aSDavid Malone *
19f29d8c1aSDavid Malone * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20f29d8c1aSDavid Malone * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21f29d8c1aSDavid Malone * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22f29d8c1aSDavid Malone * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23f29d8c1aSDavid Malone * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24f29d8c1aSDavid Malone * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25f29d8c1aSDavid Malone * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26f29d8c1aSDavid Malone * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27f29d8c1aSDavid Malone * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28f29d8c1aSDavid Malone * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29f29d8c1aSDavid Malone * SUCH DAMAGE.
30f29d8c1aSDavid Malone */
31f29d8c1aSDavid Malone
32f29d8c1aSDavid Malone
33f29d8c1aSDavid Malone
34f29d8c1aSDavid Malone /* From:
35f29d8c1aSDavid Malone "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"
36f29d8c1aSDavid Malone */
37f29d8c1aSDavid Malone
38f29d8c1aSDavid Malone #ifdef INET6
39f29d8c1aSDavid Malone #include <sys/param.h>
40f29d8c1aSDavid Malone #include <sys/types.h>
41f29d8c1aSDavid Malone #include <sys/socket.h>
42f29d8c1aSDavid Malone #include <sys/sysctl.h>
43f29d8c1aSDavid Malone
44f29d8c1aSDavid Malone #include <netinet/in.h>
45f29d8c1aSDavid Malone #include <netinet/in_systm.h>
46f29d8c1aSDavid Malone #include <netinet/ip.h>
47f29d8c1aSDavid Malone #include <netinet6/ip6_var.h>
48f29d8c1aSDavid Malone
49970bdbf5SMichael Tuexen #include <inttypes.h>
50f29d8c1aSDavid Malone #include <stdlib.h>
51f29d8c1aSDavid Malone #include <string.h>
52f29d8c1aSDavid Malone #include <paths.h>
53f29d8c1aSDavid Malone
54f29d8c1aSDavid Malone #include "systat.h"
55f29d8c1aSDavid Malone #include "extern.h"
56f29d8c1aSDavid Malone #include "mode.h"
57f29d8c1aSDavid Malone
58f29d8c1aSDavid Malone static struct ip6stat curstat, initstat, oldstat;
59f29d8c1aSDavid Malone
60f29d8c1aSDavid Malone /*-
61f29d8c1aSDavid Malone --0 1 2 3 4 5 6 7
62f29d8c1aSDavid Malone --0123456789012345678901234567890123456789012345678901234567890123456789012345
638aa22952SBruce Evans 00 IPv6 Input IPv6 Output
648aa22952SBruce Evans 019999999 total packets received 999999999 total packets sent
658aa22952SBruce Evans 029999999 - too short for header 999999999 - generated locally
668aa22952SBruce Evans 039999999 - too short for data 999999999 - output drops
678aa22952SBruce Evans 049999999 - with invalid version 999999999 output fragments generated
688aa22952SBruce Evans 059999999 total fragments received 999999999 - fragmentation failed
698aa22952SBruce Evans 069999999 - fragments dropped 999999999 destinations unreachable
708aa22952SBruce Evans 079999999 - fragments timed out 999999999 packets output via raw IP
718aa22952SBruce Evans 089999999 - fragments overflown
728aa22952SBruce Evans 099999999 - packets reassembled ok Input next-header histogram
738aa22952SBruce Evans 109999999 packets forwarded 999999999 - destination options
748aa22952SBruce Evans 119999999 - unreachable dests 999999999 - hop-by-hop options
758aa22952SBruce Evans 129999999 - redirects generated 999999999 - IPv4
768aa22952SBruce Evans 139999999 option errors 999999999 - TCP
778aa22952SBruce Evans 149999999 unwanted multicasts 999999999 - UDP
788aa22952SBruce Evans 159999999 delivered to upper layer 999999999 - IPv6
798aa22952SBruce Evans 169999999 bad scope packets 999999999 - routing header
808aa22952SBruce Evans 179999999 address selection failed 999999999 - fragmentation header
818aa22952SBruce Evans 18 999999999 - ICMP6
828aa22952SBruce Evans 19 999999999 - none
83f29d8c1aSDavid Malone --0123456789012345678901234567890123456789012345678901234567890123456789012345
84f29d8c1aSDavid Malone --0 1 2 3 4 5 6 7
85f29d8c1aSDavid Malone */
86f29d8c1aSDavid Malone
87f29d8c1aSDavid Malone WINDOW *
openip6(void)88f29d8c1aSDavid Malone openip6(void)
89f29d8c1aSDavid Malone {
908aa22952SBruce Evans return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
91f29d8c1aSDavid Malone }
92f29d8c1aSDavid Malone
93f29d8c1aSDavid Malone void
closeip6(WINDOW * w)9493b9f504SXin LI closeip6(WINDOW *w)
95f29d8c1aSDavid Malone {
96f29d8c1aSDavid Malone if (w == NULL)
97f29d8c1aSDavid Malone return;
98f29d8c1aSDavid Malone wclear(w);
99f29d8c1aSDavid Malone wrefresh(w);
100f29d8c1aSDavid Malone delwin(w);
101f29d8c1aSDavid Malone }
102f29d8c1aSDavid Malone
103f29d8c1aSDavid Malone void
labelip6(void)104f29d8c1aSDavid Malone labelip6(void)
105f29d8c1aSDavid Malone {
106f29d8c1aSDavid Malone wmove(wnd, 0, 0); wclrtoeol(wnd);
107f29d8c1aSDavid Malone #define L(row, str) mvwprintw(wnd, row, 10, str)
108f29d8c1aSDavid Malone #define R(row, str) mvwprintw(wnd, row, 45, str);
1098aa22952SBruce Evans L(0, "IPv6 Input"); R(0, "IPv6 Output");
1108aa22952SBruce Evans L(1, "total packets received"); R(1, "total packets sent");
1118aa22952SBruce Evans L(2, "- too short for header"); R(2, "- generated locally");
1128aa22952SBruce Evans L(3, "- too short for data"); R(3, "- output drops");
1138aa22952SBruce Evans L(4, "- with invalid version"); R(4, "output fragments generated");
1148aa22952SBruce Evans L(5, "total fragments received"); R(5, "- fragmentation failed");
1158aa22952SBruce Evans L(6, "- fragments dropped"); R(6, "destinations unreachable");
1168aa22952SBruce Evans L(7, "- fragments timed out"); R(7, "packets output via raw IP");
1178aa22952SBruce Evans L(8, "- fragments overflown");
118*2946a941STom Jones L(9, "- atomic fragments"); R(9, "Input next-header histogram");
119*2946a941STom Jones L(10, "- packets reassembled ok"); R(10, " - destination options");
120*2946a941STom Jones L(11, "packets forwarded"); R(11, " - hop-by-hop options");
121*2946a941STom Jones L(12, "- unreachable dests"); R(12, " - IPv4");
122*2946a941STom Jones L(13, "- redirects generated"); R(13, " - TCP");
123*2946a941STom Jones L(14, "option errors"); R(14, " - UDP");
124*2946a941STom Jones L(15, "unwanted multicasts"); R(15, " - IPv6");
125*2946a941STom Jones L(16, "delivered to upper layer"); R(16, " - routing header");
126*2946a941STom Jones L(17, "bad scope packets"); R(17, " - fragmentation header");
127*2946a941STom Jones L(18, "address selection failed");R(18, " - ICMP6");
1288aa22952SBruce Evans R(19, " - none");
129f29d8c1aSDavid Malone #undef L
130f29d8c1aSDavid Malone #undef R
131f29d8c1aSDavid Malone }
132f29d8c1aSDavid Malone
133f29d8c1aSDavid Malone static void
domode(struct ip6stat * ret)134f29d8c1aSDavid Malone domode(struct ip6stat *ret)
135f29d8c1aSDavid Malone {
136f29d8c1aSDavid Malone const struct ip6stat *sub;
137f29d8c1aSDavid Malone int divisor = 1, i;
138f29d8c1aSDavid Malone
139f29d8c1aSDavid Malone switch(currentmode) {
140f29d8c1aSDavid Malone case display_RATE:
141f29d8c1aSDavid Malone sub = &oldstat;
1428b3daf89SAlexander V. Chernikov divisor = (delay > 1000000) ? delay / 1000000 : 1;
143f29d8c1aSDavid Malone break;
144f29d8c1aSDavid Malone case display_DELTA:
145f29d8c1aSDavid Malone sub = &oldstat;
146f29d8c1aSDavid Malone break;
147f29d8c1aSDavid Malone case display_SINCE:
148f29d8c1aSDavid Malone sub = &initstat;
149f29d8c1aSDavid Malone break;
150f29d8c1aSDavid Malone default:
151f29d8c1aSDavid Malone *ret = curstat;
152f29d8c1aSDavid Malone return;
153f29d8c1aSDavid Malone }
154f29d8c1aSDavid Malone #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor
155f29d8c1aSDavid Malone DO(ip6s_total);
156f29d8c1aSDavid Malone DO(ip6s_tooshort);
157f29d8c1aSDavid Malone DO(ip6s_toosmall);
158f29d8c1aSDavid Malone DO(ip6s_fragments);
159f29d8c1aSDavid Malone DO(ip6s_fragdropped);
160f29d8c1aSDavid Malone DO(ip6s_fragtimeout);
161f29d8c1aSDavid Malone DO(ip6s_fragoverflow);
162*2946a941STom Jones DO(ip6s_atomicfrags);
163f29d8c1aSDavid Malone DO(ip6s_forward);
164f29d8c1aSDavid Malone DO(ip6s_cantforward);
165f29d8c1aSDavid Malone DO(ip6s_redirectsent);
166f29d8c1aSDavid Malone DO(ip6s_delivered);
167f29d8c1aSDavid Malone DO(ip6s_localout);
168f29d8c1aSDavid Malone DO(ip6s_odropped);
169f29d8c1aSDavid Malone DO(ip6s_reassembled);
170f29d8c1aSDavid Malone DO(ip6s_fragmented);
171f29d8c1aSDavid Malone DO(ip6s_ofragments);
172f29d8c1aSDavid Malone DO(ip6s_cantfrag);
173f29d8c1aSDavid Malone DO(ip6s_badoptions);
174f29d8c1aSDavid Malone DO(ip6s_noroute);
175f29d8c1aSDavid Malone DO(ip6s_badvers);
176f29d8c1aSDavid Malone DO(ip6s_rawout);
177f29d8c1aSDavid Malone DO(ip6s_notmember);
178f29d8c1aSDavid Malone for (i = 0; i < 256; i++)
179f29d8c1aSDavid Malone DO(ip6s_nxthist[i]);
180f29d8c1aSDavid Malone DO(ip6s_badscope);
181f29d8c1aSDavid Malone DO(ip6s_sources_none);
182f29d8c1aSDavid Malone #undef DO
183f29d8c1aSDavid Malone }
184f29d8c1aSDavid Malone
185f29d8c1aSDavid Malone void
showip6(void)186f29d8c1aSDavid Malone showip6(void)
187f29d8c1aSDavid Malone {
188f29d8c1aSDavid Malone struct ip6stat stats;
189970bdbf5SMichael Tuexen uint64_t totalout;
190f29d8c1aSDavid Malone
191f29d8c1aSDavid Malone domode(&stats);
192f29d8c1aSDavid Malone totalout = stats.ip6s_forward + stats.ip6s_localout;
193f29d8c1aSDavid Malone
194f29d8c1aSDavid Malone #define DO(stat, row, col) \
195970bdbf5SMichael Tuexen mvwprintw(wnd, row, col, "%9"PRIu64, stats.stat)
196f29d8c1aSDavid Malone
1978aa22952SBruce Evans DO(ip6s_total, 1, 0);
198970bdbf5SMichael Tuexen mvwprintw(wnd, 1, 35, "%9"PRIu64, totalout);
1998aa22952SBruce Evans DO(ip6s_tooshort, 2, 0);
2008aa22952SBruce Evans DO(ip6s_localout, 2, 35);
2018aa22952SBruce Evans DO(ip6s_toosmall, 3, 0);
2028aa22952SBruce Evans DO(ip6s_odropped, 3, 35);
2038aa22952SBruce Evans DO(ip6s_badvers, 4, 0);
2048aa22952SBruce Evans DO(ip6s_ofragments, 4, 35);
2058aa22952SBruce Evans DO(ip6s_fragments, 5, 0);
2068aa22952SBruce Evans DO(ip6s_cantfrag, 5, 35);
2078aa22952SBruce Evans DO(ip6s_fragdropped, 6, 0);
2088aa22952SBruce Evans DO(ip6s_noroute, 6, 35);
2098aa22952SBruce Evans DO(ip6s_fragtimeout, 7, 0);
2108aa22952SBruce Evans DO(ip6s_rawout, 7, 35);
2118aa22952SBruce Evans DO(ip6s_fragoverflow, 8, 0);
212*2946a941STom Jones DO(ip6s_atomicfrags, 9, 0);
213*2946a941STom Jones DO(ip6s_reassembled, 10, 0);
214*2946a941STom Jones DO(ip6s_forward, 11, 0);
215f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_DSTOPTS], 10, 35);
216*2946a941STom Jones DO(ip6s_cantforward, 12, 0);
217f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_HOPOPTS], 11, 35);
218*2946a941STom Jones DO(ip6s_redirectsent, 13, 0);
219f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_IPV4], 12, 35);
220*2946a941STom Jones DO(ip6s_badoptions, 14, 0);
221f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_TCP], 13, 35);
222*2946a941STom Jones DO(ip6s_notmember, 15, 0);
223f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_UDP], 14, 35);
224*2946a941STom Jones DO(ip6s_delivered, 16, 0);
225f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_IPV6], 15, 35);
226*2946a941STom Jones DO(ip6s_badscope, 17, 0);
227f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_ROUTING], 16, 35);
228*2946a941STom Jones DO(ip6s_sources_none, 18, 0);
229f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_FRAGMENT], 17, 35);
230f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_ICMPV6], 18, 35);
231f29d8c1aSDavid Malone DO(ip6s_nxthist[IPPROTO_NONE], 19, 35);
232f29d8c1aSDavid Malone #undef DO
233f29d8c1aSDavid Malone }
234f29d8c1aSDavid Malone
235f29d8c1aSDavid Malone int
initip6(void)236f29d8c1aSDavid Malone initip6(void)
237f29d8c1aSDavid Malone {
238f29d8c1aSDavid Malone size_t len;
239f29d8c1aSDavid Malone int name[4];
240f29d8c1aSDavid Malone
241f29d8c1aSDavid Malone name[0] = CTL_NET;
242f29d8c1aSDavid Malone name[1] = PF_INET6;
243f29d8c1aSDavid Malone name[2] = IPPROTO_IPV6;
244f29d8c1aSDavid Malone name[3] = IPV6CTL_STATS;
245f29d8c1aSDavid Malone
246f29d8c1aSDavid Malone len = 0;
247f29d8c1aSDavid Malone if (sysctl(name, 4, 0, &len, 0, 0) < 0) {
248f29d8c1aSDavid Malone error("sysctl getting ip6stat size failed");
249f29d8c1aSDavid Malone return 0;
250f29d8c1aSDavid Malone }
251f29d8c1aSDavid Malone if (len > sizeof curstat) {
252f29d8c1aSDavid Malone error("ip6stat structure has grown--recompile systat!");
253f29d8c1aSDavid Malone return 0;
254f29d8c1aSDavid Malone }
255f29d8c1aSDavid Malone if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
256f29d8c1aSDavid Malone error("sysctl getting ip6stat failed");
257f29d8c1aSDavid Malone return 0;
258f29d8c1aSDavid Malone }
259f29d8c1aSDavid Malone oldstat = initstat;
260f29d8c1aSDavid Malone return 1;
261f29d8c1aSDavid Malone }
262f29d8c1aSDavid Malone
263f29d8c1aSDavid Malone void
resetip6(void)264f29d8c1aSDavid Malone resetip6(void)
265f29d8c1aSDavid Malone {
266f29d8c1aSDavid Malone size_t len;
267f29d8c1aSDavid Malone int name[4];
268f29d8c1aSDavid Malone
269f29d8c1aSDavid Malone name[0] = CTL_NET;
270f29d8c1aSDavid Malone name[1] = PF_INET6;
271f29d8c1aSDavid Malone name[2] = IPPROTO_IPV6;
272f29d8c1aSDavid Malone name[3] = IPV6CTL_STATS;
273f29d8c1aSDavid Malone
274f29d8c1aSDavid Malone len = sizeof initstat;
275f29d8c1aSDavid Malone if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
276f29d8c1aSDavid Malone error("sysctl getting ipstat failed");
277f29d8c1aSDavid Malone }
278f29d8c1aSDavid Malone
279f29d8c1aSDavid Malone oldstat = initstat;
280f29d8c1aSDavid Malone }
281f29d8c1aSDavid Malone
282f29d8c1aSDavid Malone void
fetchip6(void)283f29d8c1aSDavid Malone fetchip6(void)
284f29d8c1aSDavid Malone {
285f29d8c1aSDavid Malone int name[4];
286f29d8c1aSDavid Malone size_t len;
287f29d8c1aSDavid Malone
288f29d8c1aSDavid Malone oldstat = curstat;
289f29d8c1aSDavid Malone name[0] = CTL_NET;
290f29d8c1aSDavid Malone name[1] = PF_INET6;
291f29d8c1aSDavid Malone name[2] = IPPROTO_IPV6;
292f29d8c1aSDavid Malone name[3] = IPV6CTL_STATS;
293f29d8c1aSDavid Malone len = sizeof curstat;
294f29d8c1aSDavid Malone
295f29d8c1aSDavid Malone if (sysctl(name, 4, &curstat, &len, 0, 0) < 0)
296f29d8c1aSDavid Malone return;
297f29d8c1aSDavid Malone }
298f29d8c1aSDavid Malone
299f29d8c1aSDavid Malone #endif
300