X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppdump%2Fpppdump.c;h=95e692c8774af4513747d7f7ae0f22810b5db6fe;hb=620a979242257664405b8139611502c4e7a7e25e;hp=49b1626da751cca950bed08e982194f6889feb15;hpb=1f32921b4018b34f7b05b2302f5946f58f48df61;p=ppp.git diff --git a/pppdump/pppdump.c b/pppdump/pppdump.c index 49b1626..95e692c 100644 --- a/pppdump/pppdump.c +++ b/pppdump/pppdump.c @@ -2,15 +2,41 @@ * pppdump - print out the contents of a record file generated by * pppd in readable form. * - * Copyright (C) 1999 Paul Mackerras. All rights reserved. + * Copyright (c) 1999 Paul Mackerras. All rights reserved. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version - * 2 of the License, or (at your option) any later version. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. The name(s) of the authors of this software must not be used to + * endorse or promote products derived from this software without + * prior written permission. + * + * 4. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by Paul Mackerras + * ". + * + * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO + * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY + * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN + * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include +#include +#include #include #include "ppp_defs.h" #include "ppp-comp.h" @@ -20,10 +46,20 @@ int pppmode; int reverse; int decompress; int mru = 1500; +int abs_times; +time_t start_time; +int start_time_tenths; +int tot_sent, tot_rcvd; extern int optind; extern char *optarg; +void dumplog(); +void dumpppp(); +void show_time(); +void handle_ccp(); + +int main(ac, av) int ac; char **av; @@ -32,7 +68,7 @@ main(ac, av) char *p; FILE *f; - while ((i = getopt(ac, av, "hprdm:")) != -1) { + while ((i = getopt(ac, av, "hprdm:a")) != -1) { switch (i) { case 'h': hexmode = 1; @@ -49,8 +85,11 @@ main(ac, av) case 'm': mru = atoi(optarg); break; + case 'a': + abs_times = 1; + break; default: - fprintf(stderr, "Usage: %s [-h | -p[d]] [-r] [-m mru] [file ...]\n", av[0]); + fprintf(stderr, "Usage: %s [-h | -p[d]] [-r] [-m mru] [-a] [file ...]\n", av[0]); exit(1); } } @@ -73,14 +112,13 @@ main(ac, av) exit(0); } - +void dumplog(f) FILE *f; { int c, n, k, col; int nb, c2; unsigned char buf[16]; - time_t t; while ((c = getc(f)) != EOF) { switch (c) { @@ -92,6 +130,7 @@ dumplog(f) col = 6; n = getc(f); n = (n << 8) + getc(f); + *(c==1? &tot_sent: &tot_rcvd) += n; nb = 0; for (; n > 0; --n) { c = getc(f); @@ -148,19 +187,8 @@ dumplog(f) break; case 5: case 6: - n = getc(f); - if (c == 5) { - for (c = 3; c > 0; --c) - n = (n << 8) + getc(f); - } - printf("time %.1fs\n", (double) n / 10); - break; case 7: - t = getc(f); - t = (t << 8) + getc(f); - t = (t << 8) + getc(f); - t = (t << 8) + getc(f); - printf("start %s", ctime(&t)); + show_time(f, c); break; default: printf("?%.2x\n"); @@ -224,6 +252,7 @@ struct pkt { unsigned char dbuf[8192]; +void dumpppp(f) FILE *f; { @@ -234,7 +263,6 @@ dumpppp(f) unsigned char *d; unsigned short fcs; struct pkt *pkt; - time_t t; spkt.cnt = rpkt.cnt = 0; spkt.esc = rpkt.esc = 0; @@ -248,6 +276,7 @@ dumpppp(f) pkt = c==1? &spkt: &rpkt; n = getc(f); n = (n << 8) + getc(f); + *(c==1? &tot_sent: &tot_rcvd) += n; for (; n > 0; --n) { c = getc(f); switch (c) { @@ -388,19 +417,8 @@ dumpppp(f) break; case 5: case 6: - n = getc(f); - if (c == 5) { - for (c = 3; c > 0; --c) - n = (n << 8) + getc(f); - } - printf("time %.1fs\n", (double) n / 10); - break; case 7: - t = getc(f); - t = (t << 8) + getc(f); - t = (t << 8) + getc(f); - t = (t << 8) + getc(f); - printf("start %s", ctime(&t)); + show_time(f, c); break; default: printf("?%.2x\n"); @@ -420,6 +438,7 @@ struct compressor *compressors[] = { NULL }; +void handle_ccp(cp, dp, len) struct pkt *cp; u_char *dp; @@ -475,3 +494,40 @@ handle_ccp(cp, dp, len) break; } } + +void +show_time(f, c) + FILE *f; + int c; +{ + time_t t; + int n; + struct tm *tm; + + if (c == 7) { + t = getc(f); + t = (t << 8) + getc(f); + t = (t << 8) + getc(f); + t = (t << 8) + getc(f); + printf("start %s", ctime(&t)); + start_time = t; + start_time_tenths = 0; + tot_sent = tot_rcvd = 0; + } else { + n = getc(f); + if (c == 5) { + for (c = 3; c > 0; --c) + n = (n << 8) + getc(f); + } + if (abs_times) { + n += start_time_tenths; + start_time += n / 10; + start_time_tenths = n % 10; + tm = localtime(&start_time); + printf("time %.2d:%.2d:%.2d.%d", tm->tm_hour, tm->tm_min, + tm->tm_sec, start_time_tenths); + printf(" (sent %d, rcvd %d)\n", tot_sent, tot_rcvd); + } else + printf("time %.1fs\n", (double) n / 10); + } +}