1630fa006SGarrett Wollman /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
4630fa006SGarrett Wollman * Copyright (c) 1980, 1992, 1993
5630fa006SGarrett Wollman * The Regents of the University of California. All rights reserved.
6630fa006SGarrett Wollman *
7630fa006SGarrett Wollman * Redistribution and use in source and binary forms, with or without
8630fa006SGarrett Wollman * modification, are permitted provided that the following conditions
9630fa006SGarrett Wollman * are met:
10630fa006SGarrett Wollman * 1. Redistributions of source code must retain the above copyright
11630fa006SGarrett Wollman * notice, this list of conditions and the following disclaimer.
12630fa006SGarrett Wollman * 2. Redistributions in binary form must reproduce the above copyright
13630fa006SGarrett Wollman * notice, this list of conditions and the following disclaimer in the
14630fa006SGarrett 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
16630fa006SGarrett Wollman * may be used to endorse or promote products derived from this software
17630fa006SGarrett Wollman * without specific prior written permission.
18630fa006SGarrett Wollman *
19630fa006SGarrett Wollman * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20630fa006SGarrett Wollman * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21630fa006SGarrett Wollman * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22630fa006SGarrett Wollman * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23630fa006SGarrett Wollman * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24630fa006SGarrett Wollman * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25630fa006SGarrett Wollman * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26630fa006SGarrett Wollman * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27630fa006SGarrett Wollman * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28630fa006SGarrett Wollman * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29630fa006SGarrett Wollman * SUCH DAMAGE.
30630fa006SGarrett Wollman */
31630fa006SGarrett Wollman
32630fa006SGarrett Wollman #include <sys/param.h>
33630fa006SGarrett Wollman #include <sys/types.h>
34630fa006SGarrett Wollman #include <sys/socket.h>
356bff85ffSDag-Erling Smørgrav #include <sys/queue.h>
36630fa006SGarrett Wollman #include <sys/sysctl.h>
37630fa006SGarrett Wollman
38630fa006SGarrett Wollman #include <netinet/in.h>
39630fa006SGarrett Wollman #include <netinet/in_systm.h>
40630fa006SGarrett Wollman #include <netinet/ip.h>
41630fa006SGarrett Wollman #include <netinet/tcp.h>
42630fa006SGarrett Wollman #include <netinet/tcp_seq.h>
43630fa006SGarrett Wollman #include <netinet/tcp_fsm.h>
44630fa006SGarrett Wollman #include <netinet/tcp_timer.h>
45630fa006SGarrett Wollman #include <netinet/tcp_var.h>
46630fa006SGarrett Wollman
47970bdbf5SMichael Tuexen #include <inttypes.h>
48821df508SXin LI #include <stdlib.h>
49630fa006SGarrett Wollman #include <string.h>
50821df508SXin LI #include <paths.h>
519ff712b0SMark Murray
52630fa006SGarrett Wollman #include "systat.h"
53630fa006SGarrett Wollman #include "extern.h"
54630fa006SGarrett Wollman #include "mode.h"
55630fa006SGarrett Wollman
56630fa006SGarrett Wollman static struct tcpstat curstat, initstat, oldstat;
57630fa006SGarrett Wollman
58630fa006SGarrett Wollman /*-
59630fa006SGarrett Wollman --0 1 2 3 4 5 6 7
60630fa006SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
618aa22952SBruce Evans 00 TCP Connections TCP Packets
6259003696SJohn Baldwin 01999999999999 connections initiated 999999999999 total packets sent
6359003696SJohn Baldwin 02999999999999 connections accepted 999999999999 - data
6459003696SJohn Baldwin 03999999999999 connections established 999999999999 - data (retransmit by dupack)
6559003696SJohn Baldwin 04999999999999 connections dropped 999999999999 - data (retransmit by sack)
6659003696SJohn Baldwin 05999999999999 - in embryonic state 999999999999 - ack-only
6759003696SJohn Baldwin 06999999999999 - on retransmit timeout 999999999999 - window probes
6859003696SJohn Baldwin 07999999999999 - by keepalive 999999999999 - window updates
6959003696SJohn Baldwin 08999999999999 - from listen queue 999999999999 - urgent data only
7059003696SJohn Baldwin 09 999999999999 - control
7159003696SJohn Baldwin 10 999999999999 - resends by PMTU discovery
7259003696SJohn Baldwin 11 TCP Timers 999999999999 total packets received
7359003696SJohn Baldwin 12999999999999 potential rtt updates 999999999999 - in sequence
7459003696SJohn Baldwin 13999999999999 - successful 999999999999 - completely duplicate
7559003696SJohn Baldwin 14999999999999 delayed acks sent 999999999999 - with some duplicate data
7659003696SJohn Baldwin 15999999999999 retransmit timeouts 999999999999 - out-of-order
7759003696SJohn Baldwin 16999999999999 persist timeouts 999999999999 - duplicate acks
7859003696SJohn Baldwin 17999999999999 keepalive probes 999999999999 - acks
7959003696SJohn Baldwin 18999999999999 - timeouts 999999999999 - window probes
8059003696SJohn Baldwin 19 999999999999 - window updates
8159003696SJohn Baldwin 20 999999999999 - bad checksum
82630fa006SGarrett Wollman --0123456789012345678901234567890123456789012345678901234567890123456789012345
83630fa006SGarrett Wollman --0 1 2 3 4 5 6 7
84630fa006SGarrett Wollman */
85630fa006SGarrett Wollman
86630fa006SGarrett Wollman WINDOW *
opentcp(void)87630fa006SGarrett Wollman opentcp(void)
88630fa006SGarrett Wollman {
898aa22952SBruce Evans return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
90630fa006SGarrett Wollman }
91630fa006SGarrett Wollman
92630fa006SGarrett Wollman void
closetcp(WINDOW * w)9393b9f504SXin LI closetcp(WINDOW *w)
94630fa006SGarrett Wollman {
95630fa006SGarrett Wollman if (w == NULL)
96630fa006SGarrett Wollman return;
97630fa006SGarrett Wollman wclear(w);
98630fa006SGarrett Wollman wrefresh(w);
998aa22952SBruce Evans delwin(w);
100630fa006SGarrett Wollman }
101630fa006SGarrett Wollman
102630fa006SGarrett Wollman void
labeltcp(void)103630fa006SGarrett Wollman labeltcp(void)
104630fa006SGarrett Wollman {
105630fa006SGarrett Wollman wmove(wnd, 0, 0); wclrtoeol(wnd);
10659003696SJohn Baldwin #define L(row, str) mvwprintw(wnd, row, 13, str)
10759003696SJohn Baldwin #define R(row, str) mvwprintw(wnd, row, 51, str);
1088aa22952SBruce Evans L(0, "TCP Connections"); R(0, "TCP Packets");
1098aa22952SBruce Evans L(1, "connections initiated"); R(1, "total packets sent");
1108aa22952SBruce Evans L(2, "connections accepted"); R(2, "- data");
11102a50a14SJohn Baldwin L(3, "connections established"); R(3, "- data (retransmit by dupack)");
11202a50a14SJohn Baldwin L(4, "connections dropped"); R(4, "- data (retransmit by sack)");
11302a50a14SJohn Baldwin L(5, "- in embryonic state"); R(5, "- ack-only");
11402a50a14SJohn Baldwin L(6, "- on retransmit timeout"); R(6, "- window probes");
11502a50a14SJohn Baldwin L(7, "- by keepalive"); R(7, "- window updates");
116*08af8aacSRandall Stewart L(8, "- exceeded progress time"); R(8, "- urgent data only");
117*08af8aacSRandall Stewart L(9, "- from listen queue"); R(9, "- control");
11802a50a14SJohn Baldwin R(10, "- resends by PMTU discovery");
11902a50a14SJohn Baldwin L(11, "TCP Timers"); R(11, "total packets received");
12002a50a14SJohn Baldwin L(12, "potential rtt updates"); R(12, "- in sequence");
12102a50a14SJohn Baldwin L(13, "- successful"); R(13, "- completely duplicate");
12202a50a14SJohn Baldwin L(14, "delayed acks sent"); R(14, "- with some duplicate data");
12302a50a14SJohn Baldwin L(15, "retransmit timeouts"); R(15, "- out-of-order");
12402a50a14SJohn Baldwin L(16, "persist timeouts"); R(16, "- duplicate acks");
12502a50a14SJohn Baldwin L(17, "keepalive probes"); R(17, "- acks");
12602a50a14SJohn Baldwin L(18, "- timeouts"); R(18, "- window probes");
12702a50a14SJohn Baldwin R(19, "- window updates");
12802a50a14SJohn Baldwin R(20, "- bad checksum");
129630fa006SGarrett Wollman #undef L
130630fa006SGarrett Wollman #undef R
131630fa006SGarrett Wollman }
132630fa006SGarrett Wollman
133630fa006SGarrett Wollman static void
domode(struct tcpstat * ret)134630fa006SGarrett Wollman domode(struct tcpstat *ret)
135630fa006SGarrett Wollman {
136630fa006SGarrett Wollman const struct tcpstat *sub;
137d22889b8SDavid E. O'Brien int divisor = 1;
138630fa006SGarrett Wollman
139630fa006SGarrett Wollman switch(currentmode) {
140630fa006SGarrett Wollman case display_RATE:
141630fa006SGarrett Wollman sub = &oldstat;
1428b3daf89SAlexander V. Chernikov divisor = (delay > 1000000) ? delay / 1000000 : 1;
143630fa006SGarrett Wollman break;
144630fa006SGarrett Wollman case display_DELTA:
145630fa006SGarrett Wollman sub = &oldstat;
146630fa006SGarrett Wollman break;
147630fa006SGarrett Wollman case display_SINCE:
148630fa006SGarrett Wollman sub = &initstat;
149630fa006SGarrett Wollman break;
150630fa006SGarrett Wollman default:
151630fa006SGarrett Wollman *ret = curstat;
152630fa006SGarrett Wollman return;
153630fa006SGarrett Wollman }
154630fa006SGarrett Wollman #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor
155630fa006SGarrett Wollman DO(tcps_connattempt);
156630fa006SGarrett Wollman DO(tcps_accepts);
157630fa006SGarrett Wollman DO(tcps_connects);
158630fa006SGarrett Wollman DO(tcps_drops);
159630fa006SGarrett Wollman DO(tcps_conndrops);
160630fa006SGarrett Wollman DO(tcps_closed);
161630fa006SGarrett Wollman DO(tcps_segstimed);
162630fa006SGarrett Wollman DO(tcps_rttupdated);
163630fa006SGarrett Wollman DO(tcps_delack);
164630fa006SGarrett Wollman DO(tcps_timeoutdrop);
165630fa006SGarrett Wollman DO(tcps_rexmttimeo);
166630fa006SGarrett Wollman DO(tcps_persisttimeo);
167630fa006SGarrett Wollman DO(tcps_keeptimeo);
168630fa006SGarrett Wollman DO(tcps_keepprobe);
169630fa006SGarrett Wollman DO(tcps_keepdrops);
170*08af8aacSRandall Stewart DO(tcps_progdrops);
171630fa006SGarrett Wollman
172630fa006SGarrett Wollman DO(tcps_sndtotal);
173630fa006SGarrett Wollman DO(tcps_sndpack);
174630fa006SGarrett Wollman DO(tcps_sndbyte);
175630fa006SGarrett Wollman DO(tcps_sndrexmitpack);
17602a50a14SJohn Baldwin DO(tcps_sack_rexmits);
177630fa006SGarrett Wollman DO(tcps_sndacks);
178630fa006SGarrett Wollman DO(tcps_sndprobe);
179630fa006SGarrett Wollman DO(tcps_sndurg);
180630fa006SGarrett Wollman DO(tcps_sndwinup);
181630fa006SGarrett Wollman DO(tcps_sndctrl);
182630fa006SGarrett Wollman
183630fa006SGarrett Wollman DO(tcps_rcvtotal);
184630fa006SGarrett Wollman DO(tcps_rcvpack);
185630fa006SGarrett Wollman DO(tcps_rcvbyte);
186630fa006SGarrett Wollman DO(tcps_rcvbadsum);
187630fa006SGarrett Wollman DO(tcps_rcvbadoff);
188630fa006SGarrett Wollman DO(tcps_rcvshort);
189630fa006SGarrett Wollman DO(tcps_rcvduppack);
190630fa006SGarrett Wollman DO(tcps_rcvdupbyte);
191630fa006SGarrett Wollman DO(tcps_rcvpartduppack);
192630fa006SGarrett Wollman DO(tcps_rcvpartdupbyte);
193630fa006SGarrett Wollman DO(tcps_rcvoopack);
194630fa006SGarrett Wollman DO(tcps_rcvoobyte);
195630fa006SGarrett Wollman DO(tcps_rcvpackafterwin);
196630fa006SGarrett Wollman DO(tcps_rcvbyteafterwin);
197630fa006SGarrett Wollman DO(tcps_rcvafterclose);
198630fa006SGarrett Wollman DO(tcps_rcvwinprobe);
199630fa006SGarrett Wollman DO(tcps_rcvdupack);
200630fa006SGarrett Wollman DO(tcps_rcvacktoomuch);
201630fa006SGarrett Wollman DO(tcps_rcvackpack);
202630fa006SGarrett Wollman DO(tcps_rcvackbyte);
203630fa006SGarrett Wollman DO(tcps_rcvwinupd);
204630fa006SGarrett Wollman DO(tcps_pawsdrop);
205630fa006SGarrett Wollman DO(tcps_predack);
206630fa006SGarrett Wollman DO(tcps_preddat);
207630fa006SGarrett Wollman DO(tcps_pcbcachemiss);
208630fa006SGarrett Wollman DO(tcps_cachedrtt);
209630fa006SGarrett Wollman DO(tcps_cachedrttvar);
210630fa006SGarrett Wollman DO(tcps_cachedssthresh);
211630fa006SGarrett Wollman DO(tcps_usedrtt);
212630fa006SGarrett Wollman DO(tcps_usedrttvar);
213630fa006SGarrett Wollman DO(tcps_usedssthresh);
214630fa006SGarrett Wollman DO(tcps_persistdrop);
215630fa006SGarrett Wollman DO(tcps_badsyn);
216630fa006SGarrett Wollman DO(tcps_mturesent);
217630fa006SGarrett Wollman DO(tcps_listendrop);
218630fa006SGarrett Wollman #undef DO
219630fa006SGarrett Wollman }
220630fa006SGarrett Wollman
221630fa006SGarrett Wollman void
showtcp(void)222630fa006SGarrett Wollman showtcp(void)
223630fa006SGarrett Wollman {
224630fa006SGarrett Wollman struct tcpstat stats;
225630fa006SGarrett Wollman
226630fa006SGarrett Wollman memset(&stats, 0, sizeof stats);
227630fa006SGarrett Wollman domode(&stats);
228630fa006SGarrett Wollman
229630fa006SGarrett Wollman #define DO(stat, row, col) \
230970bdbf5SMichael Tuexen mvwprintw(wnd, row, col, "%12"PRIu64, stats.stat)
231630fa006SGarrett Wollman #define L(row, stat) DO(stat, row, 0)
23259003696SJohn Baldwin #define R(row, stat) DO(stat, row, 38)
2338aa22952SBruce Evans L(1, tcps_connattempt); R(1, tcps_sndtotal);
2348aa22952SBruce Evans L(2, tcps_accepts); R(2, tcps_sndpack);
2358aa22952SBruce Evans L(3, tcps_connects); R(3, tcps_sndrexmitpack);
23602a50a14SJohn Baldwin L(4, tcps_drops); R(4, tcps_sack_rexmits);
23702a50a14SJohn Baldwin L(5, tcps_conndrops); R(5, tcps_sndacks);
23802a50a14SJohn Baldwin L(6, tcps_timeoutdrop); R(6, tcps_sndprobe);
23902a50a14SJohn Baldwin L(7, tcps_keepdrops); R(7, tcps_sndwinup);
240*08af8aacSRandall Stewart L(8, tcps_progdrops); R(8, tcps_sndurg);
241*08af8aacSRandall Stewart L(9, tcps_listendrop); R(9, tcps_sndctrl);
24202a50a14SJohn Baldwin R(10, tcps_mturesent);
24302a50a14SJohn Baldwin R(11, tcps_rcvtotal);
24402a50a14SJohn Baldwin L(12, tcps_segstimed); R(12, tcps_rcvpack);
24502a50a14SJohn Baldwin L(13, tcps_rttupdated); R(13, tcps_rcvduppack);
24602a50a14SJohn Baldwin L(14, tcps_delack); R(14, tcps_rcvpartduppack);
24702a50a14SJohn Baldwin L(15, tcps_rexmttimeo); R(15, tcps_rcvoopack);
24802a50a14SJohn Baldwin L(16, tcps_persisttimeo); R(16, tcps_rcvdupack);
24902a50a14SJohn Baldwin L(17, tcps_keepprobe); R(17, tcps_rcvackpack);
25002a50a14SJohn Baldwin L(18, tcps_keeptimeo); R(18, tcps_rcvwinprobe);
25102a50a14SJohn Baldwin R(19, tcps_rcvwinupd);
25202a50a14SJohn Baldwin R(20, tcps_rcvbadsum);
253630fa006SGarrett Wollman #undef DO
254630fa006SGarrett Wollman #undef L
255630fa006SGarrett Wollman #undef R
256630fa006SGarrett Wollman }
257630fa006SGarrett Wollman
258630fa006SGarrett Wollman int
inittcp(void)259630fa006SGarrett Wollman inittcp(void)
260630fa006SGarrett Wollman {
261630fa006SGarrett Wollman size_t len;
262630fa006SGarrett Wollman int name[4];
263630fa006SGarrett Wollman
264630fa006SGarrett Wollman name[0] = CTL_NET;
265630fa006SGarrett Wollman name[1] = PF_INET;
266630fa006SGarrett Wollman name[2] = IPPROTO_TCP;
267630fa006SGarrett Wollman name[3] = TCPCTL_STATS;
268630fa006SGarrett Wollman
269630fa006SGarrett Wollman len = 0;
270630fa006SGarrett Wollman if (sysctl(name, 4, 0, &len, 0, 0) < 0) {
271630fa006SGarrett Wollman error("sysctl getting tcpstat size failed");
272630fa006SGarrett Wollman return 0;
273630fa006SGarrett Wollman }
274630fa006SGarrett Wollman if (len > sizeof curstat) {
275630fa006SGarrett Wollman error("tcpstat structure has grown--recompile systat!");
276630fa006SGarrett Wollman return 0;
277630fa006SGarrett Wollman }
278630fa006SGarrett Wollman if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
279630fa006SGarrett Wollman error("sysctl getting tcpstat failed");
280630fa006SGarrett Wollman return 0;
281630fa006SGarrett Wollman }
282630fa006SGarrett Wollman oldstat = initstat;
283630fa006SGarrett Wollman return 1;
284630fa006SGarrett Wollman }
285630fa006SGarrett Wollman
286630fa006SGarrett Wollman void
resettcp(void)287630fa006SGarrett Wollman resettcp(void)
288630fa006SGarrett Wollman {
289630fa006SGarrett Wollman size_t len;
290630fa006SGarrett Wollman int name[4];
291630fa006SGarrett Wollman
292630fa006SGarrett Wollman name[0] = CTL_NET;
293630fa006SGarrett Wollman name[1] = PF_INET;
294630fa006SGarrett Wollman name[2] = IPPROTO_TCP;
295630fa006SGarrett Wollman name[3] = TCPCTL_STATS;
296630fa006SGarrett Wollman
297630fa006SGarrett Wollman len = sizeof initstat;
298630fa006SGarrett Wollman if (sysctl(name, 4, &initstat, &len, 0, 0) < 0) {
299630fa006SGarrett Wollman error("sysctl getting tcpstat failed");
300630fa006SGarrett Wollman }
301630fa006SGarrett Wollman oldstat = initstat;
302630fa006SGarrett Wollman }
303630fa006SGarrett Wollman
304630fa006SGarrett Wollman void
fetchtcp(void)305630fa006SGarrett Wollman fetchtcp(void)
306630fa006SGarrett Wollman {
307630fa006SGarrett Wollman int name[4];
308630fa006SGarrett Wollman size_t len;
309630fa006SGarrett Wollman
310630fa006SGarrett Wollman oldstat = curstat;
311630fa006SGarrett Wollman name[0] = CTL_NET;
312630fa006SGarrett Wollman name[1] = PF_INET;
313630fa006SGarrett Wollman name[2] = IPPROTO_TCP;
314630fa006SGarrett Wollman name[3] = TCPCTL_STATS;
315630fa006SGarrett Wollman len = sizeof curstat;
316630fa006SGarrett Wollman
317630fa006SGarrett Wollman if (sysctl(name, 4, &curstat, &len, 0, 0) < 0)
318630fa006SGarrett Wollman return;
319630fa006SGarrett Wollman }
320