Home | History | Annotate | Line # | Download | only in systat
icmp.c revision 1.2
      1  1.2  itojun /*	$NetBSD: icmp.c,v 1.2 2000/01/08 23:12:37 itojun Exp $ */
      2  1.1      ad 
      3  1.1      ad /*
      4  1.1      ad  * Copyright (c) 1999 Andy Doran <ad (at) NetBSD.org>
      5  1.1      ad  * All rights reserved.
      6  1.1      ad  *
      7  1.1      ad  * Redistribution and use in source and binary forms, with or without
      8  1.1      ad  * modification, are permitted provided that the following conditions
      9  1.1      ad  * are met:
     10  1.1      ad  * 1. Redistributions of source code must retain the above copyright
     11  1.1      ad  *    notice, this list of conditions and the following disclaimer.
     12  1.1      ad  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1      ad  *    notice, this list of conditions and the following disclaimer in the
     14  1.1      ad  *    documentation and/or other materials provided with the distribution.
     15  1.1      ad  *
     16  1.1      ad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.1      ad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.1      ad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.1      ad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.1      ad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.1      ad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.1      ad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1      ad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.1      ad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1      ad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1      ad  * SUCH DAMAGE.
     27  1.1      ad  *
     28  1.1      ad  */
     29  1.1      ad 
     30  1.1      ad #include <sys/cdefs.h>
     31  1.1      ad #ifndef lint
     32  1.2  itojun __RCSID("$NetBSD: icmp.c,v 1.2 2000/01/08 23:12:37 itojun Exp $");
     33  1.1      ad #endif /* not lint */
     34  1.1      ad 
     35  1.1      ad #include <sys/param.h>
     36  1.1      ad #include <sys/types.h>
     37  1.1      ad #include <sys/socket.h>
     38  1.1      ad #include <sys/sysctl.h>
     39  1.1      ad 
     40  1.1      ad #include <netinet/in.h>
     41  1.1      ad #include <netinet/in_systm.h>
     42  1.1      ad #include <netinet/ip.h>
     43  1.1      ad #include <netinet/ip_icmp.h>
     44  1.1      ad #include <netinet/icmp_var.h>
     45  1.1      ad 
     46  1.1      ad #include <stdlib.h>
     47  1.1      ad #include <string.h>
     48  1.1      ad #include <paths.h>
     49  1.1      ad #include <nlist.h>
     50  1.1      ad #include <kvm.h>
     51  1.1      ad #include "systat.h"
     52  1.1      ad #include "extern.h"
     53  1.1      ad 
     54  1.1      ad #define LHD(row, str) mvwprintw(wnd, row, 10, str)
     55  1.1      ad #define RHD(row, str) mvwprintw(wnd, row, 45, str);
     56  1.1      ad #define BD(row, str) LHD(row, str); RHD(row, str)
     57  1.2  itojun #define SHOW(stat, row, col) \
     58  1.2  itojun     mvwprintw(wnd, row, col, "%9llu", (unsigned long long)stats.stat)
     59  1.1      ad #define SHOW2(type, row) SHOW(icps_inhist[type], row, 0); \
     60  1.1      ad     SHOW(icps_outhist[type], row, 35)
     61  1.1      ad 
     62  1.1      ad static struct icmpstat stats;
     63  1.1      ad 
     64  1.1      ad static struct nlist namelist[] = {
     65  1.1      ad 	{ "_icmpstat" },
     66  1.1      ad 	{ "" }
     67  1.1      ad };
     68  1.1      ad 
     69  1.1      ad WINDOW *
     70  1.1      ad openicmp(void)
     71  1.1      ad {
     72  1.1      ad 
     73  1.1      ad 	return (subwin(stdscr, LINES-5-1, 0, 5, 0));
     74  1.1      ad }
     75  1.1      ad 
     76  1.1      ad void
     77  1.1      ad closeicmp(w)
     78  1.1      ad 	WINDOW *w;
     79  1.1      ad {
     80  1.1      ad 
     81  1.1      ad 	if (w != NULL) {
     82  1.1      ad 		wclear(w);
     83  1.1      ad 		wrefresh(w);
     84  1.1      ad 		delwin(w);
     85  1.1      ad 	}
     86  1.1      ad }
     87  1.1      ad 
     88  1.1      ad void
     89  1.1      ad labelicmp(void)
     90  1.1      ad {
     91  1.1      ad 
     92  1.1      ad 	wmove(wnd, 0, 0); wclrtoeol(wnd);
     93  1.1      ad 
     94  1.1      ad 	mvwprintw(wnd, 1, 0,  "------------ ICMP input -------------");
     95  1.1      ad 	mvwprintw(wnd, 1, 38, "------------- ICMP output -------------");
     96  1.1      ad 
     97  1.1      ad 	mvwprintw(wnd, 8, 0,  "---------- Input histogram ----------");
     98  1.1      ad 	mvwprintw(wnd, 8, 38, "---------- Output histogram -----------");
     99  1.1      ad 
    100  1.1      ad 	LHD(3, "with bad code");
    101  1.1      ad 	LHD(4, "with bad length");
    102  1.1      ad 	LHD(5, "with bad checksum");
    103  1.1      ad 	LHD(6, "with insufficient data");
    104  1.1      ad 
    105  1.1      ad 	RHD(3, "errors generated");
    106  1.1      ad 	RHD(4, "suppressed - original too short");
    107  1.1      ad 	RHD(5, "suppressed - original was ICMP");
    108  1.1      ad 	RHD(6, "responses sent");
    109  1.1      ad 
    110  1.1      ad 	BD(2, "total messages");
    111  1.1      ad 	BD(9, "echo response");
    112  1.1      ad 	BD(10, "echo request");
    113  1.1      ad 	BD(11, "destination unreachable");
    114  1.1      ad 	BD(12, "redirect");
    115  1.1      ad 	BD(13, "time-to-live exceeded");
    116  1.1      ad 	BD(14, "parameter problem");
    117  1.1      ad 	LHD(15, "router advertisement");
    118  1.1      ad 	RHD(15, "router solicitation");
    119  1.1      ad }
    120  1.1      ad 
    121  1.1      ad void
    122  1.1      ad showicmp(void)
    123  1.1      ad {
    124  1.1      ad 	u_long tin, tout;
    125  1.1      ad 	int i;
    126  1.1      ad 
    127  1.1      ad 	for (i = tin = tout = 0; i <= ICMP_MAXTYPE; i++) {
    128  1.1      ad 		tin += stats.icps_inhist[i];
    129  1.1      ad 		tout += stats.icps_outhist[i];
    130  1.1      ad 	}
    131  1.1      ad 
    132  1.1      ad 	tin += stats.icps_badcode + stats.icps_badlen + stats.icps_checksum +
    133  1.1      ad 	    stats.icps_tooshort;
    134  1.1      ad 	mvwprintw(wnd, 2, 0, "%9lu", tin);
    135  1.1      ad 	mvwprintw(wnd, 2, 35, "%9lu", tout);
    136  1.1      ad 
    137  1.1      ad 	SHOW(icps_badcode, 3, 0);
    138  1.1      ad 	SHOW(icps_badlen, 4, 0);
    139  1.1      ad 	SHOW(icps_checksum, 5, 0);
    140  1.1      ad 	SHOW(icps_tooshort, 6, 0);
    141  1.1      ad 	SHOW(icps_error, 3, 35);
    142  1.1      ad 	SHOW(icps_oldshort, 4, 35);
    143  1.1      ad 	SHOW(icps_oldicmp, 5, 35);
    144  1.1      ad 	SHOW(icps_reflect, 6, 35);
    145  1.1      ad 
    146  1.1      ad 	SHOW2(ICMP_ECHOREPLY, 9);
    147  1.1      ad 	SHOW2(ICMP_ECHO, 10);
    148  1.1      ad 	SHOW2(ICMP_UNREACH, 11);
    149  1.1      ad 	SHOW2(ICMP_REDIRECT, 12);
    150  1.1      ad 	SHOW2(ICMP_TIMXCEED, 13);
    151  1.1      ad 	SHOW2(ICMP_PARAMPROB, 14);
    152  1.1      ad 	SHOW(icps_inhist[ICMP_ROUTERADVERT], 15, 0);
    153  1.1      ad 	SHOW(icps_outhist[ICMP_ROUTERSOLICIT], 15, 35);
    154  1.1      ad }
    155  1.1      ad 
    156  1.1      ad int
    157  1.1      ad initicmp(void)
    158  1.1      ad {
    159  1.1      ad 
    160  1.1      ad 	if (namelist[0].n_type == 0) {
    161  1.1      ad 		if (kvm_nlist(kd, namelist)) {
    162  1.1      ad 			nlisterr(namelist);
    163  1.1      ad 			return(0);
    164  1.1      ad 		}
    165  1.1      ad 		if (namelist[0].n_type == 0) {
    166  1.1      ad 			error("No namelist");
    167  1.1      ad 			return(0);
    168  1.1      ad 		}
    169  1.1      ad 	}
    170  1.1      ad 
    171  1.1      ad 	return (1);
    172  1.1      ad }
    173  1.1      ad 
    174  1.1      ad void
    175  1.1      ad fetchicmp(void)
    176  1.1      ad {
    177  1.1      ad 
    178  1.1      ad 	KREAD((void *)namelist[0].n_value, &stats, sizeof(stats));
    179  1.1      ad }
    180