NetBSD/usr.bin/systat/tcp.c

236 lines
5.6 KiB
C
Raw Normal View History

1999-07-30 20:08:59 +04:00
/* $NetBSD: tcp.c,v 1.2 1999/07/30 16:08:59 ad Exp $ */
/*
* Copyright (c) 1999 Andy Doran <ad@NetBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#include <sys/cdefs.h>
#ifndef lint
1999-07-30 20:08:59 +04:00
__RCSID("$NetBSD: tcp.c,v 1.2 1999/07/30 16:08:59 ad Exp $");
#endif /* not lint */
#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_var.h>
#include <netinet/tcp.h>
#include <netinet/tcp_seq.h>
#include <netinet/tcp_fsm.h>
#include <netinet/tcp_timer.h>
#include <netinet/tcp_var.h>
#include <stdlib.h>
#include <string.h>
#include <paths.h>
#include <nlist.h>
#include <kvm.h>
#include "systat.h"
#include "extern.h"
#define LHD(row, str) mvwprintw(wnd, row, 10, str)
#define RHD(row, str) mvwprintw(wnd, row, 45, str)
#define SHOW(row, col, stat) mvwprintw(wnd, row, col, "%9lu", curstat.stat)
static struct tcpstat curstat, oldstat;
static struct nlist namelist[] = {
{ "_tcpstat" },
{ "" }
};
WINDOW *
opentcp(void)
{
return (subwin(stdscr, LINES-5-1, 0, 5, 0));
}
void
closetcp(w)
WINDOW *w;
{
if (w != NULL) {
wclear(w);
wrefresh(w);
delwin(w);
}
}
void
labeltcp(void)
{
1999-07-30 20:08:59 +04:00
wmove(wnd, 0, 0); wclrtoeol(wnd);
LHD(0, "connections initiated");
LHD(1, "connections accepted");
LHD(2, "connections established");
LHD(4, "connections dropped");
LHD(5, " in embryonic state");
LHD(6, " on retransmit timeout");
LHD(7, " by keepalive");
LHD(8, " by persist");
LHD(10, "potential rtt updates");
LHD(11, "successful rtt updates");
LHD(12, "delayed acks sent");
LHD(13, "retransmit timeouts");
LHD(14, "persist timeouts");
LHD(15, "keepalive probes");
LHD(16, "keepalive timeouts");
RHD(9, "total TCP packets received");
RHD(10, " in sequence");
RHD(11, " completely duplicate");
RHD(12, " with some duplicate data");
RHD(13, " out of order");
RHD(14, " duplicate acks");
RHD(15, " acks");
RHD(16, " window probes");
RHD(17, " window updates");
RHD(0, "total TCP packets sent");
RHD(1, " data");
RHD(2, " data (retransmit)");
RHD(3, " ack-only");
RHD(4, " window probes");
RHD(5, " window updates");
RHD(6, " urgent data only");
RHD(7, " control");
}
void
showtcpsyn(void)
{
SHOW(0, 0, tcps_sc_added);
SHOW(1, 0, tcps_sc_completed);
SHOW(2, 0, tcps_sc_timed_out);
SHOW(3, 0, tcps_sc_dupesyn);
SHOW(4, 0, tcps_sc_collisions);
SHOW(5, 0, tcps_sc_retransmitted);
SHOW(6, 0, tcps_sc_aborted);
SHOW(7, 0, tcps_sc_overflowed);
SHOW(8, 0, tcps_sc_reset);
SHOW(9, 0, tcps_sc_unreach);
SHOW(10, 0, tcps_sc_bucketoverflow);
SHOW(11, 0, tcps_sc_dropped);
}
void
labeltcpsyn(void)
{
wmove(wnd, 0, 0); wclrtoeol(wnd);
LHD(0, "entries added");
LHD(1, "connections completed");
LHD(2, "entries timed out");
LHD(3, "duplicate SYNs recieved");
LHD(4, "hash collisions");
LHD(5, "retransmissions");
LHD(6, "entries aborted (no memory)");
LHD(7, "dropped (overflow)");
LHD(8, "dropped (RST)");
LHD(9, "dropped (ICMP UNRCH)");
LHD(10, "dropped (bucket overflow)");
LHD(11, "dropped (unreachable/no memory)");
}
void
showtcp(void)
{
SHOW(0, 0, tcps_connattempt);
SHOW(1, 0, tcps_accepts);
SHOW(2, 0, tcps_connects);
SHOW(4, 0, tcps_drops);
SHOW(5, 0, tcps_conndrops);
SHOW(6, 0, tcps_timeoutdrop);
SHOW(7, 0, tcps_keepdrops);
SHOW(8, 0, tcps_persistdrops);
SHOW(10, 0, tcps_segstimed);
SHOW(11, 0, tcps_rttupdated);
SHOW(12, 0, tcps_delack);
SHOW(13, 0, tcps_rexmttimeo);
SHOW(14, 0, tcps_persisttimeo);
SHOW(15, 0, tcps_keepprobe);
SHOW(16, 0, tcps_keeptimeo);
SHOW(0, 35, tcps_sndtotal);
SHOW(1, 35, tcps_sndpack);
SHOW(2, 35, tcps_sndrexmitpack);
SHOW(3, 35, tcps_sndacks);
SHOW(4, 35, tcps_sndprobe);
SHOW(5, 35, tcps_sndwinup);
SHOW(6, 35, tcps_sndurg);
SHOW(7, 35, tcps_sndctrl);
SHOW(9, 35, tcps_rcvtotal);
SHOW(10, 35, tcps_rcvpack);
SHOW(11, 35, tcps_rcvduppack);
SHOW(12, 35, tcps_rcvpartduppack);
SHOW(13, 35, tcps_rcvoopack);
SHOW(14, 35, tcps_rcvdupack);
SHOW(15, 35, tcps_rcvackpack);
SHOW(16, 35, tcps_rcvwinprobe);
SHOW(17, 35, tcps_rcvwinupd);
}
int
inittcp(void)
{
1999-07-30 20:08:59 +04:00
if (namelist[0].n_type == 0) {
if (kvm_nlist(kd, namelist)) {
nlisterr(namelist);
return(0);
}
if (namelist[0].n_type == 0) {
error("No namelist");
return(0);
}
}
return 1;
}
void
fetchtcp(void)
{
1999-07-30 20:08:59 +04:00
oldstat = curstat;
KREAD((void *)namelist[0].n_value, &curstat, sizeof(curstat));
}