xref: /freebsd/usr.bin/systat/tcp.c (revision 02a50a14b3b6428965e4bbf3df74d9d2a3b94b62)
1630fa006SGarrett Wollman /*-
2630fa006SGarrett Wollman  * Copyright (c) 1980, 1992, 1993
3630fa006SGarrett Wollman  *	The Regents of the University of California.  All rights reserved.
4630fa006SGarrett Wollman  *
5630fa006SGarrett Wollman  * Redistribution and use in source and binary forms, with or without
6630fa006SGarrett Wollman  * modification, are permitted provided that the following conditions
7630fa006SGarrett Wollman  * are met:
8630fa006SGarrett Wollman  * 1. Redistributions of source code must retain the above copyright
9630fa006SGarrett Wollman  *    notice, this list of conditions and the following disclaimer.
10630fa006SGarrett Wollman  * 2. Redistributions in binary form must reproduce the above copyright
11630fa006SGarrett Wollman  *    notice, this list of conditions and the following disclaimer in the
12630fa006SGarrett Wollman  *    documentation and/or other materials provided with the distribution.
13630fa006SGarrett Wollman  * 3. All advertising materials mentioning features or use of this software
14630fa006SGarrett Wollman  *    must display the following acknowledgement:
15630fa006SGarrett Wollman  *	This product includes software developed by the University of
16630fa006SGarrett Wollman  *	California, Berkeley and its contributors.
17630fa006SGarrett Wollman  * 4. Neither the name of the University nor the names of its contributors
18630fa006SGarrett Wollman  *    may be used to endorse or promote products derived from this software
19630fa006SGarrett Wollman  *    without specific prior written permission.
20630fa006SGarrett Wollman  *
21630fa006SGarrett Wollman  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22630fa006SGarrett Wollman  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23630fa006SGarrett Wollman  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24630fa006SGarrett Wollman  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25630fa006SGarrett Wollman  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26630fa006SGarrett Wollman  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27630fa006SGarrett Wollman  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28630fa006SGarrett Wollman  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29630fa006SGarrett Wollman  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30630fa006SGarrett Wollman  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31630fa006SGarrett Wollman  * SUCH DAMAGE.
32630fa006SGarrett Wollman  */
33630fa006SGarrett Wollman 
347501cdc8SBruce Evans #if 0
357501cdc8SBruce Evans #ifndef lint
367501cdc8SBruce Evans /* From: */
377501cdc8SBruce Evans static char sccsid[] = "@(#)mbufs.c	8.1 (Berkeley) 6/6/93";
387501cdc8SBruce Evans static const char rcsid[] =
397501cdc8SBruce Evans 	"Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp";
407501cdc8SBruce Evans #endif /* not lint */
417501cdc8SBruce Evans #endif
427501cdc8SBruce Evans 
439ff712b0SMark Murray #include <sys/cdefs.h>
449ff712b0SMark Murray __FBSDID("$FreeBSD$");
459ff712b0SMark Murray 
46630fa006SGarrett Wollman #include <sys/param.h>
47630fa006SGarrett Wollman #include <sys/types.h>
48630fa006SGarrett Wollman #include <sys/socket.h>
49630fa006SGarrett Wollman #include <sys/sysctl.h>
50630fa006SGarrett Wollman 
51630fa006SGarrett Wollman #include <netinet/in.h>
52630fa006SGarrett Wollman #include <netinet/in_systm.h>
53630fa006SGarrett Wollman #include <netinet/ip.h>
54630fa006SGarrett Wollman #include <netinet/tcp.h>
55630fa006SGarrett Wollman #include <netinet/tcp_seq.h>
56630fa006SGarrett Wollman #include <netinet/tcp_fsm.h>
57630fa006SGarrett Wollman #include <netinet/tcp_timer.h>
58630fa006SGarrett Wollman #include <netinet/tcp_var.h>
59630fa006SGarrett Wollman 
60630fa006SGarrett Wollman #include <stdlib.h>
61630fa006SGarrett Wollman #include <string.h>
62630fa006SGarrett Wollman #include <paths.h>
639ff712b0SMark Murray 
64630fa006SGarrett Wollman #include "systat.h"
65630fa006SGarrett Wollman #include "extern.h"
66630fa006SGarrett Wollman #include "mode.h"
67630fa006SGarrett Wollman 
68630fa006SGarrett Wollman static struct tcpstat curstat, initstat, oldstat;
69630fa006SGarrett Wollman 
70630fa006SGarrett Wollman /*-
71630fa006SGarrett Wollman --0         1         2         3         4         5         6         7
72630fa006SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
738aa22952SBruce Evans 00          TCP Connections                    TCP Packets
748aa22952SBruce Evans 01999999999 connections initiated    999999999 total packets sent
758aa22952SBruce Evans 02999999999 connections accepted     999999999 - data
7602a50a14SJohn Baldwin 03999999999 connections established  999999999 - data (retransmit by dupack)
7702a50a14SJohn Baldwin 04999999999 connections dropped      999999999 - data (retransmit by sack)
7802a50a14SJohn Baldwin 05999999999 - in embryonic state     999999999 - ack-only
7902a50a14SJohn Baldwin 06999999999 - on retransmit timeout  999999999 - window probes
8002a50a14SJohn Baldwin 07999999999 - by keepalive           999999999 - window updates
8102a50a14SJohn Baldwin 08999999999 - from listen queue      999999999 - urgent data only
8202a50a14SJohn Baldwin 09                                   999999999 - control
8302a50a14SJohn Baldwin 10                                   999999999 - resends by PMTU discovery
8402a50a14SJohn Baldwin 11          TCP Timers               999999999 total packets received
8502a50a14SJohn Baldwin 12999999999 potential rtt updates    999999999 - in sequence
8602a50a14SJohn Baldwin 13999999999 - successful             999999999 - completely duplicate
8702a50a14SJohn Baldwin 14999999999 delayed acks sent        999999999 - with some duplicate data
8802a50a14SJohn Baldwin 15999999999 retransmit timeouts      999999999 - out-of-order
8902a50a14SJohn Baldwin 16999999999 persist timeouts         999999999 - duplicate acks
9002a50a14SJohn Baldwin 17999999999 keepalive probes         999999999 - acks
9102a50a14SJohn Baldwin 18999999999 - timeouts               999999999 - window probes
9202a50a14SJohn Baldwin 19                                   999999999 - window updates
9302a50a14SJohn Baldwin 20                                   999999999 - bad checksum
94630fa006SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
95630fa006SGarrett Wollman --0         1         2         3         4         5         6         7
96630fa006SGarrett Wollman */
97630fa006SGarrett Wollman 
98630fa006SGarrett Wollman WINDOW *
99630fa006SGarrett Wollman opentcp(void)
100630fa006SGarrett Wollman {
1018aa22952SBruce Evans 	return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
102630fa006SGarrett Wollman }
103630fa006SGarrett Wollman 
104630fa006SGarrett Wollman void
105630fa006SGarrett Wollman closetcp(w)
106630fa006SGarrett Wollman 	WINDOW *w;
107630fa006SGarrett Wollman {
108630fa006SGarrett Wollman 	if (w == NULL)
109630fa006SGarrett Wollman 		return;
110630fa006SGarrett Wollman 	wclear(w);
111630fa006SGarrett Wollman 	wrefresh(w);
1128aa22952SBruce Evans 	delwin(w);
113630fa006SGarrett Wollman }
114630fa006SGarrett Wollman 
115630fa006SGarrett Wollman void
116630fa006SGarrett Wollman labeltcp(void)
117630fa006SGarrett Wollman {
118630fa006SGarrett Wollman 	wmove(wnd, 0, 0); wclrtoeol(wnd);
119630fa006SGarrett Wollman #define L(row, str) mvwprintw(wnd, row, 10, str)
120630fa006SGarrett Wollman #define R(row, str) mvwprintw(wnd, row, 45, str);
1218aa22952SBruce Evans 	L(0, "TCP Connections");		R(0, "TCP Packets");
1228aa22952SBruce Evans 	L(1, "connections initiated");		R(1, "total packets sent");
1238aa22952SBruce Evans 	L(2, "connections accepted");		R(2, "- data");
12402a50a14SJohn Baldwin 	L(3, "connections established");	R(3, "- data (retransmit by dupack)");
12502a50a14SJohn Baldwin 	L(4, "connections dropped");		R(4, "- data (retransmit by sack)");
12602a50a14SJohn Baldwin 	L(5, "- in embryonic state");		R(5, "- ack-only");
12702a50a14SJohn Baldwin 	L(6, "- on retransmit timeout");	R(6, "- window probes");
12802a50a14SJohn Baldwin 	L(7, "- by keepalive");			R(7, "- window updates");
12902a50a14SJohn Baldwin 	L(8, "- from listen queue");		R(8, "- urgent data only");
13002a50a14SJohn Baldwin 	R(9, "- control");
13102a50a14SJohn Baldwin 	R(10, "- resends by PMTU discovery");
13202a50a14SJohn Baldwin 	L(11, "TCP Timers");		R(11, "total packets received");
13302a50a14SJohn Baldwin 	L(12, "potential rtt updates");	R(12, "- in sequence");
13402a50a14SJohn Baldwin 	L(13, "- successful");		R(13, "- completely duplicate");
13502a50a14SJohn Baldwin 	L(14, "delayed acks sent");	R(14, "- with some duplicate data");
13602a50a14SJohn Baldwin 	L(15, "retransmit timeouts");	R(15, "- out-of-order");
13702a50a14SJohn Baldwin 	L(16, "persist timeouts");	R(16, "- duplicate acks");
13802a50a14SJohn Baldwin 	L(17, "keepalive probes");	R(17, "- acks");
13902a50a14SJohn Baldwin 	L(18, "- timeouts");		R(18, "- window probes");
14002a50a14SJohn Baldwin 	R(19, "- window updates");
14102a50a14SJohn Baldwin 	R(20, "- bad checksum");
142630fa006SGarrett Wollman #undef L
143630fa006SGarrett Wollman #undef R
144630fa006SGarrett Wollman }
145630fa006SGarrett Wollman 
146630fa006SGarrett Wollman static void
147630fa006SGarrett Wollman domode(struct tcpstat *ret)
148630fa006SGarrett Wollman {
149630fa006SGarrett Wollman 	const struct tcpstat *sub;
150d22889b8SDavid E. O'Brien 	int divisor = 1;
151630fa006SGarrett Wollman 
152630fa006SGarrett Wollman 	switch(currentmode) {
153630fa006SGarrett Wollman 	case display_RATE:
154630fa006SGarrett Wollman 		sub = &oldstat;
155630fa006SGarrett Wollman 		divisor = naptime;
156630fa006SGarrett Wollman 		break;
157630fa006SGarrett Wollman 	case display_DELTA:
158630fa006SGarrett Wollman 		sub = &oldstat;
159630fa006SGarrett Wollman 		break;
160630fa006SGarrett Wollman 	case display_SINCE:
161630fa006SGarrett Wollman 		sub = &initstat;
162630fa006SGarrett Wollman 		break;
163630fa006SGarrett Wollman 	default:
164630fa006SGarrett Wollman 		*ret = curstat;
165630fa006SGarrett Wollman 		return;
166630fa006SGarrett Wollman 	}
167630fa006SGarrett Wollman #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor
168630fa006SGarrett Wollman 	DO(tcps_connattempt);
169630fa006SGarrett Wollman 	DO(tcps_accepts);
170630fa006SGarrett Wollman 	DO(tcps_connects);
171630fa006SGarrett Wollman 	DO(tcps_drops);
172630fa006SGarrett Wollman 	DO(tcps_conndrops);
173630fa006SGarrett Wollman 	DO(tcps_closed);
174630fa006SGarrett Wollman 	DO(tcps_segstimed);
175630fa006SGarrett Wollman 	DO(tcps_rttupdated);
176630fa006SGarrett Wollman 	DO(tcps_delack);
177630fa006SGarrett Wollman 	DO(tcps_timeoutdrop);
178630fa006SGarrett Wollman 	DO(tcps_rexmttimeo);
179630fa006SGarrett Wollman 	DO(tcps_persisttimeo);
180630fa006SGarrett Wollman 	DO(tcps_keeptimeo);
181630fa006SGarrett Wollman 	DO(tcps_keepprobe);
182630fa006SGarrett Wollman 	DO(tcps_keepdrops);
183630fa006SGarrett Wollman 
184630fa006SGarrett Wollman 	DO(tcps_sndtotal);
185630fa006SGarrett Wollman 	DO(tcps_sndpack);
186630fa006SGarrett Wollman 	DO(tcps_sndbyte);
187630fa006SGarrett Wollman 	DO(tcps_sndrexmitpack);
18802a50a14SJohn Baldwin 	DO(tcps_sack_rexmits);
189630fa006SGarrett Wollman 	DO(tcps_sndacks);
190630fa006SGarrett Wollman 	DO(tcps_sndprobe);
191630fa006SGarrett Wollman 	DO(tcps_sndurg);
192630fa006SGarrett Wollman 	DO(tcps_sndwinup);
193630fa006SGarrett Wollman 	DO(tcps_sndctrl);
194630fa006SGarrett Wollman 
195630fa006SGarrett Wollman 	DO(tcps_rcvtotal);
196630fa006SGarrett Wollman 	DO(tcps_rcvpack);
197630fa006SGarrett Wollman 	DO(tcps_rcvbyte);
198630fa006SGarrett Wollman 	DO(tcps_rcvbadsum);
199630fa006SGarrett Wollman 	DO(tcps_rcvbadoff);
200630fa006SGarrett Wollman 	DO(tcps_rcvshort);
201630fa006SGarrett Wollman 	DO(tcps_rcvduppack);
202630fa006SGarrett Wollman 	DO(tcps_rcvdupbyte);
203630fa006SGarrett Wollman 	DO(tcps_rcvpartduppack);
204630fa006SGarrett Wollman 	DO(tcps_rcvpartdupbyte);
205630fa006SGarrett Wollman 	DO(tcps_rcvoopack);
206630fa006SGarrett Wollman 	DO(tcps_rcvoobyte);
207630fa006SGarrett Wollman 	DO(tcps_rcvpackafterwin);
208630fa006SGarrett Wollman 	DO(tcps_rcvbyteafterwin);
209630fa006SGarrett Wollman 	DO(tcps_rcvafterclose);
210630fa006SGarrett Wollman 	DO(tcps_rcvwinprobe);
211630fa006SGarrett Wollman 	DO(tcps_rcvdupack);
212630fa006SGarrett Wollman 	DO(tcps_rcvacktoomuch);
213630fa006SGarrett Wollman 	DO(tcps_rcvackpack);
214630fa006SGarrett Wollman 	DO(tcps_rcvackbyte);
215630fa006SGarrett Wollman 	DO(tcps_rcvwinupd);
216630fa006SGarrett Wollman 	DO(tcps_pawsdrop);
217630fa006SGarrett Wollman 	DO(tcps_predack);
218630fa006SGarrett Wollman 	DO(tcps_preddat);
219630fa006SGarrett Wollman 	DO(tcps_pcbcachemiss);
220630fa006SGarrett Wollman 	DO(tcps_cachedrtt);
221630fa006SGarrett Wollman 	DO(tcps_cachedrttvar);
222630fa006SGarrett Wollman 	DO(tcps_cachedssthresh);
223630fa006SGarrett Wollman 	DO(tcps_usedrtt);
224630fa006SGarrett Wollman 	DO(tcps_usedrttvar);
225630fa006SGarrett Wollman 	DO(tcps_usedssthresh);
226630fa006SGarrett Wollman 	DO(tcps_persistdrop);
227630fa006SGarrett Wollman 	DO(tcps_badsyn);
228630fa006SGarrett Wollman 	DO(tcps_mturesent);
229630fa006SGarrett Wollman 	DO(tcps_listendrop);
230630fa006SGarrett Wollman #undef DO
231630fa006SGarrett Wollman }
232630fa006SGarrett Wollman 
233630fa006SGarrett Wollman void
234630fa006SGarrett Wollman showtcp(void)
235630fa006SGarrett Wollman {
236630fa006SGarrett Wollman 	struct tcpstat stats;
237630fa006SGarrett Wollman 
238630fa006SGarrett Wollman 	memset(&stats, 0, sizeof stats);
239630fa006SGarrett Wollman 	domode(&stats);
240630fa006SGarrett Wollman 
241630fa006SGarrett Wollman #define DO(stat, row, col) \
242630fa006SGarrett Wollman 	mvwprintw(wnd, row, col, "%9lu", stats.stat)
243630fa006SGarrett Wollman #define	L(row, stat) DO(stat, row, 0)
244630fa006SGarrett Wollman #define	R(row, stat) DO(stat, row, 35)
2458aa22952SBruce Evans 	L(1, tcps_connattempt);		R(1, tcps_sndtotal);
2468aa22952SBruce Evans 	L(2, tcps_accepts);		R(2, tcps_sndpack);
2478aa22952SBruce Evans 	L(3, tcps_connects);		R(3, tcps_sndrexmitpack);
24802a50a14SJohn Baldwin 	L(4, tcps_drops);		R(4, tcps_sack_rexmits);
24902a50a14SJohn Baldwin 	L(5, tcps_conndrops);		R(5, tcps_sndacks);
25002a50a14SJohn Baldwin 	L(6, tcps_timeoutdrop);		R(6, tcps_sndprobe);
25102a50a14SJohn Baldwin 	L(7, tcps_keepdrops);		R(7, tcps_sndwinup);
25202a50a14SJohn Baldwin 	L(8, tcps_listendrop);		R(8, tcps_sndurg);
25302a50a14SJohn Baldwin 	R(9, tcps_sndctrl);
25402a50a14SJohn Baldwin 	R(10, tcps_mturesent);
25502a50a14SJohn Baldwin 	R(11, tcps_rcvtotal);
25602a50a14SJohn Baldwin 	L(12, tcps_segstimed);		R(12, tcps_rcvpack);
25702a50a14SJohn Baldwin 	L(13, tcps_rttupdated);		R(13, tcps_rcvduppack);
25802a50a14SJohn Baldwin 	L(14, tcps_delack);		R(14, tcps_rcvpartduppack);
25902a50a14SJohn Baldwin 	L(15, tcps_rexmttimeo);		R(15, tcps_rcvoopack);
26002a50a14SJohn Baldwin 	L(16, tcps_persisttimeo);	R(16, tcps_rcvdupack);
26102a50a14SJohn Baldwin 	L(17, tcps_keepprobe);		R(17, tcps_rcvackpack);
26202a50a14SJohn Baldwin 	L(18, tcps_keeptimeo);		R(18, tcps_rcvwinprobe);
26302a50a14SJohn Baldwin 	R(19, tcps_rcvwinupd);
26402a50a14SJohn Baldwin 	R(20, tcps_rcvbadsum);
265630fa006SGarrett Wollman #undef DO
266630fa006SGarrett Wollman #undef L
267630fa006SGarrett Wollman #undef R
268630fa006SGarrett Wollman }
269630fa006SGarrett Wollman 
270630fa006SGarrett Wollman int
271630fa006SGarrett Wollman inittcp(void)
272630fa006SGarrett Wollman {
273630fa006SGarrett Wollman 	size_t len;
274630fa006SGarrett Wollman 	int name[4];
275630fa006SGarrett Wollman 
276630fa006SGarrett Wollman 	name[0] = CTL_NET;
277630fa006SGarrett Wollman 	name[1] = PF_INET;
278630fa006SGarrett Wollman 	name[2] = IPPROTO_TCP;
279630fa006SGarrett Wollman 	name[3] = TCPCTL_STATS;
280630fa006SGarrett Wollman 
281630fa006SGarrett Wollman 	len = 0;
282630fa006SGarrett Wollman 	if (sysctl(name, 4, 0, &len, 0, 0) < 0) {
283630fa006SGarrett Wollman 		error("sysctl getting tcpstat size failed");
284630fa006SGarrett Wollman 		return 0;
285630fa006SGarrett Wollman 	}
286630fa006SGarrett Wollman 	if (len > sizeof curstat) {
287630fa006SGarrett Wollman 		error("tcpstat structure has grown--recompile systat!");
288630fa006SGarrett Wollman 		return 0;
289630fa006SGarrett Wollman 	}
290630fa006SGarrett Wollman 	if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
291630fa006SGarrett Wollman 		error("sysctl getting tcpstat failed");
292630fa006SGarrett Wollman 		return 0;
293630fa006SGarrett Wollman 	}
294630fa006SGarrett Wollman 	oldstat = initstat;
295630fa006SGarrett Wollman 	return 1;
296630fa006SGarrett Wollman }
297630fa006SGarrett Wollman 
298630fa006SGarrett Wollman void
299630fa006SGarrett Wollman resettcp(void)
300630fa006SGarrett Wollman {
301630fa006SGarrett Wollman 	size_t len;
302630fa006SGarrett Wollman 	int name[4];
303630fa006SGarrett Wollman 
304630fa006SGarrett Wollman 	name[0] = CTL_NET;
305630fa006SGarrett Wollman 	name[1] = PF_INET;
306630fa006SGarrett Wollman 	name[2] = IPPROTO_TCP;
307630fa006SGarrett Wollman 	name[3] = TCPCTL_STATS;
308630fa006SGarrett Wollman 
309630fa006SGarrett Wollman 	len = sizeof initstat;
310630fa006SGarrett Wollman 	if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
311630fa006SGarrett Wollman 		error("sysctl getting tcpstat failed");
312630fa006SGarrett Wollman 	}
313630fa006SGarrett Wollman 	oldstat = initstat;
314630fa006SGarrett Wollman }
315630fa006SGarrett Wollman 
316630fa006SGarrett Wollman void
317630fa006SGarrett Wollman fetchtcp(void)
318630fa006SGarrett Wollman {
319630fa006SGarrett Wollman 	int name[4];
320630fa006SGarrett Wollman 	size_t len;
321630fa006SGarrett Wollman 
322630fa006SGarrett Wollman 	oldstat = curstat;
323630fa006SGarrett Wollman 	name[0] = CTL_NET;
324630fa006SGarrett Wollman 	name[1] = PF_INET;
325630fa006SGarrett Wollman 	name[2] = IPPROTO_TCP;
326630fa006SGarrett Wollman 	name[3] = TCPCTL_STATS;
327630fa006SGarrett Wollman 	len = sizeof curstat;
328630fa006SGarrett Wollman 
329630fa006SGarrett Wollman 	if (sysctl(name, 4, &curstat, &len, 0, 0) < 0)
330630fa006SGarrett Wollman 		return;
331630fa006SGarrett Wollman }
332630fa006SGarrett Wollman 
333