1 | /* |
---|
2 | * This file is part of libtrace |
---|
3 | * |
---|
4 | * Copyright (c) 2004 The University of Waikato, Hamilton, New Zealand. |
---|
5 | * Authors: Daniel Lawson |
---|
6 | * Perry Lorier |
---|
7 | * |
---|
8 | * All rights reserved. |
---|
9 | * |
---|
10 | * This code has been developed by the University of Waikato WAND |
---|
11 | * research group. For further information please see http://www.wand.net.nz/ |
---|
12 | * |
---|
13 | * libtrace is free software; you can redistribute it and/or modify |
---|
14 | * it under the terms of the GNU General Public License as published by |
---|
15 | * the Free Software Foundation; either version 2 of the License, or |
---|
16 | * (at your option) any later version. |
---|
17 | * |
---|
18 | * libtrace is distributed in the hope that it will be useful, |
---|
19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
21 | * GNU General Public License for more details. |
---|
22 | * |
---|
23 | * You should have received a copy of the GNU General Public License |
---|
24 | * along with libtrace; if not, write to the Free Software |
---|
25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
26 | * |
---|
27 | * $Id$ |
---|
28 | * |
---|
29 | */ |
---|
30 | |
---|
31 | // |
---|
32 | // This program takes a series of traces and bpf filters and outputs how many |
---|
33 | // bytes/packets |
---|
34 | |
---|
35 | #include <stdio.h> |
---|
36 | #include <stdlib.h> |
---|
37 | #include <assert.h> |
---|
38 | #include <string.h> |
---|
39 | #include <sys/time.h> |
---|
40 | #include <sys/types.h> |
---|
41 | #include <time.h> |
---|
42 | |
---|
43 | #include <netinet/in.h> |
---|
44 | #include <netinet/in_systm.h> |
---|
45 | #include <netinet/tcp.h> |
---|
46 | #include <netinet/ip.h> |
---|
47 | #include <netinet/ip_icmp.h> |
---|
48 | #include <arpa/inet.h> |
---|
49 | #include <sys/socket.h> |
---|
50 | #include <getopt.h> |
---|
51 | #include <inttypes.h> |
---|
52 | #include "lt_inttypes.h" |
---|
53 | |
---|
54 | #include "libtrace.h" |
---|
55 | #include "tracereport.h" |
---|
56 | #include "report.h" |
---|
57 | |
---|
58 | struct libtrace_t *trace; |
---|
59 | |
---|
60 | /* Process a trace, counting packets that match filter(s) */ |
---|
61 | void run_trace(char *uri) |
---|
62 | { |
---|
63 | struct libtrace_packet_t *packet = trace_packet_create(); |
---|
64 | |
---|
65 | fprintf(stderr,"%s:\n",uri); |
---|
66 | |
---|
67 | trace = trace_create(uri); |
---|
68 | |
---|
69 | for (;;) { |
---|
70 | int psize; |
---|
71 | if ((psize = trace_read_packet(trace, packet)) <1) { |
---|
72 | break; |
---|
73 | } |
---|
74 | |
---|
75 | error_per_packet(packet); |
---|
76 | port_per_packet(packet); |
---|
77 | protocol_per_packet(packet); |
---|
78 | tos_per_packet(packet); |
---|
79 | ttl_per_packet(packet); |
---|
80 | flow_per_packet(packet); |
---|
81 | dir_per_packet(packet); |
---|
82 | |
---|
83 | } |
---|
84 | |
---|
85 | trace_destroy(trace); |
---|
86 | } |
---|
87 | |
---|
88 | void usage(char *argv0) |
---|
89 | { |
---|
90 | fprintf(stderr,"Usage: %s [--filter|-f bpf ]... libtraceuri...\n",argv0); |
---|
91 | } |
---|
92 | |
---|
93 | int main(int argc, char *argv[]) { |
---|
94 | |
---|
95 | int i; |
---|
96 | |
---|
97 | |
---|
98 | for(i=1;i<argc;++i) { |
---|
99 | run_trace(argv[i]); |
---|
100 | } |
---|
101 | |
---|
102 | error_report(); |
---|
103 | flow_report(); |
---|
104 | tos_report(); |
---|
105 | protocol_report(); |
---|
106 | port_report(); |
---|
107 | ttl_report(); |
---|
108 | dir_report(); |
---|
109 | |
---|
110 | |
---|
111 | return 0; |
---|
112 | } |
---|