Home | History | Annotate | Line # | Download | only in systat
ip.c revision 1.4
      1 /*	$NetBSD: ip.c,v 1.4 2000/01/08 23:12:37 itojun Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1999 Andy Doran <ad (at) NetBSD.org>
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  *
     28  */
     29 
     30 #include <sys/cdefs.h>
     31 #ifndef lint
     32 __RCSID("$NetBSD: ip.c,v 1.4 2000/01/08 23:12:37 itojun Exp $");
     33 #endif /* not lint */
     34 
     35 #include <sys/param.h>
     36 #include <sys/types.h>
     37 #include <sys/socket.h>
     38 #include <sys/sysctl.h>
     39 
     40 #include <netinet/in.h>
     41 #include <netinet/in_systm.h>
     42 #include <netinet/ip.h>
     43 #include <netinet/ip_var.h>
     44 #include <netinet/udp.h>
     45 #include <netinet/udp_var.h>
     46 
     47 #include <stdlib.h>
     48 #include <string.h>
     49 #include <paths.h>
     50 #include <nlist.h>
     51 #include <kvm.h>
     52 #include "systat.h"
     53 #include "extern.h"
     54 
     55 #define LHD(row, str)		mvwprintw(wnd, row, 10, str)
     56 #define RHD(row, str)		mvwprintw(wnd, row, 45, str);
     57 #define SHOW(stat, row, col) \
     58     mvwprintw(wnd, row, col, "%9llu", (unsigned long long)curstat.stat)
     59 
     60 struct mystat {
     61 	struct ipstat i;
     62 	struct udpstat u;
     63 };
     64 
     65 static struct mystat curstat;
     66 
     67 static struct nlist namelist[] = {
     68 	{ "_ipstat" },
     69 	{ "_udpstat" },
     70 	{ "" }
     71 };
     72 
     73 WINDOW *
     74 openip(void)
     75 {
     76 
     77 	return (subwin(stdscr, LINES-5-1, 0, 5, 0));
     78 }
     79 
     80 void
     81 closeip(w)
     82 	WINDOW *w;
     83 {
     84 
     85 	if (w != NULL) {
     86 		wclear(w);
     87 		wrefresh(w);
     88 		delwin(w);
     89 	}
     90 }
     91 
     92 void
     93 labelip(void)
     94 {
     95 
     96 	wmove(wnd, 0, 0); wclrtoeol(wnd);
     97 
     98 	LHD(0,  "total packets received");
     99 	LHD(1,  "  passed to upper layers");
    100 	LHD(2,  "  with bad checksums");
    101 	LHD(3,  "  too short for header");
    102 	LHD(4,  "  too short for data");
    103 	LHD(5,  "  with invalid hlen");
    104 	LHD(6,  "  with invalid length");
    105 	LHD(7,  "  with invalid version");
    106 	LHD(8,  "  too large");
    107 	LHD(9,  "  option errors");
    108 	LHD(10, "  fragments received");
    109 	LHD(11, "  fragments dropped");
    110 	LHD(12, "  fragments timed out");
    111 	LHD(13, "  packets reassembled ok");
    112 
    113 	LHD(15, "packets forwarded");
    114 	LHD(16, "  fast forwarded");
    115 	LHD(17, "  unreachable dests");
    116 	LHD(18, "  redirects generated");
    117 
    118 	RHD(0,  "total packets sent");
    119 	RHD(1,  "  generated locally");
    120 	RHD(2,  "  output drops");
    121 	RHD(3,  "  output fragments generated");
    122 	RHD(4,  "  fragmentation failed");
    123 	RHD(5,  "  destinations unreachable");
    124 	RHD(6,  "  packets output via raw IP");
    125 	RHD(7,  "  total UDP packets sent");
    126 
    127 	RHD(9, "total UDP packets recieved");
    128 	RHD(10, "  too short for header");
    129 	RHD(11, "  invalid checksum");
    130 	RHD(12, "  invalid length");
    131 	RHD(13, "  no socket for dest port");
    132 	RHD(14, "  no socket for broadcast");
    133 	RHD(15, "  socket buffer full");
    134 }
    135 
    136 void
    137 showip(void)
    138 {
    139 	u_quad_t totalout;
    140 
    141 	totalout = curstat.i.ips_forward + curstat.i.ips_localout;
    142 
    143 	SHOW(i.ips_total, 0, 0);
    144 	mvwprintw(wnd, 0, 35, "%9llu", totalout);
    145 	SHOW(i.ips_delivered, 1, 0);
    146 	SHOW(i.ips_badsum, 2, 0);
    147 	SHOW(i.ips_tooshort, 3, 0);
    148 	SHOW(i.ips_toosmall, 4, 0);
    149 	SHOW(i.ips_badhlen, 5, 0);
    150 	SHOW(i.ips_badlen, 6, 0);
    151 	SHOW(i.ips_badvers, 7, 0);
    152 	SHOW(i.ips_toolong, 8, 0);
    153 	SHOW(i.ips_badoptions, 9, 0);
    154 
    155 	SHOW(i.ips_localout, 1, 35);
    156 	SHOW(i.ips_odropped, 2, 35);
    157 	SHOW(i.ips_ofragments, 3, 35);
    158 	SHOW(i.ips_cantfrag, 4, 35);
    159 	SHOW(i.ips_noroute, 5, 35);
    160 	SHOW(i.ips_rawout, 6, 35);
    161 	SHOW(u.udps_opackets, 7, 35);
    162 
    163 	SHOW(i.ips_fragments, 10, 0);
    164 	SHOW(i.ips_fragdropped, 11, 0);
    165 	SHOW(i.ips_fragtimeout, 12, 0);
    166 	SHOW(i.ips_reassembled, 13, 0);
    167 
    168 	SHOW(i.ips_forward, 15, 0);
    169 	SHOW(i.ips_fastforward, 16, 0);
    170 	SHOW(i.ips_cantforward, 17, 0);
    171 	SHOW(i.ips_redirectsent, 18, 0);
    172 
    173 	SHOW(u.udps_ipackets, 9, 35);
    174 	SHOW(u.udps_hdrops, 10, 35);
    175 	SHOW(u.udps_badsum, 11, 35);
    176 	SHOW(u.udps_badlen, 12, 35);
    177 	SHOW(u.udps_noport, 13, 35);
    178 	SHOW(u.udps_noportbcast, 14, 35);
    179 	SHOW(u.udps_fullsock, 15, 35);
    180 }
    181 
    182 int
    183 initip(void)
    184 {
    185 
    186 	if (namelist[0].n_type == 0) {
    187 		if (kvm_nlist(kd, namelist)) {
    188 			nlisterr(namelist);
    189 			return(0);
    190 		}
    191 		if ((namelist[0].n_type | namelist[1].n_type) == 0) {
    192 			error("No namelist");
    193 			return(0);
    194 		}
    195 	}
    196 	return 1;
    197 }
    198 
    199 void
    200 fetchip(void)
    201 {
    202 
    203 	KREAD((void *)namelist[0].n_value, &curstat.i, sizeof(curstat.i));
    204 	KREAD((void *)namelist[1].n_value, &curstat.u, sizeof(curstat.u));
    205 }
    206