inet.c revision 1.59 1 1.59 itojun /* $NetBSD: inet.c,v 1.59 2003/09/04 09:23:38 itojun Exp $ */
2 1.14 thorpej
3 1.1 cgd /*
4 1.9 mycroft * Copyright (c) 1983, 1988, 1993
5 1.9 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.58 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.23 lukem #include <sys/cdefs.h>
33 1.1 cgd #ifndef lint
34 1.14 thorpej #if 0
35 1.14 thorpej static char sccsid[] = "from: @(#)inet.c 8.4 (Berkeley) 4/20/94";
36 1.14 thorpej #else
37 1.59 itojun __RCSID("$NetBSD: inet.c,v 1.59 2003/09/04 09:23:38 itojun Exp $");
38 1.14 thorpej #endif
39 1.1 cgd #endif /* not lint */
40 1.1 cgd
41 1.1 cgd #include <sys/param.h>
42 1.10 cgd #include <sys/queue.h>
43 1.1 cgd #include <sys/socket.h>
44 1.1 cgd #include <sys/socketvar.h>
45 1.1 cgd #include <sys/mbuf.h>
46 1.1 cgd #include <sys/protosw.h>
47 1.1 cgd
48 1.41 jhawk #include <net/if_arp.h>
49 1.1 cgd #include <net/route.h>
50 1.1 cgd #include <netinet/in.h>
51 1.1 cgd #include <netinet/in_systm.h>
52 1.1 cgd #include <netinet/ip.h>
53 1.1 cgd #include <netinet/in_pcb.h>
54 1.1 cgd #include <netinet/ip_icmp.h>
55 1.37 itojun
56 1.37 itojun #ifdef INET6
57 1.37 itojun #include <netinet/ip6.h>
58 1.37 itojun #endif
59 1.37 itojun
60 1.1 cgd #include <netinet/icmp_var.h>
61 1.6 brezak #include <netinet/igmp_var.h>
62 1.1 cgd #include <netinet/ip_var.h>
63 1.1 cgd #include <netinet/tcp.h>
64 1.1 cgd #include <netinet/tcpip.h>
65 1.1 cgd #include <netinet/tcp_seq.h>
66 1.1 cgd #define TCPSTATES
67 1.1 cgd #include <netinet/tcp_fsm.h>
68 1.30 thorpej #define TCPTIMERS
69 1.1 cgd #include <netinet/tcp_timer.h>
70 1.1 cgd #include <netinet/tcp_var.h>
71 1.1 cgd #include <netinet/tcp_debug.h>
72 1.1 cgd #include <netinet/udp.h>
73 1.1 cgd #include <netinet/udp_var.h>
74 1.1 cgd
75 1.9 mycroft #include <arpa/inet.h>
76 1.1 cgd #include <netdb.h>
77 1.1 cgd #include <stdio.h>
78 1.1 cgd #include <string.h>
79 1.9 mycroft #include <unistd.h>
80 1.9 mycroft #include "netstat.h"
81 1.1 cgd
82 1.1 cgd struct inpcb inpcb;
83 1.1 cgd struct tcpcb tcpcb;
84 1.1 cgd struct socket sockb;
85 1.1 cgd
86 1.9 mycroft char *inetname __P((struct in_addr *));
87 1.28 lukem void inetprint __P((struct in_addr *, u_int16_t, const char *, int));
88 1.1 cgd
89 1.1 cgd /*
90 1.1 cgd * Print a summary of connections related to an Internet
91 1.1 cgd * protocol. For TCP, also give state of connection.
92 1.1 cgd * Listening processes (aflag) are suppressed unless the
93 1.1 cgd * -a (all) flag is specified.
94 1.1 cgd */
95 1.35 lukem static int width;
96 1.35 lukem
97 1.9 mycroft void
98 1.1 cgd protopr(off, name)
99 1.8 cgd u_long off;
100 1.1 cgd char *name;
101 1.1 cgd {
102 1.12 mycroft struct inpcbtable table;
103 1.23 lukem struct inpcb *head, *next, *prev;
104 1.13 cgd struct inpcb inpcb;
105 1.35 lukem int istcp, compact;
106 1.1 cgd static int first = 1;
107 1.35 lukem static char *shorttcpstates[] = {
108 1.35 lukem "CLOSED", "LISTEN", "SYNSEN", "SYSRCV",
109 1.35 lukem "ESTABL", "CLWAIT", "FWAIT1", "CLOSNG",
110 1.35 lukem "LASTAK", "FWAIT2", "TMWAIT",
111 1.35 lukem };
112 1.1 cgd
113 1.1 cgd if (off == 0)
114 1.1 cgd return;
115 1.1 cgd istcp = strcmp(name, "tcp") == 0;
116 1.12 mycroft kread(off, (char *)&table, sizeof table);
117 1.13 cgd prev = head =
118 1.13 cgd (struct inpcb *)&((struct inpcbtable *)off)->inpt_queue.cqh_first;
119 1.59 itojun next = (struct inpcb *)table.inpt_queue.cqh_first;
120 1.13 cgd
121 1.35 lukem compact = 0;
122 1.35 lukem if (Aflag) {
123 1.46 assar if (!numeric_addr)
124 1.35 lukem width = 18;
125 1.35 lukem else {
126 1.35 lukem width = 21;
127 1.35 lukem compact = 1;
128 1.35 lukem }
129 1.35 lukem } else
130 1.35 lukem width = 22;
131 1.13 cgd while (next != head) {
132 1.12 mycroft kread((u_long)next, (char *)&inpcb, sizeof inpcb);
133 1.59 itojun if ((struct inpcb *)inpcb.inp_queue.cqe_prev != prev) {
134 1.1 cgd printf("???\n");
135 1.1 cgd break;
136 1.1 cgd }
137 1.13 cgd prev = next;
138 1.59 itojun next = (struct inpcb *)inpcb.inp_queue.cqe_next;
139 1.59 itojun
140 1.59 itojun if (inpcb.inp_af != AF_INET)
141 1.59 itojun continue;
142 1.13 cgd
143 1.1 cgd if (!aflag &&
144 1.12 mycroft inet_lnaof(inpcb.inp_laddr) == INADDR_ANY)
145 1.1 cgd continue;
146 1.9 mycroft kread((u_long)inpcb.inp_socket, (char *)&sockb, sizeof (sockb));
147 1.1 cgd if (istcp) {
148 1.9 mycroft kread((u_long)inpcb.inp_ppcb,
149 1.9 mycroft (char *)&tcpcb, sizeof (tcpcb));
150 1.1 cgd }
151 1.1 cgd if (first) {
152 1.1 cgd printf("Active Internet connections");
153 1.1 cgd if (aflag)
154 1.1 cgd printf(" (including servers)");
155 1.1 cgd putchar('\n');
156 1.1 cgd if (Aflag)
157 1.1 cgd printf("%-8.8s ", "PCB");
158 1.35 lukem printf("%-5.5s %-6.6s %-6.6s %s%-*.*s %-*.*s %s\n",
159 1.1 cgd "Proto", "Recv-Q", "Send-Q",
160 1.35 lukem compact ? "" : " ",
161 1.35 lukem width, width, "Local Address",
162 1.35 lukem width, width, "Foreign Address", "State");
163 1.1 cgd first = 0;
164 1.1 cgd }
165 1.34 ross if (Aflag) {
166 1.1 cgd if (istcp)
167 1.21 christos printf("%8lx ", (u_long) inpcb.inp_ppcb);
168 1.1 cgd else
169 1.21 christos printf("%8lx ", (u_long) prev);
170 1.34 ross }
171 1.35 lukem printf("%-5.5s %6ld %6ld%s", name, sockb.so_rcv.sb_cc,
172 1.35 lukem sockb.so_snd.sb_cc, compact ? "" : " ");
173 1.46 assar if (numeric_port) {
174 1.28 lukem inetprint(&inpcb.inp_laddr, inpcb.inp_lport, name, 1);
175 1.28 lukem inetprint(&inpcb.inp_faddr, inpcb.inp_fport, name, 1);
176 1.28 lukem } else if (inpcb.inp_flags & INP_ANONPORT) {
177 1.28 lukem inetprint(&inpcb.inp_laddr, inpcb.inp_lport, name, 1);
178 1.28 lukem inetprint(&inpcb.inp_faddr, inpcb.inp_fport, name, 0);
179 1.28 lukem } else {
180 1.28 lukem inetprint(&inpcb.inp_laddr, inpcb.inp_lport, name, 0);
181 1.51 lukem inetprint(&inpcb.inp_faddr, inpcb.inp_fport, name, 0);
182 1.28 lukem }
183 1.1 cgd if (istcp) {
184 1.1 cgd if (tcpcb.t_state < 0 || tcpcb.t_state >= TCP_NSTATES)
185 1.1 cgd printf(" %d", tcpcb.t_state);
186 1.1 cgd else
187 1.35 lukem printf(" %s", compact ?
188 1.35 lukem shorttcpstates[tcpcb.t_state] :
189 1.35 lukem tcpstates[tcpcb.t_state]);
190 1.1 cgd }
191 1.1 cgd putchar('\n');
192 1.1 cgd }
193 1.1 cgd }
194 1.1 cgd
195 1.1 cgd /*
196 1.1 cgd * Dump TCP statistics structure.
197 1.1 cgd */
198 1.9 mycroft void
199 1.1 cgd tcp_stats(off, name)
200 1.8 cgd u_long off;
201 1.1 cgd char *name;
202 1.1 cgd {
203 1.1 cgd struct tcpstat tcpstat;
204 1.1 cgd
205 1.1 cgd if (off == 0)
206 1.1 cgd return;
207 1.1 cgd printf ("%s:\n", name);
208 1.9 mycroft kread(off, (char *)&tcpstat, sizeof (tcpstat));
209 1.9 mycroft
210 1.20 christos #define ps(f, m) if (tcpstat.f || sflag <= 1) \
211 1.38 bouyer printf(m, (unsigned long long)tcpstat.f)
212 1.9 mycroft #define p(f, m) if (tcpstat.f || sflag <= 1) \
213 1.38 bouyer printf(m, (unsigned long long)tcpstat.f, plural(tcpstat.f))
214 1.9 mycroft #define p2(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \
215 1.38 bouyer printf(m, (unsigned long long)tcpstat.f1, plural(tcpstat.f1), \
216 1.38 bouyer (unsigned long long)tcpstat.f2, plural(tcpstat.f2))
217 1.20 christos #define p2s(f1, f2, m) if (tcpstat.f1 || tcpstat.f2 || sflag <= 1) \
218 1.38 bouyer printf(m, (unsigned long long)tcpstat.f1, plural(tcpstat.f1), \
219 1.38 bouyer (unsigned long long)tcpstat.f2)
220 1.9 mycroft #define p3(f, m) if (tcpstat.f || sflag <= 1) \
221 1.38 bouyer printf(m, (unsigned long long)tcpstat.f, plurales(tcpstat.f))
222 1.1 cgd
223 1.38 bouyer p(tcps_sndtotal, "\t%llu packet%s sent\n");
224 1.1 cgd p2(tcps_sndpack,tcps_sndbyte,
225 1.38 bouyer "\t\t%llu data packet%s (%llu byte%s)\n");
226 1.1 cgd p2(tcps_sndrexmitpack, tcps_sndrexmitbyte,
227 1.38 bouyer "\t\t%llu data packet%s (%llu byte%s) retransmitted\n");
228 1.20 christos p2s(tcps_sndacks, tcps_delack,
229 1.38 bouyer "\t\t%llu ack-only packet%s (%llu delayed)\n");
230 1.38 bouyer p(tcps_sndurg, "\t\t%llu URG only packet%s\n");
231 1.38 bouyer p(tcps_sndprobe, "\t\t%llu window probe packet%s\n");
232 1.38 bouyer p(tcps_sndwinup, "\t\t%llu window update packet%s\n");
233 1.38 bouyer p(tcps_sndctrl, "\t\t%llu control packet%s\n");
234 1.47 thorpej p(tcps_selfquench,
235 1.47 thorpej "\t\t%llu send attempt%s resulted in self-quench\n");
236 1.38 bouyer p(tcps_rcvtotal, "\t%llu packet%s received\n");
237 1.38 bouyer p2(tcps_rcvackpack, tcps_rcvackbyte,
238 1.38 bouyer "\t\t%llu ack%s (for %llu byte%s)\n");
239 1.38 bouyer p(tcps_rcvdupack, "\t\t%llu duplicate ack%s\n");
240 1.38 bouyer p(tcps_rcvacktoomuch, "\t\t%llu ack%s for unsent data\n");
241 1.1 cgd p2(tcps_rcvpack, tcps_rcvbyte,
242 1.38 bouyer "\t\t%llu packet%s (%llu byte%s) received in-sequence\n");
243 1.1 cgd p2(tcps_rcvduppack, tcps_rcvdupbyte,
244 1.38 bouyer "\t\t%llu completely duplicate packet%s (%llu byte%s)\n");
245 1.38 bouyer p(tcps_pawsdrop, "\t\t%llu old duplicate packet%s\n");
246 1.1 cgd p2(tcps_rcvpartduppack, tcps_rcvpartdupbyte,
247 1.38 bouyer "\t\t%llu packet%s with some dup. data (%llu byte%s duped)\n");
248 1.1 cgd p2(tcps_rcvoopack, tcps_rcvoobyte,
249 1.38 bouyer "\t\t%llu out-of-order packet%s (%llu byte%s)\n");
250 1.1 cgd p2(tcps_rcvpackafterwin, tcps_rcvbyteafterwin,
251 1.38 bouyer "\t\t%llu packet%s (%llu byte%s) of data after window\n");
252 1.38 bouyer p(tcps_rcvwinprobe, "\t\t%llu window probe%s\n");
253 1.38 bouyer p(tcps_rcvwinupd, "\t\t%llu window update packet%s\n");
254 1.38 bouyer p(tcps_rcvafterclose, "\t\t%llu packet%s received after close\n");
255 1.38 bouyer p(tcps_rcvbadsum, "\t\t%llu discarded for bad checksum%s\n");
256 1.38 bouyer p(tcps_rcvbadoff, "\t\t%llu discarded for bad header offset field%s\n");
257 1.38 bouyer ps(tcps_rcvshort, "\t\t%llu discarded because packet too short\n");
258 1.38 bouyer p(tcps_connattempt, "\t%llu connection request%s\n");
259 1.38 bouyer p(tcps_accepts, "\t%llu connection accept%s\n");
260 1.38 bouyer p(tcps_connects,
261 1.38 bouyer "\t%llu connection%s established (including accepts)\n");
262 1.1 cgd p2(tcps_closed, tcps_drops,
263 1.38 bouyer "\t%llu connection%s closed (including %llu drop%s)\n");
264 1.38 bouyer p(tcps_conndrops, "\t%llu embryonic connection%s dropped\n");
265 1.57 he p(tcps_delayed_free, "\t%llu delayed free%s of tcpcb\n");
266 1.1 cgd p2(tcps_rttupdated, tcps_segstimed,
267 1.38 bouyer "\t%llu segment%s updated rtt (of %llu attempt%s)\n");
268 1.38 bouyer p(tcps_rexmttimeo, "\t%llu retransmit timeout%s\n");
269 1.38 bouyer p(tcps_timeoutdrop,
270 1.38 bouyer "\t\t%llu connection%s dropped by rexmit timeout\n");
271 1.27 thorpej p2(tcps_persisttimeo, tcps_persistdrops,
272 1.38 bouyer "\t%llu persist timeout%s (resulting in %llu dropped "
273 1.38 bouyer "connection%s)\n");
274 1.38 bouyer p(tcps_keeptimeo, "\t%llu keepalive timeout%s\n");
275 1.38 bouyer p(tcps_keepprobe, "\t\t%llu keepalive probe%s sent\n");
276 1.38 bouyer p(tcps_keepdrops, "\t\t%llu connection%s dropped by keepalive\n");
277 1.38 bouyer p(tcps_predack, "\t%llu correct ACK header prediction%s\n");
278 1.38 bouyer p(tcps_preddat, "\t%llu correct data packet header prediction%s\n");
279 1.38 bouyer p3(tcps_pcbhashmiss, "\t%llu PCB hash miss%s\n");
280 1.38 bouyer ps(tcps_noport, "\t%llu dropped due to no socket\n");
281 1.38 bouyer p(tcps_connsdrained, "\t%llu connection%s drained due to memory "
282 1.38 bouyer "shortage\n");
283 1.52 itojun p(tcps_pmtublackhole, "\t%llu PMTUD blackhole%s detected\n");
284 1.38 bouyer
285 1.38 bouyer p(tcps_badsyn, "\t%llu bad connection attempt%s\n");
286 1.38 bouyer ps(tcps_sc_added, "\t%llu SYN cache entries added\n");
287 1.38 bouyer p(tcps_sc_collisions, "\t\t%llu hash collision%s\n");
288 1.38 bouyer ps(tcps_sc_completed, "\t\t%llu completed\n");
289 1.38 bouyer ps(tcps_sc_aborted, "\t\t%llu aborted (no space to build PCB)\n");
290 1.38 bouyer ps(tcps_sc_timed_out, "\t\t%llu timed out\n");
291 1.38 bouyer ps(tcps_sc_overflowed, "\t\t%llu dropped due to overflow\n");
292 1.38 bouyer ps(tcps_sc_bucketoverflow, "\t\t%llu dropped due to bucket overflow\n");
293 1.38 bouyer ps(tcps_sc_reset, "\t\t%llu dropped due to RST\n");
294 1.38 bouyer ps(tcps_sc_unreach, "\t\t%llu dropped due to ICMP unreachable\n");
295 1.57 he ps(tcps_sc_delayed_free, "\t\t%llu delayed free of SYN cache "
296 1.57 he "entries\n");
297 1.38 bouyer p(tcps_sc_retransmitted, "\t%llu SYN,ACK%s retransmitted\n");
298 1.38 bouyer p(tcps_sc_dupesyn, "\t%llu duplicate SYN%s received for entries "
299 1.38 bouyer "already in the cache\n");
300 1.38 bouyer p(tcps_sc_dropped, "\t%llu SYN%s dropped (no route or no space)\n");
301 1.15 mycroft
302 1.1 cgd #undef p
303 1.20 christos #undef ps
304 1.1 cgd #undef p2
305 1.20 christos #undef p2s
306 1.9 mycroft #undef p3
307 1.1 cgd }
308 1.1 cgd
309 1.1 cgd /*
310 1.1 cgd * Dump UDP statistics structure.
311 1.1 cgd */
312 1.9 mycroft void
313 1.1 cgd udp_stats(off, name)
314 1.8 cgd u_long off;
315 1.1 cgd char *name;
316 1.1 cgd {
317 1.1 cgd struct udpstat udpstat;
318 1.38 bouyer u_quad_t delivered;
319 1.1 cgd
320 1.1 cgd if (off == 0)
321 1.1 cgd return;
322 1.15 mycroft printf("%s:\n", name);
323 1.9 mycroft kread(off, (char *)&udpstat, sizeof (udpstat));
324 1.15 mycroft
325 1.20 christos #define ps(f, m) if (udpstat.f || sflag <= 1) \
326 1.38 bouyer printf(m, (unsigned long long)udpstat.f)
327 1.9 mycroft #define p(f, m) if (udpstat.f || sflag <= 1) \
328 1.38 bouyer printf(m, (unsigned long long)udpstat.f, plural(udpstat.f))
329 1.15 mycroft #define p3(f, m) if (udpstat.f || sflag <= 1) \
330 1.38 bouyer printf(m, (unsigned long long)udpstat.f, plurales(udpstat.f))
331 1.15 mycroft
332 1.38 bouyer p(udps_ipackets, "\t%llu datagram%s received\n");
333 1.38 bouyer ps(udps_hdrops, "\t%llu with incomplete header\n");
334 1.38 bouyer ps(udps_badlen, "\t%llu with bad data length field\n");
335 1.38 bouyer ps(udps_badsum, "\t%llu with bad checksum\n");
336 1.38 bouyer ps(udps_noport, "\t%llu dropped due to no socket\n");
337 1.38 bouyer p(udps_noportbcast, "\t%llu broadcast/multicast datagram%s dropped due to no socket\n");
338 1.38 bouyer ps(udps_fullsock, "\t%llu dropped due to full socket buffers\n");
339 1.9 mycroft delivered = udpstat.udps_ipackets -
340 1.9 mycroft udpstat.udps_hdrops -
341 1.9 mycroft udpstat.udps_badlen -
342 1.9 mycroft udpstat.udps_badsum -
343 1.9 mycroft udpstat.udps_noport -
344 1.9 mycroft udpstat.udps_noportbcast -
345 1.9 mycroft udpstat.udps_fullsock;
346 1.9 mycroft if (delivered || sflag <= 1)
347 1.38 bouyer printf("\t%llu delivered\n", (unsigned long long)delivered);
348 1.38 bouyer p3(udps_pcbhashmiss, "\t%llu PCB hash miss%s\n");
349 1.38 bouyer p(udps_opackets, "\t%llu datagram%s output\n");
350 1.15 mycroft
351 1.20 christos #undef ps
352 1.9 mycroft #undef p
353 1.15 mycroft #undef p3
354 1.1 cgd }
355 1.1 cgd
356 1.1 cgd /*
357 1.1 cgd * Dump IP statistics structure.
358 1.1 cgd */
359 1.9 mycroft void
360 1.1 cgd ip_stats(off, name)
361 1.8 cgd u_long off;
362 1.1 cgd char *name;
363 1.1 cgd {
364 1.1 cgd struct ipstat ipstat;
365 1.1 cgd
366 1.1 cgd if (off == 0)
367 1.1 cgd return;
368 1.9 mycroft kread(off, (char *)&ipstat, sizeof (ipstat));
369 1.9 mycroft printf("%s:\n", name);
370 1.9 mycroft
371 1.20 christos #define ps(f, m) if (ipstat.f || sflag <= 1) \
372 1.38 bouyer printf(m, (unsigned long long)ipstat.f)
373 1.9 mycroft #define p(f, m) if (ipstat.f || sflag <= 1) \
374 1.38 bouyer printf(m, (unsigned long long)ipstat.f, plural(ipstat.f))
375 1.9 mycroft
376 1.38 bouyer p(ips_total, "\t%llu total packet%s received\n");
377 1.38 bouyer p(ips_badsum, "\t%llu bad header checksum%s\n");
378 1.38 bouyer ps(ips_toosmall, "\t%llu with size smaller than minimum\n");
379 1.38 bouyer ps(ips_tooshort, "\t%llu with data size < data length\n");
380 1.38 bouyer ps(ips_toolong, "\t%llu with length > max ip packet size\n");
381 1.38 bouyer ps(ips_badhlen, "\t%llu with header length < data size\n");
382 1.38 bouyer ps(ips_badlen, "\t%llu with data length < header length\n");
383 1.38 bouyer ps(ips_badoptions, "\t%llu with bad options\n");
384 1.38 bouyer ps(ips_badvers, "\t%llu with incorrect version number\n");
385 1.40 enami p(ips_fragments, "\t%llu fragment%s received\n");
386 1.38 bouyer p(ips_fragdropped, "\t%llu fragment%s dropped (dup or out of space)\n");
387 1.38 bouyer p(ips_badfrags, "\t%llu malformed fragment%s dropped\n");
388 1.38 bouyer p(ips_fragtimeout, "\t%llu fragment%s dropped after timeout\n");
389 1.38 bouyer p(ips_reassembled, "\t%llu packet%s reassembled ok\n");
390 1.38 bouyer p(ips_delivered, "\t%llu packet%s for this host\n");
391 1.38 bouyer p(ips_noproto, "\t%llu packet%s for unknown/unsupported protocol\n");
392 1.38 bouyer p(ips_forward, "\t%llu packet%s forwarded");
393 1.38 bouyer p(ips_fastforward, " (%llu packet%s fast forwarded)");
394 1.29 matt if (ipstat.ips_forward || sflag <= 1)
395 1.29 matt putchar('\n');
396 1.38 bouyer p(ips_cantforward, "\t%llu packet%s not forwardable\n");
397 1.38 bouyer p(ips_redirectsent, "\t%llu redirect%s sent\n");
398 1.38 bouyer p(ips_localout, "\t%llu packet%s sent from this host\n");
399 1.38 bouyer p(ips_rawout, "\t%llu packet%s sent with fabricated ip header\n");
400 1.38 bouyer p(ips_odropped, "\t%llu output packet%s dropped due to no bufs, etc.\n");
401 1.38 bouyer p(ips_noroute, "\t%llu output packet%s discarded due to no route\n");
402 1.38 bouyer p(ips_fragmented, "\t%llu output datagram%s fragmented\n");
403 1.38 bouyer p(ips_ofragments, "\t%llu fragment%s created\n");
404 1.38 bouyer p(ips_cantfrag, "\t%llu datagram%s that can't be fragmented\n");
405 1.43 itojun p(ips_badaddr, "\t%llu datagram%s with bad address in header\n");
406 1.20 christos #undef ps
407 1.9 mycroft #undef p
408 1.1 cgd }
409 1.1 cgd
410 1.1 cgd static char *icmpnames[] = {
411 1.1 cgd "echo reply",
412 1.1 cgd "#1",
413 1.1 cgd "#2",
414 1.1 cgd "destination unreachable",
415 1.1 cgd "source quench",
416 1.1 cgd "routing redirect",
417 1.44 itojun "alternate host address",
418 1.1 cgd "#7",
419 1.1 cgd "echo",
420 1.44 itojun "router advertisement",
421 1.44 itojun "router solicitation",
422 1.1 cgd "time exceeded",
423 1.1 cgd "parameter problem",
424 1.1 cgd "time stamp",
425 1.1 cgd "time stamp reply",
426 1.1 cgd "information request",
427 1.1 cgd "information request reply",
428 1.1 cgd "address mask request",
429 1.1 cgd "address mask reply",
430 1.1 cgd };
431 1.1 cgd
432 1.1 cgd /*
433 1.1 cgd * Dump ICMP statistics.
434 1.1 cgd */
435 1.9 mycroft void
436 1.1 cgd icmp_stats(off, name)
437 1.8 cgd u_long off;
438 1.1 cgd char *name;
439 1.1 cgd {
440 1.1 cgd struct icmpstat icmpstat;
441 1.23 lukem int i, first;
442 1.1 cgd
443 1.1 cgd if (off == 0)
444 1.1 cgd return;
445 1.9 mycroft kread(off, (char *)&icmpstat, sizeof (icmpstat));
446 1.9 mycroft printf("%s:\n", name);
447 1.9 mycroft
448 1.9 mycroft #define p(f, m) if (icmpstat.f || sflag <= 1) \
449 1.38 bouyer printf(m, (unsigned long long)icmpstat.f, plural(icmpstat.f))
450 1.9 mycroft
451 1.38 bouyer p(icps_error, "\t%llu call%s to icmp_error\n");
452 1.9 mycroft p(icps_oldicmp,
453 1.38 bouyer "\t%llu error%s not generated because old message was icmp\n");
454 1.1 cgd for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++)
455 1.1 cgd if (icmpstat.icps_outhist[i] != 0) {
456 1.1 cgd if (first) {
457 1.1 cgd printf("\tOutput histogram:\n");
458 1.1 cgd first = 0;
459 1.1 cgd }
460 1.38 bouyer printf("\t\t%s: %llu\n", icmpnames[i],
461 1.38 bouyer (unsigned long long)icmpstat.icps_outhist[i]);
462 1.1 cgd }
463 1.38 bouyer p(icps_badcode, "\t%llu message%s with bad code fields\n");
464 1.38 bouyer p(icps_tooshort, "\t%llu message%s < minimum length\n");
465 1.38 bouyer p(icps_checksum, "\t%llu bad checksum%s\n");
466 1.38 bouyer p(icps_badlen, "\t%llu message%s with bad length\n");
467 1.1 cgd for (first = 1, i = 0; i < ICMP_MAXTYPE + 1; i++)
468 1.1 cgd if (icmpstat.icps_inhist[i] != 0) {
469 1.1 cgd if (first) {
470 1.1 cgd printf("\tInput histogram:\n");
471 1.1 cgd first = 0;
472 1.1 cgd }
473 1.38 bouyer printf("\t\t%s: %llu\n", icmpnames[i],
474 1.38 bouyer (unsigned long long)icmpstat.icps_inhist[i]);
475 1.1 cgd }
476 1.38 bouyer p(icps_reflect, "\t%llu message response%s generated\n");
477 1.42 itojun p(icps_pmtuchg, "\t%llu path MTU change%s\n");
478 1.9 mycroft #undef p
479 1.6 brezak }
480 1.6 brezak
481 1.6 brezak /*
482 1.9 mycroft * Dump IGMP statistics structure.
483 1.6 brezak */
484 1.6 brezak void
485 1.6 brezak igmp_stats(off, name)
486 1.8 cgd u_long off;
487 1.6 brezak char *name;
488 1.6 brezak {
489 1.6 brezak struct igmpstat igmpstat;
490 1.6 brezak
491 1.6 brezak if (off == 0)
492 1.6 brezak return;
493 1.9 mycroft kread(off, (char *)&igmpstat, sizeof (igmpstat));
494 1.9 mycroft printf("%s:\n", name);
495 1.9 mycroft
496 1.9 mycroft #define p(f, m) if (igmpstat.f || sflag <= 1) \
497 1.38 bouyer printf(m, (unsigned long long)igmpstat.f, plural(igmpstat.f))
498 1.9 mycroft #define py(f, m) if (igmpstat.f || sflag <= 1) \
499 1.38 bouyer printf(m, (unsigned long long)igmpstat.f, igmpstat.f != 1 ? "ies" : "y")
500 1.38 bouyer p(igps_rcv_total, "\t%llu message%s received\n");
501 1.38 bouyer p(igps_rcv_tooshort, "\t%llu message%s received with too few bytes\n");
502 1.38 bouyer p(igps_rcv_badsum, "\t%llu message%s received with bad checksum\n");
503 1.38 bouyer py(igps_rcv_queries, "\t%llu membership quer%s received\n");
504 1.38 bouyer py(igps_rcv_badqueries, "\t%llu membership quer%s received with invalid field(s)\n");
505 1.38 bouyer p(igps_rcv_reports, "\t%llu membership report%s received\n");
506 1.38 bouyer p(igps_rcv_badreports, "\t%llu membership report%s received with invalid field(s)\n");
507 1.38 bouyer p(igps_rcv_ourreports, "\t%llu membership report%s received for groups to which we belong\n");
508 1.38 bouyer p(igps_snd_reports, "\t%llu membership report%s sent\n");
509 1.9 mycroft #undef p
510 1.9 mycroft #undef py
511 1.41 jhawk }
512 1.41 jhawk
513 1.41 jhawk /*
514 1.41 jhawk * Dump the ARP statistics structure.
515 1.41 jhawk */
516 1.41 jhawk void
517 1.41 jhawk arp_stats(off, name)
518 1.41 jhawk u_long off;
519 1.41 jhawk char *name;
520 1.41 jhawk {
521 1.41 jhawk struct arpstat arpstat;
522 1.41 jhawk
523 1.41 jhawk if (off == 0)
524 1.41 jhawk return;
525 1.41 jhawk kread(off, (char *)&arpstat, sizeof (arpstat));
526 1.41 jhawk printf("%s:\n", name);
527 1.41 jhawk
528 1.41 jhawk #define ps(f, m) if (arpstat.f || sflag <= 1) \
529 1.41 jhawk printf(m, (unsigned long long)arpstat.f)
530 1.41 jhawk #define p(f, m) if (arpstat.f || sflag <= 1) \
531 1.41 jhawk printf(m, (unsigned long long)arpstat.f, plural(arpstat.f))
532 1.41 jhawk
533 1.41 jhawk p(as_sndtotal, "\t%llu packet%s sent\n");
534 1.41 jhawk p(as_sndreply, "\t\t%llu reply packet%s\n");
535 1.41 jhawk p(as_sndrequest, "\t\t%llu request packet%s\n");
536 1.41 jhawk
537 1.41 jhawk p(as_rcvtotal, "\t%llu packet%s received\n");
538 1.41 jhawk p(as_rcvreply, "\t\t%llu reply packet%s\n");
539 1.41 jhawk p(as_rcvrequest, "\t\t%llu valid request packet%s\n");
540 1.41 jhawk p(as_rcvmcast, "\t\t%llu broadcast/multicast packet%s\n");
541 1.41 jhawk p(as_rcvbadproto, "\t\t%llu packet%s with unknown protocol type\n");
542 1.41 jhawk p(as_rcvbadlen, "\t\t%llu packet%s with bad (short) length\n");
543 1.41 jhawk p(as_rcvzerotpa, "\t\t%llu packet%s with null target IP address\n");
544 1.41 jhawk p(as_rcvzerospa, "\t\t%llu packet%s with null source IP address\n");
545 1.41 jhawk ps(as_rcvnoint, "\t\t%llu could not be mapped to an interface\n");
546 1.41 jhawk p(as_rcvlocalsha, "\t\t%llu packet%s sourced from a local hardware "
547 1.41 jhawk "address\n");
548 1.41 jhawk p(as_rcvbcastsha, "\t\t%llu packet%s with a broadcast "
549 1.41 jhawk "source hardware address\n");
550 1.41 jhawk p(as_rcvlocalspa, "\t\t%llu duplicate%s for a local IP address\n");
551 1.41 jhawk p(as_rcvoverperm, "\t\t%llu attempt%s to overwrite a static entry\n");
552 1.41 jhawk p(as_rcvoverint, "\t\t%llu packet%s received on wrong interface\n");
553 1.41 jhawk p(as_rcvover, "\t\t%llu entry%s overwritten\n");
554 1.41 jhawk p(as_rcvlenchg, "\t\t%llu change%s in hardware address length\n");
555 1.41 jhawk
556 1.41 jhawk p(as_dfrtotal, "\t%llu packet%s deferred pending ARP resolution\n");
557 1.41 jhawk ps(as_dfrsent, "\t\t%llu sent\n");
558 1.41 jhawk ps(as_dfrdropped, "\t\t%llu dropped\n");
559 1.41 jhawk
560 1.41 jhawk p(as_allocfail, "\t%llu failure%s to allocate llinfo\n");
561 1.41 jhawk
562 1.41 jhawk #undef ps
563 1.41 jhawk #undef p
564 1.1 cgd }
565 1.1 cgd
566 1.1 cgd /*
567 1.1 cgd * Pretty print an Internet address (net address + port).
568 1.46 assar * Take numeric_addr and numeric_port into consideration.
569 1.1 cgd */
570 1.9 mycroft void
571 1.46 assar inetprint(in, port, proto, numeric_port)
572 1.23 lukem struct in_addr *in;
573 1.28 lukem u_int16_t port;
574 1.28 lukem const char *proto;
575 1.46 assar int numeric_port;
576 1.1 cgd {
577 1.1 cgd struct servent *sp = 0;
578 1.9 mycroft char line[80], *cp;
579 1.33 sommerfe size_t space;
580 1.1 cgd
581 1.32 mrg (void)snprintf(line, sizeof line, "%.*s.",
582 1.46 assar (Aflag && !numeric_addr) ? 12 : 16, inetname(in));
583 1.23 lukem cp = strchr(line, '\0');
584 1.46 assar if (!numeric_port && port)
585 1.1 cgd sp = getservbyport((int)port, proto);
586 1.33 sommerfe space = sizeof line - (cp-line);
587 1.1 cgd if (sp || port == 0)
588 1.55 jdolecek (void)snprintf(cp, space, "%s", sp ? sp->s_name : "*");
589 1.1 cgd else
590 1.33 sommerfe (void)snprintf(cp, space, "%u", ntohs(port));
591 1.32 mrg (void)printf(" %-*.*s", width, width, line);
592 1.1 cgd }
593 1.1 cgd
594 1.1 cgd /*
595 1.1 cgd * Construct an Internet address representation.
596 1.46 assar * If numeric_addr has been supplied, give
597 1.1 cgd * numeric value, otherwise try for symbolic name.
598 1.1 cgd */
599 1.1 cgd char *
600 1.9 mycroft inetname(inp)
601 1.9 mycroft struct in_addr *inp;
602 1.1 cgd {
603 1.23 lukem char *cp;
604 1.1 cgd static char line[50];
605 1.1 cgd struct hostent *hp;
606 1.1 cgd struct netent *np;
607 1.1 cgd static char domain[MAXHOSTNAMELEN + 1];
608 1.1 cgd static int first = 1;
609 1.1 cgd
610 1.46 assar if (first && !numeric_addr) {
611 1.1 cgd first = 0;
612 1.31 mrg if (gethostname(domain, sizeof domain) == 0) {
613 1.31 mrg domain[sizeof(domain) - 1] = '\0';
614 1.31 mrg if ((cp = strchr(domain, '.')))
615 1.45 itojun (void) strlcpy(domain, cp + 1, sizeof(domain));
616 1.31 mrg else
617 1.31 mrg domain[0] = 0;
618 1.31 mrg } else
619 1.1 cgd domain[0] = 0;
620 1.1 cgd }
621 1.1 cgd cp = 0;
622 1.46 assar if (!numeric_addr && inp->s_addr != INADDR_ANY) {
623 1.9 mycroft int net = inet_netof(*inp);
624 1.9 mycroft int lna = inet_lnaof(*inp);
625 1.1 cgd
626 1.1 cgd if (lna == INADDR_ANY) {
627 1.1 cgd np = getnetbyaddr(net, AF_INET);
628 1.1 cgd if (np)
629 1.1 cgd cp = np->n_name;
630 1.1 cgd }
631 1.1 cgd if (cp == 0) {
632 1.9 mycroft hp = gethostbyaddr((char *)inp, sizeof (*inp), AF_INET);
633 1.1 cgd if (hp) {
634 1.23 lukem if ((cp = strchr(hp->h_name, '.')) &&
635 1.1 cgd !strcmp(cp + 1, domain))
636 1.1 cgd *cp = 0;
637 1.1 cgd cp = hp->h_name;
638 1.1 cgd }
639 1.1 cgd }
640 1.1 cgd }
641 1.9 mycroft if (inp->s_addr == INADDR_ANY)
642 1.56 itojun strlcpy(line, "*", sizeof line);
643 1.1 cgd else if (cp)
644 1.56 itojun strlcpy(line, cp, sizeof line);
645 1.1 cgd else {
646 1.9 mycroft inp->s_addr = ntohl(inp->s_addr);
647 1.1 cgd #define C(x) ((x) & 0xff)
648 1.32 mrg (void)snprintf(line, sizeof line, "%u.%u.%u.%u",
649 1.32 mrg C(inp->s_addr >> 24), C(inp->s_addr >> 16),
650 1.32 mrg C(inp->s_addr >> 8), C(inp->s_addr));
651 1.32 mrg #undef C
652 1.1 cgd }
653 1.1 cgd return (line);
654 1.30 thorpej }
655 1.30 thorpej
656 1.30 thorpej /*
657 1.30 thorpej * Dump the contents of a TCP PCB.
658 1.30 thorpej */
659 1.30 thorpej void
660 1.30 thorpej tcp_dump(pcbaddr)
661 1.30 thorpej u_long pcbaddr;
662 1.30 thorpej {
663 1.30 thorpej struct tcpcb tcpcb;
664 1.54 thorpej int i, hardticks;
665 1.30 thorpej
666 1.30 thorpej kread(pcbaddr, (char *)&tcpcb, sizeof(tcpcb));
667 1.54 thorpej hardticks = get_hardticks();
668 1.30 thorpej
669 1.30 thorpej printf("TCP Protocol Control Block at 0x%08lx:\n\n", pcbaddr);
670 1.30 thorpej
671 1.30 thorpej printf("Timers:\n");
672 1.48 thorpej for (i = 0; i < TCPT_NTIMERS; i++) {
673 1.54 thorpej printf("\t%s: %d", tcptimers[i],
674 1.53 thorpej (tcpcb.t_timer[i].c_flags & CALLOUT_PENDING) ?
675 1.54 thorpej tcpcb.t_timer[i].c_time - hardticks : 0);
676 1.48 thorpej }
677 1.30 thorpej printf("\n\n");
678 1.30 thorpej
679 1.30 thorpej if (tcpcb.t_state < 0 || tcpcb.t_state >= TCP_NSTATES)
680 1.30 thorpej printf("State: %d", tcpcb.t_state);
681 1.30 thorpej else
682 1.30 thorpej printf("State: %s", tcpstates[tcpcb.t_state]);
683 1.49 thorpej printf(", flags 0x%x, inpcb 0x%lx, in6pcb 0x%lx\n\n", tcpcb.t_flags,
684 1.49 thorpej (u_long)tcpcb.t_inpcb, (u_long)tcpcb.t_in6pcb);
685 1.30 thorpej
686 1.30 thorpej printf("rxtshift %d, rxtcur %d, dupacks %d\n", tcpcb.t_rxtshift,
687 1.30 thorpej tcpcb.t_rxtcur, tcpcb.t_dupacks);
688 1.30 thorpej printf("peermss %u, ourmss %u, segsz %u\n\n", tcpcb.t_peermss,
689 1.30 thorpej tcpcb.t_ourmss, tcpcb.t_segsz);
690 1.30 thorpej
691 1.30 thorpej printf("snd_una %u, snd_nxt %u, snd_up %u\n",
692 1.30 thorpej tcpcb.snd_una, tcpcb.snd_nxt, tcpcb.snd_up);
693 1.30 thorpej printf("snd_wl1 %u, snd_wl2 %u, iss %u, snd_wnd %lu\n\n",
694 1.30 thorpej tcpcb.snd_wl1, tcpcb.snd_wl2, tcpcb.iss, tcpcb.snd_wnd);
695 1.30 thorpej
696 1.30 thorpej printf("rcv_wnd %lu, rcv_nxt %u, rcv_up %u, irs %u\n\n",
697 1.30 thorpej tcpcb.rcv_wnd, tcpcb.rcv_nxt, tcpcb.rcv_up, tcpcb.irs);
698 1.30 thorpej
699 1.30 thorpej printf("rcv_adv %u, snd_max %u, snd_cwnd %lu, snd_ssthresh %lu\n",
700 1.30 thorpej tcpcb.rcv_adv, tcpcb.snd_max, tcpcb.snd_cwnd, tcpcb.snd_ssthresh);
701 1.30 thorpej
702 1.47 thorpej printf("rcvtime %u, rtttime %u, rtseq %u, srtt %d, rttvar %d, "
703 1.47 thorpej "rttmin %d, max_sndwnd %lu\n\n", tcpcb.t_rcvtime, tcpcb.t_rtttime,
704 1.47 thorpej tcpcb.t_rtseq, tcpcb.t_srtt, tcpcb.t_rttvar, tcpcb.t_rttmin,
705 1.47 thorpej tcpcb.max_sndwnd);
706 1.30 thorpej
707 1.30 thorpej printf("oobflags %d, iobc %d, softerror %d\n\n", tcpcb.t_oobflags,
708 1.30 thorpej tcpcb.t_iobc, tcpcb.t_softerror);
709 1.30 thorpej
710 1.30 thorpej printf("snd_scale %d, rcv_scale %d, req_r_scale %d, req_s_scale %d\n",
711 1.30 thorpej tcpcb.snd_scale, tcpcb.rcv_scale, tcpcb.request_r_scale,
712 1.30 thorpej tcpcb.requested_s_scale);
713 1.30 thorpej printf("ts_recent %u, ts_regent_age %d, last_ack_sent %u\n",
714 1.30 thorpej tcpcb.ts_recent, tcpcb.ts_recent_age, tcpcb.last_ack_sent);
715 1.1 cgd }
716