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