icmp.c revision 1.10 1 1.10 thorpej /* $NetBSD: icmp.c,v 1.10 2008/04/07 05:18:25 thorpej Exp $ */
2 1.1 ad
3 1.1 ad /*
4 1.5 ad * Copyright (c) 1999, 2000 Andrew Doran <ad (at) NetBSD.org>
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * Redistribution and use in source and binary forms, with or without
8 1.1 ad * modification, are permitted provided that the following conditions
9 1.1 ad * are met:
10 1.1 ad * 1. Redistributions of source code must retain the above copyright
11 1.1 ad * notice, this list of conditions and the following disclaimer.
12 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 ad * notice, this list of conditions and the following disclaimer in the
14 1.1 ad * documentation and/or other materials provided with the distribution.
15 1.1 ad *
16 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 1.1 ad * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.1 ad * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.1 ad * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 1.1 ad * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.1 ad * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.1 ad * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.1 ad * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.1 ad * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 ad * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 ad * SUCH DAMAGE.
27 1.1 ad *
28 1.1 ad */
29 1.1 ad
30 1.1 ad #include <sys/cdefs.h>
31 1.1 ad #ifndef lint
32 1.10 thorpej __RCSID("$NetBSD: icmp.c,v 1.10 2008/04/07 05:18:25 thorpej Exp $");
33 1.1 ad #endif /* not lint */
34 1.1 ad
35 1.1 ad #include <sys/param.h>
36 1.1 ad
37 1.1 ad #include <netinet/in.h>
38 1.1 ad #include <netinet/in_systm.h>
39 1.1 ad #include <netinet/ip.h>
40 1.1 ad #include <netinet/ip_icmp.h>
41 1.1 ad #include <netinet/icmp_var.h>
42 1.1 ad
43 1.1 ad #include <string.h>
44 1.3 ad
45 1.1 ad #include "systat.h"
46 1.1 ad #include "extern.h"
47 1.1 ad
48 1.1 ad #define LHD(row, str) mvwprintw(wnd, row, 10, str)
49 1.1 ad #define RHD(row, str) mvwprintw(wnd, row, 45, str);
50 1.1 ad #define BD(row, str) LHD(row, str); RHD(row, str)
51 1.2 itojun #define SHOW(stat, row, col) \
52 1.10 thorpej mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat[stat])
53 1.10 thorpej #define SHOW2(type, row) SHOW(ICMP_STAT_INHIST + type, row, 0); \
54 1.10 thorpej SHOW(ICMP_STAT_OUTHIST + type, row, 35)
55 1.1 ad
56 1.5 ad enum update {
57 1.5 ad UPDATE_TIME,
58 1.5 ad UPDATE_BOOT,
59 1.5 ad UPDATE_RUN,
60 1.5 ad };
61 1.5 ad
62 1.5 ad static enum update update = UPDATE_TIME;
63 1.10 thorpej static uint64_t curstat[ICMP_NSTATS];
64 1.10 thorpej static uint64_t newstat[ICMP_NSTATS];
65 1.10 thorpej static uint64_t oldstat[ICMP_NSTATS];
66 1.1 ad
67 1.1 ad static struct nlist namelist[] = {
68 1.9 christos { .n_name = "_icmpstat" },
69 1.9 christos { .n_name = NULL }
70 1.1 ad };
71 1.1 ad
72 1.1 ad WINDOW *
73 1.1 ad openicmp(void)
74 1.1 ad {
75 1.1 ad
76 1.7 dsl return (subwin(stdscr, -1, 0, 5, 0));
77 1.1 ad }
78 1.1 ad
79 1.1 ad void
80 1.5 ad closeicmp(WINDOW *w)
81 1.1 ad {
82 1.1 ad
83 1.1 ad if (w != NULL) {
84 1.1 ad wclear(w);
85 1.1 ad wrefresh(w);
86 1.1 ad delwin(w);
87 1.1 ad }
88 1.1 ad }
89 1.1 ad
90 1.1 ad void
91 1.1 ad labelicmp(void)
92 1.1 ad {
93 1.1 ad
94 1.1 ad wmove(wnd, 0, 0); wclrtoeol(wnd);
95 1.1 ad
96 1.5 ad mvwprintw(wnd, 1, 0, "------------ ICMP input -----------");
97 1.5 ad mvwprintw(wnd, 1, 36, "------------- ICMP output ---------------");
98 1.1 ad
99 1.5 ad mvwprintw(wnd, 8, 0, "---------- Input histogram --------");
100 1.5 ad mvwprintw(wnd, 8, 36, "---------- Output histogram -------------");
101 1.1 ad
102 1.1 ad LHD(3, "with bad code");
103 1.1 ad LHD(4, "with bad length");
104 1.1 ad LHD(5, "with bad checksum");
105 1.1 ad LHD(6, "with insufficient data");
106 1.1 ad
107 1.1 ad RHD(3, "errors generated");
108 1.1 ad RHD(4, "suppressed - original too short");
109 1.1 ad RHD(5, "suppressed - original was ICMP");
110 1.1 ad RHD(6, "responses sent");
111 1.1 ad
112 1.1 ad BD(2, "total messages");
113 1.1 ad BD(9, "echo response");
114 1.1 ad BD(10, "echo request");
115 1.1 ad BD(11, "destination unreachable");
116 1.1 ad BD(12, "redirect");
117 1.1 ad BD(13, "time-to-live exceeded");
118 1.1 ad BD(14, "parameter problem");
119 1.1 ad LHD(15, "router advertisement");
120 1.1 ad RHD(15, "router solicitation");
121 1.1 ad }
122 1.1 ad
123 1.1 ad void
124 1.1 ad showicmp(void)
125 1.1 ad {
126 1.1 ad u_long tin, tout;
127 1.1 ad int i;
128 1.1 ad
129 1.1 ad for (i = tin = tout = 0; i <= ICMP_MAXTYPE; i++) {
130 1.10 thorpej tin += curstat[ICMP_STAT_INHIST + i];
131 1.10 thorpej tout += curstat[ICMP_STAT_OUTHIST + i];
132 1.1 ad }
133 1.1 ad
134 1.10 thorpej tin += curstat[ICMP_STAT_BADCODE] + curstat[ICMP_STAT_BADLEN] +
135 1.10 thorpej curstat[ICMP_STAT_CHECKSUM] + curstat[ICMP_STAT_TOOSHORT];
136 1.1 ad mvwprintw(wnd, 2, 0, "%9lu", tin);
137 1.1 ad mvwprintw(wnd, 2, 35, "%9lu", tout);
138 1.1 ad
139 1.10 thorpej SHOW(ICMP_STAT_BADCODE, 3, 0);
140 1.10 thorpej SHOW(ICMP_STAT_BADLEN, 4, 0);
141 1.10 thorpej SHOW(ICMP_STAT_CHECKSUM, 5, 0);
142 1.10 thorpej SHOW(ICMP_STAT_TOOSHORT, 6, 0);
143 1.10 thorpej SHOW(ICMP_STAT_ERROR, 3, 35);
144 1.10 thorpej SHOW(ICMP_STAT_OLDSHORT, 4, 35);
145 1.10 thorpej SHOW(ICMP_STAT_OLDICMP, 5, 35);
146 1.10 thorpej SHOW(ICMP_STAT_REFLECT, 6, 35);
147 1.1 ad
148 1.1 ad SHOW2(ICMP_ECHOREPLY, 9);
149 1.1 ad SHOW2(ICMP_ECHO, 10);
150 1.1 ad SHOW2(ICMP_UNREACH, 11);
151 1.1 ad SHOW2(ICMP_REDIRECT, 12);
152 1.1 ad SHOW2(ICMP_TIMXCEED, 13);
153 1.1 ad SHOW2(ICMP_PARAMPROB, 14);
154 1.10 thorpej SHOW(ICMP_STAT_INHIST + ICMP_ROUTERADVERT, 15, 0);
155 1.10 thorpej SHOW(ICMP_STAT_OUTHIST + ICMP_ROUTERSOLICIT, 15, 35);
156 1.1 ad }
157 1.1 ad
158 1.1 ad int
159 1.1 ad initicmp(void)
160 1.1 ad {
161 1.1 ad
162 1.1 ad if (namelist[0].n_type == 0) {
163 1.1 ad if (kvm_nlist(kd, namelist)) {
164 1.1 ad nlisterr(namelist);
165 1.1 ad return(0);
166 1.1 ad }
167 1.1 ad if (namelist[0].n_type == 0) {
168 1.1 ad error("No namelist");
169 1.1 ad return(0);
170 1.1 ad }
171 1.1 ad }
172 1.1 ad
173 1.1 ad return (1);
174 1.1 ad }
175 1.1 ad
176 1.1 ad void
177 1.1 ad fetchicmp(void)
178 1.1 ad {
179 1.5 ad int i;
180 1.5 ad
181 1.10 thorpej KREAD((void *)namelist[0].n_value, newstat, sizeof(newstat));
182 1.5 ad
183 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_BADCODE);
184 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_BADLEN);
185 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_CHECKSUM);
186 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_TOOSHORT);
187 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_ERROR);
188 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_OLDSHORT);
189 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_OLDICMP);
190 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_REFLECT);
191 1.5 ad
192 1.5 ad for (i = 0; i <= ICMP_MAXTYPE; i++) {
193 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_INHIST + i);
194 1.10 thorpej xADJINETCTR(curstat, oldstat, newstat, ICMP_STAT_OUTHIST + i);
195 1.5 ad }
196 1.5 ad
197 1.5 ad if (update == UPDATE_TIME)
198 1.10 thorpej memcpy(oldstat, newstat, sizeof(oldstat));
199 1.5 ad }
200 1.5 ad
201 1.5 ad void
202 1.5 ad icmp_boot(char *args)
203 1.5 ad {
204 1.5 ad
205 1.10 thorpej memset(oldstat, 0, sizeof(oldstat));
206 1.5 ad update = UPDATE_BOOT;
207 1.5 ad }
208 1.5 ad
209 1.5 ad void
210 1.5 ad icmp_run(char *args)
211 1.5 ad {
212 1.5 ad
213 1.5 ad if (update != UPDATE_RUN) {
214 1.10 thorpej memcpy(oldstat, newstat, sizeof(oldstat));
215 1.5 ad update = UPDATE_RUN;
216 1.5 ad }
217 1.5 ad }
218 1.5 ad
219 1.5 ad void
220 1.5 ad icmp_time(char *args)
221 1.5 ad {
222 1.5 ad
223 1.5 ad if (update != UPDATE_TIME) {
224 1.10 thorpej memcpy(oldstat, newstat, sizeof(oldstat));
225 1.5 ad update = UPDATE_TIME;
226 1.5 ad }
227 1.5 ad }
228 1.5 ad
229 1.5 ad void
230 1.5 ad icmp_zero(char *args)
231 1.5 ad {
232 1.1 ad
233 1.5 ad if (update == UPDATE_RUN)
234 1.10 thorpej memcpy(oldstat, newstat, sizeof(oldstat));
235 1.1 ad }
236