230 lines
5.1 KiB
C
230 lines
5.1 KiB
C
/*
|
|
* print PPP statistics:
|
|
* pppstats [-i interval] [-v] [interface] [system] [core]
|
|
*
|
|
* Brad Parker (brad@cayman.com) 6/92
|
|
*
|
|
* from the original "slstats" by Van Jacobson
|
|
*
|
|
* Copyright (c) 1989 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@helios.ee.lbl.gov), Dec 31, 1989:
|
|
* - Initial distribution.
|
|
*/
|
|
|
|
#ifndef lint
|
|
static char rcsid[] = "$Id: pppstats.c,v 1.7 1994/05/14 19:00:35 cgd Exp $";
|
|
#endif
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <nlist.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <kvm.h>
|
|
#include <paths.h>
|
|
#include <sys/param.h>
|
|
#include <sys/mbuf.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/file.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/in_systm.h>
|
|
#include <netinet/ip.h>
|
|
#include <netinet/ip_var.h>
|
|
|
|
#define VJC 1
|
|
#include <net/slcompress.h>
|
|
#include <net/if_ppp.h>
|
|
|
|
char *kmemf;
|
|
kvm_t *kd;
|
|
|
|
struct nlist nl[] = {
|
|
#define N_SOFTC 0
|
|
{ "_ppp_softc" },
|
|
"",
|
|
};
|
|
|
|
char *system = _PATH_UNIX;
|
|
|
|
int kflag;
|
|
int vflag;
|
|
unsigned interval = 5;
|
|
int unit;
|
|
|
|
extern char *malloc();
|
|
|
|
main(argc, argv)
|
|
int argc;
|
|
char *argv[];
|
|
{
|
|
--argc; ++argv;
|
|
while (argc > 0) {
|
|
if (strcmp(argv[0], "-v") == 0) {
|
|
++vflag;
|
|
++argv, --argc;
|
|
continue;
|
|
}
|
|
if (strcmp(argv[0], "-i") == 0 && argv[1] &&
|
|
isdigit(argv[1][0])) {
|
|
interval = atoi(argv[1]);
|
|
if (interval <= 0)
|
|
usage();
|
|
++argv, --argc;
|
|
++argv, --argc;
|
|
continue;
|
|
}
|
|
if (isdigit(argv[0][0])) {
|
|
unit = atoi(argv[0]);
|
|
if (unit < 0)
|
|
usage();
|
|
++argv, --argc;
|
|
continue;
|
|
}
|
|
if (kflag)
|
|
usage();
|
|
|
|
system = *argv;
|
|
++argv, --argc;
|
|
if (argc > 0) {
|
|
kmemf = *argv++;
|
|
--argc;
|
|
kflag++;
|
|
}
|
|
}
|
|
/* BSD4.3+ */
|
|
kd = kvm_open(system, kmemf, (char *)0, O_RDONLY, "pppstats");
|
|
if (kd == NULL)
|
|
exit(1);
|
|
|
|
if (kvm_nlist(kd, nl)) {
|
|
fprintf(stderr, "pppstats: can't find symbols in nlist\n");
|
|
exit(1);
|
|
}
|
|
intpr();
|
|
exit(0);
|
|
}
|
|
|
|
usage()
|
|
{
|
|
fprintf(stderr,"usage: pppstats [-i interval] [-v] [unit] [system] [core]\n");
|
|
exit(1);
|
|
}
|
|
|
|
u_char signalled; /* set if alarm goes off "early" */
|
|
|
|
#define V(offset) ((line % 20)? sc->offset - osc->offset : sc->offset)
|
|
|
|
#define STRUCT struct ppp_softc
|
|
#define COMP sc_comp
|
|
#define STATS sc_if
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
intpr()
|
|
{
|
|
register int line = 0;
|
|
int oldmask;
|
|
#ifdef __STDC__
|
|
void catchalarm(int);
|
|
#else
|
|
void catchalarm();
|
|
#endif
|
|
|
|
STRUCT *sc, *osc;
|
|
|
|
nl[N_SOFTC].n_value += unit * sizeof(STRUCT);
|
|
sc = (STRUCT *)malloc(sizeof(STRUCT));
|
|
osc = (STRUCT *)malloc(sizeof(STRUCT));
|
|
|
|
bzero((char *)osc, sizeof(STRUCT));
|
|
|
|
while (1) {
|
|
if (kvm_read(kd, nl[N_SOFTC].n_value, sc,
|
|
sizeof(STRUCT)) != sizeof(STRUCT)) {
|
|
perror("kvm_read");
|
|
exit(1);
|
|
}
|
|
|
|
(void)signal(SIGALRM, catchalarm);
|
|
signalled = 0;
|
|
(void)alarm(interval);
|
|
|
|
if ((line % 20) == 0) {
|
|
printf("%6.6s %6.6s %6.6s %6.6s %6.6s",
|
|
"in", "pack", "comp", "uncomp", "err");
|
|
if (vflag)
|
|
printf(" %6.6s %6.6s", "toss", "ip");
|
|
printf(" | %6.6s %6.6s %6.6s %6.6s %6.6s",
|
|
"out", "pack", "comp", "uncomp", "ip");
|
|
if (vflag)
|
|
printf(" %6.6s %6.6s", "search", "miss");
|
|
putchar('\n');
|
|
}
|
|
|
|
printf("%6d %6d %6d %6d %6d",
|
|
V(STATS.if_ibytes),
|
|
V(STATS.if_ipackets),
|
|
V(COMP.sls_compressedin),
|
|
V(COMP.sls_uncompressedin),
|
|
V(COMP.sls_errorin));
|
|
if (vflag)
|
|
printf(" %6d %6d",
|
|
V(COMP.sls_tossed),
|
|
V(STATS.if_ipackets) - V(COMP.sls_compressedin) -
|
|
V(COMP.sls_uncompressedin) - V(COMP.sls_errorin));
|
|
printf(" | %6d %6d %6d %6d %6d",
|
|
V(STATS.if_obytes),
|
|
V(STATS.if_opackets),
|
|
V(COMP.sls_compressed),
|
|
V(COMP.sls_packets) - V(COMP.sls_compressed),
|
|
V(STATS.if_opackets) - V(COMP.sls_packets));
|
|
if (vflag)
|
|
printf(" %6d %6d",
|
|
V(COMP.sls_searches),
|
|
V(COMP.sls_misses));
|
|
|
|
putchar('\n');
|
|
fflush(stdout);
|
|
line++;
|
|
|
|
oldmask = sigblock(sigmask(SIGALRM));
|
|
if (! signalled) {
|
|
sigpause(0);
|
|
}
|
|
sigsetmask(oldmask);
|
|
signalled = 0;
|
|
(void)alarm(interval);
|
|
bcopy((char *)sc, (char *)osc, sizeof(STRUCT));
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Called if an interval expires before sidewaysintpr has completed a loop.
|
|
* Sets a flag to not wait for the alarm.
|
|
*/
|
|
void catchalarm(arg)
|
|
int arg;
|
|
{
|
|
signalled = 1;
|
|
}
|