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. 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.
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
33 * @(#)mbufs.c 8.1 (Berkeley) 6/6/93
34 * $FreeBSD: src/usr.bin/systat/icmp.c,v 1.2 1999/08/28 01:06:01 peter Exp $
35 * $DragonFly: src/usr.bin/systat/icmp.c,v 1.4 2003/10/04 20:36:51 hmp Exp $
38 #include <sys/param.h>
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <sys/sysctl.h>
43 #include <netinet/in.h>
44 #include <netinet/in_systm.h>
45 #include <netinet/ip.h>
46 #include <netinet/ip_icmp.h>
47 #include <netinet/icmp_var.h>
56 static struct icmpstat icmpstat
, initstat
, oldstat
;
60 --0123456789012345678901234567890123456789012345678901234567890123456789012345
61 01 ICMP Input ICMP Output
62 02999999999 total messages 999999999 total messages
63 03999999999 with bad code 999999999 errors generated
64 04999999999 with bad length 999999999 suppressed - original too short
65 05999999999 with bad checksum 999999999 suppressed - original was ICMP
66 06999999999 with insufficient data 999999999 responses sent
67 07 999999999 suppressed - multicast echo
68 08 999999999 suppressed - multicast tstamp
70 10 Input Histogram Output Histogram
71 11999999999 echo response 999999999 echo response
72 12999999999 echo request 999999999 echo request
73 13999999999 destination unreachable 999999999 destination unreachable
74 14999999999 redirect 999999999 redirect
75 15999999999 time-to-live exceeded 999999999 time-to-line exceeded
76 16999999999 parameter problem 999999999 parameter problem
77 17999999999 router advertisement 999999999 router solicitation
80 --0123456789012345678901234567890123456789012345678901234567890123456789012345
87 return (subwin(stdscr
, LINES
-5-1, 0, 5, 0));
103 wmove(wnd
, 0, 0); wclrtoeol(wnd
);
104 #define L(row, str) mvwprintw(wnd, row, 10, str)
105 #define R(row, str) mvwprintw(wnd, row, 45, str);
106 L(1, "ICMP Input"); R(1, "ICMP Output");
107 L(2, "total messages"); R(2, "total messages");
108 L(3, "with bad code"); R(3, "errors generated");
109 L(4, "with bad length"); R(4, "suppressed - original too short");
110 L(5, "with bad checksum"); R(5, "suppressed - original was ICMP");
111 L(6, "with insufficient data"); R(6, "responses sent");
112 ; R(7, "suppressed - multicast echo");
113 ; R(8, "suppressed - multicast tstamp");
114 L(10, "Input Histogram"); R(10, "Output Histogram");
115 #define B(row, str) L(row, str); R(row, str)
116 B(11, "echo response");
117 B(12, "echo request");
118 B(13, "destination unreachable");
120 B(15, "time-to-live exceeded");
121 B(16, "parameter problem");
122 L(17, "router advertisement"); R(17, "router solicitation");
129 domode(struct icmpstat
*ret
)
131 const struct icmpstat
*sub
;
133 double divisor
= 1.0;
135 switch(currentmode
) {
150 #define DO(stat) ret->stat = (double)(icmpstat.stat - sub->stat) / divisor
154 for (i
= 0; i
<= ICMP_MAXTYPE
; i
++) {
162 for (i
= 0; i
<= ICMP_MAXTYPE
; i
++) {
166 DO(icps_bmcasttstamp
);
173 struct icmpstat stats
;
174 u_long totalin
, totalout
;
177 memset(&stats
, 0, sizeof stats
);
179 for (i
= totalin
= totalout
= 0; i
<= ICMP_MAXTYPE
; i
++) {
180 totalin
+= stats
.icps_inhist
[i
];
181 totalout
+= stats
.icps_outhist
[i
];
183 totalin
+= stats
.icps_badcode
+ stats
.icps_badlen
+
184 stats
.icps_checksum
+ stats
.icps_tooshort
;
185 mvwprintw(wnd
, 2, 0, "%9lu", totalin
);
186 mvwprintw(wnd
, 2, 35, "%9lu", totalout
);
188 #define DO(stat, row, col) \
189 mvwprintw(wnd, row, col, "%9lu", stats.stat)
191 DO(icps_badcode
, 3, 0);
192 DO(icps_badlen
, 4, 0);
193 DO(icps_checksum
, 5, 0);
194 DO(icps_tooshort
, 6, 0);
195 DO(icps_error
, 3, 35);
196 DO(icps_oldshort
, 4, 35);
197 DO(icps_oldicmp
, 5, 35);
198 DO(icps_reflect
, 6, 35);
199 DO(icps_bmcastecho
, 7, 35);
200 DO(icps_bmcasttstamp
, 8, 35);
201 #define DO2(type, row) DO(icps_inhist[type], row, 0); DO(icps_outhist[type], \
203 DO2(ICMP_ECHOREPLY
, 11);
205 DO2(ICMP_UNREACH
, 13);
206 DO2(ICMP_REDIRECT
, 14);
207 DO2(ICMP_TIMXCEED
, 15);
208 DO2(ICMP_PARAMPROB
, 16);
209 DO(icps_inhist
[ICMP_ROUTERADVERT
], 17, 0);
210 DO(icps_outhist
[ICMP_ROUTERSOLICIT
], 17, 35);
223 name
[2] = IPPROTO_ICMP
;
224 name
[3] = ICMPCTL_STATS
;
227 if (sysctl(name
, 4, 0, &len
, 0, 0) < 0) {
228 error("sysctl getting icmpstat size failed");
231 if (len
> sizeof icmpstat
) {
232 error("icmpstat structure has grown--recompile systat!");
235 if (sysctl(name
, 4, &initstat
, &len
, 0, 0) < 0) {
236 error("sysctl getting icmpstat size failed");
251 name
[2] = IPPROTO_ICMP
;
252 name
[3] = ICMPCTL_STATS
;
254 len
= sizeof initstat
;
255 if (sysctl(name
, 4, &initstat
, &len
, 0, 0) < 0) {
256 error("sysctl getting icmpstat size failed");
270 name
[2] = IPPROTO_ICMP
;
271 name
[3] = ICMPCTL_STATS
;
272 len
= sizeof icmpstat
;
274 if (sysctl(name
, 4, &icmpstat
, &len
, 0, 0) < 0)