Merge from vendor branch OPENSSL:
[dragonfly.git] / usr.bin / systat / ip6.c
1 /*-
2  * Copyright (c) 1980, 1992, 1993
3  *      The 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  * @(#)mbufs.c  8.1 (Berkeley) 6/6/93
34  * $FreeBSD: src/usr.bin/systat/ip6.c,v 1.3 2006/04/30 04:47:23 bde Exp $
35  * $DragonFly: src/usr.bin/systat/ip6.c,v 1.1 2007/05/31 11:38:36 hasso Exp $
36  */
37
38 #include <sys/cdefs.h>
39
40 #ifdef INET6
41 #include <sys/param.h>
42 #include <sys/types.h>
43 #include <sys/socket.h>
44 #include <sys/sysctl.h>
45
46 #include <netinet/in.h>
47 #include <netinet/in_systm.h>
48 #include <netinet/ip.h>
49 #include <netinet6/ip6_var.h>
50
51 #include <stdlib.h>
52 #include <string.h>
53 #include <paths.h>
54
55 #include "systat.h"
56 #include "extern.h"
57 #include "mode.h"
58
59 static struct ip6stat curstat, initstat, oldstat;
60
61 /*-
62 --0         1         2         3         4         5         6         7
63 --0123456789012345678901234567890123456789012345678901234567890123456789012345
64 00        IPv6 Input                         IPv6 Output
65 019999999 total packets received   999999999 total packets sent
66 029999999 - too short for header   999999999 - generated locally
67 039999999 - too short for data     999999999 - output drops
68 049999999 - with invalid version   999999999 output fragments generated
69 059999999 total fragments received 999999999 - fragmentation failed
70 069999999 - fragments dropped      999999999 destinations unreachable
71 079999999 - fragments timed out    999999999 packets output via raw IP
72 089999999 - fragments overflown
73 099999999 - packets reassembled ok           Input next-header histogram
74 109999999 packets forwarded        999999999  - destination options
75 119999999 - unreachable dests      999999999  - hop-by-hop options
76 129999999 - redirects generated    999999999  - IPv4
77 139999999 option errors            999999999  - TCP
78 149999999 unwanted multicasts      999999999  - UDP
79 159999999 delivered to upper layer 999999999  - IPv6
80 169999999 bad scope packets        999999999  - routing header
81 179999999 address selection failed 999999999  - fragmentation header
82 18                                 999999999  - ICMP6
83 19                                 999999999  - none
84 --0123456789012345678901234567890123456789012345678901234567890123456789012345
85 --0         1         2         3         4         5         6         7
86 */
87
88 WINDOW *
89 openip6(void)
90 {
91         return (subwin(stdscr, LINES-4-1, 0, 4, 0));
92 }
93
94 void
95 closeip6(w)
96         WINDOW *w;
97 {
98         if (w == NULL)
99                 return;
100         wclear(w);
101         wrefresh(w);
102         delwin(w);
103 }
104
105 void
106 labelip6(void)
107 {
108         wmove(wnd, 0, 0); wclrtoeol(wnd);
109 #define L(row, str) mvwprintw(wnd, row, 10, str)
110 #define R(row, str) mvwprintw(wnd, row, 45, str);
111         L(1, "IPv6 Input");             R(1, "IPv6 Output");
112         L(2, "total packets received"); R(2, "total packets sent");
113         L(3, "- too short for header"); R(3, "- generated locally");
114         L(4, "- too short for data");   R(4, "- output drops");
115         L(5, "- with invalid version"); R(5, "output fragments generated");
116         L(6, "total fragments received"); R(6, "- fragmentation failed");
117         L(7, "- fragments dropped");    R(7, "destinations unreachable");
118         L(8, "- fragments timed out");  R(8, "packets output via raw IP");
119         L(9, "- fragments overflown");
120         L(10, "- packets reassembled ok"); R(10, "Input next-header histogram");
121         L(11, "packets forwarded");     R(11, " - destination options");
122         L(12, "- unreachable dests");   R(12, " - hop-by-hop options");
123         L(13, "- redirects generated"); R(13, " - IPv4");
124         L(14, "option errors");         R(14, " - TCP");
125         L(15, "unwanted multicasts");   R(15, " - UDP");
126         L(16, "delivered to upper layer"); R(16, " - IPv6");
127         L(17, "bad scope packets");     R(17, " - routing header");
128         L(18, "address selection failed"); R(18, " - fragmentation header");
129                                         R(19, " - ICMP6");
130                                         R(20, " - none");
131 #undef L
132 #undef R
133 }
134
135 static void
136 domode(struct ip6stat *ret)
137 {
138         const struct ip6stat *sub;
139         int divisor = 1, i;
140
141         switch(currentmode) {
142         case display_RATE:
143                 sub = &oldstat;
144                 divisor = naptime;
145                 break;
146         case display_DELTA:
147                 sub = &oldstat;
148                 break;
149         case display_SINCE:
150                 sub = &initstat;
151                 break;
152         default:
153                 *ret = curstat;
154                 return;
155         }
156 #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor
157         DO(ip6s_total);
158         DO(ip6s_tooshort);
159         DO(ip6s_toosmall);
160         DO(ip6s_fragments);
161         DO(ip6s_fragdropped);
162         DO(ip6s_fragtimeout);
163         DO(ip6s_fragoverflow);
164         DO(ip6s_forward);
165         DO(ip6s_cantforward);
166         DO(ip6s_redirectsent);
167         DO(ip6s_delivered);
168         DO(ip6s_localout);
169         DO(ip6s_odropped);
170         DO(ip6s_reassembled);
171         DO(ip6s_fragmented);
172         DO(ip6s_ofragments);
173         DO(ip6s_cantfrag);
174         DO(ip6s_badoptions);
175         DO(ip6s_noroute);
176         DO(ip6s_badvers);
177         DO(ip6s_rawout);
178         DO(ip6s_notmember);
179         for (i = 0; i < 256; i++)
180                 DO(ip6s_nxthist[i]);
181         DO(ip6s_badscope);
182         DO(ip6s_sources_none);
183 #undef DO
184 }
185
186 void
187 showip6(void)
188 {
189         struct ip6stat stats;
190         u_long totalout;
191
192         domode(&stats);
193         totalout = stats.ip6s_forward + stats.ip6s_localout;
194
195 #define DO(stat, row, col) \
196         mvwprintw(wnd, row, col, "%9lu", stats.stat)
197
198         DO(ip6s_total, 2, 0);
199         mvwprintw(wnd, 2, 35, "%9lu", totalout);
200         DO(ip6s_tooshort, 3, 0);
201         DO(ip6s_localout, 3, 35);
202         DO(ip6s_toosmall, 4, 0);
203         DO(ip6s_odropped, 4, 35);
204         DO(ip6s_badvers, 5, 0);
205         DO(ip6s_ofragments, 5, 35);
206         DO(ip6s_fragments, 6, 0);
207         DO(ip6s_cantfrag, 6, 35);
208         DO(ip6s_fragdropped, 7, 0);
209         DO(ip6s_noroute, 7, 35);
210         DO(ip6s_fragtimeout, 8, 0);
211         DO(ip6s_rawout, 8, 35);
212         DO(ip6s_fragoverflow, 9, 0);
213         DO(ip6s_reassembled, 10, 0);
214         DO(ip6s_forward, 11, 0);
215         DO(ip6s_nxthist[IPPROTO_DSTOPTS], 11, 35);
216         DO(ip6s_cantforward, 12, 0);
217         DO(ip6s_nxthist[IPPROTO_HOPOPTS], 12, 35);
218         DO(ip6s_redirectsent, 13, 0);
219         DO(ip6s_nxthist[IPPROTO_IPV4], 13, 35);
220         DO(ip6s_badoptions, 14, 0);
221         DO(ip6s_nxthist[IPPROTO_TCP], 14, 35);
222         DO(ip6s_notmember, 15, 0);
223         DO(ip6s_nxthist[IPPROTO_UDP], 15, 35);
224         DO(ip6s_delivered, 16, 0);
225         DO(ip6s_nxthist[IPPROTO_IPV6], 16, 35);
226         DO(ip6s_badscope, 17, 0);
227         DO(ip6s_nxthist[IPPROTO_ROUTING], 17, 35);
228         DO(ip6s_sources_none, 18, 0);
229         DO(ip6s_nxthist[IPPROTO_FRAGMENT], 18, 35);
230         DO(ip6s_nxthist[IPPROTO_ICMPV6], 19, 35);
231         DO(ip6s_nxthist[IPPROTO_NONE], 20, 35);
232 #undef DO
233 }
234
235 int
236 initip6(void)
237 {
238         size_t len;
239         int name[4];
240
241         name[0] = CTL_NET;
242         name[1] = PF_INET6;
243         name[2] = IPPROTO_IPV6;
244         name[3] = IPV6CTL_STATS;
245
246         len = 0;
247         if (sysctl(name, 4, 0, &len, 0, 0) < 0) {
248                 error("sysctl getting ip6stat size failed");
249                 return 0;
250         }
251         if (len > sizeof curstat) {
252                 error("ip6stat structure has grown--recompile systat!");
253                 return 0;
254         }
255         if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
256                 error("sysctl getting ip6stat failed");
257                 return 0;
258         }
259         oldstat = initstat;
260         return 1;
261 }
262
263 void
264 resetip6(void)
265 {
266         size_t len;
267         int name[4];
268
269         name[0] = CTL_NET;
270         name[1] = PF_INET6;
271         name[2] = IPPROTO_IPV6;
272         name[3] = IPV6CTL_STATS;
273
274         len = sizeof initstat;
275         if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
276                 error("sysctl getting ipstat failed");
277         }
278
279         oldstat = initstat;
280 }
281
282 void
283 fetchip6(void)
284 {
285         int name[4];
286         size_t len;
287
288         oldstat = curstat;
289         name[0] = CTL_NET;
290         name[1] = PF_INET6;
291         name[2] = IPPROTO_IPV6;
292         name[3] = IPV6CTL_STATS;
293         len = sizeof curstat;
294
295         if (sysctl(name, 4, &curstat, &len, 0, 0) < 0)
296                 return;
297 }
298
299 #endif