Fix whitespace/indentation to match editor modelines.
[metze/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  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 /*
26  * 2009-09-19: jyoung
27  *
28  * New capinfos features
29  *
30  * Continue processing additional files after
31  * a wiretap open failure.  The new -C option
32  * reverts to capinfos' original behavior which
33  * is to cancel any further file processing at
34  * first file open failure.
35  *
36  * Change the behavior of how the default display
37  * of all infos is initiated.  This gets rid of a
38  * special post getopt() argument count test.
39  *
40  * Add new table output format (with related options)
41  * This feature allows outputting the various infos
42  * into a tab delimited text file, or to a comma
43  * separated variables file (*.csv) instead of the
44  * original "long" format.
45  *
46  * 2011-04-05: wmeier
47  * behaviour changed: Upon exit capinfos will return
48  *  an error status if an error occurred at any
49  *  point during "continuous" file processing.
50  *  (Previously a success status was always
51  *   returned if the -C option was not used).
52  *
53
54  */
55
56
57 #include "config.h"
58
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <stdarg.h>
63 #include <locale.h>
64 #include <errno.h>
65
66 #ifdef HAVE_UNISTD_H
67 #include <unistd.h>
68 #endif
69
70 #ifdef HAVE_GETOPT_H
71 #include <getopt.h>
72 #endif
73
74 #ifdef HAVE_SYS_TIME_H
75 #include <sys/time.h>
76 #endif
77
78 #include <glib.h>
79
80 #ifdef HAVE_LIBZ
81 #include <zlib.h>     /* to get the libz version number */
82 #endif
83
84 #include <wsutil/privileges.h>
85 #include <wsutil/filesystem.h>
86 #include <wsutil/crash_info.h>
87 #include <wsutil/copyright_info.h>
88 #include <wsutil/os_version_info.h>
89 #include <wsutil/ws_version_info.h>
90
91 #ifdef HAVE_PLUGINS
92 #include <wsutil/plugins.h>
93 #endif
94
95 #include "wtap.h"
96 #include <wsutil/report_err.h>
97 #include <wsutil/str_util.h>
98 #include <wsutil/file_util.h>
99
100 #ifdef HAVE_LIBGCRYPT
101 #include <wsutil/wsgcrypt.h>
102 #endif
103
104 #ifndef HAVE_GETOPT
105 #include "wsutil/wsgetopt.h"
106 #endif
107
108 #ifdef _WIN32
109 #include <wsutil/unicode-utils.h>
110 #endif /* _WIN32 */
111
112 #include "version_info.h"
113
114 /*
115  * By default capinfos now continues processing
116  * the next filename if and when wiretap detects
117  * a problem opening a file.
118  * Use the '-C' option to revert back to original
119  * capinfos behavior which is to abort any
120  * additional file processing at first open file
121  * failure.
122  */
123
124 static gboolean continue_after_wtap_open_offline_failure = TRUE;
125
126 /*
127  * table report variables
128  */
129
130 static gboolean long_report        = TRUE;  /* By default generate long report       */
131 static gchar table_report_header   = TRUE;  /* Generate column header by default     */
132 static gchar field_separator       = '\t';  /* Use TAB as field separator by default */
133 static gchar quote_char            = '\0';  /* Do NOT quote fields by default        */
134 static gboolean machine_readable   = FALSE; /* Display machine-readable numbers      */
135
136 /*
137  * capinfos has the ability to report on a number of
138  * various characteristics ("infos") for each input file.
139  *
140  * By default reporting of all info fields is enabled.
141  *
142  * Optionally the reporting of any specific info field
143  * or combination of info fields can be enabled with
144  * individual options.
145  */
146
147 static gboolean report_all_infos   = TRUE;  /* Report all infos           */
148
149 static gboolean cap_file_type      = TRUE;  /* Report capture type        */
150 static gboolean cap_file_encap     = TRUE;  /* Report encapsulation       */
151 static gboolean cap_snaplen        = TRUE;  /* Packet size limit (snaplen)*/
152 static gboolean cap_packet_count   = TRUE;  /* Report packet count        */
153 static gboolean cap_file_size      = TRUE;  /* Report file size           */
154 static gboolean cap_comment        = TRUE;  /* Display the capture comment */
155
156 static gboolean cap_data_size      = TRUE;  /* Report packet byte size    */
157 static gboolean cap_duration       = TRUE;  /* Report capture duration    */
158 static gboolean cap_start_time     = TRUE;  /* Report capture start time  */
159 static gboolean cap_end_time       = TRUE;  /* Report capture end time    */
160 static gboolean time_as_secs       = FALSE; /* Report time values as raw seconds */
161
162 static gboolean cap_data_rate_byte = TRUE;  /* Report data rate bytes/sec */
163 static gboolean cap_data_rate_bit  = TRUE;  /* Report data rate bites/sec */
164 static gboolean cap_packet_size    = TRUE;  /* Report average packet size */
165 static gboolean cap_packet_rate    = TRUE;  /* Report average packet rate */
166 static gboolean cap_order          = TRUE;  /* Report if packets are in chronological order (True/False) */
167
168 #ifdef HAVE_LIBGCRYPT
169 static gboolean cap_file_hashes    = TRUE;  /* Calculate file hashes */
170 #endif
171
172 #ifdef USE_GOPTION
173 static gboolean cap_help     = FALSE;
174 static gboolean table_report = FALSE;
175
176 static GOptionEntry general_entries[] =
177 {
178   /* General */
179   { "type", 't', 0, G_OPTION_ARG_NONE, &cap_file_type,
180     "display the capture file type", NULL },
181   { "Encapsulation", 'E', 0, G_OPTION_ARG_NONE, &cap_file_encap,
182     "display the capture file encapsulation", NULL },
183 #ifdef HAVE_LIBGCRYPT
184   { "Hash", 'H', 0, G_OPTION_ARG_NONE, &cap_file_hashes,
185     "display the SHA1, RMD160, and MD5 hashes of the file", NULL },
186 #endif /* HAVE_LIBGCRYPT */
187   { "capture-comment", 'k', 0, G_OPTION_ARG_NONE, &cap_comment,
188     "display the capture comment ", NULL },
189   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
190 };
191 static GOptionEntry size_entries[] =
192 {
193   /* Size */
194   { "packets", 'c', 0, G_OPTION_ARG_NONE, &cap_packet_count,
195     "display the number of packets", NULL },
196   { "size", 's', 0, G_OPTION_ARG_NONE, &cap_file_size,
197     "display the size of the file (in bytes)", NULL },
198   { "tot-len-of-pkts", 'd', 0, G_OPTION_ARG_NONE, &cap_data_size,
199     "display the total length of all packets (in bytes)", NULL },
200   { "snap", 'l', 0, G_OPTION_ARG_NONE, &cap_snaplen,
201     "display the packet size limit (snapshot length)", NULL },
202   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
203 };
204 static GOptionEntry time_entries[] =
205 {
206   /* Time */
207   { "duration", 'u', 0, G_OPTION_ARG_NONE, &cap_duration,
208     "display the capture duration (in seconds)", NULL },
209   { "start", 'a', 0, G_OPTION_ARG_NONE, &cap_start_time,
210     "display the capture start time", NULL },
211   { "end", 'e', 0, G_OPTION_ARG_NONE, &cap_end_time,
212     "display the capture end time", NULL },
213   { "cron", 'o', 0, G_OPTION_ARG_NONE, &cap_order,
214     "display the capture file chronological status (True/False)", NULL },
215   { "start-end-time-sec", 'S', 0, G_OPTION_ARG_NONE, &time_as_secs,
216     "display start and end times as seconds", NULL },
217   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
218 };
219
220 static GOptionEntry stats_entries[] =
221 {
222   /* Statistics */
223   { "bytes", 'y', 0, G_OPTION_ARG_NONE, &cap_data_rate_byte,
224     "display average data rate (in bytes/s)", NULL },
225   { "bits", 'i', 0, G_OPTION_ARG_NONE, &cap_data_rate_bit,
226     "display average data rate (in bits/s)", NULL },
227   { "packet-bytes", 'z', 0, G_OPTION_ARG_NONE, &cap_packet_size,
228     "display average packet size (in bytes)", NULL },
229   { "packets", 'x', 0, G_OPTION_ARG_NONE, &cap_packet_rate,
230     "display average packet rate (in packets/s)", NULL },
231   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
232 };
233
234 static GOptionEntry output_format_entries[] =
235 {
236   /* Output format */
237   { "long", 'L', 0, G_OPTION_ARG_NONE, &long_report,
238     "generate long report (default)", NULL },
239   { "Table", 'T', 0, G_OPTION_ARG_NONE, &table_report,
240     "generate table report", NULL },
241   { "machine-readable", 'M', 0, G_OPTION_ARG_NONE, &machine_readable,
242     "display machine-readable (unabbreviated) values in long reports", NULL },
243   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
244 };
245
246 static GOptionEntry table_report_entries[] =
247 {
248   /* Table report */
249   { "header-rec", 'R', 0, G_OPTION_ARG_NONE, &table_report_header,
250     "generate header record (default)", NULL },
251   { "no-table", 'r', 0, G_OPTION_ARG_NONE, &table_report_header,
252     "do not generate header record", NULL },
253   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
254 };
255
256 static GOptionEntry misc_entries[] =
257 {
258   { "helpcompat", 'h', 0, G_OPTION_ARG_NONE, &cap_help,
259     "display help", NULL },
260   { NULL,'\0',0,G_OPTION_ARG_NONE,NULL,NULL,NULL }
261 };
262
263 GOptionContext *ctx;
264 GOptionGroup *general_grp, *size_grp, *time_grp, *stats_grp, *output_grp, *table_report_grp;
265 GError *parse_err = NULL;
266
267 #endif /* USE_GOPTION */
268
269 #ifdef HAVE_LIBGCRYPT
270 #define HASH_SIZE_SHA1   20
271 #define HASH_SIZE_RMD160 20
272 #define HASH_SIZE_MD5    16
273
274 #define HASH_STR_SIZE (41) /* Max hash size * 2 + '\0' */
275 #define HASH_BUF_SIZE (1024 * 1024)
276
277
278 static gchar file_sha1[HASH_STR_SIZE];
279 static gchar file_rmd160[HASH_STR_SIZE];
280 static gchar file_md5[HASH_STR_SIZE];
281
282 #define FILE_HASH_OPT "H"
283 #else
284 #define FILE_HASH_OPT ""
285 #endif /* HAVE_LIBGCRYPT */
286
287 /*
288  * If we have at least two packets with time stamps, and they're not in
289  * order - i.e., the later packet has a time stamp older than the earlier
290  * packet - the time stamps are known not to be in order.
291  *
292  * If every packet has a time stamp, and they're all in order, the time
293  * stamp is known to be in order.
294  *
295  * Otherwise, we have no idea.
296  */
297 typedef enum {
298   IN_ORDER,
299   NOT_IN_ORDER,
300   ORDER_UNKNOWN
301 } order_t;
302
303 typedef struct _capture_info {
304   const char    *filename;
305   guint16        file_type;
306   gboolean       iscompressed;
307   int            file_encap;
308   gint64         filesize;
309   gchar         *comment;
310
311   guint64        packet_bytes;
312   gboolean       times_known;
313   double         start_time;
314   double         stop_time;
315   guint32        packet_count;
316   gboolean       snap_set;                /* If set in capture file header      */
317   guint32        snaplen;                 /* value from the capture file header */
318   guint32        snaplen_min_inferred;    /* If caplen < len for 1 or more rcds */
319   guint32        snaplen_max_inferred;    /*  ...                               */
320   gboolean       drops_known;
321   guint32        drop_count;
322
323   double         duration;
324   double         packet_rate;
325   double         packet_size;
326   double         data_rate;              /* in bytes */
327   gboolean       know_order;
328   order_t        order;
329
330   int           *encap_counts;           /* array of per_packet encap counts; array has one entry per wtap_encap type */
331 } capture_info;
332
333
334 static void
335 enable_all_infos(void)
336 {
337   report_all_infos   = TRUE;
338
339   cap_file_type      = TRUE;
340   cap_file_encap     = TRUE;
341   cap_snaplen        = TRUE;
342   cap_packet_count   = TRUE;
343   cap_file_size      = TRUE;
344   cap_comment        = TRUE;
345
346   cap_data_size      = TRUE;
347   cap_duration       = TRUE;
348   cap_start_time     = TRUE;
349   cap_end_time       = TRUE;
350   cap_order          = TRUE;
351
352   cap_data_rate_byte = TRUE;
353   cap_data_rate_bit  = TRUE;
354   cap_packet_size    = TRUE;
355   cap_packet_rate    = TRUE;
356
357 #ifdef HAVE_LIBGCRYPT
358   cap_file_hashes    = TRUE;
359 #endif /* HAVE_LIBGCRYPT */
360 }
361
362 static void
363 disable_all_infos(void)
364 {
365   report_all_infos   = FALSE;
366
367   cap_file_type      = FALSE;
368   cap_file_encap     = FALSE;
369   cap_snaplen        = FALSE;
370   cap_packet_count   = FALSE;
371   cap_file_size      = FALSE;
372   cap_comment        = FALSE;
373
374   cap_data_size      = FALSE;
375   cap_duration       = FALSE;
376   cap_start_time     = FALSE;
377   cap_end_time       = FALSE;
378   cap_order          = FALSE;
379
380   cap_data_rate_byte = FALSE;
381   cap_data_rate_bit  = FALSE;
382   cap_packet_size    = FALSE;
383   cap_packet_rate    = FALSE;
384
385 #ifdef HAVE_LIBGCRYPT
386   cap_file_hashes    = FALSE;
387 #endif /* HAVE_LIBGCRYPT */
388 }
389
390 static const gchar *
391 order_string(order_t order)
392 {
393   switch (order) {
394
395     case IN_ORDER:
396       return "True";
397
398     case NOT_IN_ORDER:
399       return "False";
400
401     case ORDER_UNKNOWN:
402       return "Unknown";
403
404     default:
405       return "???";  /* "cannot happen" (the next step is "Profit!") */
406   }
407 }
408
409 static gchar *
410 time_string(time_t timer, capture_info *cf_info, gboolean want_lf)
411 {
412   const gchar  *lf = want_lf ? "\n" : "";
413   static gchar  time_string_buf[20];
414   char         *time_string_ctime;
415
416   if (cf_info->times_known && cf_info->packet_count > 0) {
417     if (time_as_secs) {
418       /* XXX - Would it be useful to show sub-second precision? */
419       g_snprintf(time_string_buf, 20, "%lu%s", (unsigned long)timer, lf);
420       return time_string_buf;
421     } else {
422       time_string_ctime = ctime(&timer);
423       if (time_string_ctime == NULL) {
424         g_snprintf(time_string_buf, 20, "Not representable%s", lf);
425         return time_string_buf;
426       }
427       if (!want_lf) {
428         /*
429          * The ctime() function returns a string formatted as:
430          *   "Www Mmm dd hh:mm:ss yyyy\n"
431          * The unwanted '\n' is the 24th character.
432          */
433         time_string_ctime[24] = '\0';
434       }
435       return time_string_ctime;
436     }
437   }
438
439   g_snprintf(time_string_buf, 15, "n/a%s", lf);
440   return time_string_buf;
441 }
442
443 static void print_value(const gchar *text_p1, gint width, const gchar *text_p2, double value) {
444   if (value > 0.0)
445     printf("%s%.*f%s\n", text_p1, width, value, text_p2);
446   else
447     printf("%sn/a\n", text_p1);
448 }
449
450 static void
451 print_stats(const gchar *filename, capture_info *cf_info)
452 {
453   const gchar           *file_type_string, *file_encap_string;
454   time_t                 start_time_t;
455   time_t                 stop_time_t;
456   gchar                 *size_string;
457
458   /* Build printable strings for various stats */
459   file_type_string = wtap_file_type_subtype_string(cf_info->file_type);
460   file_encap_string = wtap_encap_string(cf_info->file_encap);
461   start_time_t = (time_t)cf_info->start_time;
462   stop_time_t = (time_t)cf_info->stop_time;
463
464   if (filename)           printf     ("File name:           %s\n", filename);
465   if (cap_file_type)      printf     ("File type:           %s%s\n",
466       file_type_string,
467       cf_info->iscompressed ? " (gzip compressed)" : "");
468   if (cap_file_encap)     printf     ("File encapsulation:  %s\n", file_encap_string);
469   if (cap_file_encap && (cf_info->file_encap == WTAP_ENCAP_PER_PACKET)) {
470     int i;
471     for (i=0; i<WTAP_NUM_ENCAP_TYPES; i++) {
472       if (cf_info->encap_counts[i] > 0)
473         printf("                       %s\n", wtap_encap_string(i));
474     }
475   }
476   if (cap_snaplen && cf_info->snap_set)
477     printf     ("Packet size limit:   file hdr: %u bytes\n", cf_info->snaplen);
478   else if (cap_snaplen && !cf_info->snap_set)
479     printf     ("Packet size limit:   file hdr: (not set)\n");
480   if (cf_info->snaplen_max_inferred > 0) {
481     if (cf_info->snaplen_min_inferred == cf_info->snaplen_max_inferred)
482       printf     ("Packet size limit:   inferred: %u bytes\n", cf_info->snaplen_min_inferred);
483     else
484       printf     ("Packet size limit:   inferred: %u bytes - %u bytes (range)\n",
485           cf_info->snaplen_min_inferred, cf_info->snaplen_max_inferred);
486   }
487   if (cap_packet_count) {
488     printf     ("Number of packets:   ");
489     if (machine_readable) {
490       printf ("%u\n", cf_info->packet_count);
491     } else {
492       size_string = format_size(cf_info->packet_count, format_size_unit_none);
493       printf ("%s\n", size_string);
494       g_free(size_string);
495     }
496   }
497   if (cap_file_size) {
498     printf     ("File size:           ");
499     if (machine_readable) {
500       printf     ("%" G_GINT64_MODIFIER "d bytes\n", cf_info->filesize);
501     } else {
502       size_string = format_size(cf_info->filesize, format_size_unit_bytes);
503       printf ("%s\n", size_string);
504       g_free(size_string);
505     }
506   }
507   if (cap_data_size) {
508     printf     ("Data size:           ");
509     if (machine_readable) {
510       printf     ("%" G_GINT64_MODIFIER "u bytes\n", cf_info->packet_bytes);
511     } else {
512       size_string = format_size(cf_info->packet_bytes, format_size_unit_bytes);
513       printf ("%s\n", size_string);
514       g_free(size_string);
515     }
516   }
517   if (cf_info->times_known) {
518     if (cap_duration) /* XXX - shorten to hh:mm:ss */
519                           print_value("Capture duration:    ", 0, " seconds",   cf_info->duration);
520     if (cap_start_time)
521                           printf     ("Start time:          %s", time_string(start_time_t, cf_info, TRUE));
522     if (cap_end_time)
523                           printf     ("End time:            %s", time_string(stop_time_t, cf_info, TRUE));
524     if (cap_data_rate_byte) {
525                           printf     ("Data byte rate:      ");
526       if (machine_readable) {
527         print_value("", 2, " bytes/sec",   cf_info->data_rate);
528       } else {
529         size_string = format_size((gint64)cf_info->data_rate, format_size_unit_bytes_s);
530         printf ("%s\n", size_string);
531         g_free(size_string);
532       }
533     }
534     if (cap_data_rate_bit) {
535                           printf     ("Data bit rate:       ");
536       if (machine_readable) {
537         print_value("", 2, " bits/sec",    cf_info->data_rate*8);
538       } else {
539         size_string = format_size((gint64)(cf_info->data_rate*8), format_size_unit_bits_s);
540         printf ("%s\n", size_string);
541         g_free(size_string);
542       }
543     }
544   }
545   if (cap_packet_size)    printf     ("Average packet size: %.2f bytes\n",        cf_info->packet_size);
546   if (cf_info->times_known) {
547     if (cap_packet_rate) {
548                           printf     ("Average packet rate: ");
549       if (machine_readable) {
550         print_value("", 2, " packets/sec", cf_info->packet_rate);
551       } else {
552         size_string = format_size((gint64)cf_info->packet_rate, format_size_unit_none);
553         printf ("%spackets/sec\n", size_string);
554         g_free(size_string);
555       }
556     }
557   }
558 #ifdef HAVE_LIBGCRYPT
559   if (cap_file_hashes) {
560     printf     ("SHA1:                %s\n", file_sha1);
561     printf     ("RIPEMD160:           %s\n", file_rmd160);
562     printf     ("MD5:                 %s\n", file_md5);
563   }
564 #endif /* HAVE_LIBGCRYPT */
565   if (cap_order)          printf     ("Strict time order:   %s\n", order_string(cf_info->order));
566   if (cap_comment && cf_info->comment)
567     printf     ("Capture comment:     %s\n", cf_info->comment);
568 }
569
570 static void
571 putsep(void)
572 {
573   if (field_separator) putchar(field_separator);
574 }
575
576 static void
577 putquote(void)
578 {
579   if (quote_char) putchar(quote_char);
580 }
581
582 static void
583 print_stats_table_header_label(const gchar *label)
584 {
585   putsep();
586   putquote();
587   printf("%s", label);
588   putquote();
589 }
590
591 static void
592 print_stats_table_header(void)
593 {
594   putquote();
595   printf("File name");
596   putquote();
597
598   if (cap_file_type)      print_stats_table_header_label("File type");
599   if (cap_file_encap)     print_stats_table_header_label("File encapsulation");
600   if (cap_snaplen)        print_stats_table_header_label("Packet size limit");
601   if (cap_snaplen)        print_stats_table_header_label("Packet size limit min (inferred)");
602   if (cap_snaplen)        print_stats_table_header_label("Packet size limit max (inferred)");
603   if (cap_packet_count)   print_stats_table_header_label("Number of packets");
604   if (cap_file_size)      print_stats_table_header_label("File size (bytes)");
605   if (cap_data_size)      print_stats_table_header_label("Data size (bytes)");
606   if (cap_duration)       print_stats_table_header_label("Capture duration (seconds)");
607   if (cap_start_time)     print_stats_table_header_label("Start time");
608   if (cap_end_time)       print_stats_table_header_label("End time");
609   if (cap_data_rate_byte) print_stats_table_header_label("Data byte rate (bytes/sec)");
610   if (cap_data_rate_bit)  print_stats_table_header_label("Data bit rate (bits/sec)");
611   if (cap_packet_size)    print_stats_table_header_label("Average packet size (bytes)");
612   if (cap_packet_rate)    print_stats_table_header_label("Average packet rate (packets/sec)");
613 #ifdef HAVE_LIBGCRYPT
614   if (cap_file_hashes) {
615     print_stats_table_header_label("SHA1");
616     print_stats_table_header_label("RIPEMD160");
617     print_stats_table_header_label("MD5");
618   }
619 #endif /* HAVE_LIBGCRYPT */
620   if (cap_order)          print_stats_table_header_label("Strict time order");
621   if (cap_comment)        print_stats_table_header_label("Capture comment");
622
623   printf("\n");
624 }
625
626 static void
627 print_stats_table(const gchar *filename, capture_info *cf_info)
628 {
629   const gchar           *file_type_string, *file_encap_string;
630   time_t                 start_time_t;
631   time_t                 stop_time_t;
632
633   /* Build printable strings for various stats */
634   file_type_string = wtap_file_type_subtype_string(cf_info->file_type);
635   file_encap_string = wtap_encap_string(cf_info->file_encap);
636   start_time_t = (time_t)cf_info->start_time;
637   stop_time_t = (time_t)cf_info->stop_time;
638
639   if (filename) {
640     putquote();
641     printf("%s", filename);
642     putquote();
643   }
644
645   if (cap_file_type) {
646     putsep();
647     putquote();
648     printf("%s", file_type_string);
649     putquote();
650   }
651
652   /* ToDo: If WTAP_ENCAP_PER_PACKET, show the list of encapsulations encountered;
653    *       Output a line for each different encap with all fields repeated except
654    *        the encapsulation field which has "Per Packet: ..." for each
655    *        encapsulation type seen ?
656    */
657   if (cap_file_encap) {
658     putsep();
659     putquote();
660     printf("%s", file_encap_string);
661     putquote();
662   }
663
664   if (cap_snaplen) {
665     putsep();
666     putquote();
667     if (cf_info->snap_set)
668       printf("%u", cf_info->snaplen);
669     else
670       printf("(not set)");
671     putquote();
672     if (cf_info->snaplen_max_inferred > 0) {
673       putsep();
674       putquote();
675       printf("%u", cf_info->snaplen_min_inferred);
676       putquote();
677       putsep();
678       putquote();
679       printf("%u", cf_info->snaplen_max_inferred);
680       putquote();
681     }
682     else {
683       putsep();
684       putquote();
685       printf("n/a");
686       putquote();
687       putsep();
688       putquote();
689       printf("n/a");
690       putquote();
691     }
692   }
693
694   if (cap_packet_count) {
695     putsep();
696     putquote();
697     printf("%u", cf_info->packet_count);
698     putquote();
699   }
700
701   if (cap_file_size) {
702     putsep();
703     putquote();
704     printf("%" G_GINT64_MODIFIER "d", cf_info->filesize);
705     putquote();
706   }
707
708   if (cap_data_size) {
709     putsep();
710     putquote();
711     printf("%" G_GINT64_MODIFIER "u", cf_info->packet_bytes);
712     putquote();
713   }
714
715   if (cap_duration) {
716     putsep();
717     putquote();
718     if (cf_info->times_known)
719       printf("%f", cf_info->duration);
720     else
721       printf("n/a");
722     putquote();
723   }
724
725   if (cap_start_time) {
726     putsep();
727     putquote();
728     printf("%s", time_string(start_time_t, cf_info, FALSE));
729     putquote();
730   }
731
732   if (cap_end_time) {
733     putsep();
734     putquote();
735     printf("%s", time_string(stop_time_t, cf_info, FALSE));
736     putquote();
737   }
738
739   if (cap_data_rate_byte) {
740     putsep();
741     putquote();
742     if (cf_info->times_known)
743       printf("%.2f", cf_info->data_rate);
744     else
745       printf("n/a");
746     putquote();
747   }
748
749   if (cap_data_rate_bit) {
750     putsep();
751     putquote();
752     if (cf_info->times_known)
753       printf("%.2f", cf_info->data_rate*8);
754     else
755       printf("n/a");
756     putquote();
757   }
758
759   if (cap_packet_size) {
760     putsep();
761     putquote();
762     printf("%.2f", cf_info->packet_size);
763     putquote();
764   }
765
766   if (cap_packet_rate) {
767     putsep();
768     putquote();
769     if (cf_info->times_known)
770       printf("%.2f", cf_info->packet_rate);
771     else
772       printf("n/a");
773     putquote();
774   }
775
776 #ifdef HAVE_LIBGCRYPT
777   if (cap_file_hashes) {
778     putsep();
779     putquote();
780     printf("%s", file_sha1);
781     putquote();
782
783     putsep();
784     putquote();
785     printf("%s", file_rmd160);
786     putquote();
787
788     putsep();
789     putquote();
790     printf("%s", file_md5);
791     putquote();
792   }
793 #endif /* HAVE_LIBGCRYPT */
794
795   if (cap_order) {
796     putsep();
797     putquote();
798     printf("%s", order_string(cf_info->order));
799     putquote();
800   }
801
802   if (cap_comment) {
803     putsep();
804     putquote();
805     printf("%s", cf_info->comment);
806     putquote();
807   }
808
809
810   printf("\n");
811 }
812
813 static int
814 process_cap_file(wtap *wth, const char *filename)
815 {
816   int                   status = 0;
817   int                   err;
818   gchar                *err_info;
819   gint64                size;
820   gint64                data_offset;
821
822   guint32               packet = 0;
823   gint64                bytes  = 0;
824   guint32               snaplen_min_inferred = 0xffffffff;
825   guint32               snaplen_max_inferred =          0;
826   const struct wtap_pkthdr *phdr;
827   capture_info          cf_info;
828   gboolean              have_times = TRUE;
829   double                start_time = 0;
830   double                stop_time  = 0;
831   double                cur_time   = 0;
832   double                prev_time = 0;
833   gboolean              know_order = FALSE;
834   order_t               order = IN_ORDER;
835   wtapng_section_t     *shb_inf;
836   gchar                *p;
837
838
839   cf_info.encap_counts = g_new0(int,WTAP_NUM_ENCAP_TYPES);
840
841   /* Tally up data that we need to parse through the file to find */
842   while (wtap_read(wth, &err, &err_info, &data_offset))  {
843     phdr = wtap_phdr(wth);
844     if (phdr->presence_flags & WTAP_HAS_TS) {
845       prev_time = cur_time;
846       cur_time = nstime_to_sec(&phdr->ts);
847       if (packet == 0) {
848         start_time = cur_time;
849         stop_time  = cur_time;
850         prev_time  = cur_time;
851       }
852       if (cur_time < prev_time) {
853         order = NOT_IN_ORDER;
854       }
855       if (cur_time < start_time) {
856         start_time = cur_time;
857       }
858       if (cur_time > stop_time) {
859         stop_time = cur_time;
860       }
861     } else {
862       have_times = FALSE; /* at least one packet has no time stamp */
863       if (order != NOT_IN_ORDER)
864         order = ORDER_UNKNOWN;
865     }
866
867     if (phdr->rec_type == REC_TYPE_PACKET) {
868       bytes+=phdr->len;
869       packet++;
870
871       /* If caplen < len for a rcd, then presumably           */
872       /* 'Limit packet capture length' was done for this rcd. */
873       /* Keep track as to the min/max actual snapshot lengths */
874       /*  seen for this file.                                 */
875       if (phdr->caplen < phdr->len) {
876         if (phdr->caplen < snaplen_min_inferred)
877           snaplen_min_inferred = phdr->caplen;
878         if (phdr->caplen > snaplen_max_inferred)
879           snaplen_max_inferred = phdr->caplen;
880       }
881
882       /* Per-packet encapsulation */
883       if (wtap_file_encap(wth) == WTAP_ENCAP_PER_PACKET) {
884         if ((phdr->pkt_encap > 0) && (phdr->pkt_encap < WTAP_NUM_ENCAP_TYPES)) {
885           cf_info.encap_counts[phdr->pkt_encap] += 1;
886         } else {
887           fprintf(stderr, "capinfos: Unknown per-packet encapsulation: %d [frame number: %d]\n", phdr->pkt_encap, packet);
888         }
889       }
890     }
891
892   } /* while */
893
894   if (err != 0) {
895     fprintf(stderr,
896         "capinfos: An error occurred after reading %u packets from \"%s\": %s.\n",
897         packet, filename, wtap_strerror(err));
898     switch (err) {
899
900       case WTAP_ERR_SHORT_READ:
901         status = 1;
902         fprintf(stderr,
903           "  (will continue anyway, checksums might be incorrect)\n");
904         break;
905
906       case WTAP_ERR_UNSUPPORTED:
907       case WTAP_ERR_UNSUPPORTED_ENCAP:
908       case WTAP_ERR_BAD_FILE:
909       case WTAP_ERR_DECOMPRESS:
910         fprintf(stderr, "(%s)\n", err_info);
911         g_free(err_info);
912         /* fallthrough */
913
914       default:
915         g_free(cf_info.encap_counts);
916         return 1;
917     }
918   }
919
920   /* File size */
921   size = wtap_file_size(wth, &err);
922   if (size == -1) {
923     fprintf(stderr,
924         "capinfos: Can't get size of \"%s\": %s.\n",
925         filename, g_strerror(err));
926     g_free(cf_info.encap_counts);
927     return 1;
928   }
929
930   cf_info.filesize = size;
931
932   /* File Type */
933   cf_info.file_type = wtap_file_type_subtype(wth);
934   cf_info.iscompressed = wtap_iscompressed(wth);
935
936   /* File Encapsulation */
937   cf_info.file_encap = wtap_file_encap(wth);
938
939   /* Packet size limit (snaplen) */
940   cf_info.snaplen = wtap_snapshot_length(wth);
941   if (cf_info.snaplen > 0)
942     cf_info.snap_set = TRUE;
943   else
944     cf_info.snap_set = FALSE;
945
946   cf_info.snaplen_min_inferred = snaplen_min_inferred;
947   cf_info.snaplen_max_inferred = snaplen_max_inferred;
948
949   /* # of packets */
950   cf_info.packet_count = packet;
951
952   /* File Times */
953   cf_info.times_known = have_times;
954   cf_info.start_time = start_time;
955   cf_info.stop_time = stop_time;
956   cf_info.duration = stop_time-start_time;
957   cf_info.know_order = know_order;
958   cf_info.order = order;
959
960   /* Number of packet bytes */
961   cf_info.packet_bytes = bytes;
962
963   cf_info.data_rate   = 0.0;
964   cf_info.packet_rate = 0.0;
965   cf_info.packet_size = 0.0;
966
967   if (packet > 0) {
968     if (cf_info.duration > 0.0) {
969       cf_info.data_rate   = (double)bytes  / (stop_time-start_time); /* Data rate per second */
970       cf_info.packet_rate = (double)packet / (stop_time-start_time); /* packet rate per second */
971     }
972     cf_info.packet_size = (double)bytes / packet;                  /* Avg packet size      */
973   }
974
975   cf_info.comment = NULL;
976   shb_inf = wtap_file_get_shb_info(wth);
977   if (shb_inf) {
978     /* opt_comment is always 0-terminated by pcapng_read_section_header_block */
979     cf_info.comment = g_strdup(shb_inf->opt_comment);
980   }
981   g_free(shb_inf);
982   if (cf_info.comment) {
983     /* multi-line comments would conflict with the formatting that capinfos uses
984        we replace linefeeds with spaces */
985     p = cf_info.comment;
986     while (*p != '\0') {
987       if (*p == '\n')
988         *p = ' ';
989       p++;
990     }
991   }
992
993   if (long_report) {
994     print_stats(filename, &cf_info);
995   } else {
996     print_stats_table(filename, &cf_info);
997   }
998
999   g_free(cf_info.encap_counts);
1000   g_free(cf_info.comment);
1001
1002   return status;
1003 }
1004
1005 static void
1006 show_version(GString *comp_info_str, GString *runtime_info_str)
1007 {
1008     printf("Capinfos (Wireshark) %s\n"
1009            "\n"
1010            "%s"
1011            "\n"
1012            "%s"
1013            "\n"
1014            "%s",
1015            get_ws_vcs_version_info(), get_copyright_info(),
1016            comp_info_str->str, runtime_info_str->str);
1017 }
1018
1019 static void
1020 print_usage(FILE *output)
1021 {
1022   fprintf(output, "\n");
1023   fprintf(output, "Usage: capinfos [options] <infile> ...\n");
1024   fprintf(output, "\n");
1025   fprintf(output, "General infos:\n");
1026   fprintf(output, "  -t display the capture file type\n");
1027   fprintf(output, "  -E display the capture file encapsulation\n");
1028 #ifdef HAVE_LIBGCRYPT
1029   fprintf(output, "  -H display the SHA1, RMD160, and MD5 hashes of the file\n");
1030 #endif
1031   fprintf(output, "  -k display the capture comment\n");
1032   fprintf(output, "\n");
1033   fprintf(output, "Size infos:\n");
1034   fprintf(output, "  -c display the number of packets\n");
1035   fprintf(output, "  -s display the size of the file (in bytes)\n");
1036   fprintf(output, "  -d display the total length of all packets (in bytes)\n");
1037   fprintf(output, "  -l display the packet size limit (snapshot length)\n");
1038   fprintf(output, "\n");
1039   fprintf(output, "Time infos:\n");
1040   fprintf(output, "  -u display the capture duration (in seconds)\n");
1041   fprintf(output, "  -a display the capture start time\n");
1042   fprintf(output, "  -e display the capture end time\n");
1043   fprintf(output, "  -o display the capture file chronological status (True/False)\n");
1044   fprintf(output, "  -S display start and end times as seconds\n");
1045   fprintf(output, "\n");
1046   fprintf(output, "Statistic infos:\n");
1047   fprintf(output, "  -y display average data rate (in bytes/sec)\n");
1048   fprintf(output, "  -i display average data rate (in bits/sec)\n");
1049   fprintf(output, "  -z display average packet size (in bytes)\n");
1050   fprintf(output, "  -x display average packet rate (in packets/sec)\n");
1051   fprintf(output, "\n");
1052   fprintf(output, "Output format:\n");
1053   fprintf(output, "  -L generate long report (default)\n");
1054   fprintf(output, "  -T generate table report\n");
1055   fprintf(output, "  -M display machine-readable values in long reports\n");
1056   fprintf(output, "\n");
1057   fprintf(output, "Table report options:\n");
1058   fprintf(output, "  -R generate header record (default)\n");
1059   fprintf(output, "  -r do not generate header record\n");
1060   fprintf(output, "\n");
1061   fprintf(output, "  -B separate infos with TAB character (default)\n");
1062   fprintf(output, "  -m separate infos with comma (,) character\n");
1063   fprintf(output, "  -b separate infos with SPACE character\n");
1064   fprintf(output, "\n");
1065   fprintf(output, "  -N do not quote infos (default)\n");
1066   fprintf(output, "  -q quote infos with single quotes (')\n");
1067   fprintf(output, "  -Q quote infos with double quotes (\")\n");
1068   fprintf(output, "\n");
1069   fprintf(output, "Miscellaneous:\n");
1070   fprintf(output, "  -h display this help and exit\n");
1071   fprintf(output, "  -C cancel processing if file open fails (default is to continue)\n");
1072   fprintf(output, "  -A generate all infos (default)\n");
1073   fprintf(output, "\n");
1074   fprintf(output, "Options are processed from left to right order with later options superceding\n");
1075   fprintf(output, "or adding to earlier options.\n");
1076   fprintf(output, "\n");
1077   fprintf(output, "If no options are given the default is to display all infos in long report\n");
1078   fprintf(output, "output format.\n");
1079 #ifndef HAVE_LIBGCRYPT
1080   fprintf(output, "\nFile hashing support (-H) is not present.\n");
1081 #endif
1082 }
1083
1084 #ifdef HAVE_PLUGINS
1085 /*
1086  *  Don't report failures to load plugins because most (non-wiretap) plugins
1087  *  *should* fail to load (because we're not linked against libwireshark and
1088  *  dissector plugins need libwireshark).
1089  */
1090 static void
1091 failure_message(const char *msg_format _U_, va_list ap _U_)
1092 {
1093   return;
1094 }
1095 #endif
1096
1097 #ifdef HAVE_LIBGCRYPT
1098 static void
1099 hash_to_str(const unsigned char *hash, size_t length, char *str) {
1100   int i;
1101
1102   for (i = 0; i < (int) length; i++) {
1103     g_snprintf(str+(i*2), 3, "%02x", hash[i]);
1104   }
1105 }
1106 #endif /* HAVE_LIBGCRYPT */
1107
1108 static void
1109 get_capinfos_compiled_info(GString *str)
1110 {
1111   /* LIBZ */
1112   g_string_append(str, ", ");
1113 #ifdef HAVE_LIBZ
1114   g_string_append(str, "with libz ");
1115 #ifdef ZLIB_VERSION
1116   g_string_append(str, ZLIB_VERSION);
1117 #else /* ZLIB_VERSION */
1118   g_string_append(str, "(version unknown)");
1119 #endif /* ZLIB_VERSION */
1120 #else /* HAVE_LIBZ */
1121   g_string_append(str, "without libz");
1122 #endif /* HAVE_LIBZ */
1123 }
1124
1125 static void
1126 get_capinfos_runtime_info(GString *str)
1127 {
1128   /* zlib */
1129 #if defined(HAVE_LIBZ) && !defined(_WIN32)
1130   g_string_append_printf(str, ", with libz %s", zlibVersion());
1131 #endif
1132 }
1133
1134 int
1135 main(int argc, char *argv[])
1136 {
1137   GString *comp_info_str;
1138   GString *runtime_info_str;
1139   wtap  *wth;
1140   int    err;
1141   gchar *err_info;
1142   int    opt;
1143   int    overall_error_status;
1144   static const struct option long_options[] = {
1145       {(char *)"help", no_argument, NULL, 'h'},
1146       {(char *)"version", no_argument, NULL, 'v'},
1147       {0, 0, 0, 0 }
1148   };
1149
1150   int status = 0;
1151 #ifdef HAVE_PLUGINS
1152   char  *init_progfile_dir_error;
1153 #endif
1154 #ifdef HAVE_LIBGCRYPT
1155   FILE  *fh;
1156   char  *hash_buf = NULL;
1157   gcry_md_hd_t hd = NULL;
1158   size_t hash_bytes;
1159 #endif
1160
1161   /* Assemble the compile-time version information string */
1162   comp_info_str = g_string_new("Compiled ");
1163   get_compiled_version_info(comp_info_str, NULL, get_capinfos_compiled_info);
1164
1165   /* Assemble the run-time version information string */
1166   runtime_info_str = g_string_new("Running ");
1167   get_runtime_version_info(runtime_info_str, get_capinfos_runtime_info);
1168
1169   /* Add it to the information to be reported on a crash. */
1170   ws_add_crash_info("Capinfos (Wireshark) %s\n"
1171          "\n"
1172          "%s"
1173          "\n"
1174          "%s",
1175       get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
1176
1177 #ifdef _WIN32
1178   arg_list_utf_16to8(argc, argv);
1179   create_app_running_mutex();
1180 #endif /* _WIN32 */
1181
1182   /*
1183    * Get credential information for later use.
1184    */
1185   init_process_policies();
1186   init_open_routines();
1187
1188 #ifdef HAVE_PLUGINS
1189   if ((init_progfile_dir_error = init_progfile_dir(argv[0], main))) {
1190     g_warning("capinfos: init_progfile_dir(): %s", init_progfile_dir_error);
1191     g_free(init_progfile_dir_error);
1192   } else {
1193     /* Register all the plugin types we have. */
1194     wtap_register_plugin_types(); /* Types known to libwiretap */
1195
1196     init_report_err(failure_message, NULL, NULL, NULL);
1197
1198     /* Scan for plugins.  This does *not* call their registration routines;
1199        that's done later. */
1200     scan_plugins();
1201
1202     /* Register all libwiretap plugin modules. */
1203     register_all_wiretap_modules();
1204   }
1205 #endif
1206
1207   /* Process the options */
1208 #ifdef USE_GOPTION
1209   ctx = g_option_context_new(" <infile> ... - print information about capture file(s)");
1210   general_grp = g_option_group_new("gen", "General infos:",
1211       "Show general options", NULL, NULL);
1212   size_grp = g_option_group_new("size", "Size infos:",
1213       "Show size options", NULL, NULL);
1214   time_grp = g_option_group_new("time", "Time infos:",
1215       "Show time options", NULL, NULL);
1216   stats_grp = g_option_group_new("stats", "Statistics infos:",
1217       "Show statistics options", NULL, NULL);
1218   output_grp = g_option_group_new("output", "Output format:",
1219       "Show output format options", NULL, NULL);
1220   table_report_grp = g_option_group_new("table", "Table report options:",
1221       "Show table report options", NULL, NULL);
1222   g_option_group_add_entries(general_grp, general_entries);
1223   g_option_group_add_entries(size_grp, size_entries);
1224   g_option_group_add_entries(time_grp, time_entries);
1225   g_option_group_add_entries(stats_grp, stats_entries);
1226   g_option_group_add_entries(output_grp, output_format_entries);
1227   g_option_group_add_entries(table_report_grp, table_report_entries);
1228   g_option_context_add_main_entries(ctx, misc_entries, NULL);
1229   g_option_context_add_group(ctx, general_grp);
1230   g_option_context_add_group(ctx, size_grp);
1231   g_option_context_add_group(ctx, time_grp);
1232   g_option_context_add_group(ctx, stats_grp);
1233   g_option_context_add_group(ctx, output_grp);
1234   g_option_context_add_group(ctx, table_report_grp);
1235   /* There's probably a better way to do this, but this works for now.
1236      GOptions displays the name in argv[0] as the name of the
1237      application.  This is reasonable, but because we actually have a
1238      script wrapper that calls the executable.  The name that gets
1239      displayed is not exactly the same as the command the user used
1240      ran.
1241    */
1242   argv[0] = (char *)"capinfos";
1243
1244   /* if we have at least one cmdline option, we disable printing all infos */
1245   if (argc > 2 && report_all_infos)
1246     disable_all_infos();
1247
1248   if ( !g_option_context_parse(ctx, &argc, &argv, &parse_err) ) {
1249     if (parse_err)
1250       g_printerr ("option parsing failed: %s\n", parse_err->message);
1251     g_printerr("%s", g_option_context_get_help (ctx, TRUE, NULL));
1252     exit(1);
1253   }
1254   if ( cap_help ) {
1255     g_print("%s", g_option_context_get_help (ctx, FALSE, NULL));
1256     exit(0);
1257   }
1258   if ( argc < 2 ) {
1259     g_printerr("%s", g_option_context_get_help (ctx, FALSE, NULL));
1260     exit(1);
1261   }
1262   g_option_context_free(ctx);
1263
1264 #endif /* USE_GOPTION */
1265   while ((opt = getopt_long(argc, argv, "tEcs" FILE_HASH_OPT "dluaeyizvhxokCALTMRrSNqQBmb", long_options, NULL)) !=-1) {
1266
1267     switch (opt) {
1268
1269       case 't':
1270         if (report_all_infos) disable_all_infos();
1271         cap_file_type = TRUE;
1272         break;
1273
1274       case 'E':
1275         if (report_all_infos) disable_all_infos();
1276         cap_file_encap = TRUE;
1277         break;
1278
1279       case 'l':
1280         if (report_all_infos) disable_all_infos();
1281         cap_snaplen = TRUE;
1282         break;
1283
1284       case 'c':
1285         if (report_all_infos) disable_all_infos();
1286         cap_packet_count = TRUE;
1287         break;
1288
1289       case 's':
1290         if (report_all_infos) disable_all_infos();
1291         cap_file_size = TRUE;
1292         break;
1293
1294       case 'd':
1295         if (report_all_infos) disable_all_infos();
1296         cap_data_size = TRUE;
1297         break;
1298
1299       case 'u':
1300         if (report_all_infos) disable_all_infos();
1301         cap_duration = TRUE;
1302         break;
1303
1304       case 'a':
1305         if (report_all_infos) disable_all_infos();
1306         cap_start_time = TRUE;
1307         break;
1308
1309       case 'e':
1310         if (report_all_infos) disable_all_infos();
1311         cap_end_time = TRUE;
1312         break;
1313
1314       case 'S':
1315         time_as_secs = TRUE;
1316         break;
1317
1318       case 'y':
1319         if (report_all_infos) disable_all_infos();
1320         cap_data_rate_byte = TRUE;
1321         break;
1322
1323       case 'i':
1324         if (report_all_infos) disable_all_infos();
1325         cap_data_rate_bit = TRUE;
1326         break;
1327
1328       case 'z':
1329         if (report_all_infos) disable_all_infos();
1330         cap_packet_size = TRUE;
1331         break;
1332
1333       case 'x':
1334         if (report_all_infos) disable_all_infos();
1335         cap_packet_rate = TRUE;
1336         break;
1337
1338 #ifdef HAVE_LIBGCRYPT
1339       case 'H':
1340         if (report_all_infos) disable_all_infos();
1341         cap_file_hashes = TRUE;
1342         break;
1343 #endif
1344
1345       case 'o':
1346         if (report_all_infos) disable_all_infos();
1347         cap_order = TRUE;
1348         break;
1349
1350       case 'k':
1351         if (report_all_infos) disable_all_infos();
1352         cap_comment = TRUE;
1353         break;
1354
1355       case 'C':
1356         continue_after_wtap_open_offline_failure = FALSE;
1357         break;
1358
1359       case 'A':
1360         enable_all_infos();
1361         break;
1362
1363       case 'L':
1364         long_report = TRUE;
1365         break;
1366
1367       case 'T':
1368         long_report = FALSE;
1369         break;
1370
1371       case 'M':
1372         machine_readable = TRUE;
1373         break;
1374
1375       case 'R':
1376         table_report_header = TRUE;
1377         break;
1378
1379       case 'r':
1380         table_report_header = FALSE;
1381         break;
1382
1383       case 'N':
1384         quote_char = '\0';
1385         break;
1386
1387       case 'q':
1388         quote_char = '\'';
1389         break;
1390
1391       case 'Q':
1392         quote_char = '"';
1393         break;
1394
1395       case 'B':
1396         field_separator = '\t';
1397         break;
1398
1399       case 'm':
1400         field_separator = ',';
1401         break;
1402
1403       case 'b':
1404         field_separator = ' ';
1405         break;
1406
1407       case 'h':
1408         printf("Capinfos (Wireshark) %s\n"
1409                "Print various information (infos) about capture files.\n"
1410                "See http://www.wireshark.org for more information.\n",
1411                get_ws_vcs_version_info());
1412         print_usage(stdout);
1413         exit(0);
1414         break;
1415
1416       case 'v':
1417         show_version(comp_info_str, runtime_info_str);
1418         g_string_free(comp_info_str, TRUE);
1419         g_string_free(runtime_info_str, TRUE);
1420         exit(0);
1421         break;
1422
1423       case '?':              /* Bad flag - print usage message */
1424         print_usage(stderr);
1425         exit(1);
1426         break;
1427     }
1428   }
1429
1430   /* Set the C-language locale to the native environment. */
1431   setlocale(LC_ALL, "");
1432
1433   if ((argc - optind) < 1) {
1434     print_usage(stderr);
1435     exit(1);
1436   }
1437
1438   if (!long_report && table_report_header) {
1439     print_stats_table_header();
1440   }
1441
1442 #ifdef HAVE_LIBGCRYPT
1443   if (cap_file_hashes) {
1444     gcry_check_version(NULL);
1445     gcry_md_open(&hd, GCRY_MD_SHA1, 0);
1446     if (hd) {
1447       gcry_md_enable(hd, GCRY_MD_RMD160);
1448       gcry_md_enable(hd, GCRY_MD_MD5);
1449     }
1450     hash_buf = (char *)g_malloc(HASH_BUF_SIZE);
1451   }
1452 #endif
1453
1454   overall_error_status = 0;
1455
1456   for (opt = optind; opt < argc; opt++) {
1457
1458 #ifdef HAVE_LIBGCRYPT
1459     g_strlcpy(file_sha1, "<unknown>", HASH_STR_SIZE);
1460     g_strlcpy(file_rmd160, "<unknown>", HASH_STR_SIZE);
1461     g_strlcpy(file_md5, "<unknown>", HASH_STR_SIZE);
1462
1463     if (cap_file_hashes) {
1464       fh = ws_fopen(argv[opt], "rb");
1465       if (fh && hd) {
1466         while((hash_bytes = fread(hash_buf, 1, HASH_BUF_SIZE, fh)) > 0) {
1467           gcry_md_write(hd, hash_buf, hash_bytes);
1468         }
1469         gcry_md_final(hd);
1470         hash_to_str(gcry_md_read(hd, GCRY_MD_SHA1), HASH_SIZE_SHA1, file_sha1);
1471         hash_to_str(gcry_md_read(hd, GCRY_MD_RMD160), HASH_SIZE_RMD160, file_rmd160);
1472         hash_to_str(gcry_md_read(hd, GCRY_MD_MD5), HASH_SIZE_MD5, file_md5);
1473       }
1474       if (fh) fclose(fh);
1475       if (hd) gcry_md_reset(hd);
1476     }
1477 #endif /* HAVE_LIBGCRYPT */
1478
1479     wth = wtap_open_offline(argv[opt], WTAP_TYPE_AUTO, &err, &err_info, FALSE);
1480
1481     if (!wth) {
1482       fprintf(stderr, "capinfos: Can't open %s: %s\n", argv[opt],
1483           wtap_strerror(err));
1484       switch (err) {
1485
1486         case WTAP_ERR_UNSUPPORTED:
1487         case WTAP_ERR_UNSUPPORTED_ENCAP:
1488         case WTAP_ERR_BAD_FILE:
1489           fprintf(stderr, "(%s)\n", err_info);
1490           g_free(err_info);
1491           break;
1492       }
1493       overall_error_status = 1; /* remember that an error has occurred */
1494       if (!continue_after_wtap_open_offline_failure)
1495         exit(1); /* error status */
1496     }
1497
1498     if (wth) {
1499       if ((opt > optind) && (long_report))
1500         printf("\n");
1501       status = process_cap_file(wth, argv[opt]);
1502
1503       wtap_close(wth);
1504       if (status)
1505         exit(status);
1506     }
1507   }
1508
1509   return overall_error_status;
1510 }
1511
1512 /*
1513  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
1514  *
1515  * Local variables:
1516  * c-basic-offset: 2
1517  * tab-width: 8
1518  * indent-tabs-mode: nil
1519  * End:
1520  *
1521  * vi: set shiftwidth=2 tabstop=8 expandtab:
1522  * :indentSize=2:tabSize=8:noTabs=true:
1523  */