freebsd-dev/usr.sbin/pppstats/pppstats.c

520 lines
12 KiB
C
Raw Normal View History

1994-11-12 06:07:15 +00:00
/*
* print PPP statistics:
1997-08-22 15:39:04 +00:00
* pppstats [-a|-d] [-v|-r|-z] [-c count] [-w wait] [interface]
*
1997-08-22 15:39:04 +00:00
* -a Show absolute values rather than deltas
* -d Show data rate (kB/s) rather than bytes
* -v Show more stats for VJ TCP header compression
* -r Show compression ratio
* -z Show compression statistics instead of default display
*
* History:
* perkins@cps.msu.edu: Added compression statistics and alternate
* display. 11/94
1994-11-12 06:07:15 +00:00
* Brad Parker (brad@cayman.com) 6/92
*
1997-08-22 15:39:04 +00:00
* from the original "slstats" by Van Jacobson
1994-11-12 06:07:15 +00:00
*
* 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.
*/
#ifndef lint
1999-08-28 01:35:59 +00:00
static char rcsid[] = "$FreeBSD$";
1994-11-12 06:07:15 +00:00
#endif
1997-08-22 15:39:04 +00:00
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
1994-11-12 06:07:15 +00:00
#include <ctype.h>
#include <errno.h>
#include <signal.h>
#include <fcntl.h>
1997-08-22 15:39:04 +00:00
#include <unistd.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <net/ppp_defs.h>
1997-08-22 15:39:04 +00:00
#ifndef STREAMS
#include <sys/socket.h> /* *BSD, Linux, NeXT, Ultrix etc. */
1994-11-12 06:07:15 +00:00
#include <net/if.h>
1997-08-22 15:39:04 +00:00
#include <net/if_ppp.h>
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
#else /* STREAMS */
#include <sys/stropts.h> /* SVR4, Solaris 2, SunOS 4, OSF/1, etc. */
#include <net/pppio.h>
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
#endif /* STREAMS */
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
int vflag, rflag, zflag; /* select type of display */
int aflag; /* print absolute values, not deltas */
int dflag; /* print data rates, not bytes */
int interval, count;
int infinite;
1994-11-12 06:07:15 +00:00
int unit;
1997-08-22 15:39:04 +00:00
int s; /* socket or /dev/ppp file descriptor */
int signalled; /* set if alarm goes off "early" */
1997-08-22 15:39:04 +00:00
char *progname;
char *interface;
#if defined(SUNOS4) || defined(ULTRIX) || defined(NeXT)
extern int optind;
extern char *optarg;
#endif
1994-11-12 06:07:15 +00:00
2007-11-07 10:53:41 +00:00
static void usage(void);
static void catchalarm(int);
static void get_ppp_stats(struct ppp_stats *);
static void get_ppp_cstats(struct ppp_comp_stats *);
static void intpr(void);
1994-11-12 06:07:15 +00:00
2007-11-07 10:53:41 +00:00
int main(int, char *argv[]);
1997-08-22 15:39:04 +00:00
static void
usage()
1994-11-12 06:07:15 +00:00
{
fprintf(stderr, "usage: %s [-a|-d] [-v|-r|-z] [-c count] [-w wait] [interface]\n",
1997-08-22 15:39:04 +00:00
progname);
exit(1);
}
/*
* Called if an interval expires before intpr has completed a loop.
* Sets a flag to not wait for the alarm.
*/
static void
catchalarm(arg)
int arg;
{
signalled = 1;
}
#ifndef STREAMS
static void
get_ppp_stats(curp)
struct ppp_stats *curp;
{
struct ifpppstatsreq req;
memset (&req, 0, sizeof (req));
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
#ifdef _linux_
req.stats_ptr = (caddr_t) &req.stats;
#undef ifr_name
#define ifr_name ifr__name
#endif
strncpy(req.ifr_name, interface, sizeof(req.ifr_name));
if (ioctl(s, SIOCGPPPSTATS, &req) < 0) {
fprintf(stderr, "%s: ", progname);
if (errno == ENOTTY)
fprintf(stderr, "kernel support missing\n");
else
perror("couldn't get PPP statistics");
exit(1);
}
1997-08-22 15:39:04 +00:00
*curp = req.stats;
}
static void
get_ppp_cstats(csp)
struct ppp_comp_stats *csp;
{
struct ifpppcstatsreq creq;
memset (&creq, 0, sizeof (creq));
#ifdef _linux_
creq.stats_ptr = (caddr_t) &creq.stats;
#undef ifr_name
#define ifr_name ifr__name
#endif
strncpy(creq.ifr_name, interface, sizeof(creq.ifr_name));
if (ioctl(s, SIOCGPPPCSTATS, &creq) < 0) {
fprintf(stderr, "%s: ", progname);
if (errno == ENOTTY) {
fprintf(stderr, "no kernel compression support\n");
if (zflag)
exit(1);
rflag = 0;
} else {
perror("couldn't get PPP compression stats");
exit(1);
}
}
1997-08-22 15:39:04 +00:00
#ifdef _linux_
if (creq.stats.c.bytes_out == 0)
creq.stats.c.ratio = 0.0;
else
creq.stats.c.ratio = (double) creq.stats.c.in_count /
(double) creq.stats.c.bytes_out;
if (creq.stats.d.bytes_out == 0)
creq.stats.d.ratio = 0.0;
else
creq.stats.d.ratio = (double) creq.stats.d.in_count /
(double) creq.stats.d.bytes_out;
#endif
*csp = creq.stats;
}
#else /* STREAMS */
int
strioctl(fd, cmd, ptr, ilen, olen)
int fd, cmd, ilen, olen;
char *ptr;
{
struct strioctl str;
str.ic_cmd = cmd;
str.ic_timout = 0;
str.ic_len = ilen;
str.ic_dp = ptr;
if (ioctl(fd, I_STR, &str) == -1)
return -1;
if (str.ic_len != olen)
fprintf(stderr, "strioctl: expected %d bytes, got %d for cmd %x\n",
olen, str.ic_len, cmd);
return 0;
}
static void
get_ppp_stats(curp)
struct ppp_stats *curp;
{
if (strioctl(s, PPPIO_GETSTAT, curp, 0, sizeof(*curp)) < 0) {
fprintf(stderr, "%s: ", progname);
if (errno == EINVAL)
fprintf(stderr, "kernel support missing\n");
else
perror("couldn't get PPP statistics");
exit(1);
}
1994-11-12 06:07:15 +00:00
}
1997-08-22 15:39:04 +00:00
static void
get_ppp_cstats(csp)
struct ppp_comp_stats *csp;
1994-11-12 06:07:15 +00:00
{
1997-08-22 15:39:04 +00:00
if (strioctl(s, PPPIO_GETCSTAT, csp, 0, sizeof(*csp)) < 0) {
fprintf(stderr, "%s: ", progname);
if (errno == ENOTTY) {
fprintf(stderr, "no kernel compression support\n");
if (zflag)
exit(1);
rflag = 0;
} else {
perror("couldn't get PPP compression statistics");
exit(1);
}
}
1994-11-12 06:07:15 +00:00
}
1997-08-22 15:39:04 +00:00
#endif /* STREAMS */
#define MAX0(a) ((int)(a) > 0? (a): 0)
#define V(offset) MAX0(cur.offset - old.offset)
#define W(offset) MAX0(ccs.offset - ocs.offset)
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
#define RATIO(c, i, u) ((c) == 0? 1.0: (u) / ((double)(c) + (i)))
#define CRATE(x) RATIO(W(x.comp_bytes), W(x.inc_bytes), W(x.unc_bytes))
#define KBPS(n) ((n) / (interval * 1000.0))
1994-11-12 06:07:15 +00:00
/*
* Print a running summary of interface statistics.
* Repeat display every interval seconds, showing statistics
* collected over that interval. Assumes that interval is non-zero.
1997-08-22 15:39:04 +00:00
* First line printed is cumulative.
1994-11-12 06:07:15 +00:00
*/
1997-08-22 15:39:04 +00:00
static void
1994-11-12 06:07:15 +00:00
intpr()
{
register int line = 0;
sigset_t oldmask, mask;
1997-08-22 15:39:04 +00:00
char *bunit;
int ratef = 0;
struct ppp_stats cur, old;
struct ppp_comp_stats ccs, ocs;
memset(&old, 0, sizeof(old));
memset(&ocs, 0, sizeof(ocs));
while (1) {
get_ppp_stats(&cur);
1997-08-22 15:39:04 +00:00
if (zflag || rflag)
get_ppp_cstats(&ccs);
(void)signal(SIGALRM, catchalarm);
signalled = 0;
(void)alarm(interval);
1997-08-22 15:39:04 +00:00
if ((line % 20) == 0) {
1997-08-22 15:39:04 +00:00
if (zflag) {
printf("IN: COMPRESSED INCOMPRESSIBLE COMP | ");
printf("OUT: COMPRESSED INCOMPRESSIBLE COMP\n");
bunit = dflag? "KB/S": "BYTE";
printf(" %s PACK %s PACK RATIO | ", bunit, bunit);
printf(" %s PACK %s PACK RATIO", bunit, bunit);
} else {
1997-08-22 15:39:04 +00:00
printf("%8.8s %6.6s %6.6s",
"IN", "PACK", "VJCOMP");
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
if (!rflag)
printf(" %6.6s %6.6s", "VJUNC", "VJERR");
1994-11-12 06:07:15 +00:00
if (vflag)
1997-08-22 15:39:04 +00:00
printf(" %6.6s %6.6s", "VJTOSS", "NON-VJ");
if (rflag)
1997-08-22 15:39:04 +00:00
printf(" %6.6s %6.6s", "RATIO", "UBYTE");
printf(" | %8.8s %6.6s %6.6s",
"OUT", "PACK", "VJCOMP");
if (!rflag)
printf(" %6.6s %6.6s", "VJUNC", "NON-VJ");
1994-11-12 06:07:15 +00:00
if (vflag)
1997-08-22 15:39:04 +00:00
printf(" %6.6s %6.6s", "VJSRCH", "VJMISS");
if (rflag)
printf(" %6.6s %6.6s", "RATIO", "UBYTE");
1994-11-12 06:07:15 +00:00
}
1997-08-22 15:39:04 +00:00
putchar('\n');
}
1997-08-22 15:39:04 +00:00
if (zflag) {
if (ratef) {
printf("%8.3f %6u %8.3f %6u %6.2f",
KBPS(W(d.comp_bytes)),
W(d.comp_packets),
KBPS(W(d.inc_bytes)),
W(d.inc_packets),
ccs.d.ratio / 256.0);
1997-08-22 15:39:04 +00:00
printf(" | %8.3f %6u %8.3f %6u %6.2f",
KBPS(W(c.comp_bytes)),
W(c.comp_packets),
KBPS(W(c.inc_bytes)),
W(c.inc_packets),
ccs.c.ratio / 256.0);
1997-08-22 15:39:04 +00:00
} else {
printf("%8u %6u %8u %6u %6.2f",
W(d.comp_bytes),
W(d.comp_packets),
W(d.inc_bytes),
W(d.inc_packets),
ccs.d.ratio / 256.0);
1997-08-22 15:39:04 +00:00
printf(" | %8u %6u %8u %6u %6.2f",
W(c.comp_bytes),
W(c.comp_packets),
W(c.inc_bytes),
W(c.inc_packets),
ccs.c.ratio / 256.0);
1997-08-22 15:39:04 +00:00
}
} else {
1997-08-22 15:39:04 +00:00
if (ratef)
printf("%8.3f", KBPS(V(p.ppp_ibytes)));
else
printf("%8u", V(p.ppp_ibytes));
printf(" %6u %6u",
V(p.ppp_ipackets),
V(vj.vjs_compressedin));
if (!rflag)
printf(" %6u %6u",
V(vj.vjs_uncompressedin),
V(vj.vjs_errorin));
1994-11-12 06:07:15 +00:00
if (vflag)
1997-08-22 15:39:04 +00:00
printf(" %6u %6u",
V(vj.vjs_tossed),
V(p.ppp_ipackets) - V(vj.vjs_compressedin)
- V(vj.vjs_uncompressedin) - V(vj.vjs_errorin));
if (rflag) {
printf(" %6.2f ", CRATE(d));
if (ratef)
printf("%6.2f", KBPS(W(d.unc_bytes)));
else
printf("%6u", W(d.unc_bytes));
}
if (ratef)
printf(" | %8.3f", KBPS(V(p.ppp_obytes)));
else
printf(" | %8u", V(p.ppp_obytes));
printf(" %6u %6u",
V(p.ppp_opackets),
V(vj.vjs_compressed));
if (!rflag)
printf(" %6u %6u",
V(vj.vjs_packets) - V(vj.vjs_compressed),
V(p.ppp_opackets) - V(vj.vjs_packets));
1994-11-12 06:07:15 +00:00
if (vflag)
1997-08-22 15:39:04 +00:00
printf(" %6u %6u",
V(vj.vjs_searches),
V(vj.vjs_misses));
if (rflag) {
printf(" %6.2f ", CRATE(c));
if (ratef)
printf("%6.2f", KBPS(W(c.unc_bytes)));
else
printf("%6u", W(c.unc_bytes));
}
1994-11-12 06:07:15 +00:00
}
1994-11-12 06:07:15 +00:00
1997-08-22 15:39:04 +00:00
putchar('\n');
fflush(stdout);
line++;
1997-08-22 15:39:04 +00:00
count--;
if (!infinite && !count)
break;
sigemptyset(&mask);
sigaddset(&mask, SIGALRM);
sigprocmask(SIG_BLOCK, &mask, &oldmask);
1997-08-22 15:39:04 +00:00
if (!signalled) {
sigemptyset(&mask);
sigsuspend(&mask);
}
sigprocmask(SIG_SETMASK, &oldmask, NULL);
signalled = 0;
(void)alarm(interval);
1997-08-22 15:39:04 +00:00
if (!aflag) {
old = cur;
ocs = ccs;
1997-08-22 15:39:04 +00:00
ratef = dflag;
1994-11-12 06:07:15 +00:00
}
}
1994-11-12 06:07:15 +00:00
}
1997-08-22 15:39:04 +00:00
int
main(argc, argv)
int argc;
char *argv[];
{
1997-08-22 15:39:04 +00:00
int c;
#ifdef STREAMS
char *dev;
#endif
1997-08-22 15:39:04 +00:00
interface = "ppp0";
if ((progname = strrchr(argv[0], '/')) == NULL)
progname = argv[0];
else
++progname;
1997-08-22 15:39:04 +00:00
while ((c = getopt(argc, argv, "advrzc:w:")) != -1) {
switch (c) {
case 'a':
++aflag;
break;
case 'd':
++dflag;
break;
case 'v':
++vflag;
break;
case 'r':
++rflag;
break;
case 'z':
++zflag;
break;
case 'c':
count = atoi(optarg);
if (count <= 0)
usage();
break;
case 'w':
interval = atoi(optarg);
if (interval <= 0)
usage();
break;
default:
usage();
}
}
argc -= optind;
argv += optind;
if (!interval && count)
interval = 5;
if (interval && !count)
infinite = 1;
if (!interval && !count)
count = 1;
if (aflag)
dflag = 0;
if (argc > 1)
usage();
if (argc > 0)
interface = argv[0];
1997-08-22 15:39:04 +00:00
if (sscanf(interface, "ppp%d", &unit) != 1) {
fprintf(stderr, "%s: invalid interface '%s' specified\n",
progname, interface);
}
1997-08-22 15:39:04 +00:00
#ifndef STREAMS
{
struct ifreq ifr;
1997-08-22 15:39:04 +00:00
s = socket(AF_INET, SOCK_DGRAM, 0);
if (s < 0) {
fprintf(stderr, "%s: ", progname);
perror("couldn't create IP socket");
exit(1);
}
#ifdef _linux_
#undef ifr_name
1997-08-22 15:39:04 +00:00
#define ifr_name ifr_ifrn.ifrn_name
#endif
1997-08-22 15:39:04 +00:00
strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name));
if (ioctl(s, SIOCGIFFLAGS, (caddr_t)&ifr) < 0) {
fprintf(stderr, "%s: nonexistent interface '%s' specified\n",
progname, interface);
exit(1);
}
}
1997-08-22 15:39:04 +00:00
#else /* STREAMS */
#ifdef __osf__
dev = "/dev/streams/ppp";
#else
dev = "/dev/ppp";
#endif
if ((s = open(dev, O_RDONLY)) < 0) {
fprintf(stderr, "%s: couldn't open ", progname);
perror(dev);
exit(1);
}
1997-08-22 15:39:04 +00:00
if (strioctl(s, PPPIO_ATTACH, &unit, sizeof(int), 0) < 0) {
fprintf(stderr, "%s: ppp%d is not available\n", progname, unit);
exit(1);
}
1997-08-22 15:39:04 +00:00
#endif /* STREAMS */
1997-08-22 15:39:04 +00:00
intpr();
exit(0);
1994-11-12 06:07:15 +00:00
}