Let capinfos print statistics for more than one file. Normalize
[obnox/wireshark/wip.git] / capinfos.c
1 /* capinfos.c
2  * Reports capture file information including # of packets, duration, others
3  *
4  * Copyright 2004 Ian Schorr
5  *
6  * $Id$
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <glib.h>
34 #include <string.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 #ifdef HAVE_SYS_TIME_H
41 #include <sys/time.h>
42 #endif
43
44 #include <string.h>
45 #include <epan/packet.h>
46 #include "wtap.h"
47
48 #ifdef NEED_GETOPT_H
49 #include "getopt.h"
50 #endif
51
52 #ifdef HAVE_SYS_STAT_H
53 #include <sys/stat.h>
54 #endif
55
56
57 static gboolean cap_file_type = FALSE;      /* Do not report capture type     */
58 static gboolean cap_packet_count = FALSE;   /* Do not produce packet count    */
59 static gboolean cap_file_size = FALSE;      /* Do not report file size        */
60 static gboolean cap_data_size = FALSE;      /* Do not report packet byte size */
61 static gboolean cap_duration = FALSE;       /* Do not report capture duration */
62 static gboolean cap_start_time = FALSE;
63 static gboolean cap_end_time = FALSE;
64
65 static gboolean cap_data_rate_byte = FALSE;
66 static gboolean cap_data_rate_bit = FALSE;
67 static gboolean cap_packet_size = FALSE;
68
69
70 typedef struct _capture_info {
71         const char              *filename;
72         guint16                 file_type;
73         guint64                 filesize;
74         guint64                 packet_bytes;
75         double                  start_time;
76         double                  stop_time;
77         guint32                 packet_count;
78         gboolean                snap_set;
79         guint32                 snaplen;
80         gboolean                drops_known;
81         guint32                 drop_count;
82         
83         double                  duration;
84         double                  packet_rate;
85         double                  packet_size;
86         double                  data_rate;              /* in bytes */
87 } capture_info;
88
89 static double
90 secs_usecs(guint32 s, guint32 us)
91 {
92   return (us / 1000000.0) + (double)s;
93 }
94
95 static void
96 print_stats(capture_info *cf_info)
97 {
98   const gchar           *file_type_string;
99   time_t                start_time_t;
100   time_t                stop_time_t;
101
102   /* Build printable strings for various stats */
103   file_type_string = wtap_file_type_string(cf_info->file_type);
104   start_time_t = (time_t)cf_info->start_time;
105   stop_time_t = (time_t)cf_info->stop_time;
106
107   if (cap_file_type) printf("File type: %s\n", file_type_string);
108   if (cap_packet_count) printf("Number of packets: %u \n", cf_info->packet_count);
109   if (cap_file_size) printf("File size: %" PRIu64 " bytes\n", cf_info->filesize);
110   if (cap_data_size) printf("Data size: %" PRIu64 " bytes\n", cf_info->packet_bytes);
111   if (cap_duration) printf("Capture duration: %f seconds\n", cf_info->duration);
112   if (cap_start_time) printf("Start time: %s", ctime (&start_time_t));
113   if (cap_end_time) printf("End time: %s", ctime (&stop_time_t));
114   if (cap_data_rate_byte) printf("Data rate: %.2f bytes/s\n", cf_info->data_rate);
115   if (cap_data_rate_bit) printf("Data rate: %.2f bits/s\n", cf_info->data_rate*8);
116   if (cap_packet_size) printf("Average packet size: %.2f bytes\n", cf_info->packet_size);
117 }
118
119 static int 
120 process_cap_file(wtap *wth)
121 {
122   int                   err;
123   gchar                 *err_info;
124   struct stat   cf_stat;
125   long                  data_offset;
126   
127   guint32               packet = 0;
128   gint64                bytes = 0;
129   const struct wtap_pkthdr *phdr;
130   capture_info  cf_info;
131   double                start_time = 0;
132   double                stop_time = 0;
133   double                cur_time = 0;
134   
135   /* Tally up data that we need to parse through the file to find */
136   while (wtap_read(wth, &err, &err_info, &data_offset))  {
137     phdr = wtap_phdr(wth);
138     cur_time = secs_usecs(phdr->ts.tv_sec, phdr->ts.tv_usec);
139     if(packet==0) {
140       start_time = cur_time;
141       stop_time = cur_time;
142     }
143     if (cur_time < start_time) {
144       start_time = cur_time;
145     }
146     if (cur_time > stop_time) {
147       stop_time = cur_time;
148     }
149     bytes+=phdr->len;
150     packet++;
151   }
152   
153   if (err != 0) {
154     fprintf(stderr, "Error after reading %i packets\n", packet);
155     exit(1);
156   }
157
158   /* File size */
159   if (fstat(wtap_fd(wth), &cf_stat) < 0) {
160     wtap_close(wth);
161     return 1;
162   }
163   
164   cf_info.filesize = cf_stat.st_size;
165   
166   /* File Type */
167   cf_info.file_type = wtap_file_type(wth);
168   
169   /* # of packets */
170   cf_info.packet_count = packet;
171   
172   /* File Times */
173   cf_info.start_time = start_time;
174   cf_info.stop_time = stop_time;
175   cf_info.duration = stop_time-start_time;
176
177   /* Number of packet bytes */
178   cf_info.packet_bytes = bytes;
179   
180   /* Data rate per second */
181   cf_info.data_rate = (double)bytes / (stop_time-start_time);
182   
183   /* Avg packet size */
184   cf_info.packet_size = (double)bytes/packet;
185   
186   print_stats(&cf_info);
187
188 return 0;
189 }
190
191 static void usage(gboolean is_error)
192 {
193   FILE *output;
194   
195   if (!is_error) {
196     output = stdout;
197     /* XXX - add capinfos header info here */
198   }
199   else {
200     output = stderr;
201   }
202
203
204   fprintf(output, "Usage: capinfos [-t] [-c] [-s] [-d] [-u] [-a] [-e] [-y]\n");
205   fprintf(output, "                [-i] [-z] [-h] <capfile>\n");
206   fprintf(output, "  where\t-t display the capture type of <capfile>\n");
207   fprintf(output, "       \t-c count the number of packets\n");
208   fprintf(output, "       \t-s display the size of the file \n");
209   fprintf(output, "       \t-d display the total length of all packets in the file\n");
210   fprintf(output, "       \t   (in bytes)\n");
211   fprintf(output, "       \t-u display the capture duration (in seconds) \n");
212   fprintf(output, "       \t-a display the capture start time\n");
213   fprintf(output, "       \t-e display the capture end time\n");
214   fprintf(output, "       \t-y display average data rate (in bytes)\n");
215   fprintf(output, "       \t-i display average data rate (in bits)\n");
216   fprintf(output, "       \t-z display average packet size (in bytes)\n");
217   fprintf(output, "       \t-h produces this help listing.\n");
218   fprintf(output, "\n      \t    If no data flags are given, default is to display all statistics\n");
219 }
220
221 int main(int argc, char *argv[])
222 {
223   wtap *wth;
224   int err;
225   gchar *err_info;
226   extern char *optarg;
227   extern int optind;
228   int opt;
229   int status = 0;
230
231   /* Process the options first */
232
233   while ((opt = getopt(argc, argv, "tcsduaeyizvh")) !=-1) {
234
235     switch (opt) {
236
237     case 't':
238       cap_file_type = TRUE;
239       break;
240
241     case 'c':
242       cap_packet_count = TRUE;
243       break;
244
245     case 's':
246       cap_file_size = TRUE;
247       break;
248
249     case 'd':
250       cap_data_size = TRUE;
251       break;
252
253     case 'u':
254       cap_duration = TRUE;
255       break;
256
257     case 'a':
258       cap_start_time = TRUE;
259       break;
260
261     case 'e':
262       cap_end_time = TRUE;
263       break;
264
265     case 'y':
266       cap_data_rate_byte = TRUE;
267       break;
268
269     case 'i':
270       cap_data_rate_bit = TRUE;
271       break;
272
273     case 'z':
274       cap_packet_size = TRUE;
275       break;
276
277     case 'h':
278       usage(FALSE);
279       exit(1);
280       break;
281
282     case '?':              /* Bad flag - print usage message */
283       usage(TRUE);
284       exit(1);
285       break;
286     }
287   }
288
289   if (optind < 2) {
290
291     /* If no arguments were given, by default display all statistics */
292     cap_file_type = TRUE;      
293     cap_packet_count = TRUE;   
294     cap_file_size = TRUE;      
295     cap_data_size = TRUE;      
296     cap_duration = TRUE;       
297     cap_start_time = TRUE;
298     cap_end_time = TRUE;
299
300     cap_data_rate_byte = TRUE;
301     cap_data_rate_bit = TRUE;
302     cap_packet_size = TRUE;
303   }
304   
305   if ((argc - optind) < 1) {
306     usage(TRUE);
307     exit(1);
308   }
309
310   for (opt = optind; opt < argc; opt++) {
311   
312     wth = wtap_open_offline(argv[opt], &err, &err_info, FALSE);
313
314     if (!wth) {
315       fprintf(stderr, "capinfos: Can't open %s: %s\n", argv[opt],
316         wtap_strerror(err));
317       switch (err) {
318
319       case WTAP_ERR_UNSUPPORTED:
320       case WTAP_ERR_UNSUPPORTED_ENCAP:
321       case WTAP_ERR_BAD_RECORD:
322         fprintf(stderr, "(%s)\n", err_info);
323         g_free(err_info);
324         break;
325       }
326       exit(1);
327     }
328
329     if (opt > optind)
330       printf("\n");
331     printf("File name: %s\n", argv[opt]);
332     status = process_cap_file(wth);
333   
334     wtap_close(wth);
335     if (status)
336       exit(status);
337   }
338   return 0;
339 }
340