2 * Copyright (c) 2013 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/param.h>
35 #include <sys/queue.h>
37 #include <sys/socket.h>
38 #include <sys/socketvar.h>
39 #include <sys/protosw.h>
40 #include <sys/sysctl.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44 #include <net/route.h>
45 #include <netinet/in_systm.h>
46 #include <netinet/ip.h>
48 #include <netinet/ip6.h>
50 #include <netinet/in_pcb.h>
51 #include <netinet/ip_icmp.h>
52 #include <netinet/icmp_var.h>
53 #include <netinet/ip_var.h>
54 #include <netinet/tcp.h>
55 #include <netinet/tcpip.h>
56 #include <netinet/tcp_seq.h>
57 #include <netinet/tcp_fsm.h>
58 #include <netinet/tcp_timer.h>
59 #include <netinet/tcp_var.h>
60 #include <netinet/udp.h>
61 #include <netinet/udp_var.h>
74 RB_ENTRY(mytcpcb
) rb_node
;
77 struct xtcpcb last_xtcp
;
81 mytcpcb_cmp(struct mytcpcb
*tcp1
, struct mytcpcb
*tcp2
)
86 * Low local or foreign port comes first (local has priority).
88 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
) >= 1024 &&
89 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
) >= 1024) {
90 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
) <
91 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
))
93 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
) >
94 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
))
98 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
) <
99 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
))
101 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
) >
102 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
))
104 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
) <
105 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
))
107 if (ntohs(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
) >
108 ntohs(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
))
112 * Sort IPV4 vs IPV6 addresses
114 if (tcp1
->xtcp
.xt_inp
.inp_af
< tcp2
->xtcp
.xt_inp
.inp_af
)
116 if (tcp1
->xtcp
.xt_inp
.inp_af
> tcp2
->xtcp
.xt_inp
.inp_af
)
120 * Local and foreign addresses
122 if (INP_ISIPV4(&tcp1
->xtcp
.xt_inp
)) {
123 if (ntohl(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_laddr
.s_addr
) <
124 ntohl(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_laddr
.s_addr
))
126 if (ntohl(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_laddr
.s_addr
) >
127 ntohl(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_laddr
.s_addr
))
129 if (ntohl(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_faddr
.s_addr
) <
130 ntohl(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_faddr
.s_addr
))
132 if (ntohl(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_faddr
.s_addr
) >
133 ntohl(tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_faddr
.s_addr
))
135 } else if (INP_ISIPV6(&tcp1
->xtcp
.xt_inp
)) {
136 r
= bcmp(&tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
,
137 &tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
,
138 sizeof(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
));
142 r
= bcmp(&tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
,
143 &tcp2
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
,
144 sizeof(tcp1
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie6_faddr
));
152 RB_HEAD(mytcpcb_tree
, mytcpcb
);
153 RB_PROTOTYPE(mytcpcb_tree
, mytcpcb
, rb_node
, mytcpcb_cmp
);
154 RB_GENERATE(mytcpcb_tree
, mytcpcb
, rb_node
, mytcpcb_cmp
);
156 static struct mytcpcb_tree mytcp_tree
;
157 static struct timeval tv_curr
;
158 static struct timeval tv_last
;
159 static struct tcp_stats tcp_curr
;
160 static struct tcp_stats tcp_last
;
161 static int tcp_pcb_seq
;
163 static const char *numtok(double value
);
164 static void netbwline(int row
, struct mytcpcb
*elm
, double delta_time
);
165 const char * netaddrstr(u_char vflags
, union in_dependaddr
*depaddr
,
167 static void updatepcb(struct xtcpcb
*xtcp
);
169 #define DELTARATE(field) \
170 ((double)(tcp_curr.field - tcp_last.field) / delta_time)
172 #define DELTAELM(field) \
173 ((double)(tcp_seq_diff_t)(elm->xtcp.field - \
174 elm->last_xtcp.field) / \
177 #define DELTAELMSCALE(field, scale) \
178 ((double)((tcp_seq_diff_t)(elm->xtcp.field - \
179 elm->last_xtcp.field) << scale) / \
185 RB_INIT(&mytcp_tree
);
186 return (subwin(stdscr
, LINES
-0-1, 0, 0, 0));
190 closenetbw(WINDOW
*w
)
192 struct mytcpcb
*mytcp
;
194 while ((mytcp
= RB_ROOT(&mytcp_tree
)) != NULL
) {
195 RB_REMOVE(mytcpcb_tree
, &mytcp_tree
, mytcp
);
215 struct tcp_stats tcp_array
[SMP_MAXCPU
];
216 struct xtcpcb
*tcp_pcbs
;
227 if (sysctlbyname("net.inet.tcp.pcblist", NULL
, &len
, NULL
, 0) < 0)
229 len
+= 128 * sizeof(tcp_pcbs
[0]);
230 tcp_pcbs
= malloc(len
);
231 if (sysctlbyname("net.inet.tcp.pcblist", tcp_pcbs
, &len
, NULL
, 0) < 0) {
235 npcbs
= len
/ sizeof(tcp_pcbs
[0]);
238 for (i
= 0; i
< npcbs
; ++i
) {
239 if (tcp_pcbs
[i
].xt_len
!= sizeof(tcp_pcbs
[0]))
241 updatepcb(&tcp_pcbs
[i
]);
248 len
= sizeof(tcp_array
);
249 if (sysctlbyname("net.inet.tcp.stats", tcp_array
, &len
, NULL
, 0) < 0)
251 ncpus
= len
/ sizeof(tcp_array
[0]);
254 bzero(&tcp_curr
, sizeof(tcp_curr
));
255 gettimeofday(&tv_curr
, NULL
);
257 for (i
= 0; i
< ncpus
; ++i
) {
258 for (j
= 0; j
< sizeof(tcp_curr
) / sizeof(u_long
); ++j
) {
259 ((u_long
*)&tcp_curr
)[j
] +=
260 ((u_long
*)&tcp_array
[i
])[j
];
271 mvwaddstr(wnd
, 0, LADDR
, "Local Address");
272 mvwaddstr(wnd
, 0, FADDR
, "Foreign Address");
273 mvwaddstr(wnd
, 0, PROTO
, "Proto");
274 mvwaddstr(wnd
, 0, RCVCC
, "Recv-Q");
275 mvwaddstr(wnd
, 0, SNDCC
, "Send-Q");
276 mvwaddstr(wnd
, 0, STATE
, "(state)");
285 struct mytcpcb
*delm
;
288 delta_time
= (double)(tv_curr
.tv_sec
- tv_last
.tv_sec
) - 1.0 +
289 (tv_curr
.tv_usec
+ 1000000 - tv_last
.tv_usec
) / 1e6
;
290 if (delta_time
< 0.1)
294 "tcp accepts %s connects %s "
295 " rcv %s snd %s rexmit %s",
296 numtok(DELTARATE(tcps_accepts
)),
297 numtok(DELTARATE(tcps_connects
) - DELTARATE(tcps_accepts
)),
298 numtok(DELTARATE(tcps_rcvbyte
)),
299 numtok(DELTARATE(tcps_sndbyte
)),
300 numtok(DELTARATE(tcps_sndrexmitbyte
)));
304 RB_FOREACH(elm
, mytcpcb_tree
, &mytcp_tree
) {
306 RB_REMOVE(mytcpcb_tree
, &mytcp_tree
, delm
);
310 if (elm
->seq
== tcp_pcb_seq
&&
311 (elm
->xtcp
.xt_socket
.so_rcv
.sb_cc
||
312 elm
->xtcp
.xt_socket
.so_snd
.sb_cc
||
313 DELTAELM(xt_tp
.snd_max
) ||
314 DELTAELM(xt_tp
.rcv_nxt
)
317 netbwline(row
, elm
, delta_time
);
319 } else if (elm
->seq
!= tcp_pcb_seq
) {
324 RB_REMOVE(mytcpcb_tree
, &mytcp_tree
, delm
);
330 mvwprintw(wnd
, LINES
-2, 0,
332 "R=rxpend T=txpend N=nodelay T=tstmp "
333 "S=sack X=winscale F=fastrec");
338 netbwline(int row
, struct mytcpcb
*elm
, double delta_time
)
340 mvwprintw(wnd
, row
, 0,
346 elm
->xtcp
.xt_inp
.inp_af
,
347 &elm
->xtcp
.xt_inp
.inp_inc
.inc_ie
.
349 ntohs(elm
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_lport
)),
351 elm
->xtcp
.xt_inp
.inp_af
,
352 &elm
->xtcp
.xt_inp
.inp_inc
.inc_ie
.
354 ntohs(elm
->xtcp
.xt_inp
.inp_inc
.inc_ie
.ie_fport
)),
356 numtok(elm->xtcp.xt_socket.so_rcv.sb_cc),
357 numtok(elm->xtcp.xt_socket.so_snd.sb_cc),
359 numtok(DELTAELM(xt_tp
.rcv_nxt
)),
360 numtok(DELTAELM(xt_tp
.snd_max
)),
361 (elm
->xtcp
.xt_socket
.so_rcv
.sb_cc
> 15000 ?
363 (elm
->xtcp
.xt_socket
.so_snd
.sb_cc
> 15000 ?
365 ((elm
->xtcp
.xt_tp
.t_flags
& TF_NODELAY
) ?
367 ((elm
->xtcp
.xt_tp
.t_flags
& TF_RCVD_TSTMP
) ?
369 ((elm
->xtcp
.xt_tp
.t_flags
&
372 ((elm
->xtcp
.xt_tp
.t_flags
& TF_RCVD_SCALE
) ?
374 ((elm
->xtcp
.xt_tp
.t_flags
& TF_FASTRECOVERY
) ?
382 cmdnetbw(const char *cmd __unused
, char *args __unused
)
398 static char buf
[MAXINDEXES
][32];
400 static const char *suffixes
[] = { " ", "K", "M", "G", "T", NULL
};
404 while (value
>= 1000.0 && suffixes
[suffix
+1]) {
408 nexti
= (nexti
+ 1) % MAXINDEXES
;
411 } else if (value
< 1.0) {
413 } else if (value
< 10.0) {
415 } else if (value
< 100.0) {
420 snprintf(buf
[nexti
], sizeof(buf
[nexti
]),
421 fmt
, value
, suffixes
[suffix
]);
426 netaddrstr(u_char af
, union in_dependaddr
*depaddr
, u_int16_t port
)
428 static char buf
[MAXINDEXES
][64];
432 nexta
= (nexta
+ 1) % MAXINDEXES
;
435 snprintf(bufip
, sizeof(bufip
),
437 (ntohl(depaddr
->id46_addr
.ia46_addr4
.s_addr
) >> 24) &
439 (ntohl(depaddr
->id46_addr
.ia46_addr4
.s_addr
) >> 16) &
441 (ntohl(depaddr
->id46_addr
.ia46_addr4
.s_addr
) >> 8) &
443 (ntohl(depaddr
->id46_addr
.ia46_addr4
.s_addr
) >> 0) &
445 snprintf(buf
[nexta
], sizeof(buf
[nexta
]),
446 "%15s:%-5d", bufip
, port
);
447 } else if (af
== AF_INET6
) {
448 snprintf(bufip
, sizeof(bufip
),
449 "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x",
450 ntohs(depaddr
->id6_addr
.s6_addr16
[0]),
451 ntohs(depaddr
->id6_addr
.s6_addr16
[1]),
452 ntohs(depaddr
->id6_addr
.s6_addr16
[2]),
453 ntohs(depaddr
->id6_addr
.s6_addr16
[3]),
454 ntohs(depaddr
->id6_addr
.s6_addr16
[4]),
455 ntohs(depaddr
->id6_addr
.s6_addr16
[5]),
456 ntohs(depaddr
->id6_addr
.s6_addr16
[6]),
457 ntohs(depaddr
->id6_addr
.s6_addr16
[7]));
458 snprintf(buf
[nexta
], sizeof(buf
[nexta
]),
459 "%39s:%-5d", bufip
, port
);
461 snprintf(bufip
, sizeof(bufip
), "<unknown>");
462 snprintf(buf
[nexta
], sizeof(buf
[nexta
]),
463 "%15s:%-5d", bufip
, port
);
470 updatepcb(struct xtcpcb
*xtcp
)
472 struct mytcpcb dummy
;
476 if ((elm
= RB_FIND(mytcpcb_tree
, &mytcp_tree
, &dummy
)) == NULL
) {
477 elm
= malloc(sizeof(*elm
));
478 bzero(elm
, sizeof(*elm
));
480 elm
->last_xtcp
= *xtcp
;
481 RB_INSERT(mytcpcb_tree
, &mytcp_tree
, elm
);
483 elm
->last_xtcp
= elm
->xtcp
;
486 elm
->seq
= tcp_pcb_seq
;