103e00a72SGarrett Wollman /*-
2*8a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni *
403e00a72SGarrett Wollman * Copyright (c) 1980, 1992, 1993
503e00a72SGarrett Wollman * The Regents of the University of California. All rights reserved.
603e00a72SGarrett Wollman *
703e00a72SGarrett Wollman * Redistribution and use in source and binary forms, with or without
803e00a72SGarrett Wollman * modification, are permitted provided that the following conditions
903e00a72SGarrett Wollman * are met:
1003e00a72SGarrett Wollman * 1. Redistributions of source code must retain the above copyright
1103e00a72SGarrett Wollman * notice, this list of conditions and the following disclaimer.
1203e00a72SGarrett Wollman * 2. Redistributions in binary form must reproduce the above copyright
1303e00a72SGarrett Wollman * notice, this list of conditions and the following disclaimer in the
1403e00a72SGarrett Wollman * documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
1603e00a72SGarrett Wollman * may be used to endorse or promote products derived from this software
1703e00a72SGarrett Wollman * without specific prior written permission.
1803e00a72SGarrett Wollman *
1903e00a72SGarrett Wollman * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2003e00a72SGarrett Wollman * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2103e00a72SGarrett Wollman * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2203e00a72SGarrett Wollman * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2303e00a72SGarrett Wollman * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2403e00a72SGarrett Wollman * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2503e00a72SGarrett Wollman * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2603e00a72SGarrett Wollman * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2703e00a72SGarrett Wollman * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2803e00a72SGarrett Wollman * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2903e00a72SGarrett Wollman * SUCH DAMAGE.
3003e00a72SGarrett Wollman */
3103e00a72SGarrett Wollman
329ff712b0SMark Murray
339ff712b0SMark Murray
349ff712b0SMark Murray /* From:
359ff712b0SMark Murray "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"
3603e00a72SGarrett Wollman */
3703e00a72SGarrett Wollman
3803e00a72SGarrett Wollman #include <sys/param.h>
3903e00a72SGarrett Wollman #include <sys/types.h>
4003e00a72SGarrett Wollman #include <sys/socket.h>
4103e00a72SGarrett Wollman #include <sys/sysctl.h>
4203e00a72SGarrett Wollman
4303e00a72SGarrett Wollman #include <netinet/in.h>
4403e00a72SGarrett Wollman #include <netinet/in_systm.h>
4503e00a72SGarrett Wollman #include <netinet/ip.h>
4603e00a72SGarrett Wollman #include <netinet/ip_icmp.h>
4703e00a72SGarrett Wollman #include <netinet/icmp_var.h>
4803e00a72SGarrett Wollman
49821df508SXin LI #include <stdlib.h>
5003e00a72SGarrett Wollman #include <string.h>
51821df508SXin LI #include <paths.h>
5203e00a72SGarrett Wollman #include "systat.h"
5303e00a72SGarrett Wollman #include "extern.h"
5403e00a72SGarrett Wollman #include "mode.h"
5503e00a72SGarrett Wollman
5603e00a72SGarrett Wollman static struct icmpstat icmpstat, initstat, oldstat;
5703e00a72SGarrett Wollman
5803e00a72SGarrett Wollman /*-
5903e00a72SGarrett Wollman --0 1 2 3 4 5 6 7
6003e00a72SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
618aa22952SBruce Evans 00 ICMP Input ICMP Output
628aa22952SBruce Evans 01999999999 total messages 999999999 total messages
638aa22952SBruce Evans 02999999999 with bad code 999999999 errors generated
648aa22952SBruce Evans 03999999999 with bad length 999999999 suppressed - original too short
658aa22952SBruce Evans 04999999999 with bad checksum 999999999 suppressed - original was ICMP
668aa22952SBruce Evans 05999999999 with insufficient data 999999999 responses sent
678aa22952SBruce Evans 06 999999999 suppressed - multicast echo
688aa22952SBruce Evans 07 999999999 suppressed - multicast tstamp
698aa22952SBruce Evans 08
708aa22952SBruce Evans 09 Input Histogram Output Histogram
718aa22952SBruce Evans 10999999999 echo response 999999999 echo response
728aa22952SBruce Evans 11999999999 echo request 999999999 echo request
738aa22952SBruce Evans 12999999999 destination unreachable 999999999 destination unreachable
748aa22952SBruce Evans 13999999999 redirect 999999999 redirect
758aa22952SBruce Evans 14999999999 time-to-live exceeded 999999999 time-to-line exceeded
768aa22952SBruce Evans 15999999999 parameter problem 999999999 parameter problem
778aa22952SBruce Evans 16999999999 router advertisement 999999999 router solicitation
788aa22952SBruce Evans 17
7903e00a72SGarrett Wollman 18
8003e00a72SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
8103e00a72SGarrett Wollman --0 1 2 3 4 5 6 7
8203e00a72SGarrett Wollman */
8303e00a72SGarrett Wollman
8403e00a72SGarrett Wollman WINDOW *
openicmp(void)8503e00a72SGarrett Wollman openicmp(void)
8603e00a72SGarrett Wollman {
878aa22952SBruce Evans return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
8803e00a72SGarrett Wollman }
8903e00a72SGarrett Wollman
9003e00a72SGarrett Wollman void
closeicmp(WINDOW * w)9193b9f504SXin LI closeicmp(WINDOW *w)
9203e00a72SGarrett Wollman {
9303e00a72SGarrett Wollman if (w == NULL)
9403e00a72SGarrett Wollman return;
9503e00a72SGarrett Wollman wclear(w);
9603e00a72SGarrett Wollman wrefresh(w);
9703e00a72SGarrett Wollman delwin(w);
9803e00a72SGarrett Wollman }
9903e00a72SGarrett Wollman
10003e00a72SGarrett Wollman void
labelicmp(void)10103e00a72SGarrett Wollman labelicmp(void)
10203e00a72SGarrett Wollman {
10303e00a72SGarrett Wollman wmove(wnd, 0, 0); wclrtoeol(wnd);
10403e00a72SGarrett Wollman #define L(row, str) mvwprintw(wnd, row, 10, str)
10503e00a72SGarrett Wollman #define R(row, str) mvwprintw(wnd, row, 45, str);
1068aa22952SBruce Evans L(0, "ICMP Input"); R(0, "ICMP Output");
1078aa22952SBruce Evans L(1, "total messages"); R(1, "total messages");
1088aa22952SBruce Evans L(2, "with bad code"); R(2, "errors generated");
1098aa22952SBruce Evans L(3, "with bad length"); R(3, "suppressed - original too short");
1108aa22952SBruce Evans L(4, "with bad checksum"); R(4, "suppressed - original was ICMP");
1118aa22952SBruce Evans L(5, "with insufficient data"); R(5, "responses sent");
1128aa22952SBruce Evans R(6, "suppressed - multicast echo");
1138aa22952SBruce Evans R(7, "suppressed - multicast tstamp");
1148aa22952SBruce Evans L(9, "Input Histogram"); R(9, "Output Histogram");
11503e00a72SGarrett Wollman #define B(row, str) L(row, str); R(row, str)
1168aa22952SBruce Evans B(10, "echo response");
1178aa22952SBruce Evans B(11, "echo request");
1188aa22952SBruce Evans B(12, "destination unreachable");
1198aa22952SBruce Evans B(13, "redirect");
1208aa22952SBruce Evans B(14, "time-to-live exceeded");
1218aa22952SBruce Evans B(15, "parameter problem");
1228aa22952SBruce Evans L(16, "router advertisement"); R(16, "router solicitation");
12303e00a72SGarrett Wollman #undef L
12403e00a72SGarrett Wollman #undef R
12503e00a72SGarrett Wollman #undef B
12603e00a72SGarrett Wollman }
12703e00a72SGarrett Wollman
12803e00a72SGarrett Wollman static void
domode(struct icmpstat * ret)12903e00a72SGarrett Wollman domode(struct icmpstat *ret)
13003e00a72SGarrett Wollman {
13103e00a72SGarrett Wollman const struct icmpstat *sub;
13203e00a72SGarrett Wollman int i, divisor = 1;
13303e00a72SGarrett Wollman
13403e00a72SGarrett Wollman switch(currentmode) {
13503e00a72SGarrett Wollman case display_RATE:
13603e00a72SGarrett Wollman sub = &oldstat;
1378b3daf89SAlexander V. Chernikov divisor = (delay > 1000000) ? delay / 1000000 : 1;
13803e00a72SGarrett Wollman break;
13903e00a72SGarrett Wollman case display_DELTA:
14003e00a72SGarrett Wollman sub = &oldstat;
14103e00a72SGarrett Wollman break;
14203e00a72SGarrett Wollman case display_SINCE:
14303e00a72SGarrett Wollman sub = &initstat;
14403e00a72SGarrett Wollman break;
14503e00a72SGarrett Wollman default:
14603e00a72SGarrett Wollman *ret = icmpstat;
14703e00a72SGarrett Wollman return;
14803e00a72SGarrett Wollman }
14903e00a72SGarrett Wollman #define DO(stat) ret->stat = (icmpstat.stat - sub->stat) / divisor
15003e00a72SGarrett Wollman DO(icps_error);
15103e00a72SGarrett Wollman DO(icps_oldshort);
15203e00a72SGarrett Wollman DO(icps_oldicmp);
15303e00a72SGarrett Wollman for (i = 0; i <= ICMP_MAXTYPE; i++) {
15403e00a72SGarrett Wollman DO(icps_outhist[i]);
15503e00a72SGarrett Wollman }
15603e00a72SGarrett Wollman DO(icps_badcode);
15703e00a72SGarrett Wollman DO(icps_tooshort);
15803e00a72SGarrett Wollman DO(icps_checksum);
15903e00a72SGarrett Wollman DO(icps_badlen);
16003e00a72SGarrett Wollman DO(icps_reflect);
16103e00a72SGarrett Wollman for (i = 0; i <= ICMP_MAXTYPE; i++) {
16203e00a72SGarrett Wollman DO(icps_inhist[i]);
16303e00a72SGarrett Wollman }
16403e00a72SGarrett Wollman DO(icps_bmcastecho);
16503e00a72SGarrett Wollman DO(icps_bmcasttstamp);
16603e00a72SGarrett Wollman #undef DO
16703e00a72SGarrett Wollman }
16803e00a72SGarrett Wollman
16903e00a72SGarrett Wollman void
showicmp(void)17003e00a72SGarrett Wollman showicmp(void)
17103e00a72SGarrett Wollman {
17203e00a72SGarrett Wollman struct icmpstat stats;
17303e00a72SGarrett Wollman u_long totalin, totalout;
17403e00a72SGarrett Wollman int i;
17503e00a72SGarrett Wollman
17603e00a72SGarrett Wollman memset(&stats, 0, sizeof stats);
17703e00a72SGarrett Wollman domode(&stats);
17803e00a72SGarrett Wollman for (i = totalin = totalout = 0; i <= ICMP_MAXTYPE; i++) {
17903e00a72SGarrett Wollman totalin += stats.icps_inhist[i];
18003e00a72SGarrett Wollman totalout += stats.icps_outhist[i];
18103e00a72SGarrett Wollman }
18203e00a72SGarrett Wollman totalin += stats.icps_badcode + stats.icps_badlen +
18303e00a72SGarrett Wollman stats.icps_checksum + stats.icps_tooshort;
1848aa22952SBruce Evans mvwprintw(wnd, 1, 0, "%9lu", totalin);
1858aa22952SBruce Evans mvwprintw(wnd, 1, 35, "%9lu", totalout);
18603e00a72SGarrett Wollman
18703e00a72SGarrett Wollman #define DO(stat, row, col) \
18803e00a72SGarrett Wollman mvwprintw(wnd, row, col, "%9lu", stats.stat)
18903e00a72SGarrett Wollman
1908aa22952SBruce Evans DO(icps_badcode, 2, 0);
1918aa22952SBruce Evans DO(icps_badlen, 3, 0);
1928aa22952SBruce Evans DO(icps_checksum, 4, 0);
1938aa22952SBruce Evans DO(icps_tooshort, 5, 0);
1948aa22952SBruce Evans DO(icps_error, 2, 35);
1958aa22952SBruce Evans DO(icps_oldshort, 3, 35);
1968aa22952SBruce Evans DO(icps_oldicmp, 4, 35);
1978aa22952SBruce Evans DO(icps_reflect, 5, 35);
1988aa22952SBruce Evans DO(icps_bmcastecho, 6, 35);
1998aa22952SBruce Evans DO(icps_bmcasttstamp, 7, 35);
20003e00a72SGarrett Wollman #define DO2(type, row) DO(icps_inhist[type], row, 0); DO(icps_outhist[type], \
20103e00a72SGarrett Wollman row, 35)
2028aa22952SBruce Evans DO2(ICMP_ECHOREPLY, 10);
2038aa22952SBruce Evans DO2(ICMP_ECHO, 11);
2048aa22952SBruce Evans DO2(ICMP_UNREACH, 12);
2058aa22952SBruce Evans DO2(ICMP_REDIRECT, 13);
2068aa22952SBruce Evans DO2(ICMP_TIMXCEED, 14);
2078aa22952SBruce Evans DO2(ICMP_PARAMPROB, 15);
2088aa22952SBruce Evans DO(icps_inhist[ICMP_ROUTERADVERT], 16, 0);
2098aa22952SBruce Evans DO(icps_outhist[ICMP_ROUTERSOLICIT], 16, 35);
21003e00a72SGarrett Wollman #undef DO
21103e00a72SGarrett Wollman #undef DO2
21203e00a72SGarrett Wollman }
21303e00a72SGarrett Wollman
21403e00a72SGarrett Wollman int
initicmp(void)21503e00a72SGarrett Wollman initicmp(void)
21603e00a72SGarrett Wollman {
21703e00a72SGarrett Wollman size_t len;
21803e00a72SGarrett Wollman int name[4];
21903e00a72SGarrett Wollman
22003e00a72SGarrett Wollman name[0] = CTL_NET;
22103e00a72SGarrett Wollman name[1] = PF_INET;
22203e00a72SGarrett Wollman name[2] = IPPROTO_ICMP;
22303e00a72SGarrett Wollman name[3] = ICMPCTL_STATS;
22403e00a72SGarrett Wollman
22503e00a72SGarrett Wollman len = 0;
22603e00a72SGarrett Wollman if (sysctl(name, 4, 0, &len, 0, 0) < 0) {
22703e00a72SGarrett Wollman error("sysctl getting icmpstat size failed");
22803e00a72SGarrett Wollman return 0;
22903e00a72SGarrett Wollman }
23003e00a72SGarrett Wollman if (len > sizeof icmpstat) {
23103e00a72SGarrett Wollman error("icmpstat structure has grown--recompile systat!");
23203e00a72SGarrett Wollman return 0;
23303e00a72SGarrett Wollman }
23403e00a72SGarrett Wollman if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
23503e00a72SGarrett Wollman error("sysctl getting icmpstat size failed");
23603e00a72SGarrett Wollman return 0;
23703e00a72SGarrett Wollman }
23803e00a72SGarrett Wollman oldstat = initstat;
23903e00a72SGarrett Wollman return 1;
24003e00a72SGarrett Wollman }
24103e00a72SGarrett Wollman
24203e00a72SGarrett Wollman void
reseticmp(void)24303e00a72SGarrett Wollman reseticmp(void)
24403e00a72SGarrett Wollman {
24503e00a72SGarrett Wollman size_t len;
24603e00a72SGarrett Wollman int name[4];
24703e00a72SGarrett Wollman
24803e00a72SGarrett Wollman name[0] = CTL_NET;
24903e00a72SGarrett Wollman name[1] = PF_INET;
25003e00a72SGarrett Wollman name[2] = IPPROTO_ICMP;
25103e00a72SGarrett Wollman name[3] = ICMPCTL_STATS;
25203e00a72SGarrett Wollman
25303e00a72SGarrett Wollman len = sizeof initstat;
25403e00a72SGarrett Wollman if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
25503e00a72SGarrett Wollman error("sysctl getting icmpstat size failed");
25603e00a72SGarrett Wollman }
25703e00a72SGarrett Wollman oldstat = initstat;
25803e00a72SGarrett Wollman }
25903e00a72SGarrett Wollman
26003e00a72SGarrett Wollman void
fetchicmp(void)26103e00a72SGarrett Wollman fetchicmp(void)
26203e00a72SGarrett Wollman {
26303e00a72SGarrett Wollman int name[4];
26403e00a72SGarrett Wollman size_t len;
26503e00a72SGarrett Wollman
26603e00a72SGarrett Wollman oldstat = icmpstat;
26703e00a72SGarrett Wollman name[0] = CTL_NET;
26803e00a72SGarrett Wollman name[1] = PF_INET;
26903e00a72SGarrett Wollman name[2] = IPPROTO_ICMP;
27003e00a72SGarrett Wollman name[3] = ICMPCTL_STATS;
27103e00a72SGarrett Wollman len = sizeof icmpstat;
27203e00a72SGarrett Wollman
27303e00a72SGarrett Wollman if (sysctl(name, 4, &icmpstat, &len, 0, 0) < 0)
27403e00a72SGarrett Wollman return;
27503e00a72SGarrett Wollman }
276