NetBSD/usr.sbin/slstats/slstats.c

263 lines
5.9 KiB
C
Raw Normal View History

/* $NetBSD: slstats.c,v 1.11 1998/07/06 07:50:20 mrg Exp $ */
1993-11-16 07:16:46 +03:00
/*
* print serial line IP statistics:
* slstats [-i interval] [-v] [interface] [system [core]]
1993-11-16 07:16:46 +03:00
*
* Copyright (c) 1989, 1990, 1991, 1992 Regents of the University of
* California. All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the University of California, Berkeley. The name of the
* University may not be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Van Jacobson (van@ee.lbl.gov), Dec 31, 1989:
* - Initial distribution.
*/
1997-10-17 17:36:36 +04:00
#include <sys/cdefs.h>
1993-11-16 07:16:46 +03:00
#ifndef lint
__RCSID("$NetBSD: slstats.c,v 1.11 1998/07/06 07:50:20 mrg Exp $");
1993-11-16 07:16:46 +03:00
#endif
#define INET
#include <sys/param.h>
#include <sys/mbuf.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/file.h>
1993-11-16 07:16:46 +03:00
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_var.h>
#include <net/slcompress.h>
#include <net/if_slvar.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <kvm.h>
#include <limits.h>
1997-10-17 17:36:36 +04:00
#include <nlist.h>
#include <paths.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
1997-10-17 17:36:36 +04:00
#include <string.h>
#include <unistd.h>
1993-11-16 07:16:46 +03:00
struct nlist nl[] = {
#define N_SOFTC 0
{ "_sl_softc" },
1997-10-17 17:36:36 +04:00
{ "" },
1993-11-16 07:16:46 +03:00
};
1996-12-08 16:54:42 +03:00
extern char *__progname; /* from crt0.o */
char *kernel; /* kernel for namelist */
char *kmemf; /* memory file */
kvm_t *kd;
1993-11-16 07:16:46 +03:00
int vflag;
unsigned interval = 5;
int unit;
1997-10-17 17:36:36 +04:00
void catchalarm __P((int));
void intpr __P((void));
1997-10-17 17:36:36 +04:00
int main __P((int, char **));
void usage __P((void));
1993-11-16 07:16:46 +03:00
int
1993-11-16 07:16:46 +03:00
main(argc, argv)
int argc;
char *argv[];
{
char errbuf[_POSIX2_LINE_MAX];
gid_t egid = getegid();
int ch;
setegid(getgid());
while ((ch = getopt(argc, argv, "i:M:N:v")) != -1) {
switch (ch) {
case 'i':
interval = atoi(optarg);
1993-11-16 07:16:46 +03:00
if (interval <= 0)
usage();
break;
case 'M':
kmemf = optarg;
break;
case 'N':
kernel = optarg;
break;
case 'v':
++vflag;
break;
default:
usage();
1993-11-16 07:16:46 +03:00
}
}
argc -= optind;
argv += optind;
if (argc > 1)
usage();
while (argc--) {
if (isdigit(*argv[0])) {
unit = atoi(*argv);
1993-11-16 07:16:46 +03:00
if (unit < 0)
usage();
continue;
}
/* Fall to here, we have bogus arguments. */
usage();
1993-11-16 07:16:46 +03:00
}
/*
* Discard setgid privileges. If not the running kernel, we toss
* them away totally so that bad guys can't print interesting stuff
* from kernel memory, otherwise switch back to kmem for the
* duration of the kvm_openfiles() call.
*/
if (kmemf != NULL || kernel != NULL)
(void)setgid(getgid());
else
(void)setegid(egid);
memset(errbuf, 0, sizeof(errbuf));
if ((kd = kvm_openfiles(kernel, kmemf, NULL, O_RDONLY, errbuf)) == NULL)
errx(1, "can't open kvm: %s", errbuf);
/* get rid of it now anyway */
if (kmemf == NULL && kernel == NULL)
setgid(getgid());
if (kvm_nlist(kd, nl) < 0 || nl[0].n_type == 0)
errx(1, "%s: SLIP symbols not in namelist",
kernel == NULL ? _PATH_UNIX : kernel);
1993-11-16 07:16:46 +03:00
intpr();
exit(0);
}
#define V(offset) ((line % 20)? sc->offset - osc->offset : sc->offset)
#define AMT (sizeof(*sc) - 2 * sizeof(sc->sc_comp.tstate))
void
1993-11-16 07:16:46 +03:00
usage()
{
(void)fprintf(stderr, "usage: %s [-M core] [-N system] [-i interval] %s",
__progname, "[-v] [unit]\n");
1993-11-16 07:16:46 +03:00
exit(1);
}
u_char signalled; /* set if alarm goes off "early" */
/*
* Print a running summary of interface statistics.
* Repeat display every interval seconds, showing statistics
* collected over that interval. Assumes that interval is non-zero.
* First line printed at top of screen is always cumulative.
*/
void
1993-11-16 07:16:46 +03:00
intpr()
{
1997-10-18 15:38:26 +04:00
int line = 0;
1993-11-16 07:16:46 +03:00
int oldmask;
struct sl_softc *sc, *osc;
u_long addr;
1993-11-16 07:16:46 +03:00
addr = nl[N_SOFTC].n_value + unit * sizeof(struct sl_softc);
sc = (struct sl_softc *)malloc(AMT);
osc = (struct sl_softc *)malloc(AMT);
1997-10-18 15:38:26 +04:00
memset((char *)osc, 0, AMT);
1993-11-16 07:16:46 +03:00
while (1) {
if (kvm_read(kd, addr, (char *)sc, AMT) != AMT)
errx(1, "kvm_read: %s", kvm_geterr(kd));
1997-10-17 17:36:36 +04:00
(void)signal(SIGALRM, catchalarm);
1993-11-16 07:16:46 +03:00
signalled = 0;
(void)alarm(interval);
if ((line % 20) == 0) {
(void)printf("%8.8s %6.6s %6.6s %6.6s %6.6s",
"IN", "PACK", "COMP", "UNCOMP", "ERR");
1993-11-16 07:16:46 +03:00
if (vflag)
printf(" %6.6s %6.6s", "TOSS", "IP");
(void)printf(" | %8.8s %6.6s %6.6s %6.6s %6.6s",
"OUT", "PACK", "COMP", "UNCOMP", "IP");
1993-11-16 07:16:46 +03:00
if (vflag)
(void)printf(" %6.6s %6.6s", "SEARCH", "MISS");
(void)putchar('\n');
1993-11-16 07:16:46 +03:00
}
(void)printf("%8lu %6ld %6u %6u %6u",
V(sc_if.if_ibytes),
1997-10-17 17:36:36 +04:00
(long)V(sc_if.if_ipackets),
1993-11-16 07:16:46 +03:00
V(sc_comp.sls_compressedin),
V(sc_comp.sls_uncompressedin),
V(sc_comp.sls_errorin));
if (vflag)
(void)printf(" %6u %6lu",
1993-11-16 07:16:46 +03:00
V(sc_comp.sls_tossed),
V(sc_if.if_ipackets) -
V(sc_comp.sls_compressedin) -
V(sc_comp.sls_uncompressedin) -
V(sc_comp.sls_errorin));
(void)printf(" | %8lu %6ld %6u %6u %6lu",
V(sc_if.if_obytes),
1993-11-16 07:16:46 +03:00
V(sc_if.if_opackets),
V(sc_comp.sls_compressed),
V(sc_comp.sls_packets) - V(sc_comp.sls_compressed),
V(sc_if.if_opackets) - V(sc_comp.sls_packets));
if (vflag)
(void)printf(" %6u %6u",
1993-11-16 07:16:46 +03:00
V(sc_comp.sls_searches),
V(sc_comp.sls_misses));
(void)putchar('\n');
1993-11-16 07:16:46 +03:00
fflush(stdout);
line++;
oldmask = sigblock(sigmask(SIGALRM));
if (!signalled)
1993-11-16 07:16:46 +03:00
sigpause(0);
sigsetmask(oldmask);
signalled = 0;
(void)alarm(interval);
1997-10-18 15:38:26 +04:00
memmove((char *)osc, (char *)sc, AMT);
1993-11-16 07:16:46 +03:00
}
}
/*
* Called if an interval expires before sidewaysintpr has completed a loop.
* Sets a flag to not wait for the alarm.
*/
void
1997-10-17 17:36:36 +04:00
catchalarm(dummy)
int dummy;
1993-11-16 07:16:46 +03:00
{
1993-11-16 07:16:46 +03:00
signalled = 1;
}