Some work on multi file dissection
[jelmer/wireshark.git] / tshark.c
1 /* tshark.c
2  *
3  * Text-mode variant of Wireshark, along the lines of tcpdump and snoop,
4  * by Gilbert Ramirez <gram@alumni.rice.edu> and Guy Harris <guy@alum.mit.edu>.
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <locale.h>
34 #include <limits.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 #include <errno.h>
41
42 #ifdef HAVE_FCNTL_H
43 #include <fcntl.h>
44 #endif
45
46 #include <signal.h>
47
48 #ifdef HAVE_SYS_STAT_H
49 # include <sys/stat.h>
50 #endif
51
52 #ifndef HAVE_GETOPT
53 #include "wsutil/wsgetopt.h"
54 #endif
55
56 #include <glib.h>
57 #include <epan/epan.h>
58 #include <epan/filesystem.h>
59 #include <wsutil/crash_info.h>
60 #include <wsutil/privileges.h>
61 #include <wsutil/file_util.h>
62
63 #include "globals.h"
64 #include <epan/timestamp.h>
65 #include <epan/packet.h>
66 #include "file.h"
67 #include "frame_tvbuff.h"
68 #include <epan/disabled_protos.h>
69 #include <epan/prefs.h>
70 #include <epan/column.h>
71 #include <epan/print.h>
72 #include <epan/addr_resolv.h>
73 #include "ui/util.h"
74 #include "clopts_common.h"
75 #include "cmdarg_err.h"
76 #include "version_info.h"
77 #include <epan/plugins.h>
78 #include "register.h"
79 #include <epan/epan_dissect.h>
80 #include <epan/tap.h>
81 #include <epan/stat_cmd_args.h>
82 #include <epan/timestamp.h>
83 #include <epan/ex-opt.h>
84
85 #ifdef HAVE_LIBPCAP
86 #include "capture_ui_utils.h"
87 #include "capture_ifinfo.h"
88 #include "capture-pcap-util.h"
89 #ifdef _WIN32
90 #include "capture-wpcap.h"
91 #include <wsutil/unicode-utils.h>
92 #endif /* _WIN32 */
93 #include "capture_session.h"
94 #include "capture_sync.h"
95 #include "capture_opts.h"
96 #endif /* HAVE_LIBPCAP */
97 #include "log.h"
98 #include <epan/funnel.h>
99
100 /*
101  * This is the template for the decode as option; it is shared between the
102  * various functions that output the usage for this parameter.
103  */
104 static const gchar decode_as_arg_template[] = "<layer_type>==<selector>,<decode_as_protocol>";
105
106 static guint32 cum_bytes;
107 static nstime_t first_ts;
108 static frame_data *prev_dis;
109 static frame_data prev_dis_frame;
110 static frame_data *prev_cap;
111 static frame_data prev_cap_frame;
112
113 static const char* prev_display_dissector_name = NULL;
114
115 static gboolean perform_two_pass_analysis;
116
117 /*
118  * The way the packet decode is to be written.
119  */
120 typedef enum {
121   WRITE_TEXT,   /* summary or detail text */
122   WRITE_XML,    /* PDML or PSML */
123   WRITE_FIELDS  /* User defined list of fields */
124   /* Add CSV and the like here */
125 } output_action_e;
126
127 static output_action_e output_action;
128 static gboolean do_dissection;     /* TRUE if we have to dissect each packet */
129 static gboolean print_packet_info; /* TRUE if we're to print packet information */
130 static gint print_summary = -1;    /* TRUE if we're to print packet summary information */
131 static gboolean print_details;     /* TRUE if we're to print packet details information */
132 static gboolean print_hex;         /* TRUE if we're to print hex/ascci information */
133 static gboolean line_buffered;
134 static gboolean really_quiet = FALSE;
135
136 static print_format_e print_format = PR_FMT_TEXT;
137 static print_stream_t *print_stream;
138
139 static output_fields_t* output_fields  = NULL;
140
141 /* The line separator used between packets, changeable via the -S option */
142 static const char *separator = "";
143
144 #ifdef HAVE_LIBPCAP
145 /*
146  * TRUE if we're to print packet counts to keep track of captured packets.
147  */
148 static gboolean print_packet_counts = TRUE;
149
150 static capture_options global_capture_opts;
151 static capture_session global_capture_session;
152
153 #ifdef SIGINFO
154 static gboolean infodelay;      /* if TRUE, don't print capture info in SIGINFO handler */
155 static gboolean infoprint;      /* if TRUE, print capture info after clearing infodelay */
156 #endif /* SIGINFO */
157
158 static gboolean capture(void);
159 static void report_counts(void);
160 #ifdef _WIN32
161 static BOOL WINAPI capture_cleanup(DWORD);
162 #else /* _WIN32 */
163 static void capture_cleanup(int);
164 #ifdef SIGINFO
165 static void report_counts_siginfo(int);
166 #endif /* SIGINFO */
167 #endif /* _WIN32 */
168 #endif /* HAVE_LIBPCAP */
169
170 static int load_cap_file(capture_file *, char *, int, gboolean, int, gint64);
171 static gboolean process_packet(capture_file *cf, gint64 offset,
172     struct wtap_pkthdr *whdr, const guchar *pd,
173     gboolean filtering_tap_listeners, guint tap_flags);
174 static void show_capture_file_io_error(const char *, int, gboolean);
175 static void show_print_file_io_error(int err);
176 static gboolean write_preamble(capture_file *cf);
177 static gboolean print_packet(capture_file *cf, epan_dissect_t *edt);
178 static gboolean write_finale(void);
179 static const char *cf_open_error_message(int err, gchar *err_info,
180     gboolean for_writing, int file_type);
181
182 static void open_failure_message(const char *filename, int err,
183     gboolean for_writing);
184 static void failure_message(const char *msg_format, va_list ap);
185 static void read_failure_message(const char *filename, int err);
186 static void write_failure_message(const char *filename, int err);
187
188 capture_file cfile;
189
190 struct string_elem {
191   const char *sstr;   /* The short string */
192   const char *lstr;   /* The long string */
193 };
194
195 static gint
196 string_compare(gconstpointer a, gconstpointer b)
197 {
198   return strcmp(((const struct string_elem *)a)->sstr,
199                 ((const struct string_elem *)b)->sstr);
200 }
201
202 static void
203 string_elem_print(gpointer data, gpointer not_used _U_)
204 {
205   fprintf(stderr, "    %s - %s\n",
206           ((struct string_elem *)data)->sstr,
207           ((struct string_elem *)data)->lstr);
208 }
209
210 static void
211 list_capture_types(void) {
212   int                 i;
213   struct string_elem *captypes;
214   GSList             *list = NULL;
215
216   captypes = g_new(struct string_elem, WTAP_NUM_FILE_TYPES);
217
218   fprintf(stderr, "tshark: The available capture file types for the \"-F\" flag are:\n");
219   for (i = 0; i < WTAP_NUM_FILE_TYPES; i++) {
220     if (wtap_dump_can_open(i)) {
221       captypes[i].sstr = wtap_file_type_short_string(i);
222       captypes[i].lstr = wtap_file_type_string(i);
223       list = g_slist_insert_sorted(list, &captypes[i], string_compare);
224     }
225   }
226   g_slist_foreach(list, string_elem_print, NULL);
227   g_slist_free(list);
228   g_free(captypes);
229 }
230
231 static void
232 print_usage(gboolean print_ver)
233 {
234   FILE *output;
235
236   if (print_ver) {
237     output = stdout;
238     fprintf(output,
239         "TShark " VERSION "%s\n"
240         "Dump and analyze network traffic.\n"
241         "See http://www.wireshark.org for more information.\n"
242         "\n"
243         "%s",
244          wireshark_svnversion, get_copyright_info());
245   } else {
246     output = stderr;
247   }
248   fprintf(output, "\n");
249   fprintf(output, "Usage: tshark [options] ...\n");
250   fprintf(output, "\n");
251
252 #ifdef HAVE_LIBPCAP
253   fprintf(output, "Capture interface:\n");
254   fprintf(output, "  -i <interface>           name or idx of interface (def: first non-loopback)\n");
255   fprintf(output, "  -f <capture filter>      packet filter in libpcap filter syntax\n");
256   fprintf(output, "  -s <snaplen>             packet snapshot length (def: 65535)\n");
257   fprintf(output, "  -p                       don't capture in promiscuous mode\n");
258 #ifdef HAVE_PCAP_CREATE
259   fprintf(output, "  -I                       capture in monitor mode, if available\n");
260 #endif
261 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
262   fprintf(output, "  -B <buffer size>         size of kernel buffer (def: %dMB)\n", DEFAULT_CAPTURE_BUFFER_SIZE);
263 #endif
264   fprintf(output, "  -y <link type>           link layer type (def: first appropriate)\n");
265   fprintf(output, "  -D                       print list of interfaces and exit\n");
266   fprintf(output, "  -L                       print list of link-layer types of iface and exit\n");
267   fprintf(output, "\n");
268   fprintf(output, "Capture stop conditions:\n");
269   fprintf(output, "  -c <packet count>        stop after n packets (def: infinite)\n");
270   fprintf(output, "  -a <autostop cond.> ...  duration:NUM - stop after NUM seconds\n");
271   fprintf(output, "                           filesize:NUM - stop this file after NUM KB\n");
272   fprintf(output, "                              files:NUM - stop after NUM files\n");
273   /*fprintf(output, "\n");*/
274   fprintf(output, "Capture output:\n");
275   fprintf(output, "  -b <ringbuffer opt.> ... duration:NUM - switch to next file after NUM secs\n");
276   fprintf(output, "                           filesize:NUM - switch to next file after NUM KB\n");
277   fprintf(output, "                              files:NUM - ringbuffer: replace after NUM files\n");
278 #endif  /* HAVE_LIBPCAP */
279 #ifdef HAVE_PCAP_REMOTE
280   fprintf(output, "RPCAP options:\n");
281   fprintf(output, "  -A <user>:<password>     use RPCAP password authentication\n");
282 #endif
283   /*fprintf(output, "\n");*/
284   fprintf(output, "Input file:\n");
285   fprintf(output, "  -r <infile>              set the filename to read from (no pipes or stdin!)\n");
286
287   fprintf(output, "\n");
288   fprintf(output, "Processing:\n");
289   fprintf(output, "  -2                       perform a two-pass analysis\n");
290   fprintf(output, "  -R <read filter>         packet Read filter in Wireshark display filter syntax\n");
291   fprintf(output, "  -Y <display filter>      packet displaY filter in Wireshark display filter syntax\n");
292   fprintf(output, "  -n                       disable all name resolutions (def: all enabled)\n");
293   fprintf(output, "  -N <name resolve flags>  enable specific name resolution(s): \"mntC\"\n");
294   fprintf(output, "  -d %s ...\n", decode_as_arg_template);
295   fprintf(output, "                           \"Decode As\", see the man page for details\n");
296   fprintf(output, "                           Example: tcp.port==8888,http\n");
297   fprintf(output, "  -H <hosts file>          read a list of entries from a hosts file, which will\n");
298   fprintf(output, "                           then be written to a capture file. (Implies -W n)\n");
299
300   /*fprintf(output, "\n");*/
301   fprintf(output, "Output:\n");
302   fprintf(output, "  -w <outfile|->           write packets to a pcap-format file named \"outfile\"\n");
303   fprintf(output, "                           (or to the standard output for \"-\")\n");
304   fprintf(output, "  -C <config profile>      start with specified configuration profile\n");
305   fprintf(output, "  -F <output file type>    set the output file type, default is pcapng\n");
306   fprintf(output, "                           an empty \"-F\" option will list the file types\n");
307   fprintf(output, "  -V                       add output of packet tree        (Packet Details)\n");
308   fprintf(output, "  -O <protocols>           Only show packet details of these protocols, comma\n");
309   fprintf(output, "                           separated\n");
310   fprintf(output, "  -P                       print packet summary even when writing to a file\n");
311   fprintf(output, "  -S <separator>           the line separator to print between packets\n");
312   fprintf(output, "  -x                       add output of hex and ASCII dump (Packet Bytes)\n");
313   fprintf(output, "  -T pdml|ps|psml|text|fields\n");
314   fprintf(output, "                           format of text output (def: text)\n");
315   fprintf(output, "  -e <field>               field to print if -Tfields selected (e.g. tcp.port, col.Info);\n");
316   fprintf(output, "                           this option can be repeated to print multiple fields\n");
317   fprintf(output, "  -E<fieldsoption>=<value> set options for output when -Tfields selected:\n");
318   fprintf(output, "     header=y|n            switch headers on and off\n");
319   fprintf(output, "     separator=/t|/s|<char> select tab, space, printable character as separator\n");
320   fprintf(output, "     occurrence=f|l|a      print first, last or all occurrences of each field\n");
321   fprintf(output, "     aggregator=,|/s|<char> select comma, space, printable character as\n");
322   fprintf(output, "                           aggregator\n");
323   fprintf(output, "     quote=d|s|n           select double, single, no quotes for values\n");
324   fprintf(output, "  -t a|ad|d|dd|e|r|u|ud    output format of time stamps (def: r: rel. to first)\n");
325   fprintf(output, "  -u s|hms                 output format of seconds (def: s: seconds)\n");
326   fprintf(output, "  -l                       flush standard output after each packet\n");
327   fprintf(output, "  -q                       be more quiet on stdout (e.g. when using statistics)\n");
328   fprintf(output, "  -Q                       only log true errors to stderr (quieter than -q)\n");
329   fprintf(output, "  -g                       enable group read access on the output file(s)\n");
330   fprintf(output, "  -W n                     Save extra information in the file, if supported.\n");
331   fprintf(output, "                           n = write network address resolution information\n");
332   fprintf(output, "  -X <key>:<value>         eXtension options, see the man page for details\n");
333   fprintf(output, "  -z <statistics>          various statistics, see the man page for details\n");
334
335   fprintf(output, "\n");
336   fprintf(output, "Miscellaneous:\n");
337   fprintf(output, "  -h                       display this help and exit\n");
338   fprintf(output, "  -v                       display version info and exit\n");
339   fprintf(output, "  -o <name>:<value> ...    override preference setting\n");
340   fprintf(output, "  -K <keytab>              keytab file to use for kerberos decryption\n");
341   fprintf(output, "  -G [report]              dump one of several available reports and exit\n");
342   fprintf(output, "                           default report=\"fields\"\n");
343   fprintf(output, "                           use \"-G ?\" for more help\n");
344 }
345
346 static void
347 glossary_option_help(void)
348 {
349   FILE *output;
350
351   output = stdout;
352
353   fprintf(output, "TShark " VERSION "%s\n", wireshark_svnversion);
354
355   fprintf(output, "\n");
356   fprintf(output, "Usage: tshark -G [report]\n");
357   fprintf(output, "\n");
358   fprintf(output, "Glossary table reports:\n");
359   fprintf(output, "  -G fields                dump fields glossary and exit\n");
360   fprintf(output, "  -G protocols             dump protocols in registration database and exit\n");
361   fprintf(output, "  -G values                dump value, range, true/false strings and exit\n");
362   fprintf(output, "  -G ftypes                dump field type basic and descriptive names\n");
363   fprintf(output, "  -G decodes               dump \"layer type\"/\"decode as\" associations and exit\n");
364   fprintf(output, "  -G heuristic-decodes     dump heuristic dissector tables\n");
365   fprintf(output, "\n");
366   fprintf(output, "Preference reports:\n");
367   fprintf(output, "  -G defaultprefs          dump default preferences and exit\n");
368   fprintf(output, "  -G currentprefs          dump current preferences and exit\n");
369   fprintf(output, "\n");
370 }
371
372 /*
373  * For a dissector table, print on the stream described by output,
374  * its short name (which is what's used in the "-d" option) and its
375  * descriptive name.
376  */
377 static void
378 display_dissector_table_names(const char *table_name, const char *ui_name,
379                               gpointer output)
380 {
381   if ((prev_display_dissector_name == NULL) ||
382       (strcmp(prev_display_dissector_name, table_name) != 0)) {
383      fprintf((FILE *)output, "\t%s (%s)\n", table_name, ui_name);
384      prev_display_dissector_name = table_name;
385   }
386 }
387
388 /*
389  * For a dissector handle, print on the stream described by output,
390  * the filter name (which is what's used in the "-d" option) and the full
391  * name for the protocol that corresponds to this handle.
392  */
393 static void
394 display_dissector_names(const gchar *table _U_, gpointer handle, gpointer output)
395 {
396   int          proto_id;
397   const gchar *proto_filter_name;
398   const gchar *proto_ui_name;
399
400   proto_id = dissector_handle_get_protocol_index((dissector_handle_t)handle);
401
402   if (proto_id != -1) {
403     proto_filter_name = proto_get_protocol_filter_name(proto_id);
404     proto_ui_name =  proto_get_protocol_name(proto_id);
405     g_assert(proto_filter_name != NULL);
406     g_assert(proto_ui_name != NULL);
407
408     if ((prev_display_dissector_name == NULL) ||
409         (strcmp(prev_display_dissector_name, proto_filter_name) != 0)) {
410       fprintf((FILE *)output, "\t%s (%s)\n",
411               proto_filter_name,
412               proto_ui_name);
413        prev_display_dissector_name = proto_filter_name;
414     }
415   }
416 }
417
418 /*
419  * The protocol_name_search structure is used by find_protocol_name_func()
420  * to pass parameters and store results
421  */
422 struct protocol_name_search{
423   gchar              *searched_name;  /* Protocol filter name we are looking for */
424   dissector_handle_t  matched_handle; /* Handle for a dissector whose protocol has the specified filter name */
425   guint               nb_match;       /* How many dissectors matched searched_name */
426 };
427 typedef struct protocol_name_search *protocol_name_search_t;
428
429 /*
430  * This function parses all dissectors associated with a table to find the
431  * one whose protocol has the specified filter name.  It is called
432  * as a reference function in a call to dissector_table_foreach_handle.
433  * The name we are looking for, as well as the results, are stored in the
434  * protocol_name_search struct pointed to by user_data.
435  * If called using dissector_table_foreach_handle, we actually parse the
436  * whole list of dissectors.
437  */
438 static void
439 find_protocol_name_func(const gchar *table _U_, gpointer handle, gpointer user_data)
440
441 {
442   int                     proto_id;
443   const gchar            *protocol_filter_name;
444   protocol_name_search_t  search_info;
445
446   g_assert(handle);
447
448   search_info = (protocol_name_search_t)user_data;
449
450   proto_id = dissector_handle_get_protocol_index((dissector_handle_t)handle);
451   if (proto_id != -1) {
452     protocol_filter_name = proto_get_protocol_filter_name(proto_id);
453     g_assert(protocol_filter_name != NULL);
454     if (strcmp(protocol_filter_name, search_info->searched_name) == 0) {
455       /* Found a match */
456       if (search_info->nb_match == 0) {
457         /* Record this handle only if this is the first match */
458         search_info->matched_handle = (dissector_handle_t)handle; /* Record the handle for this matching dissector */
459       }
460       search_info->nb_match++;
461     }
462   }
463 }
464
465 /*
466  * Allow dissector key names to be sorted alphabetically
467  */
468
469 static gint
470 compare_dissector_key_name(gconstpointer dissector_a, gconstpointer dissector_b)
471 {
472   return strcmp((const char*)dissector_a, (const char*)dissector_b);
473 }
474
475 /*
476  * Print all layer type names supported.
477  * We send the output to the stream described by the handle output.
478  */
479
480 static void
481 fprint_all_layer_types(FILE *output)
482
483 {
484   prev_display_dissector_name = NULL;
485   dissector_all_tables_foreach_table(display_dissector_table_names, (gpointer)output, (GCompareFunc)compare_dissector_key_name);
486 }
487
488 /*
489  * Print all protocol names supported for a specific layer type.
490  * table_name contains the layer type name in which the search is performed.
491  * We send the output to the stream described by the handle output.
492  */
493
494 static void
495 fprint_all_protocols_for_layer_types(FILE *output, gchar *table_name)
496
497 {
498   prev_display_dissector_name = NULL;
499   dissector_table_foreach_handle(table_name,
500                                  display_dissector_names,
501                                  (gpointer)output);
502 }
503
504 /*
505  * The function below parses the command-line parameters for the decode as
506  * feature (a string pointer by cl_param).
507  * It checks the format of the command-line, searches for a matching table
508  * and dissector.  If a table/dissector match is not found, we display a
509  * summary of the available tables/dissectors (on stderr) and return FALSE.
510  * If everything is fine, we get the "Decode as" preference activated,
511  * then we return TRUE.
512  */
513 static gboolean
514 add_decode_as(const gchar *cl_param)
515 {
516   gchar                        *table_name;
517   guint32                       selector, selector2;
518   gchar                        *decoded_param;
519   gchar                        *remaining_param;
520   gchar                        *selector_str;
521   gchar                        *dissector_str;
522   dissector_handle_t            dissector_matching;
523   dissector_table_t             table_matching;
524   ftenum_t                      dissector_table_selector_type;
525   struct protocol_name_search   user_protocol_name;
526   guint64                       i;
527   char                          op;
528
529   /* The following code will allocate and copy the command-line options in a string pointed by decoded_param */
530
531   g_assert(cl_param);
532   decoded_param = g_strdup(cl_param);
533   g_assert(decoded_param);
534
535
536   /* The lines below will parse this string (modifying it) to extract all
537     necessary information.  Note that decoded_param is still needed since
538     strings are not copied - we just save pointers. */
539
540   /* This section extracts a layer type (table_name) from decoded_param */
541   table_name = decoded_param; /* Layer type string starts from beginning */
542
543   remaining_param = strchr(table_name, '=');
544   if (remaining_param == NULL) {
545     cmdarg_err("Parameter \"%s\" doesn't follow the template \"%s\"", cl_param, decode_as_arg_template);
546     /* If the argument does not follow the template, carry on anyway to check
547        if the table name is at least correct.  If remaining_param is NULL,
548        we'll exit anyway further down */
549   }
550   else {
551     *remaining_param = '\0'; /* Terminate the layer type string (table_name) where '=' was detected */
552   }
553
554   /* Remove leading and trailing spaces from the table name */
555   while ( table_name[0] == ' ' )
556     table_name++;
557   while ( table_name[strlen(table_name) - 1] == ' ' )
558     table_name[strlen(table_name) - 1] = '\0'; /* Note: if empty string, while loop will eventually exit */
559
560 /* The following part searches a table matching with the layer type specified */
561   table_matching = NULL;
562
563 /* Look for the requested table */
564   if ( !(*(table_name)) ) { /* Is the table name empty, if so, don't even search for anything, display a message */
565     cmdarg_err("No layer type specified"); /* Note, we don't exit here, but table_matching will remain NULL, so we exit below */
566   }
567   else {
568     table_matching = find_dissector_table(table_name);
569     if (!table_matching) {
570       cmdarg_err("Unknown layer type -- %s", table_name); /* Note, we don't exit here, but table_matching will remain NULL, so we exit below */
571     }
572   }
573
574   if (!table_matching) {
575     /* Display a list of supported layer types to help the user, if the
576        specified layer type was not found */
577     cmdarg_err("Valid layer types are:");
578     fprint_all_layer_types(stderr);
579   }
580   if (remaining_param == NULL || !table_matching) {
581     /* Exit if the layer type was not found, or if no '=' separator was found
582        (see above) */
583     g_free(decoded_param);
584     return FALSE;
585   }
586
587   if (*(remaining_param + 1) != '=') { /* Check for "==" and not only '=' */
588     cmdarg_err("WARNING: -d requires \"==\" instead of \"=\". Option will be treated as \"%s==%s\"", table_name, remaining_param + 1);
589   }
590   else {
591     remaining_param++; /* Move to the second '=' */
592     *remaining_param = '\0'; /* Remove the second '=' */
593   }
594   remaining_param++; /* Position after the layer type string */
595
596   /* This section extracts a selector value (selector_str) from decoded_param */
597
598   selector_str = remaining_param; /* Next part starts with the selector number */
599
600   remaining_param = strchr(selector_str, ',');
601   if (remaining_param == NULL) {
602     cmdarg_err("Parameter \"%s\" doesn't follow the template \"%s\"", cl_param, decode_as_arg_template);
603     /* If the argument does not follow the template, carry on anyway to check
604        if the selector value is at least correct.  If remaining_param is NULL,
605        we'll exit anyway further down */
606   }
607   else {
608     *remaining_param = '\0'; /* Terminate the selector number string (selector_str) where ',' was detected */
609   }
610
611   dissector_table_selector_type = get_dissector_table_selector_type(table_name);
612
613   switch (dissector_table_selector_type) {
614
615   case FT_UINT8:
616   case FT_UINT16:
617   case FT_UINT24:
618   case FT_UINT32:
619     /* The selector for this table is an unsigned number.  Parse it as such.
620        There's no need to remove leading and trailing spaces from the
621        selector number string, because sscanf will do that for us. */
622     switch (sscanf(selector_str, "%u%c%u", &selector, &op, &selector2)) {
623       case 1:
624         op = '\0';
625         break;
626       case 3:
627         if (op != ':' && op != '-') {
628             cmdarg_err("Invalid selector numeric range \"%s\"", selector_str);
629             g_free(decoded_param);
630             return FALSE;
631         }
632         if (op == ':') {
633             if ((selector2 == 0) || ((guint64)selector + selector2 - 1) > G_MAXUINT32) {
634                 cmdarg_err("Invalid selector numeric range \"%s\"", selector_str);
635                 g_free(decoded_param);
636                 return FALSE;
637             }
638         }
639         else if (selector2 < selector) {
640             /* We could swap them for the user, but maybe it's better to call
641              * this out as an error in case it's not what was intended? */
642             cmdarg_err("Invalid selector numeric range \"%s\"", selector_str);
643             g_free(decoded_param);
644             return FALSE;
645         }
646         break;
647       default:
648         cmdarg_err("Invalid selector number \"%s\"", selector_str);
649         g_free(decoded_param);
650         return FALSE;
651     }
652     break;
653
654   case FT_STRING:
655   case FT_STRINGZ:
656     /* The selector for this table is a string. */
657     break;
658
659   default:
660     /* There are currently no dissector tables with any types other
661        than the ones listed above. */
662     g_assert_not_reached();
663   }
664
665   if (remaining_param == NULL) {
666     /* Exit if no ',' separator was found (see above) */
667     cmdarg_err("Valid protocols for layer type \"%s\" are:", table_name);
668     fprint_all_protocols_for_layer_types(stderr, table_name);
669     g_free(decoded_param);
670     return FALSE;
671   }
672
673   remaining_param++; /* Position after the selector number string */
674
675   /* This section extracts a protocol filter name (dissector_str) from decoded_param */
676
677   dissector_str = remaining_param; /* All the rest of the string is the dissector (decode as protocol) name */
678
679   /* Remove leading and trailing spaces from the dissector name */
680   while ( dissector_str[0] == ' ' )
681     dissector_str++;
682   while ( dissector_str[strlen(dissector_str) - 1] == ' ' )
683     dissector_str[strlen(dissector_str) - 1] = '\0'; /* Note: if empty string, while loop will eventually exit */
684
685   dissector_matching = NULL;
686
687   /* We now have a pointer to the handle for the requested table inside the variable table_matching */
688   if ( ! (*dissector_str) ) { /* Is the dissector name empty, if so, don't even search for a matching dissector and display all dissectors found for the selected table */
689     cmdarg_err("No protocol name specified"); /* Note, we don't exit here, but dissector_matching will remain NULL, so we exit below */
690   }
691   else {
692     user_protocol_name.nb_match = 0;
693     user_protocol_name.searched_name = dissector_str;
694     user_protocol_name.matched_handle = NULL;
695
696     dissector_table_foreach_handle(table_name, find_protocol_name_func, &user_protocol_name); /* Go and perform the search for this dissector in the this table's dissectors' names and shortnames */
697
698     if (user_protocol_name.nb_match != 0) {
699       dissector_matching = user_protocol_name.matched_handle;
700       if (user_protocol_name.nb_match > 1) {
701         cmdarg_err("WARNING: Protocol \"%s\" matched %u dissectors, first one will be used", dissector_str, user_protocol_name.nb_match);
702       }
703     }
704     else {
705       /* OK, check whether the problem is that there isn't any such
706          protocol, or that there is but it's not specified as a protocol
707          that's valid for that dissector table.
708          Note, we don't exit here, but dissector_matching will remain NULL,
709          so we exit below */
710       if (proto_get_id_by_filter_name(dissector_str) == -1) {
711         /* No such protocol */
712         cmdarg_err("Unknown protocol -- \"%s\"", dissector_str);
713       } else {
714         cmdarg_err("Protocol \"%s\" isn't valid for layer type \"%s\"",
715                    dissector_str, table_name);
716       }
717     }
718   }
719
720   if (!dissector_matching) {
721     cmdarg_err("Valid protocols for layer type \"%s\" are:", table_name);
722     fprint_all_protocols_for_layer_types(stderr, table_name);
723     g_free(decoded_param);
724     return FALSE;
725   }
726
727 /* This is the end of the code that parses the command-line options.
728    All information is now stored in the variables:
729    table_name
730    selector
731    dissector_matching
732    The above variables that are strings are still pointing to areas within
733    decoded_parm.  decoded_parm thus still needs to be kept allocated in
734    until we stop needing these variables
735    decoded_param will be deallocated at each exit point of this function */
736
737
738   /* We now have a pointer to the handle for the requested dissector
739      (requested protocol) inside the variable dissector_matching */
740   switch (dissector_table_selector_type) {
741
742   case FT_UINT8:
743   case FT_UINT16:
744   case FT_UINT24:
745   case FT_UINT32:
746     /* The selector for this table is an unsigned number. */
747     if (op == '\0') {
748       dissector_change_uint(table_name, selector, dissector_matching);
749     } else if (op == ':') {
750       for (i = selector; i < (guint64)selector + selector2; i++) {
751         dissector_change_uint(table_name, (guint32)i, dissector_matching);
752       }
753     } else { /* op == '-' */
754       for (i = selector; i <= selector2; i++) {
755         dissector_change_uint(table_name, (guint32)i, dissector_matching);
756       }
757     }
758     break;
759
760   case FT_STRING:
761   case FT_STRINGZ:
762     /* The selector for this table is a string. */
763     dissector_change_string(table_name, selector_str, dissector_matching);
764     break;
765
766   default:
767     /* There are currently no dissector tables with any types other
768        than the ones listed above. */
769     g_assert_not_reached();
770   }
771   g_free(decoded_param); /* "Decode As" rule has been successfully added */
772   return TRUE;
773 }
774
775 static void
776 tshark_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
777     const gchar *message, gpointer user_data)
778 {
779   /* ignore log message, if log_level isn't interesting based
780      upon the console log preferences.
781      If the preferences haven't been loaded loaded yet, display the
782      message anyway.
783
784      The default console_log_level preference value is such that only
785        ERROR, CRITICAL and WARNING level messages are processed;
786        MESSAGE, INFO and DEBUG level messages are ignored.
787
788      XXX: Aug 07, 2009: Prior tshark g_log code was hardwired to process only
789            ERROR and CRITICAL level messages so the current code is a behavioral
790            change.  The current behavior is the same as in Wireshark.
791   */
792   if ((log_level & G_LOG_LEVEL_MASK & prefs.console_log_level) == 0 &&
793      prefs.console_log_level != 0) {
794     return;
795   }
796
797   g_log_default_handler(log_domain, log_level, message, user_data);
798
799 }
800
801 static char *
802 output_file_description(const char *fname)
803 {
804   char *save_file_string;
805
806   /* Get a string that describes what we're writing to */
807   if (strcmp(fname, "-") == 0) {
808     /* We're writing to the standard output */
809     save_file_string = g_strdup("standard output");
810   } else {
811     /* We're writing to a file with the name in save_file */
812     save_file_string = g_strdup_printf("file \"%s\"", fname);
813   }
814   return save_file_string;
815 }
816
817 static void
818 print_current_user(void) {
819   gchar *cur_user, *cur_group;
820
821   if (started_with_special_privs()) {
822     cur_user = get_cur_username();
823     cur_group = get_cur_groupname();
824     fprintf(stderr, "Running as user \"%s\" and group \"%s\".",
825       cur_user, cur_group);
826     g_free(cur_user);
827     g_free(cur_group);
828     if (running_with_special_privs()) {
829       fprintf(stderr, " This could be dangerous.");
830     }
831     fprintf(stderr, "\n");
832   }
833 }
834
835 static void
836 check_capture_privs(void) {
837 #ifdef _WIN32
838   load_wpcap();
839   /* Warn the user if npf.sys isn't loaded. */
840   if (!npf_sys_is_running() && get_os_major_version() >= 6) {
841     fprintf(stderr, "The NPF driver isn't running.  You may have trouble "
842       "capturing or\nlisting interfaces.\n");
843   }
844 #endif
845 }
846
847 static void
848 show_version(GString *comp_info_str, GString *runtime_info_str)
849 {
850   printf("TShark " VERSION "%s\n"
851          "\n"
852          "%s"
853          "\n"
854          "%s"
855          "\n"
856          "%s",
857          wireshark_svnversion, get_copyright_info(), comp_info_str->str,
858          runtime_info_str->str);
859 }
860
861 int
862 main(int argc, char *argv[])
863 {
864   GString             *comp_info_str;
865   GString             *runtime_info_str;
866   char                *init_progfile_dir_error;
867   int                  opt;
868   gboolean             arg_error = FALSE;
869
870 #ifdef _WIN32
871   WSADATA              wsaData;
872 #endif  /* _WIN32 */
873
874   char                *gpf_path, *pf_path;
875   char                *gdp_path, *dp_path;
876   int                  gpf_open_errno, gpf_read_errno;
877   int                  pf_open_errno, pf_read_errno;
878   int                  gdp_open_errno, gdp_read_errno;
879   int                  dp_open_errno, dp_read_errno;
880   int                  err;
881   volatile int         exit_status = 0;
882 #ifdef HAVE_LIBPCAP
883   gboolean             list_link_layer_types = FALSE;
884   gboolean             start_capture = FALSE;
885   int                  status;
886   GList               *if_list;
887   gchar               *err_str;
888 #else
889   gboolean             capture_option_specified = FALSE;
890 #endif
891   gboolean             quiet = FALSE;
892 #ifdef PCAP_NG_DEFAULT
893   volatile int         out_file_type = WTAP_FILE_PCAPNG;
894 #else
895   volatile int         out_file_type = WTAP_FILE_PCAP;
896 #endif
897   volatile gboolean    out_file_name_res = FALSE;
898   gchar               *volatile cf_name = NULL;
899   gchar               *rfilter = NULL;
900   gchar               *dfilter = NULL;
901 #ifdef HAVE_PCAP_OPEN_DEAD
902   struct bpf_program   fcode;
903 #endif
904   dfilter_t           *rfcode = NULL;
905   dfilter_t           *dfcode = NULL;
906   e_prefs             *prefs_p;
907   char                 badopt;
908   int                  log_flags;
909   int                  optind_initial;
910   gchar               *output_only = NULL;
911
912 #ifdef HAVE_PCAP_REMOTE
913 #define OPTSTRING_A "A:"
914 #else
915 #define OPTSTRING_A ""
916 #endif
917 #ifdef HAVE_LIBPCAP
918 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
919 #define OPTSTRING_B "B:"
920 #else
921 #define OPTSTRING_B ""
922 #endif  /* _WIN32 or HAVE_PCAP_CREATE */
923 #else /* HAVE_LIBPCAP */
924 #define OPTSTRING_B ""
925 #endif  /* HAVE_LIBPCAP */
926
927 #ifdef HAVE_PCAP_CREATE
928 #define OPTSTRING_I "I"
929 #else
930 #define OPTSTRING_I ""
931 #endif
932
933 #define OPTSTRING "2a:" OPTSTRING_A "b:" OPTSTRING_B "c:C:d:De:E:f:F:gG:hH:i:" OPTSTRING_I "K:lLnN:o:O:pPqQr:R:s:S:t:T:u:vVw:W:xX:y:Y:z:"
934
935   static const char    optstring[] = OPTSTRING;
936
937   /* Assemble the compile-time version information string */
938   comp_info_str = g_string_new("Compiled ");
939   get_compiled_version_info(comp_info_str, NULL, epan_get_compiled_version_info);
940
941   /* Assemble the run-time version information string */
942   runtime_info_str = g_string_new("Running ");
943   get_runtime_version_info(runtime_info_str, NULL);
944
945   /* Add it to the information to be reported on a crash. */
946   ws_add_crash_info("TShark " VERSION "%s\n"
947          "\n"
948          "%s"
949          "\n"
950          "%s",
951       wireshark_svnversion, comp_info_str->str, runtime_info_str->str);
952
953 #ifdef _WIN32
954   arg_list_utf_16to8(argc, argv);
955   create_app_running_mutex();
956 #if !GLIB_CHECK_VERSION(2,31,0)
957   g_thread_init(NULL);
958 #endif
959 #endif /* _WIN32 */
960
961   /*
962    * Get credential information for later use.
963    */
964   init_process_policies();
965
966   /*
967    * Attempt to get the pathname of the executable file.
968    */
969   init_progfile_dir_error = init_progfile_dir(argv[0], main);
970   if (init_progfile_dir_error != NULL) {
971     fprintf(stderr, "tshark: Can't get pathname of tshark program: %s.\n",
972             init_progfile_dir_error);
973   }
974
975   /*
976    * In order to have the -X opts assigned before the wslua machine starts
977    * we need to call getopts before epan_init() gets called.
978    */
979   opterr = 0;
980   optind_initial = optind;
981
982   while ((opt = getopt(argc, argv, optstring)) != -1) {
983     switch (opt) {
984     case 'C':        /* Configuration Profile */
985       if (profile_exists (optarg, FALSE)) {
986         set_profile_name (optarg);
987       } else {
988         cmdarg_err("Configuration Profile \"%s\" does not exist", optarg);
989         return 1;
990       }
991       break;
992     case 'P':        /* Print packet summary info even when writing to a file */
993       print_packet_info = TRUE;
994       print_summary = TRUE;
995       break;
996     case 'O':        /* Only output these protocols */
997       output_only = g_strdup(optarg);
998       /* FALLTHROUGH */
999     case 'V':        /* Verbose */
1000       print_details = TRUE;
1001       print_packet_info = TRUE;
1002       break;
1003     case 'x':        /* Print packet data in hex (and ASCII) */
1004       print_hex = TRUE;
1005       /*  The user asked for hex output, so let's ensure they get it,
1006        *  even if they're writing to a file.
1007        */
1008       print_packet_info = TRUE;
1009       break;
1010     case 'X':
1011       ex_opt_add(optarg);
1012       break;
1013     default:
1014       break;
1015     }
1016   }
1017
1018   /*
1019    * Print packet summary information is the default, unless either -V or -x
1020    * were specified and -P was not.  Note that this is new behavior, which
1021    * allows for the possibility of printing only hex/ascii output without
1022    * necessarily requiring that either the summary or details be printed too.
1023    */
1024   if (print_summary == -1)
1025     print_summary = (print_details || print_hex) ? FALSE : TRUE;
1026
1027   optind = optind_initial;
1028   opterr = 1;
1029
1030
1031
1032 /** Send All g_log messages to our own handler **/
1033
1034   log_flags =
1035                     G_LOG_LEVEL_ERROR|
1036                     G_LOG_LEVEL_CRITICAL|
1037                     G_LOG_LEVEL_WARNING|
1038                     G_LOG_LEVEL_MESSAGE|
1039                     G_LOG_LEVEL_INFO|
1040                     G_LOG_LEVEL_DEBUG|
1041                     G_LOG_FLAG_FATAL|G_LOG_FLAG_RECURSION;
1042
1043   g_log_set_handler(NULL,
1044                     (GLogLevelFlags)log_flags,
1045                     tshark_log_handler, NULL /* user_data */);
1046   g_log_set_handler(LOG_DOMAIN_MAIN,
1047                     (GLogLevelFlags)log_flags,
1048                     tshark_log_handler, NULL /* user_data */);
1049
1050 #ifdef HAVE_LIBPCAP
1051   g_log_set_handler(LOG_DOMAIN_CAPTURE,
1052                     (GLogLevelFlags)log_flags,
1053                     tshark_log_handler, NULL /* user_data */);
1054   g_log_set_handler(LOG_DOMAIN_CAPTURE_CHILD,
1055                     (GLogLevelFlags)log_flags,
1056                     tshark_log_handler, NULL /* user_data */);
1057 #endif
1058
1059   initialize_funnel_ops();
1060
1061 #ifdef HAVE_LIBPCAP
1062   capture_opts_init(&global_capture_opts);
1063   capture_session_init(&global_capture_session, (void *)&cfile);
1064 #endif
1065
1066   timestamp_set_type(TS_RELATIVE);
1067   timestamp_set_precision(TS_PREC_AUTO);
1068   timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1069
1070   /* Register all dissectors; we must do this before checking for the
1071      "-G" flag, as the "-G" flag dumps information registered by the
1072      dissectors, and we must do it before we read the preferences, in
1073      case any dissectors register preferences. */
1074   epan_init(register_all_protocols, register_all_protocol_handoffs, NULL, NULL,
1075             failure_message, open_failure_message, read_failure_message,
1076             write_failure_message);
1077
1078   /* Register all tap listeners; we do this before we parse the arguments,
1079      as the "-z" argument can specify a registered tap. */
1080
1081   /* we register the plugin taps before the other taps because
1082      stats_tree taps plugins will be registered as tap listeners
1083      by stats_tree_stat.c and need to registered before that */
1084 #ifdef HAVE_PLUGINS
1085   register_all_plugin_tap_listeners();
1086 #endif
1087   register_all_tap_listeners();
1088
1089   /* If invoked with the "-G" flag, we dump out information based on
1090      the argument to the "-G" flag; if no argument is specified,
1091      for backwards compatibility we dump out a glossary of display
1092      filter symbols.
1093
1094      XXX - we do this here, for now, to support "-G" with no arguments.
1095      If none of our build or other processes uses "-G" with no arguments,
1096      we can just process it with the other arguments. */
1097   if (argc >= 2 && strcmp(argv[1], "-G") == 0) {
1098     proto_initialize_all_prefixes();
1099
1100     if (argc == 2)
1101       proto_registrar_dump_fields();
1102     else {
1103       if (strcmp(argv[2], "fields") == 0)
1104         proto_registrar_dump_fields();
1105       else if (strcmp(argv[2], "protocols") == 0)
1106         proto_registrar_dump_protocols();
1107       else if (strcmp(argv[2], "values") == 0)
1108         proto_registrar_dump_values();
1109       else if (strcmp(argv[2], "ftypes") == 0)
1110         proto_registrar_dump_ftypes();
1111       else if (strcmp(argv[2], "decodes") == 0)
1112         dissector_dump_decodes();
1113       else if (strcmp(argv[2], "heuristic-decodes") == 0)
1114         dissector_dump_heur_decodes();
1115       else if (strcmp(argv[2], "defaultprefs") == 0)
1116         write_prefs(NULL);
1117       else if (strcmp(argv[2], "plugins") == 0)
1118         plugins_dump_all();
1119       else if (strcmp(argv[2], "?") == 0)
1120         glossary_option_help();
1121       else if (strcmp(argv[2], "-?") == 0)
1122         glossary_option_help();
1123       else if (strcmp(argv[2], "currentprefs") == 0) {
1124         read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
1125             &pf_open_errno, &pf_read_errno, &pf_path);
1126         write_prefs(NULL);
1127       } else {
1128         cmdarg_err("Invalid \"%s\" option for -G flag, enter -G ? for more help.", argv[2]);
1129         return 1;
1130       }
1131     }
1132     return 0;
1133   }
1134
1135   /* Set the C-language locale to the native environment. */
1136   setlocale(LC_ALL, "");
1137
1138   prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
1139                      &pf_open_errno, &pf_read_errno, &pf_path);
1140   if (gpf_path != NULL) {
1141     if (gpf_open_errno != 0) {
1142       cmdarg_err("Can't open global preferences file \"%s\": %s.",
1143               pf_path, g_strerror(gpf_open_errno));
1144     }
1145     if (gpf_read_errno != 0) {
1146       cmdarg_err("I/O error reading global preferences file \"%s\": %s.",
1147               pf_path, g_strerror(gpf_read_errno));
1148     }
1149   }
1150   if (pf_path != NULL) {
1151     if (pf_open_errno != 0) {
1152       cmdarg_err("Can't open your preferences file \"%s\": %s.", pf_path,
1153               g_strerror(pf_open_errno));
1154     }
1155     if (pf_read_errno != 0) {
1156       cmdarg_err("I/O error reading your preferences file \"%s\": %s.",
1157               pf_path, g_strerror(pf_read_errno));
1158     }
1159     g_free(pf_path);
1160     pf_path = NULL;
1161   }
1162
1163   /* Read the disabled protocols file. */
1164   read_disabled_protos_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
1165                             &dp_path, &dp_open_errno, &dp_read_errno);
1166   if (gdp_path != NULL) {
1167     if (gdp_open_errno != 0) {
1168       cmdarg_err("Could not open global disabled protocols file\n\"%s\": %s.",
1169                  gdp_path, g_strerror(gdp_open_errno));
1170     }
1171     if (gdp_read_errno != 0) {
1172       cmdarg_err("I/O error reading global disabled protocols file\n\"%s\": %s.",
1173                  gdp_path, g_strerror(gdp_read_errno));
1174     }
1175     g_free(gdp_path);
1176   }
1177   if (dp_path != NULL) {
1178     if (dp_open_errno != 0) {
1179       cmdarg_err(
1180         "Could not open your disabled protocols file\n\"%s\": %s.", dp_path,
1181         g_strerror(dp_open_errno));
1182     }
1183     if (dp_read_errno != 0) {
1184       cmdarg_err(
1185         "I/O error reading your disabled protocols file\n\"%s\": %s.", dp_path,
1186         g_strerror(dp_read_errno));
1187     }
1188     g_free(dp_path);
1189   }
1190
1191   check_capture_privs();
1192
1193   cap_file_init(&cfile);
1194
1195   /* Print format defaults to this. */
1196   print_format = PR_FMT_TEXT;
1197
1198   output_fields = output_fields_new();
1199
1200   /* Now get our args */
1201   while ((opt = getopt(argc, argv, optstring)) != -1) {
1202     switch (opt) {
1203     case '2':        /* Perform two pass analysis */
1204       perform_two_pass_analysis = TRUE;
1205       break;
1206     case 'a':        /* autostop criteria */
1207     case 'b':        /* Ringbuffer option */
1208     case 'c':        /* Capture x packets */
1209     case 'f':        /* capture filter */
1210     case 'g':        /* enable group read access on file(s) */
1211     case 'i':        /* Use interface x */
1212     case 'p':        /* Don't capture in promiscuous mode */
1213 #ifdef HAVE_PCAP_REMOTE
1214     case 'A':        /* Authentication */
1215 #endif
1216 #ifdef HAVE_PCAP_CREATE
1217     case 'I':        /* Capture in monitor mode, if available */
1218 #endif
1219     case 's':        /* Set the snapshot (capture) length */
1220     case 'w':        /* Write to capture file x */
1221     case 'y':        /* Set the pcap data link type */
1222 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
1223     case 'B':        /* Buffer size */
1224 #endif /* _WIN32 or HAVE_PCAP_CREATE */
1225 #ifdef HAVE_LIBPCAP
1226       status = capture_opts_add_opt(&global_capture_opts, opt, optarg, &start_capture);
1227       if (status != 0) {
1228         return status;
1229       }
1230 #else
1231       capture_option_specified = TRUE;
1232       arg_error = TRUE;
1233 #endif
1234       break;
1235     case 'C':
1236       /* Configuration profile settings were already processed just ignore them this time*/
1237       break;
1238     case 'd':        /* Decode as rule */
1239       if (!add_decode_as(optarg))
1240         return 1;
1241       break;
1242 #if defined(HAVE_HEIMDAL_KERBEROS) || defined(HAVE_MIT_KERBEROS)
1243     case 'K':        /* Kerberos keytab file */
1244       read_keytab_file(optarg);
1245       break;
1246 #endif
1247     case 'D':        /* Print a list of capture devices and exit */
1248 #ifdef HAVE_LIBPCAP
1249       if_list = capture_interface_list(&err, &err_str,NULL);
1250       if (if_list == NULL) {
1251         switch (err) {
1252         case CANT_GET_INTERFACE_LIST:
1253         case DONT_HAVE_PCAP:
1254           cmdarg_err("%s", err_str);
1255           g_free(err_str);
1256           break;
1257
1258         case NO_INTERFACES_FOUND:
1259           cmdarg_err("There are no interfaces on which a capture can be done");
1260           break;
1261         }
1262         return 2;
1263       }
1264       capture_opts_print_interfaces(if_list);
1265       free_interface_list(if_list);
1266       return 0;
1267 #else
1268       capture_option_specified = TRUE;
1269       arg_error = TRUE;
1270 #endif
1271       break;
1272     case 'e':
1273       /* Field entry */
1274       output_fields_add(output_fields, optarg);
1275       break;
1276     case 'E':
1277       /* Field option */
1278       if (!output_fields_set_option(output_fields, optarg)) {
1279         cmdarg_err("\"%s\" is not a valid field output option=value pair.", optarg);
1280         output_fields_list_options(stderr);
1281         return 1;
1282       }
1283       break;
1284     case 'F':
1285       out_file_type = wtap_short_string_to_file_type(optarg);
1286       if (out_file_type < 0) {
1287         cmdarg_err("\"%s\" isn't a valid capture file type", optarg);
1288         list_capture_types();
1289         return 1;
1290       }
1291       break;
1292     case 'W':        /* Select extra information to save in our capture file */
1293       /* This is patterned after the -N flag which may not be the best idea. */
1294       if (strchr(optarg, 'n')) {
1295         out_file_name_res = TRUE;
1296       } else {
1297         cmdarg_err("Invalid -W argument \"%s\"", optarg);
1298         return 1;
1299       }
1300       break;
1301     case 'H':        /* Read address to name mappings from a hosts file */
1302       if (! add_hosts_file(optarg))
1303       {
1304         cmdarg_err("Can't read host entries from \"%s\"", optarg);
1305         return 1;
1306       }
1307       out_file_name_res = TRUE;
1308       break;
1309
1310     case 'h':        /* Print help and exit */
1311       print_usage(TRUE);
1312       return 0;
1313       break;
1314     case 'l':        /* "Line-buffer" standard output */
1315       /* This isn't line-buffering, strictly speaking, it's just
1316          flushing the standard output after the information for
1317          each packet is printed; however, that should be good
1318          enough for all the purposes to which "-l" is put (and
1319          is probably actually better for "-V", as it does fewer
1320          writes).
1321
1322          See the comment in "process_packet()" for an explanation of
1323          why we do that, and why we don't just use "setvbuf()" to
1324          make the standard output line-buffered (short version: in
1325          Windows, "line-buffered" is the same as "fully-buffered",
1326          and the output buffer is only flushed when it fills up). */
1327       line_buffered = TRUE;
1328       break;
1329     case 'L':        /* Print list of link-layer types and exit */
1330 #ifdef HAVE_LIBPCAP
1331       list_link_layer_types = TRUE;
1332 #else
1333       capture_option_specified = TRUE;
1334       arg_error = TRUE;
1335 #endif
1336       break;
1337     case 'n':        /* No name resolution */
1338       gbl_resolv_flags.mac_name = FALSE;
1339       gbl_resolv_flags.network_name = FALSE;
1340       gbl_resolv_flags.transport_name = FALSE;
1341       gbl_resolv_flags.concurrent_dns = FALSE;
1342       break;
1343     case 'N':        /* Select what types of addresses/port #s to resolve */
1344       badopt = string_to_name_resolve(optarg, &gbl_resolv_flags);
1345       if (badopt != '\0') {
1346         cmdarg_err("-N specifies unknown resolving option '%c';",
1347                    badopt);
1348         cmdarg_err_cont( "           Valid options are 'm', 'n', 't', and 'C'");
1349         return 1;
1350       }
1351       break;
1352     case 'o':        /* Override preference from command line */
1353       switch (prefs_set_pref(optarg)) {
1354
1355       case PREFS_SET_OK:
1356         break;
1357
1358       case PREFS_SET_SYNTAX_ERR:
1359         cmdarg_err("Invalid -o flag \"%s\"", optarg);
1360         return 1;
1361         break;
1362
1363       case PREFS_SET_NO_SUCH_PREF:
1364       case PREFS_SET_OBSOLETE:
1365         cmdarg_err("-o flag \"%s\" specifies unknown preference", optarg);
1366         return 1;
1367         break;
1368       }
1369       break;
1370     case 'q':        /* Quiet */
1371       quiet = TRUE;
1372       break;
1373     case 'Q':        /* Really quiet */
1374       quiet = TRUE;
1375       really_quiet = TRUE;
1376       break;
1377     case 'r':        /* Read capture file x */
1378       cf_name = g_strdup(optarg);
1379       break;
1380     case 'R':        /* Read file filter */
1381       rfilter = optarg;
1382       break;
1383     case 'P':
1384         /* already processed; just ignore it now */
1385         break;
1386     case 'S':        /* Set the line Separator to be printed between packets */
1387       separator = strdup(optarg);
1388       break;
1389     case 't':        /* Time stamp type */
1390       if (strcmp(optarg, "r") == 0)
1391         timestamp_set_type(TS_RELATIVE);
1392       else if (strcmp(optarg, "a") == 0)
1393         timestamp_set_type(TS_ABSOLUTE);
1394       else if (strcmp(optarg, "ad") == 0)
1395         timestamp_set_type(TS_ABSOLUTE_WITH_DATE);
1396       else if (strcmp(optarg, "d") == 0)
1397         timestamp_set_type(TS_DELTA);
1398       else if (strcmp(optarg, "dd") == 0)
1399         timestamp_set_type(TS_DELTA_DIS);
1400       else if (strcmp(optarg, "e") == 0)
1401         timestamp_set_type(TS_EPOCH);
1402       else if (strcmp(optarg, "u") == 0)
1403         timestamp_set_type(TS_UTC);
1404       else if (strcmp(optarg, "ud") == 0)
1405         timestamp_set_type(TS_UTC_WITH_DATE);
1406       else {
1407         cmdarg_err("Invalid time stamp type \"%s\"",
1408                    optarg);
1409         cmdarg_err_cont("It must be \"a\" for absolute, \"ad\" for absolute with date, \"d\" for delta,");
1410         cmdarg_err_cont("\"dd\" for delta displayed, \"e\" for epoch, \"r\" for relative, \"u\" for UTC, ");
1411         cmdarg_err_cont("or \"ud\" for UTC with date.");
1412         return 1;
1413       }
1414       break;
1415     case 'T':        /* printing Type */
1416       if (strcmp(optarg, "text") == 0) {
1417         output_action = WRITE_TEXT;
1418         print_format = PR_FMT_TEXT;
1419       } else if (strcmp(optarg, "ps") == 0) {
1420         output_action = WRITE_TEXT;
1421         print_format = PR_FMT_PS;
1422       } else if (strcmp(optarg, "pdml") == 0) {
1423         output_action = WRITE_XML;
1424         print_details = TRUE;   /* Need details */
1425         print_summary = FALSE;  /* Don't allow summary */
1426       } else if (strcmp(optarg, "psml") == 0) {
1427         output_action = WRITE_XML;
1428         print_details = FALSE;  /* Don't allow details */
1429         print_summary = TRUE;   /* Need summary */
1430       } else if (strcmp(optarg, "fields") == 0) {
1431         output_action = WRITE_FIELDS;
1432         print_details = TRUE;   /* Need full tree info */
1433         print_summary = FALSE;  /* Don't allow summary */
1434       } else {
1435         cmdarg_err("Invalid -T parameter.");
1436         cmdarg_err_cont("It must be \"ps\", \"text\", \"pdml\", \"psml\" or \"fields\".");
1437         return 1;
1438       }
1439       break;
1440     case 'u':        /* Seconds type */
1441       if (strcmp(optarg, "s") == 0)
1442         timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1443       else if (strcmp(optarg, "hms") == 0)
1444         timestamp_set_seconds_type(TS_SECONDS_HOUR_MIN_SEC);
1445       else {
1446         cmdarg_err("Invalid seconds type \"%s\"", optarg);
1447         cmdarg_err_cont("It must be \"s\" for seconds or \"hms\" for hours, minutes and seconds.");
1448         return 1;
1449       }
1450       break;
1451     case 'v':         /* Show version and exit */
1452     {
1453       show_version(comp_info_str, runtime_info_str);
1454       g_string_free(comp_info_str, TRUE);
1455       g_string_free(runtime_info_str, TRUE);
1456       /* We don't really have to cleanup here, but it's a convenient way to test
1457        * start-up and shut-down of the epan library without any UI-specific
1458        * cruft getting in the way. Makes the results of running
1459        * $ ./tools/valgrind-wireshark -n
1460        * much more useful. */
1461       epan_cleanup();
1462       return 0;
1463     }
1464     case 'O':        /* Only output these protocols */
1465       /* already processed; just ignore it now */
1466       break;
1467     case 'V':        /* Verbose */
1468       /* already processed; just ignore it now */
1469       break;
1470     case 'x':        /* Print packet data in hex (and ASCII) */
1471       /* already processed; just ignore it now */
1472       break;
1473     case 'X':
1474       break;
1475     case 'Y':
1476       dfilter = optarg;
1477       break;
1478     case 'z':
1479       /* We won't call the init function for the stat this soon
1480          as it would disallow MATE's fields (which are registered
1481          by the preferences set callback) from being used as
1482          part of a tap filter.  Instead, we just add the argument
1483          to a list of stat arguments. */
1484       if (!process_stat_cmd_arg(optarg)) {
1485         if (strcmp("help", optarg)==0) {
1486           fprintf(stderr, "tshark: The available statistics for the \"-z\" option are:\n");
1487           list_stat_cmd_args();
1488           return 0;
1489         }
1490         cmdarg_err("Invalid -z argument \"%s\".", optarg);
1491         cmdarg_err_cont("  -z argument must be one of :");
1492         list_stat_cmd_args();
1493         return 1;
1494       }
1495       break;
1496     default:
1497     case '?':        /* Bad flag - print usage message */
1498       switch(optopt) {
1499       case 'F':
1500         list_capture_types();
1501         break;
1502       default:
1503         print_usage(TRUE);
1504       }
1505       return 1;
1506       break;
1507     }
1508   }
1509
1510   /* If we specified output fields, but not the output field type... */
1511   if (WRITE_FIELDS != output_action && 0 != output_fields_num_fields(output_fields)) {
1512         cmdarg_err("Output fields were specified with \"-e\", "
1513             "but \"-Tfields\" was not specified.");
1514         return 1;
1515   } else if (WRITE_FIELDS == output_action && 0 == output_fields_num_fields(output_fields)) {
1516         cmdarg_err("\"-Tfields\" was specified, but no fields were "
1517                     "specified with \"-e\".");
1518
1519         return 1;
1520   }
1521
1522   /* If no capture filter or display filter has been specified, and there are
1523      still command-line arguments, treat them as the tokens of a capture
1524      filter (if no "-r" flag was specified) or a display filter (if a "-r"
1525      flag was specified. */
1526   if (optind < argc) {
1527     if (cf_name != NULL) {
1528       if (dfilter != NULL) {
1529         cmdarg_err("Display filters were specified both with \"-d\" "
1530             "and with additional command-line arguments.");
1531         return 1;
1532       }
1533       dfilter = get_args_as_string(argc, argv, optind);
1534     } else {
1535 #ifdef HAVE_LIBPCAP
1536       guint i;
1537
1538       if (global_capture_opts.default_options.cfilter) {
1539         cmdarg_err("A default capture filter was specified both with \"-f\""
1540             " and with additional command-line arguments.");
1541         return 1;
1542       }
1543       for (i = 0; i < global_capture_opts.ifaces->len; i++) {
1544         interface_options interface_opts;
1545         interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
1546         if (interface_opts.cfilter == NULL) {
1547           interface_opts.cfilter = get_args_as_string(argc, argv, optind);
1548           global_capture_opts.ifaces = g_array_remove_index(global_capture_opts.ifaces, i);
1549           g_array_insert_val(global_capture_opts.ifaces, i, interface_opts);
1550         } else {
1551           cmdarg_err("A capture filter was specified both with \"-f\""
1552               " and with additional command-line arguments.");
1553           return 1;
1554         }
1555       }
1556       global_capture_opts.default_options.cfilter = get_args_as_string(argc, argv, optind);
1557 #else
1558       capture_option_specified = TRUE;
1559 #endif
1560     }
1561   }
1562
1563 #ifdef HAVE_LIBPCAP
1564   if (!global_capture_opts.saving_to_file) {
1565     /* We're not saving the capture to a file; if "-q" wasn't specified,
1566        we should print packet information */
1567     if (!quiet)
1568       print_packet_info = TRUE;
1569   } else {
1570     /* We're saving to a file; if we're writing to the standard output.
1571        and we'll also be writing dissected packets to the standard
1572        output, reject the request.  At best, we could redirect that
1573        to the standard error; we *can't* write both to the standard
1574        output and have either of them be useful. */
1575     if (strcmp(global_capture_opts.save_file, "-") == 0 && print_packet_info) {
1576       cmdarg_err("You can't write both raw packet data and dissected packets"
1577           " to the standard output.");
1578       return 1;
1579     }
1580   }
1581 #else
1582   /* We're not saving the capture to a file; if "-q" wasn't specified,
1583      we should print packet information */
1584   if (!quiet)
1585     print_packet_info = TRUE;
1586 #endif
1587
1588 #ifndef HAVE_LIBPCAP
1589   if (capture_option_specified)
1590     cmdarg_err("This version of TShark was not built with support for capturing packets.");
1591 #endif
1592   if (arg_error) {
1593     print_usage(FALSE);
1594     return 1;
1595   }
1596
1597   /* We don't support capture filters when reading from a capture file
1598      (the BPF compiler doesn't support all link-layer types that we
1599      support in capture files we read). */
1600 #ifdef HAVE_LIBPCAP
1601   if (cf_name != NULL) {
1602     if (global_capture_opts.default_options.cfilter) {
1603       cmdarg_err("Only read filters, not capture filters, "
1604           "can be specified when reading a capture file.");
1605       return 1;
1606     }
1607   }
1608 #endif
1609
1610   if (print_hex) {
1611     if (output_action != WRITE_TEXT) {
1612       cmdarg_err("Raw packet hex data can only be printed as text or PostScript");
1613       return 1;
1614     }
1615   }
1616
1617   if (output_only != NULL) {
1618     char *ps;
1619
1620     if (!print_details) {
1621       cmdarg_err("-O requires -V");
1622       return 1;
1623     }
1624
1625     output_only_tables = g_hash_table_new (g_str_hash, g_str_equal);
1626     for (ps = strtok (output_only, ","); ps; ps = strtok (NULL, ",")) {
1627       g_hash_table_insert(output_only_tables, (gpointer)ps, (gpointer)ps);
1628     }
1629   }
1630
1631   if (rfilter != NULL && !perform_two_pass_analysis) {
1632     /* Just a warning, so we don't return */
1633     cmdarg_err("-R without -2 is deprecated. For single-pass filtering use -Y.");
1634   }
1635
1636 #ifdef HAVE_LIBPCAP
1637   if (list_link_layer_types) {
1638     /* We're supposed to list the link-layer types for an interface;
1639        did the user also specify a capture file to be read? */
1640     if (cf_name) {
1641       /* Yes - that's bogus. */
1642       cmdarg_err("You can't specify -L and a capture file to be read.");
1643       return 1;
1644     }
1645     /* No - did they specify a ring buffer option? */
1646     if (global_capture_opts.multi_files_on) {
1647       cmdarg_err("Ring buffer requested, but a capture isn't being done.");
1648       return 1;
1649     }
1650   } else {
1651     if (cf_name) {
1652       /*
1653        * "-r" was specified, so we're reading a capture file.
1654        * Capture options don't apply here.
1655        */
1656       if (global_capture_opts.multi_files_on) {
1657         cmdarg_err("Multiple capture files requested, but "
1658                    "a capture isn't being done.");
1659         return 1;
1660       }
1661       if (global_capture_opts.has_file_duration) {
1662         cmdarg_err("Switching capture files after a time interval was specified, but "
1663                    "a capture isn't being done.");
1664         return 1;
1665       }
1666       if (global_capture_opts.has_ring_num_files) {
1667         cmdarg_err("A ring buffer of capture files was specified, but "
1668           "a capture isn't being done.");
1669         return 1;
1670       }
1671       if (global_capture_opts.has_autostop_files) {
1672         cmdarg_err("A maximum number of capture files was specified, but "
1673           "a capture isn't being done.");
1674         return 1;
1675       }
1676
1677       /* Note: TShark now allows the restriction of a _read_ file by packet count
1678        * and byte count as well as a write file. Other autostop options remain valid
1679        * only for a write file.
1680        */
1681       if (global_capture_opts.has_autostop_duration) {
1682         cmdarg_err("A maximum capture time was specified, but "
1683           "a capture isn't being done.");
1684         return 1;
1685       }
1686     } else {
1687       /*
1688        * "-r" wasn't specified, so we're doing a live capture.
1689        */
1690       if (global_capture_opts.saving_to_file) {
1691         /* They specified a "-w" flag, so we'll be saving to a capture file. */
1692
1693         /* When capturing, we only support writing pcap or pcap-ng format. */
1694         if (out_file_type != WTAP_FILE_PCAP && out_file_type != WTAP_FILE_PCAPNG) {
1695           cmdarg_err("Live captures can only be saved in libpcap format.");
1696           return 1;
1697         }
1698         if (global_capture_opts.multi_files_on) {
1699           /* Multiple-file mode doesn't work under certain conditions:
1700              a) it doesn't work if you're writing to the standard output;
1701              b) it doesn't work if you're writing to a pipe;
1702           */
1703           if (strcmp(global_capture_opts.save_file, "-") == 0) {
1704             cmdarg_err("Multiple capture files requested, but "
1705               "the capture is being written to the standard output.");
1706             return 1;
1707           }
1708           if (global_capture_opts.output_to_pipe) {
1709             cmdarg_err("Multiple capture files requested, but "
1710               "the capture file is a pipe.");
1711             return 1;
1712           }
1713           if (!global_capture_opts.has_autostop_filesize &&
1714               !global_capture_opts.has_file_duration) {
1715             cmdarg_err("Multiple capture files requested, but "
1716               "no maximum capture file size or duration was specified.");
1717             return 1;
1718           }
1719         }
1720         /* Currently, we don't support read or display filters when capturing
1721            and saving the packets. */
1722         if (rfilter != NULL) {
1723           cmdarg_err("Read filters aren't supported when capturing and saving the captured packets.");
1724           return 1;
1725         }
1726         if (dfilter != NULL) {
1727           cmdarg_err("Display filters aren't supported when capturing and saving the captured packets.");
1728           return 1;
1729         }
1730       } else {
1731         /* They didn't specify a "-w" flag, so we won't be saving to a
1732            capture file.  Check for options that only make sense if
1733            we're saving to a file. */
1734         if (global_capture_opts.has_autostop_filesize) {
1735           cmdarg_err("Maximum capture file size specified, but "
1736            "capture isn't being saved to a file.");
1737           return 1;
1738         }
1739         if (global_capture_opts.multi_files_on) {
1740           cmdarg_err("Multiple capture files requested, but "
1741             "the capture isn't being saved to a file.");
1742           return 1;
1743         }
1744       }
1745     }
1746   }
1747 #endif
1748
1749 #ifdef _WIN32
1750   /* Start windows sockets */
1751   WSAStartup( MAKEWORD( 1, 1 ), &wsaData );
1752 #endif /* _WIN32 */
1753
1754   /* Notify all registered modules that have had any of their preferences
1755      changed either from one of the preferences file or from the command
1756      line that their preferences have changed. */
1757   prefs_apply_all();
1758
1759   /* At this point MATE will have registered its field array so we can
1760      have a tap filter with one of MATE's late-registered fields as part
1761      of the filter.  We can now process all the "-z" arguments. */
1762   start_requested_stats();
1763
1764 #ifdef HAVE_LIBPCAP
1765   /* We currently don't support taps, or printing dissected packets,
1766      if we're writing to a pipe. */
1767   if (global_capture_opts.saving_to_file &&
1768       global_capture_opts.output_to_pipe) {
1769     if (tap_listeners_require_dissection()) {
1770       cmdarg_err("Taps aren't supported when saving to a pipe.");
1771       return 1;
1772     }
1773     if (print_packet_info) {
1774       cmdarg_err("Printing dissected packets isn't supported when saving to a pipe.");
1775       return 1;
1776     }
1777   }
1778 #endif
1779
1780   /* disabled protocols as per configuration file */
1781   if (gdp_path == NULL && dp_path == NULL) {
1782     set_disabled_protos_list();
1783   }
1784
1785   /* Build the column format array */
1786   build_column_format_array(&cfile.cinfo, prefs_p->num_cols, TRUE);
1787
1788 #ifdef HAVE_LIBPCAP
1789   capture_opts_trim_snaplen(&global_capture_opts, MIN_PACKET_SIZE);
1790   capture_opts_trim_ring_num_files(&global_capture_opts);
1791 #endif
1792
1793   if (rfilter != NULL) {
1794     if (!dfilter_compile(rfilter, &rfcode)) {
1795       cmdarg_err("%s", dfilter_error_msg);
1796       epan_cleanup();
1797 #ifdef HAVE_PCAP_OPEN_DEAD
1798       {
1799         pcap_t *pc;
1800
1801         pc = pcap_open_dead(DLT_EN10MB, MIN_PACKET_SIZE);
1802         if (pc != NULL) {
1803           if (pcap_compile(pc, &fcode, rfilter, 0, 0) != -1) {
1804             cmdarg_err_cont(
1805               "  Note: That read filter code looks like a valid capture filter;");
1806             cmdarg_err_cont(
1807               "        maybe you mixed them up?");
1808           }
1809           pcap_close(pc);
1810         }
1811       }
1812 #endif
1813       return 2;
1814     }
1815   }
1816   cfile.rfcode = rfcode;
1817
1818   if (dfilter != NULL) {
1819     if (!dfilter_compile(dfilter, &dfcode)) {
1820       cmdarg_err("%s", dfilter_error_msg);
1821       epan_cleanup();
1822 #ifdef HAVE_PCAP_OPEN_DEAD
1823       {
1824         pcap_t *pc;
1825
1826         pc = pcap_open_dead(DLT_EN10MB, MIN_PACKET_SIZE);
1827         if (pc != NULL) {
1828           if (pcap_compile(pc, &fcode, dfilter, 0, 0) != -1) {
1829             cmdarg_err_cont(
1830               "  Note: That display filter code looks like a valid capture filter;");
1831             cmdarg_err_cont(
1832               "        maybe you mixed them up?");
1833           }
1834           pcap_close(pc);
1835         }
1836       }
1837 #endif
1838       return 2;
1839     }
1840   }
1841   cfile.dfcode = dfcode;
1842
1843   if (print_packet_info) {
1844     /* If we're printing as text or PostScript, we have
1845        to create a print stream. */
1846     if (output_action == WRITE_TEXT) {
1847       switch (print_format) {
1848
1849       case PR_FMT_TEXT:
1850         print_stream = print_stream_text_stdio_new(stdout);
1851         break;
1852
1853       case PR_FMT_PS:
1854         print_stream = print_stream_ps_stdio_new(stdout);
1855         break;
1856
1857       default:
1858         g_assert_not_reached();
1859       }
1860     }
1861   }
1862
1863   /* We have to dissect each packet if:
1864
1865         we're printing information about each packet;
1866
1867         we're using a read filter on the packets;
1868
1869         we're using a display filter on the packets;
1870
1871         we're using any taps that need dissection. */
1872   do_dissection = print_packet_info || rfcode || dfcode || tap_listeners_require_dissection();
1873
1874   if (cf_name) {
1875     /*
1876      * We're reading a capture file.
1877      */
1878
1879     /*
1880      * Immediately relinquish any special privileges we have; we must not
1881      * be allowed to read any capture files the user running TShark
1882      * can't open.
1883      */
1884     relinquish_special_privs_perm();
1885     print_current_user();
1886
1887     if (cf_open(&cfile, cf_name, FALSE, &err) != CF_OK) {
1888       epan_cleanup();
1889       return 2;
1890     }
1891
1892     /* Set timestamp precision; there should arguably be a command-line
1893        option to let the user set this. */
1894     switch(wtap_file_tsprecision(cfile.wth)) {
1895     case(WTAP_FILE_TSPREC_SEC):
1896       timestamp_set_precision(TS_PREC_AUTO_SEC);
1897       break;
1898     case(WTAP_FILE_TSPREC_DSEC):
1899       timestamp_set_precision(TS_PREC_AUTO_DSEC);
1900       break;
1901     case(WTAP_FILE_TSPREC_CSEC):
1902       timestamp_set_precision(TS_PREC_AUTO_CSEC);
1903       break;
1904     case(WTAP_FILE_TSPREC_MSEC):
1905       timestamp_set_precision(TS_PREC_AUTO_MSEC);
1906       break;
1907     case(WTAP_FILE_TSPREC_USEC):
1908       timestamp_set_precision(TS_PREC_AUTO_USEC);
1909       break;
1910     case(WTAP_FILE_TSPREC_NSEC):
1911       timestamp_set_precision(TS_PREC_AUTO_NSEC);
1912       break;
1913     default:
1914       g_assert_not_reached();
1915     }
1916
1917     /* Process the packets in the file */
1918     TRY {
1919 #ifdef HAVE_LIBPCAP
1920       err = load_cap_file(&cfile, global_capture_opts.save_file, out_file_type, out_file_name_res,
1921           global_capture_opts.has_autostop_packets ? global_capture_opts.autostop_packets : 0,
1922           global_capture_opts.has_autostop_filesize ? global_capture_opts.autostop_filesize : 0);
1923 #else
1924       err = load_cap_file(&cfile, NULL, out_file_type, out_file_name_res, 0, 0);
1925 #endif
1926     }
1927     CATCH(OutOfMemoryError) {
1928       fprintf(stderr,
1929               "Out Of Memory!\n"
1930               "\n"
1931               "Sorry, but TShark has to terminate now!\n"
1932               "\n"
1933               "Some infos / workarounds can be found at:\n"
1934               "http://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
1935       err = ENOMEM;
1936     }
1937     ENDTRY;
1938     if (err != 0) {
1939       /* We still dump out the results of taps, etc., as we might have
1940          read some packets; however, we exit with an error status. */
1941       exit_status = 2;
1942     }
1943   } else {
1944     /* No capture file specified, so we're supposed to do a live capture
1945        or get a list of link-layer types for a live capture device;
1946        do we have support for live captures? */
1947 #ifdef HAVE_LIBPCAP
1948     /* if no interface was specified, pick a default */
1949     exit_status = capture_opts_default_iface_if_necessary(&global_capture_opts,
1950         ((prefs_p->capture_device) && (*prefs_p->capture_device != '\0')) ? get_if_name(prefs_p->capture_device) : NULL);
1951     if (exit_status != 0)
1952         return exit_status;
1953
1954     /* if requested, list the link layer types and exit */
1955     if (list_link_layer_types) {
1956         guint i;
1957
1958         /* Get the list of link-layer types for the capture devices. */
1959         for (i = 0; i < global_capture_opts.ifaces->len; i++) {
1960           interface_options  interface_opts;
1961           if_capabilities_t *caps;
1962
1963           interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
1964           caps = capture_get_if_capabilities(interface_opts.name, interface_opts.monitor_mode, &err_str, NULL);
1965           if (caps == NULL) {
1966             cmdarg_err("%s", err_str);
1967             g_free(err_str);
1968             return 2;
1969           }
1970           if (caps->data_link_types == NULL) {
1971             cmdarg_err("The capture device \"%s\" has no data link types.", interface_opts.name);
1972             return 2;
1973           }
1974           capture_opts_print_if_capabilities(caps, interface_opts.name, interface_opts.monitor_mode);
1975           free_if_capabilities(caps);
1976         }
1977         return 0;
1978     }
1979
1980     if (print_packet_info) {
1981       if (!write_preamble(NULL)) {
1982         show_print_file_io_error(errno);
1983         return 2;
1984       }
1985     } else if (!quiet) {
1986       /*
1987        * We're not printing information for each packet, and the user
1988        * didn't ask us not to print a count of packets as they arrive,
1989        * so print that count so the user knows that packets are arriving.
1990        *
1991        * XXX - what if the user wants to do a live capture, doesn't want
1992        * to save it to a file, doesn't want information printed for each
1993        * packet, does want some "-z" statistic, and wants packet counts
1994        * so they know whether they're seeing any packets?
1995        */
1996       print_packet_counts = TRUE;
1997     }
1998
1999     /* For now, assume libpcap gives microsecond precision. */
2000     timestamp_set_precision(TS_PREC_AUTO_USEC);
2001
2002     /*
2003      * XXX - this returns FALSE if an error occurred, but it also
2004      * returns FALSE if the capture stops because a time limit
2005      * was reached (and possibly other limits), so we can't assume
2006      * it means an error.
2007      *
2008      * The capture code is a bit twisty, so it doesn't appear to
2009      * be an easy fix.  We just ignore the return value for now.
2010      * Instead, pass on the exit status from the capture child.
2011      */
2012     capture();
2013     exit_status = global_capture_session.fork_child_status;
2014
2015     if (print_packet_info) {
2016       if (!write_finale()) {
2017         err = errno;
2018         show_print_file_io_error(err);
2019       }
2020     }
2021 #else
2022     /* No - complain. */
2023     cmdarg_err("This version of TShark was not built with support for capturing packets.");
2024     return 2;
2025 #endif
2026   }
2027
2028   g_free(cf_name);
2029
2030   if (cfile.frames != NULL) {
2031     free_frame_data_sequence(cfile.frames);
2032     cfile.frames = NULL;
2033   }
2034
2035   draw_tap_listeners(TRUE);
2036   funnel_dump_all_text_windows();
2037   epan_cleanup();
2038
2039   output_fields_free(output_fields);
2040   output_fields = NULL;
2041
2042   return exit_status;
2043 }
2044
2045 /*#define USE_BROKEN_G_MAIN_LOOP*/
2046
2047 #ifdef USE_BROKEN_G_MAIN_LOOP
2048   GMainLoop *loop;
2049 #else
2050   gboolean loop_running = FALSE;
2051 #endif
2052   guint32 packet_count = 0;
2053
2054
2055 /* XXX - move to the right position / file */
2056 /* read from a pipe (callback) */
2057 typedef gboolean (*pipe_input_cb_t) (gint source, gpointer user_data);
2058
2059 typedef struct pipe_input_tag {
2060   gint             source;
2061   gpointer         user_data;
2062   int             *child_process;
2063   pipe_input_cb_t  input_cb;
2064   guint            pipe_input_id;
2065 #ifdef _WIN32
2066   GMutex          *callback_running;
2067 #endif
2068 } pipe_input_t;
2069
2070 static pipe_input_t pipe_input;
2071
2072 #ifdef _WIN32
2073 /* The timer has expired, see if there's stuff to read from the pipe,
2074    if so, do the callback */
2075 static gint
2076 pipe_timer_cb(gpointer data)
2077 {
2078   HANDLE        handle;
2079   DWORD         avail        = 0;
2080   gboolean      result;
2081   DWORD         childstatus;
2082   pipe_input_t *pipe_input_p = data;
2083   gint          iterations   = 0;
2084
2085   g_mutex_lock (pipe_input_p->callback_running);
2086
2087   /* try to read data from the pipe only 5 times, to avoid blocking */
2088   while(iterations < 5) {
2089     /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: new iteration");*/
2090
2091     /* Oddly enough although Named pipes don't work on win9x,
2092        PeekNamedPipe does !!! */
2093     handle = (HANDLE) _get_osfhandle (pipe_input_p->source);
2094     result = PeekNamedPipe(handle, NULL, 0, NULL, &avail, NULL);
2095
2096     /* Get the child process exit status */
2097     GetExitCodeProcess((HANDLE)*(pipe_input_p->child_process),
2098                        &childstatus);
2099
2100     /* If the Peek returned an error, or there are bytes to be read
2101        or the childwatcher thread has terminated then call the normal
2102        callback */
2103     if (!result || avail > 0 || childstatus != STILL_ACTIVE) {
2104
2105       /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: data avail");*/
2106
2107       /* And call the real handler */
2108       if (!pipe_input_p->input_cb(pipe_input_p->source, pipe_input_p->user_data)) {
2109         g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: input pipe closed, iterations: %u", iterations);
2110         /* pipe closed, return false so that the timer is stopped */
2111         g_mutex_unlock (pipe_input_p->callback_running);
2112         return FALSE;
2113       }
2114     }
2115     else {
2116       /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: no data avail");*/
2117       /* No data, stop now */
2118       break;
2119     }
2120
2121     iterations++;
2122   }
2123
2124   /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: finished with iterations: %u, new timer", iterations);*/
2125
2126   g_mutex_unlock (pipe_input_p->callback_running);
2127
2128   /* we didn't stopped the timer, so let it run */
2129   return TRUE;
2130 }
2131 #endif
2132
2133
2134 void
2135 pipe_input_set_handler(gint source, gpointer user_data, int *child_process, pipe_input_cb_t input_cb)
2136 {
2137
2138   pipe_input.source         = source;
2139   pipe_input.child_process  = child_process;
2140   pipe_input.user_data      = user_data;
2141   pipe_input.input_cb       = input_cb;
2142
2143 #ifdef _WIN32
2144 #if GLIB_CHECK_VERSION(2,31,0)
2145   pipe_input.callback_running = g_malloc(sizeof(GMutex));
2146   g_mutex_init(pipe_input.callback_running);
2147 #else
2148   pipe_input.callback_running = g_mutex_new();
2149 #endif
2150   /* Tricky to use pipes in win9x, as no concept of wait.  NT can
2151      do this but that doesn't cover all win32 platforms.  GTK can do
2152      this but doesn't seem to work over processes.  Attempt to do
2153      something similar here, start a timer and check for data on every
2154      timeout. */
2155   /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_input_set_handler: new");*/
2156   pipe_input.pipe_input_id = g_timeout_add(200, pipe_timer_cb, &pipe_input);
2157 #endif
2158 }
2159
2160
2161 #ifdef HAVE_LIBPCAP
2162 static gboolean
2163 capture(void)
2164 {
2165   gboolean          ret;
2166   guint             i;
2167   GString          *str = g_string_new("");
2168 #ifdef USE_TSHARK_SELECT
2169   fd_set            readfds;
2170 #endif
2171 #ifndef _WIN32
2172   struct sigaction  action, oldaction;
2173 #endif
2174
2175   /*
2176    * XXX - dropping privileges is still required, until code cleanup is done
2177    *
2178    * remove all dependencies to pcap specific code and using only dumpcap is almost done.
2179    * when it's done, we don't need special privileges to run tshark at all,
2180    * therefore we don't need to drop these privileges
2181    * The only thing we might want to keep is a warning if tshark is run as root,
2182    * as it's no longer necessary and potentially dangerous.
2183    *
2184    * THE FOLLOWING IS THE FORMER COMMENT WHICH IS NO LONGER REALLY VALID:
2185    * We've opened the capture device, so we shouldn't need any special
2186    * privileges any more; relinquish those privileges.
2187    *
2188    * XXX - if we have saved set-user-ID support, we should give up those
2189    * privileges immediately, and then reclaim them long enough to get
2190    * a list of network interfaces and to open one, and then give them
2191    * up again, so that stuff we do while processing the argument list,
2192    * reading the user's preferences, loading and starting plugins
2193    * (especially *user* plugins), etc. is done with the user's privileges,
2194    * not special privileges.
2195    */
2196   relinquish_special_privs_perm();
2197   print_current_user();
2198
2199   /* Create new dissection section. */
2200   epan_free(cfile.epan);
2201   cfile.epan = epan_new();
2202
2203 #ifdef _WIN32
2204   /* Catch a CTRL+C event and, if we get it, clean up and exit. */
2205   SetConsoleCtrlHandler(capture_cleanup, TRUE);
2206 #else /* _WIN32 */
2207   /* Catch SIGINT and SIGTERM and, if we get either of them,
2208      clean up and exit.  If SIGHUP isn't being ignored, catch
2209      it too and, if we get it, clean up and exit.
2210
2211      We restart any read that was in progress, so that it doesn't
2212      disrupt reading from the sync pipe.  The signal handler tells
2213      the capture child to finish; it will report that it finished,
2214      or will exit abnormally, so  we'll stop reading from the sync
2215      pipe, pick up the exit status, and quit. */
2216   memset(&action, 0, sizeof(action));
2217   action.sa_handler = capture_cleanup;
2218   action.sa_flags = SA_RESTART;
2219   sigemptyset(&action.sa_mask);
2220   sigaction(SIGTERM, &action, NULL);
2221   sigaction(SIGINT, &action, NULL);
2222   sigaction(SIGHUP, NULL, &oldaction);
2223   if (oldaction.sa_handler == SIG_DFL)
2224     sigaction(SIGHUP, &action, NULL);
2225
2226 #ifdef SIGINFO
2227   /* Catch SIGINFO and, if we get it and we're capturing to a file in
2228      quiet mode, report the number of packets we've captured.
2229
2230      Again, restart any read that was in progress, so that it doesn't
2231      disrupt reading from the sync pipe. */
2232   action.sa_handler = report_counts_siginfo;
2233   action.sa_flags = SA_RESTART;
2234   sigemptyset(&action.sa_mask);
2235   sigaction(SIGINFO, &action, NULL);
2236 #endif /* SIGINFO */
2237 #endif /* _WIN32 */
2238
2239   global_capture_session.state = CAPTURE_PREPARING;
2240
2241   /* Let the user know which interfaces were chosen. */
2242   for (i = 0; i < global_capture_opts.ifaces->len; i++) {
2243     interface_options interface_opts;
2244
2245     interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
2246     interface_opts.descr = get_interface_descriptive_name(interface_opts.name);
2247     global_capture_opts.ifaces = g_array_remove_index(global_capture_opts.ifaces, i);
2248     g_array_insert_val(global_capture_opts.ifaces, i, interface_opts);
2249   }
2250 #ifdef _WIN32
2251   if (global_capture_opts.ifaces->len < 2) {
2252 #else
2253   if (global_capture_opts.ifaces->len < 4) {
2254 #endif
2255     for (i = 0; i < global_capture_opts.ifaces->len; i++) {
2256       interface_options interface_opts;
2257
2258       interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
2259       if (i > 0) {
2260           if (global_capture_opts.ifaces->len > 2) {
2261               g_string_append_printf(str, ",");
2262           }
2263           g_string_append_printf(str, " ");
2264           if (i == global_capture_opts.ifaces->len - 1) {
2265               g_string_append_printf(str, "and ");
2266           }
2267       }
2268       g_string_append_printf(str, "'%s'", interface_opts.descr);
2269     }
2270   } else {
2271     g_string_append_printf(str, "%u interfaces", global_capture_opts.ifaces->len);
2272   }
2273   if (really_quiet == FALSE)
2274     fprintf(stderr, "Capturing on %s\n", str->str);
2275   fflush(stderr);
2276   g_string_free(str, TRUE);
2277
2278   ret = sync_pipe_start(&global_capture_opts, &global_capture_session, NULL);
2279
2280   if (!ret)
2281     return FALSE;
2282
2283   /* the actual capture loop
2284    *
2285    * XXX - glib doesn't seem to provide any event based loop handling.
2286    *
2287    * XXX - for whatever reason,
2288    * calling g_main_loop_new() ends up in 100% cpu load.
2289    *
2290    * But that doesn't matter: in UNIX we can use select() to find an input
2291    * source with something to do.
2292    *
2293    * But that doesn't matter because we're in a CLI (that doesn't need to
2294    * update a GUI or something at the same time) so it's OK if we block
2295    * trying to read from the pipe.
2296    *
2297    * So all the stuff in USE_TSHARK_SELECT could be removed unless I'm
2298    * wrong (but I leave it there in case I am...).
2299    */
2300
2301 #ifdef USE_TSHARK_SELECT
2302   FD_ZERO(&readfds);
2303   FD_SET(pipe_input.source, &readfds);
2304 #endif
2305
2306   loop_running = TRUE;
2307
2308   TRY
2309   {
2310     while (loop_running)
2311     {
2312 #ifdef USE_TSHARK_SELECT
2313       ret = select(pipe_input.source+1, &readfds, NULL, NULL, NULL);
2314
2315       if (ret == -1)
2316       {
2317         perror("select()");
2318         return TRUE;
2319       } else if (ret == 1) {
2320 #endif
2321         /* Call the real handler */
2322         if (!pipe_input.input_cb(pipe_input.source, pipe_input.user_data)) {
2323           g_log(NULL, G_LOG_LEVEL_DEBUG, "input pipe closed");
2324           return FALSE;
2325         }
2326 #ifdef USE_TSHARK_SELECT
2327       }
2328 #endif
2329     }
2330   }
2331   CATCH(OutOfMemoryError) {
2332     fprintf(stderr,
2333             "Out Of Memory!\n"
2334             "\n"
2335             "Sorry, but TShark has to terminate now!\n"
2336             "\n"
2337             "Some infos / workarounds can be found at:\n"
2338             "http://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
2339     exit(1);
2340   }
2341   ENDTRY;
2342   return TRUE;
2343 }
2344
2345 /* capture child detected an error */
2346 void
2347 capture_input_error_message(capture_session *cap_session _U_, char *error_msg, char *secondary_error_msg)
2348 {
2349   cmdarg_err("%s", error_msg);
2350   cmdarg_err_cont("%s", secondary_error_msg);
2351 }
2352
2353
2354 /* capture child detected an capture filter related error */
2355 void
2356 capture_input_cfilter_error_message(capture_session *cap_session, guint i, char *error_message)
2357 {
2358   capture_options *capture_opts = cap_session->capture_opts;
2359   dfilter_t         *rfcode = NULL;
2360   interface_options  interface_opts;
2361
2362   g_assert(i < capture_opts->ifaces->len);
2363   interface_opts = g_array_index(capture_opts->ifaces, interface_options, i);
2364
2365   if (dfilter_compile(interface_opts.cfilter, &rfcode) && rfcode != NULL) {
2366     cmdarg_err(
2367       "Invalid capture filter \"%s\" for interface %s!\n"
2368       "\n"
2369       "That string looks like a valid display filter; however, it isn't a valid\n"
2370       "capture filter (%s).\n"
2371       "\n"
2372       "Note that display filters and capture filters don't have the same syntax,\n"
2373       "so you can't use most display filter expressions as capture filters.\n"
2374       "\n"
2375       "See the User's Guide for a description of the capture filter syntax.",
2376       interface_opts.cfilter, interface_opts.descr, error_message);
2377     dfilter_free(rfcode);
2378   } else {
2379     cmdarg_err(
2380       "Invalid capture filter \"%s\" for interface %s!\n"
2381       "\n"
2382       "That string isn't a valid capture filter (%s).\n"
2383       "See the User's Guide for a description of the capture filter syntax.",
2384       interface_opts.cfilter, interface_opts.descr, error_message);
2385   }
2386 }
2387
2388
2389 /* capture child tells us we have a new (or the first) capture file */
2390 gboolean
2391 capture_input_new_file(capture_session *cap_session, gchar *new_file)
2392 {
2393   capture_options *capture_opts = cap_session->capture_opts;
2394   gboolean is_tempfile;
2395   int      err;
2396
2397   if (cap_session->state == CAPTURE_PREPARING) {
2398     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture started!");
2399   }
2400   g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "File: \"%s\"", new_file);
2401
2402   g_assert(cap_session->state == CAPTURE_PREPARING || cap_session->state == CAPTURE_RUNNING);
2403
2404   /* free the old filename */
2405   if (capture_opts->save_file != NULL) {
2406
2407     /* we start a new capture file, close the old one (if we had one before) */
2408     if ( ((capture_file *) cap_session->cf)->state != FILE_CLOSED) {
2409       if ( ((capture_file *) cap_session->cf)->wth != NULL) {
2410         wtap_close(((capture_file *) cap_session->cf)->wth);
2411       }
2412       ((capture_file *) cap_session->cf)->state = FILE_CLOSED;
2413     }
2414
2415     g_free(capture_opts->save_file);
2416     is_tempfile = FALSE;
2417   } else {
2418     /* we didn't had a save_file before, must be a tempfile */
2419     is_tempfile = TRUE;
2420   }
2421
2422   /* save the new filename */
2423   capture_opts->save_file = g_strdup(new_file);
2424
2425   /* if we are in real-time mode, open the new file now */
2426   if (do_dissection) {
2427     /* Attempt to open the capture file and set up to read from it. */
2428     switch(cf_open((capture_file *)cap_session->cf, capture_opts->save_file, is_tempfile, &err)) {
2429     case CF_OK:
2430       break;
2431     case CF_ERROR:
2432       /* Don't unlink (delete) the save file - leave it around,
2433          for debugging purposes. */
2434       g_free(capture_opts->save_file);
2435       capture_opts->save_file = NULL;
2436       return FALSE;
2437     }
2438   }
2439
2440   cap_session->state = CAPTURE_RUNNING;
2441
2442   return TRUE;
2443 }
2444
2445
2446 /* capture child tells us we have new packets to read */
2447 void
2448 capture_input_new_packets(capture_session *cap_session, int to_read)
2449 {
2450   gboolean      ret;
2451   int           err;
2452   gchar        *err_info;
2453   gint64        data_offset;
2454   capture_file *cf = (capture_file *)cap_session->cf;
2455   gboolean      filtering_tap_listeners;
2456   guint         tap_flags;
2457
2458 #ifdef SIGINFO
2459   /*
2460    * Prevent a SIGINFO handler from writing to the standard error while
2461    * we're doing so or writing to the standard output; instead, have it
2462    * just set a flag telling us to print that information when we're done.
2463    */
2464   infodelay = TRUE;
2465 #endif /* SIGINFO */
2466
2467   /* Do we have any tap listeners with filters? */
2468   filtering_tap_listeners = have_filtering_tap_listeners();
2469
2470   /* Get the union of the flags for all tap listeners. */
2471   tap_flags = union_of_tap_listener_flags();
2472
2473   if (do_dissection) {
2474     while (to_read-- && cf->wth) {
2475       wtap_cleareof(cf->wth);
2476       ret = wtap_read(cf->wth, &err, &err_info, &data_offset);
2477       if (ret == FALSE) {
2478         /* read from file failed, tell the capture child to stop */
2479         sync_pipe_stop(cap_session);
2480         wtap_close(cf->wth);
2481         cf->wth = NULL;
2482       } else {
2483         ret = process_packet(cf, data_offset, wtap_phdr(cf->wth),
2484                              wtap_buf_ptr(cf->wth),
2485                              filtering_tap_listeners, tap_flags);
2486       }
2487       if (ret != FALSE) {
2488         /* packet successfully read and gone through the "Read Filter" */
2489         packet_count++;
2490       }
2491     }
2492   } else {
2493     /*
2494      * Dumpcap's doing all the work; we're not doing any dissection.
2495      * Count all the packets it wrote.
2496      */
2497     packet_count += to_read;
2498   }
2499
2500   if (print_packet_counts) {
2501       /* We're printing packet counts. */
2502       if (packet_count != 0) {
2503         fprintf(stderr, "\r%u ", packet_count);
2504         /* stderr could be line buffered */
2505         fflush(stderr);
2506       }
2507   }
2508
2509 #ifdef SIGINFO
2510   /*
2511    * Allow SIGINFO handlers to write.
2512    */
2513   infodelay = FALSE;
2514
2515   /*
2516    * If a SIGINFO handler asked us to write out capture counts, do so.
2517    */
2518   if (infoprint)
2519     report_counts();
2520 #endif /* SIGINFO */
2521 }
2522
2523 static void
2524 report_counts(void)
2525 {
2526   if ((print_packet_counts == FALSE) && (really_quiet == FALSE)) {
2527     /* Report the count only if we aren't printing a packet count
2528        as packets arrive. */
2529       fprintf(stderr, "%u packet%s captured\n", packet_count,
2530             plurality(packet_count, "", "s"));
2531   }
2532 #ifdef SIGINFO
2533   infoprint = FALSE; /* we just reported it */
2534 #endif /* SIGINFO */
2535 }
2536
2537 #ifdef SIGINFO
2538 static void
2539 report_counts_siginfo(int signum _U_)
2540 {
2541   int sav_errno = errno;
2542   /* If we've been told to delay printing, just set a flag asking
2543      that we print counts (if we're supposed to), otherwise print
2544      the count of packets captured (if we're supposed to). */
2545   if (infodelay)
2546     infoprint = TRUE;
2547   else
2548     report_counts();
2549   errno = sav_errno;
2550 }
2551 #endif /* SIGINFO */
2552
2553
2554 /* capture child detected any packet drops? */
2555 void
2556 capture_input_drops(capture_session *cap_session _U_, guint32 dropped)
2557 {
2558   if (print_packet_counts) {
2559     /* We're printing packet counts to stderr.
2560        Send a newline so that we move to the line after the packet count. */
2561     fprintf(stderr, "\n");
2562   }
2563
2564   if (dropped != 0) {
2565     /* We're printing packet counts to stderr.
2566        Send a newline so that we move to the line after the packet count. */
2567     fprintf(stderr, "%u packet%s dropped\n", dropped, plurality(dropped, "", "s"));
2568   }
2569 }
2570
2571
2572 /*
2573  * Capture child closed its side of the pipe, report any error and
2574  * do the required cleanup.
2575  */
2576 void
2577 capture_input_closed(capture_session *cap_session, gchar *msg)
2578 {
2579   capture_file *cf = (capture_file *) cap_session->cf;
2580
2581   if (msg != NULL)
2582     fprintf(stderr, "tshark: %s\n", msg);
2583
2584   report_counts();
2585
2586   if (cf != NULL && cf->wth != NULL) {
2587     wtap_close(cf->wth);
2588     if (cf->is_tempfile) {
2589       ws_unlink(cf->filename);
2590     }
2591   }
2592 #ifdef USE_BROKEN_G_MAIN_LOOP
2593   /*g_main_loop_quit(loop);*/
2594   g_main_quit(loop);
2595 #else
2596   loop_running = FALSE;
2597 #endif
2598 }
2599
2600
2601
2602
2603 #ifdef _WIN32
2604 static BOOL WINAPI
2605 capture_cleanup(DWORD ctrltype _U_)
2606 {
2607   /* CTRL_C_EVENT is sort of like SIGINT, CTRL_BREAK_EVENT is unique to
2608      Windows, CTRL_CLOSE_EVENT is sort of like SIGHUP, CTRL_LOGOFF_EVENT
2609      is also sort of like SIGHUP, and CTRL_SHUTDOWN_EVENT is sort of
2610      like SIGTERM at least when the machine's shutting down.
2611
2612      For now, we handle them all as indications that we should clean up
2613      and quit, just as we handle SIGINT, SIGHUP, and SIGTERM in that
2614      way on UNIX.
2615
2616      We must return TRUE so that no other handler - such as one that would
2617      terminate the process - gets called.
2618
2619      XXX - for some reason, typing ^C to TShark, if you run this in
2620      a Cygwin console window in at least some versions of Cygwin,
2621      causes TShark to terminate immediately; this routine gets
2622      called, but the main loop doesn't get a chance to run and
2623      exit cleanly, at least if this is compiled with Microsoft Visual
2624      C++ (i.e., it's a property of the Cygwin console window or Bash;
2625      it happens if TShark is not built with Cygwin - for all I know,
2626      building it with Cygwin may make the problem go away). */
2627
2628   /* tell the capture child to stop */
2629   sync_pipe_stop(&global_capture_session);
2630
2631   /* don't stop our own loop already here, otherwise status messages and
2632    * cleanup wouldn't be done properly. The child will indicate the stop of
2633    * everything by calling capture_input_closed() later */
2634
2635   return TRUE;
2636 }
2637 #else
2638 static void
2639 capture_cleanup(int signum _U_)
2640 {
2641   /* tell the capture child to stop */
2642   sync_pipe_stop(&global_capture_session);
2643
2644   /* don't stop our own loop already here, otherwise status messages and
2645    * cleanup wouldn't be done properly. The child will indicate the stop of
2646    * everything by calling capture_input_closed() later */
2647 }
2648 #endif /* _WIN32 */
2649 #endif /* HAVE_LIBPCAP */
2650
2651 static gboolean
2652 process_packet_first_pass(capture_file *cf,
2653                gint64 offset, struct wtap_pkthdr *whdr,
2654                const guchar *pd)
2655 {
2656   frame_data     fdlocal;
2657   guint32        framenum;
2658   gboolean       create_proto_tree = FALSE;
2659   epan_dissect_t edt;
2660   gboolean       passed;
2661
2662   /* The frame number of this packet is one more than the count of
2663      frames in this packet. */
2664   framenum = cf->count + 1;
2665
2666   /* If we're not running a display filter and we're not printing any
2667      packet information, we don't need to do a dissection. This means
2668      that all packets can be marked as 'passed'. */
2669   passed = TRUE;
2670
2671   frame_data_init(&fdlocal, framenum, whdr, offset, cum_bytes);
2672
2673   /* If we're going to print packet information, or we're going to
2674      run a read filter, or display filter, or we're going to process taps, set up to
2675      do a dissection and do so. */
2676   if (do_dissection) {
2677     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2678         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2679       /* Grab any resolved addresses */
2680       host_name_lookup_process();
2681
2682     /* If we're going to be applying a filter, we'll need to
2683        create a protocol tree against which to apply the filter. */
2684     if (cf->rfcode)
2685       create_proto_tree = TRUE;
2686
2687     /* We're not going to display the protocol tree on this pass,
2688        so it's not going to be "visible". */
2689     epan_dissect_init(&edt, cf->epan, create_proto_tree, FALSE);
2690
2691     /* If we're running a read filter, prime the epan_dissect_t with that
2692        filter. */
2693     if (cf->rfcode)
2694       epan_dissect_prime_dfilter(&edt, cf->rfcode);
2695
2696     frame_data_set_before_dissect(&fdlocal, &cf->elapsed_time,
2697                                   &first_ts, prev_dis, prev_cap);
2698
2699     epan_dissect_run(&edt, whdr, frame_tvbuff_new(&fdlocal, pd), &fdlocal, NULL);
2700
2701     /* Run the read filter if we have one. */
2702     if (cf->rfcode)
2703       passed = dfilter_apply_edt(cf->rfcode, &edt);
2704   }
2705
2706   if (passed) {
2707     frame_data_set_after_dissect(&fdlocal, &cum_bytes);
2708     prev_cap = prev_dis = frame_data_sequence_add(cf->frames, &fdlocal);
2709
2710     /* If we're not doing dissection then there won't be any dependent frames.
2711      * More importantly, edt.pi.dependent_frames won't be initialized because
2712      * epan hasn't been initialized.
2713      */
2714     if (do_dissection) {
2715       g_slist_foreach(edt.pi.dependent_frames, find_and_mark_frame_depended_upon, cf->frames);
2716     }
2717
2718     cf->count++;
2719   } else {
2720     /* if we don't add it to the frame_data_sequence, clean it up right now
2721      * to avoid leaks */
2722     frame_data_destroy(&fdlocal);
2723   }
2724
2725   if (do_dissection)
2726     epan_dissect_cleanup(&edt);
2727
2728   return passed;
2729 }
2730
2731 static gboolean
2732 process_packet_second_pass(capture_file *cf, frame_data *fdata,
2733                struct wtap_pkthdr *phdr, Buffer *buf,
2734                gboolean filtering_tap_listeners, guint tap_flags)
2735 {
2736   gboolean        create_proto_tree;
2737   column_info    *cinfo;
2738   epan_dissect_t  edt;
2739   gboolean        passed;
2740
2741   /* If we're not running a display filter and we're not printing any
2742      packet information, we don't need to do a dissection. This means
2743      that all packets can be marked as 'passed'. */
2744   passed = TRUE;
2745
2746   /* If we're going to print packet information, or we're going to
2747      run a read filter, or we're going to process taps, set up to
2748      do a dissection and do so. */
2749   if (do_dissection) {
2750     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2751         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2752       /* Grab any resolved addresses */
2753       host_name_lookup_process();
2754
2755     if (cf->dfcode || print_details || filtering_tap_listeners ||
2756         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
2757       create_proto_tree = TRUE;
2758     else
2759       create_proto_tree = FALSE;
2760
2761     /* The protocol tree will be "visible", i.e., printed, only if we're
2762        printing packet details, which is true if we're printing stuff
2763        ("print_packet_info" is true) and we're in verbose mode
2764        ("packet_details" is true). */
2765     epan_dissect_init(&edt, cf->epan, create_proto_tree, print_packet_info && print_details);
2766
2767     /* If we're running a display filter, prime the epan_dissect_t with that
2768        filter. */
2769     if (cf->dfcode)
2770       epan_dissect_prime_dfilter(&edt, cf->dfcode);
2771
2772     col_custom_prime_edt(&edt, &cf->cinfo);
2773
2774     /* We only need the columns if either
2775          1) some tap needs the columns
2776        or
2777          2) we're printing packet info but we're *not* verbose; in verbose
2778             mode, we print the protocol tree, not the protocol summary.
2779      */
2780     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary))
2781       cinfo = &cf->cinfo;
2782     else
2783       cinfo = NULL;
2784
2785     frame_data_set_before_dissect(fdata, &cf->elapsed_time,
2786                                   &first_ts, prev_dis, prev_cap);
2787
2788     epan_dissect_run_with_taps(&edt, phdr, frame_tvbuff_new_buffer(fdata, buf), fdata, cinfo);
2789
2790     /* Run the read/display filter if we have one. */
2791     if (cf->dfcode)
2792       passed = dfilter_apply_edt(cf->dfcode, &edt);
2793   }
2794
2795   if (passed) {
2796     frame_data_set_after_dissect(fdata, &cum_bytes);
2797     /* Process this packet. */
2798     if (print_packet_info) {
2799       /* We're printing packet information; print the information for
2800          this packet. */
2801       if (do_dissection)
2802         print_packet(cf, &edt);
2803       else
2804         print_packet(cf, NULL);
2805
2806       /* The ANSI C standard does not appear to *require* that a line-buffered
2807          stream be flushed to the host environment whenever a newline is
2808          written, it just says that, on such a stream, characters "are
2809          intended to be transmitted to or from the host environment as a
2810          block when a new-line character is encountered".
2811
2812          The Visual C++ 6.0 C implementation doesn't do what is intended;
2813          even if you set a stream to be line-buffered, it still doesn't
2814          flush the buffer at the end of every line.
2815
2816          So, if the "-l" flag was specified, we flush the standard output
2817          at the end of a packet.  This will do the right thing if we're
2818          printing packet summary lines, and, as we print the entire protocol
2819          tree for a single packet without waiting for anything to happen,
2820          it should be as good as line-buffered mode if we're printing
2821          protocol trees.  (The whole reason for the "-l" flag in either
2822          tcpdump or TShark is to allow the output of a live capture to
2823          be piped to a program or script and to have that script see the
2824          information for the packet as soon as it's printed, rather than
2825          having to wait until a standard I/O buffer fills up. */
2826       if (line_buffered)
2827         fflush(stdout);
2828
2829       if (ferror(stdout)) {
2830         show_print_file_io_error(errno);
2831         exit(2);
2832       }
2833     }
2834     prev_dis = fdata;
2835   }
2836   prev_cap = fdata;
2837
2838   if (do_dissection) {
2839     epan_dissect_cleanup(&edt);
2840   }
2841   return passed || fdata->flags.dependent_of_displayed;
2842 }
2843
2844 static int
2845 load_cap_file(capture_file *cf, char *save_file, int out_file_type,
2846     gboolean out_file_name_res, int max_packet_count, gint64 max_byte_count)
2847 {
2848   gint         linktype;
2849   int          snapshot_length;
2850   wtap_dumper *pdh;
2851   guint32      framenum;
2852   int          err;
2853   gchar       *err_info = NULL;
2854   gint64       data_offset;
2855   char        *save_file_string = NULL;
2856   gboolean     filtering_tap_listeners;
2857   guint        tap_flags;
2858   wtapng_section_t            *shb_hdr;
2859   wtapng_iface_descriptions_t *idb_inf;
2860   char         appname[100];
2861   Buffer       buf;
2862
2863   shb_hdr = wtap_file_get_shb_info(cf->wth);
2864   idb_inf = wtap_file_get_idb_info(cf->wth);
2865 #ifdef PCAP_NG_DEFAULT
2866   if (idb_inf->number_of_interfaces > 1) {
2867     linktype = WTAP_ENCAP_PER_PACKET;
2868   } else {
2869     linktype = wtap_file_encap(cf->wth);
2870   }
2871 #else
2872   linktype = wtap_file_encap(cf->wth);
2873 #endif
2874   if (save_file != NULL) {
2875     /* Get a string that describes what we're writing to */
2876     save_file_string = output_file_description(save_file);
2877
2878     /* Set up to write to the capture file. */
2879     snapshot_length = wtap_snapshot_length(cf->wth);
2880     if (snapshot_length == 0) {
2881       /* Snapshot length of input file not known. */
2882       snapshot_length = WTAP_MAX_PACKET_SIZE;
2883     }
2884     /* If we don't have an application name add Tshark */
2885     if (shb_hdr->shb_user_appl == NULL) {
2886         g_snprintf(appname, sizeof(appname), "TShark " VERSION "%s", wireshark_svnversion);
2887         shb_hdr->shb_user_appl = appname;
2888     }
2889
2890     if (linktype != WTAP_ENCAP_PER_PACKET && out_file_type == WTAP_FILE_PCAP)
2891         pdh = wtap_dump_open(save_file, out_file_type, linktype,
2892             snapshot_length, FALSE /* compressed */, &err);
2893     else
2894         pdh = wtap_dump_open_ng(save_file, out_file_type, linktype,
2895             snapshot_length, FALSE /* compressed */, shb_hdr, idb_inf, &err);
2896
2897     g_free(idb_inf);
2898     idb_inf = NULL;
2899
2900     if (pdh == NULL) {
2901       /* We couldn't set up to write to the capture file. */
2902       switch (err) {
2903
2904       case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
2905         cmdarg_err("Capture files can't be written in that format.");
2906         break;
2907
2908       case WTAP_ERR_UNSUPPORTED_ENCAP:
2909       case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
2910         cmdarg_err("The capture file being read can't be written as a "
2911           "\"%s\" file.", wtap_file_type_short_string(out_file_type));
2912         break;
2913
2914       case WTAP_ERR_CANT_OPEN:
2915         cmdarg_err("The %s couldn't be created for some "
2916           "unknown reason.", save_file_string);
2917         break;
2918
2919       case WTAP_ERR_SHORT_WRITE:
2920         cmdarg_err("A full header couldn't be written to the %s.",
2921                    save_file_string);
2922         break;
2923
2924       default:
2925         cmdarg_err("The %s could not be created: %s.", save_file_string,
2926                    wtap_strerror(err));
2927         break;
2928       }
2929       goto out;
2930     }
2931   } else {
2932     if (print_packet_info) {
2933       if (!write_preamble(cf)) {
2934         err = errno;
2935         show_print_file_io_error(err);
2936         goto out;
2937       }
2938     }
2939     pdh = NULL;
2940   }
2941
2942   if (pdh && out_file_name_res) {
2943     if (!wtap_dump_set_addrinfo_list(pdh, get_addrinfo_list())) {
2944       cmdarg_err("The file format \"%s\" doesn't support name resolution information.",
2945                  wtap_file_type_short_string(out_file_type));
2946     }
2947   }
2948
2949   /* Do we have any tap listeners with filters? */
2950   filtering_tap_listeners = have_filtering_tap_listeners();
2951
2952   /* Get the union of the flags for all tap listeners. */
2953   tap_flags = union_of_tap_listener_flags();
2954
2955   if (perform_two_pass_analysis) {
2956     frame_data *fdata;
2957     int old_max_packet_count = max_packet_count;
2958
2959     /* Allocate a frame_data_sequence for all the frames. */
2960     cf->frames = new_frame_data_sequence();
2961
2962     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
2963       if (process_packet_first_pass(cf, data_offset, wtap_phdr(cf->wth),
2964                          wtap_buf_ptr(cf->wth))) {
2965         /* Stop reading if we have the maximum number of packets;
2966          * When the -c option has not been used, max_packet_count
2967          * starts at 0, which practically means, never stop reading.
2968          * (unless we roll over max_packet_count ?)
2969          */
2970         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
2971           err = 0; /* This is not an error */
2972           break;
2973         }
2974       }
2975     }
2976
2977     /* Close the sequential I/O side, to free up memory it requires. */
2978     wtap_sequential_close(cf->wth);
2979
2980     /* Allow the protocol dissectors to free up memory that they
2981      * don't need after the sequential run-through of the packets. */
2982     postseq_cleanup_all_protocols();
2983
2984     max_packet_count = old_max_packet_count;
2985
2986     prev_dis = NULL;
2987     prev_cap = NULL;
2988     buffer_init(&buf, 1500);
2989     for (framenum = 1; err == 0 && framenum <= cf->count; framenum++) {
2990       fdata = frame_data_sequence_find(cf->frames, framenum);
2991       if (wtap_seek_read(cf->wth, fdata->file_off, &cf->phdr,
2992           &buf, fdata->cap_len, &err, &err_info)) {
2993         if (process_packet_second_pass(cf, fdata, &cf->phdr, &buf,
2994                                        filtering_tap_listeners, tap_flags)) {
2995           /* Either there's no read filtering or this packet passed the
2996              filter, so, if we're writing to a capture file, write
2997              this packet out. */
2998           if (pdh != NULL) {
2999             if (!wtap_dump(pdh, &cf->phdr, buffer_start_ptr(&cf->buf), &err)) {
3000               /* Error writing to a capture file */
3001               switch (err) {
3002
3003               case WTAP_ERR_UNSUPPORTED_ENCAP:
3004                 /*
3005                  * This is a problem with the particular frame we're writing;
3006                  * note that, and give the frame number.
3007                  *
3008                  * XXX - framenum is not necessarily the frame number in
3009                  * the input file if there was a read filter.
3010                  */
3011                 fprintf(stderr,
3012                         "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3013                         framenum, cf->filename,
3014                         wtap_file_type_short_string(out_file_type));
3015                 break;
3016
3017               default:
3018                 show_capture_file_io_error(save_file, err, FALSE);
3019                 break;
3020               }
3021               wtap_dump_close(pdh, &err);
3022               g_free(shb_hdr);
3023               exit(2);
3024             }
3025           }
3026           /* Stop reading if we have the maximum number of packets;
3027            * When the -c option has not been used, max_packet_count
3028            * starts at 0, which practically means, never stop reading.
3029            * (unless we roll over max_packet_count ?)
3030            */
3031           if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3032             err = 0; /* This is not an error */
3033             break;
3034           }
3035         }
3036       }
3037     }
3038     buffer_free(&buf);
3039   }
3040   else {
3041     framenum = 0;
3042     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
3043       framenum++;
3044
3045       if (process_packet(cf, data_offset, wtap_phdr(cf->wth),
3046                          wtap_buf_ptr(cf->wth),
3047                          filtering_tap_listeners, tap_flags)) {
3048         /* Either there's no read filtering or this packet passed the
3049            filter, so, if we're writing to a capture file, write
3050            this packet out. */
3051         if (pdh != NULL) {
3052           if (!wtap_dump(pdh, wtap_phdr(cf->wth), wtap_buf_ptr(cf->wth), &err)) {
3053             /* Error writing to a capture file */
3054             switch (err) {
3055
3056             case WTAP_ERR_UNSUPPORTED_ENCAP:
3057               /*
3058                * This is a problem with the particular frame we're writing;
3059                * note that, and give the frame number.
3060                */
3061               fprintf(stderr,
3062                       "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3063                       framenum, cf->filename,
3064                       wtap_file_type_short_string(out_file_type));
3065               break;
3066
3067             default:
3068               show_capture_file_io_error(save_file, err, FALSE);
3069               break;
3070             }
3071             wtap_dump_close(pdh, &err);
3072             g_free(shb_hdr);
3073             exit(2);
3074           }
3075         }
3076         /* Stop reading if we have the maximum number of packets;
3077          * When the -c option has not been used, max_packet_count
3078          * starts at 0, which practically means, never stop reading.
3079          * (unless we roll over max_packet_count ?)
3080          */
3081         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3082           err = 0; /* This is not an error */
3083           break;
3084         }
3085       }
3086     }
3087   }
3088
3089   if (err != 0) {
3090     /*
3091      * Print a message noting that the read failed somewhere along the line.
3092      *
3093      * If we're printing packet data, and the standard output and error are
3094      * going to the same place, flush the standard output, so everything
3095      * buffered up is written, and then print a newline to the standard error
3096      * before printing the error message, to separate it from the packet
3097      * data.  (Alas, that only works on UN*X; st_dev is meaningless, and
3098      * the _fstat() documentation at Microsoft doesn't indicate whether
3099      * st_ino is even supported.)
3100      */
3101 #ifndef _WIN32
3102     if (print_packet_info) {
3103       struct stat stat_stdout, stat_stderr;
3104
3105       if (fstat(1, &stat_stdout) == 0 && fstat(2, &stat_stderr) == 0) {
3106         if (stat_stdout.st_dev == stat_stderr.st_dev &&
3107             stat_stdout.st_ino == stat_stderr.st_ino) {
3108           fflush(stdout);
3109           fprintf(stderr, "\n");
3110         }
3111       }
3112     }
3113 #endif
3114     switch (err) {
3115
3116     case WTAP_ERR_UNSUPPORTED:
3117       cmdarg_err("The file \"%s\" contains record data that TShark doesn't support.\n(%s)",
3118                  cf->filename, err_info);
3119       g_free(err_info);
3120       break;
3121
3122     case WTAP_ERR_UNSUPPORTED_ENCAP:
3123       cmdarg_err("The file \"%s\" has a packet with a network type that TShark doesn't support.\n(%s)",
3124                  cf->filename, err_info);
3125       g_free(err_info);
3126       break;
3127
3128     case WTAP_ERR_CANT_READ:
3129       cmdarg_err("An attempt to read from the file \"%s\" failed for some unknown reason.",
3130                  cf->filename);
3131       break;
3132
3133     case WTAP_ERR_SHORT_READ:
3134       cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
3135                  cf->filename);
3136       break;
3137
3138     case WTAP_ERR_BAD_FILE:
3139       cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
3140                  cf->filename, err_info);
3141       g_free(err_info);
3142       break;
3143
3144     case WTAP_ERR_DECOMPRESS:
3145       cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n"
3146                  "(%s)", cf->filename, err_info);
3147       break;
3148
3149     default:
3150       cmdarg_err("An error occurred while reading the file \"%s\": %s.",
3151                  cf->filename, wtap_strerror(err));
3152       break;
3153     }
3154     if (save_file != NULL) {
3155       /* Now close the capture file. */
3156       if (!wtap_dump_close(pdh, &err))
3157         show_capture_file_io_error(save_file, err, TRUE);
3158     }
3159   } else {
3160     if (save_file != NULL) {
3161       /* Now close the capture file. */
3162       if (!wtap_dump_close(pdh, &err))
3163         show_capture_file_io_error(save_file, err, TRUE);
3164     } else {
3165       if (print_packet_info) {
3166         if (!write_finale()) {
3167           err = errno;
3168           show_print_file_io_error(err);
3169         }
3170       }
3171     }
3172   }
3173
3174 out:
3175   wtap_close(cf->wth);
3176   cf->wth = NULL;
3177
3178   g_free(save_file_string);
3179   g_free(shb_hdr);
3180
3181   return err;
3182 }
3183
3184 static gboolean
3185 process_packet(capture_file *cf, gint64 offset, struct wtap_pkthdr *whdr,
3186                const guchar *pd,
3187                gboolean filtering_tap_listeners, guint tap_flags)
3188 {
3189   frame_data      fdata;
3190   gboolean        create_proto_tree;
3191   column_info    *cinfo;
3192   epan_dissect_t  edt;
3193   gboolean        passed;
3194
3195   /* Count this packet. */
3196   cf->count++;
3197
3198   /* If we're not running a display filter and we're not printing any
3199      packet information, we don't need to do a dissection. This means
3200      that all packets can be marked as 'passed'. */
3201   passed = TRUE;
3202
3203   frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
3204
3205   /* If we're going to print packet information, or we're going to
3206      run a read filter, or we're going to process taps, set up to
3207      do a dissection and do so. */
3208   if (do_dissection) {
3209     if (print_packet_info && (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
3210         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns))
3211       /* Grab any resolved addresses */
3212       host_name_lookup_process();
3213
3214     if (cf->rfcode || cf->dfcode || print_details || filtering_tap_listeners ||
3215         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
3216       create_proto_tree = TRUE;
3217     else
3218       create_proto_tree = FALSE;
3219
3220     /* The protocol tree will be "visible", i.e., printed, only if we're
3221        printing packet details, which is true if we're printing stuff
3222        ("print_packet_info" is true) and we're in verbose mode
3223        ("packet_details" is true). */
3224     epan_dissect_init(&edt, cf->epan, create_proto_tree, print_packet_info && print_details);
3225
3226     /* If we're running a filter, prime the epan_dissect_t with that
3227        filter. */
3228     if (cf->rfcode)
3229       epan_dissect_prime_dfilter(&edt, cf->rfcode);
3230     if (cf->dfcode)
3231       epan_dissect_prime_dfilter(&edt, cf->dfcode);
3232
3233     col_custom_prime_edt(&edt, &cf->cinfo);
3234
3235     /* We only need the columns if either
3236          1) some tap needs the columns
3237        or
3238          2) we're printing packet info but we're *not* verbose; in verbose
3239             mode, we print the protocol tree, not the protocol summary.
3240        or
3241          3) there is a column mapped as an individual field */
3242     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary) || output_fields_has_cols(output_fields))
3243       cinfo = &cf->cinfo;
3244     else
3245       cinfo = NULL;
3246
3247     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
3248                                   &first_ts, prev_dis, prev_cap);
3249
3250     epan_dissect_run_with_taps(&edt, whdr, frame_tvbuff_new(&fdata, pd), &fdata, cinfo);
3251
3252     /* Run the filters if we have them. */
3253     if (cf->rfcode)
3254       passed = dfilter_apply_edt(cf->rfcode, &edt);
3255     if (passed && cf->dfcode)
3256       passed = dfilter_apply_edt(cf->dfcode, &edt);
3257   }
3258
3259   if (passed) {
3260     frame_data_set_after_dissect(&fdata, &cum_bytes);
3261
3262     /* Process this packet. */
3263     if (print_packet_info) {
3264       /* We're printing packet information; print the information for
3265          this packet. */
3266       if (do_dissection)
3267         print_packet(cf, &edt);
3268       else
3269         print_packet(cf, NULL);
3270
3271       /* The ANSI C standard does not appear to *require* that a line-buffered
3272          stream be flushed to the host environment whenever a newline is
3273          written, it just says that, on such a stream, characters "are
3274          intended to be transmitted to or from the host environment as a
3275          block when a new-line character is encountered".
3276
3277          The Visual C++ 6.0 C implementation doesn't do what is intended;
3278          even if you set a stream to be line-buffered, it still doesn't
3279          flush the buffer at the end of every line.
3280
3281          So, if the "-l" flag was specified, we flush the standard output
3282          at the end of a packet.  This will do the right thing if we're
3283          printing packet summary lines, and, as we print the entire protocol
3284          tree for a single packet without waiting for anything to happen,
3285          it should be as good as line-buffered mode if we're printing
3286          protocol trees.  (The whole reason for the "-l" flag in either
3287          tcpdump or TShark is to allow the output of a live capture to
3288          be piped to a program or script and to have that script see the
3289          information for the packet as soon as it's printed, rather than
3290          having to wait until a standard I/O buffer fills up. */
3291       if (line_buffered)
3292         fflush(stdout);
3293
3294       if (ferror(stdout)) {
3295         show_print_file_io_error(errno);
3296         exit(2);
3297       }
3298     }
3299
3300     /* this must be set after print_packet() [bug #8160] */
3301     prev_dis_frame = fdata;
3302     prev_dis = &prev_dis_frame;
3303   }
3304
3305   prev_cap_frame = fdata;
3306   prev_cap = &prev_cap_frame;
3307
3308   if (do_dissection) {
3309     epan_dissect_cleanup(&edt);
3310     frame_data_destroy(&fdata);
3311   }
3312   return passed;
3313 }
3314
3315 static gboolean
3316 write_preamble(capture_file *cf)
3317 {
3318   switch (output_action) {
3319
3320   case WRITE_TEXT:
3321     return print_preamble(print_stream, cf ? cf->filename : NULL, wireshark_svnversion);
3322
3323   case WRITE_XML:
3324     if (print_details)
3325       write_pdml_preamble(stdout, cf ? cf->filename : NULL);
3326     else
3327       write_psml_preamble(stdout);
3328     return !ferror(stdout);
3329
3330   case WRITE_FIELDS:
3331     write_fields_preamble(output_fields, stdout);
3332     return !ferror(stdout);
3333
3334   default:
3335     g_assert_not_reached();
3336     return FALSE;
3337   }
3338 }
3339
3340 static char *
3341 get_line_buf(size_t len)
3342 {
3343   static char   *line_bufp    = NULL;
3344   static size_t  line_buf_len = 256;
3345   size_t         new_line_buf_len;
3346
3347   for (new_line_buf_len = line_buf_len; len > new_line_buf_len;
3348        new_line_buf_len *= 2)
3349     ;
3350   if (line_bufp == NULL) {
3351     line_buf_len = new_line_buf_len;
3352     line_bufp = (char *)g_malloc(line_buf_len + 1);
3353   } else {
3354     if (new_line_buf_len > line_buf_len) {
3355       line_buf_len = new_line_buf_len;
3356       line_bufp = (char *)g_realloc(line_bufp, line_buf_len + 1);
3357     }
3358   }
3359   return line_bufp;
3360 }
3361
3362 static gboolean
3363 print_columns(capture_file *cf)
3364 {
3365   char   *line_bufp;
3366   int     i;
3367   size_t  buf_offset;
3368   size_t  column_len;
3369
3370   line_bufp = get_line_buf(256);
3371   buf_offset = 0;
3372   *line_bufp = '\0';
3373   for (i = 0; i < cf->cinfo.num_cols; i++) {
3374     /* Skip columns not marked as visible. */
3375     if (!get_column_visible(i))
3376       continue;
3377     switch (cf->cinfo.col_fmt[i]) {
3378     case COL_NUMBER:
3379 #ifdef HAVE_LIBPCAP
3380       /*
3381        * Don't print this if we're doing a live capture from a network
3382        * interface - if we're doing a live capture, you won't be
3383        * able to look at the capture in the future (it's not being
3384        * saved anywhere), so the frame numbers are unlikely to be
3385        * useful.
3386        *
3387        * (XXX - it might be nice to be able to save and print at
3388        * the same time, sort of like an "Update list of packets
3389        * in real time" capture in Wireshark.)
3390        */
3391       if (global_capture_opts.ifaces->len > 0)
3392         continue;
3393 #endif
3394       column_len = strlen(cf->cinfo.col_data[i]);
3395       if (column_len < 3)
3396         column_len = 3;
3397       line_bufp = get_line_buf(buf_offset + column_len);
3398       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%3s", cf->cinfo.col_data[i]);
3399       break;
3400
3401     case COL_CLS_TIME:
3402     case COL_REL_TIME:
3403     case COL_ABS_TIME:
3404     case COL_ABS_DATE_TIME:
3405     case COL_UTC_TIME:
3406     case COL_UTC_DATE_TIME: /* XXX - wider */
3407       column_len = strlen(cf->cinfo.col_data[i]);
3408       if (column_len < 10)
3409         column_len = 10;
3410       line_bufp = get_line_buf(buf_offset + column_len);
3411       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%10s", cf->cinfo.col_data[i]);
3412       break;
3413
3414     case COL_DEF_SRC:
3415     case COL_RES_SRC:
3416     case COL_UNRES_SRC:
3417     case COL_DEF_DL_SRC:
3418     case COL_RES_DL_SRC:
3419     case COL_UNRES_DL_SRC:
3420     case COL_DEF_NET_SRC:
3421     case COL_RES_NET_SRC:
3422     case COL_UNRES_NET_SRC:
3423       column_len = strlen(cf->cinfo.col_data[i]);
3424       if (column_len < 12)
3425         column_len = 12;
3426       line_bufp = get_line_buf(buf_offset + column_len);
3427       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%12s", cf->cinfo.col_data[i]);
3428       break;
3429
3430     case COL_DEF_DST:
3431     case COL_RES_DST:
3432     case COL_UNRES_DST:
3433     case COL_DEF_DL_DST:
3434     case COL_RES_DL_DST:
3435     case COL_UNRES_DL_DST:
3436     case COL_DEF_NET_DST:
3437     case COL_RES_NET_DST:
3438     case COL_UNRES_NET_DST:
3439       column_len = strlen(cf->cinfo.col_data[i]);
3440       if (column_len < 12)
3441         column_len = 12;
3442       line_bufp = get_line_buf(buf_offset + column_len);
3443       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%-12s", cf->cinfo.col_data[i]);
3444       break;
3445
3446     default:
3447       column_len = strlen(cf->cinfo.col_data[i]);
3448       line_bufp = get_line_buf(buf_offset + column_len);
3449       g_strlcat(line_bufp + buf_offset, cf->cinfo.col_data[i], column_len + 1);
3450       break;
3451     }
3452     buf_offset += column_len;
3453     if (i != cf->cinfo.num_cols - 1) {
3454       /*
3455        * This isn't the last column, so we need to print a
3456        * separator between this column and the next.
3457        *
3458        * If we printed a network source and are printing a
3459        * network destination of the same type next, separate
3460        * them with " -> "; if we printed a network destination
3461        * and are printing a network source of the same type
3462        * next, separate them with " <- "; otherwise separate them
3463        * with a space.
3464        *
3465        * We add enough space to the buffer for " <- " or " -> ",
3466        * even if we're only adding " ".
3467        */
3468       line_bufp = get_line_buf(buf_offset + 4);
3469       switch (cf->cinfo.col_fmt[i]) {
3470
3471       case COL_DEF_SRC:
3472       case COL_RES_SRC:
3473       case COL_UNRES_SRC:
3474         switch (cf->cinfo.col_fmt[i + 1]) {
3475
3476         case COL_DEF_DST:
3477         case COL_RES_DST:
3478         case COL_UNRES_DST:
3479           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3480           buf_offset += 4;
3481           break;
3482
3483         default:
3484           g_strlcat(line_bufp + buf_offset, " ", 5);
3485           buf_offset += 1;
3486           break;
3487         }
3488         break;
3489
3490       case COL_DEF_DL_SRC:
3491       case COL_RES_DL_SRC:
3492       case COL_UNRES_DL_SRC:
3493         switch (cf->cinfo.col_fmt[i + 1]) {
3494
3495         case COL_DEF_DL_DST:
3496         case COL_RES_DL_DST:
3497         case COL_UNRES_DL_DST:
3498           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3499           buf_offset += 4;
3500           break;
3501
3502         default:
3503           g_strlcat(line_bufp + buf_offset, " ", 5);
3504           buf_offset += 1;
3505           break;
3506         }
3507         break;
3508
3509       case COL_DEF_NET_SRC:
3510       case COL_RES_NET_SRC:
3511       case COL_UNRES_NET_SRC:
3512         switch (cf->cinfo.col_fmt[i + 1]) {
3513
3514         case COL_DEF_NET_DST:
3515         case COL_RES_NET_DST:
3516         case COL_UNRES_NET_DST:
3517           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3518           buf_offset += 4;
3519           break;
3520
3521         default:
3522           g_strlcat(line_bufp + buf_offset, " ", 5);
3523           buf_offset += 1;
3524           break;
3525         }
3526         break;
3527
3528       case COL_DEF_DST:
3529       case COL_RES_DST:
3530       case COL_UNRES_DST:
3531         switch (cf->cinfo.col_fmt[i + 1]) {
3532
3533         case COL_DEF_SRC:
3534         case COL_RES_SRC:
3535         case COL_UNRES_SRC:
3536           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3537           buf_offset += 4;
3538           break;
3539
3540         default:
3541           g_strlcat(line_bufp + buf_offset, " ", 5);
3542           buf_offset += 1;
3543           break;
3544         }
3545         break;
3546
3547       case COL_DEF_DL_DST:
3548       case COL_RES_DL_DST:
3549       case COL_UNRES_DL_DST:
3550         switch (cf->cinfo.col_fmt[i + 1]) {
3551
3552         case COL_DEF_DL_SRC:
3553         case COL_RES_DL_SRC:
3554         case COL_UNRES_DL_SRC:
3555           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3556           buf_offset += 4;
3557           break;
3558
3559         default:
3560           g_strlcat(line_bufp + buf_offset, " ", 5);
3561           buf_offset += 1;
3562           break;
3563         }
3564         break;
3565
3566       case COL_DEF_NET_DST:
3567       case COL_RES_NET_DST:
3568       case COL_UNRES_NET_DST:
3569         switch (cf->cinfo.col_fmt[i + 1]) {
3570
3571         case COL_DEF_NET_SRC:
3572         case COL_RES_NET_SRC:
3573         case COL_UNRES_NET_SRC:
3574           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3575           buf_offset += 4;
3576           break;
3577
3578         default:
3579           g_strlcat(line_bufp + buf_offset, " ", 5);
3580           buf_offset += 1;
3581           break;
3582         }
3583         break;
3584
3585       default:
3586         g_strlcat(line_bufp + buf_offset, " ", 5);
3587         buf_offset += 1;
3588         break;
3589       }
3590     }
3591   }
3592   return print_line(print_stream, 0, line_bufp);
3593 }
3594
3595 static gboolean
3596 print_packet(capture_file *cf, epan_dissect_t *edt)
3597 {
3598   print_args_t print_args;
3599
3600   if (print_summary || output_fields_has_cols(output_fields)) {
3601     /* Just fill in the columns. */
3602     epan_dissect_fill_in_columns(edt, FALSE, TRUE);
3603
3604     if (print_summary) {
3605       /* Now print them. */
3606       switch (output_action) {
3607
3608       case WRITE_TEXT:
3609         if (!print_columns(cf))
3610           return FALSE;
3611         break;
3612
3613       case WRITE_XML:
3614         proto_tree_write_psml(edt, stdout);
3615         return !ferror(stdout);
3616       case WRITE_FIELDS: /*No non-verbose "fields" format */
3617         g_assert_not_reached();
3618         break;
3619       }
3620     }
3621   }
3622   if (print_details) {
3623     /* Print the information in the protocol tree. */
3624     switch (output_action) {
3625
3626     case WRITE_TEXT:
3627       /* Only initialize the fields that are actually used in proto_tree_print.
3628        * This is particularly important for .range, as that's heap memory which
3629        * we would otherwise have to g_free().
3630       print_args.to_file = TRUE;
3631       print_args.format = print_format;
3632       print_args.print_summary = print_summary;
3633       print_args.print_formfeed = FALSE;
3634       packet_range_init(&print_args.range, &cfile);
3635       */
3636       print_args.print_hex = print_hex;
3637       print_args.print_dissections = print_details ? print_dissections_expanded : print_dissections_none;
3638
3639       if (!proto_tree_print(&print_args, edt, print_stream))
3640         return FALSE;
3641       if (!print_hex) {
3642         if (!print_line(print_stream, 0, separator))
3643           return FALSE;
3644       }
3645       break;
3646
3647     case WRITE_XML:
3648       proto_tree_write_pdml(edt, stdout);
3649       printf("\n");
3650       return !ferror(stdout);
3651     case WRITE_FIELDS:
3652       proto_tree_write_fields(output_fields, edt, &cf->cinfo, stdout);
3653       printf("\n");
3654       return !ferror(stdout);
3655     }
3656   }
3657   if (print_hex) {
3658     if (print_summary || print_details) {
3659       if (!print_line(print_stream, 0, ""))
3660         return FALSE;
3661     }
3662     if (!print_hex_data(print_stream, edt))
3663       return FALSE;
3664     if (!print_line(print_stream, 0, separator))
3665       return FALSE;
3666   }
3667   return TRUE;
3668 }
3669
3670 static gboolean
3671 write_finale(void)
3672 {
3673   switch (output_action) {
3674
3675   case WRITE_TEXT:
3676     return print_finale(print_stream);
3677
3678   case WRITE_XML:
3679     if (print_details)
3680       write_pdml_finale(stdout);
3681     else
3682       write_psml_finale(stdout);
3683     return !ferror(stdout);
3684
3685   case WRITE_FIELDS:
3686     write_fields_finale(output_fields, stdout);
3687     return !ferror(stdout);
3688
3689   default:
3690     g_assert_not_reached();
3691     return FALSE;
3692   }
3693 }
3694
3695 cf_status_t
3696 cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
3697 {
3698   wtap  *wth;
3699   gchar *err_info;
3700   char   err_msg[2048+1];
3701
3702   wth = wtap_open_offline(fname, err, &err_info, perform_two_pass_analysis);
3703   if (wth == NULL)
3704     goto fail;
3705
3706   /* The open succeeded.  Fill in the information for this file. */
3707
3708   /* Create new epan session for dissection. */
3709   epan_free(cf->epan);
3710   cf->epan = epan_new();
3711
3712   cf->wth = wth;
3713   cf->f_datalen = 0; /* not used, but set it anyway */
3714
3715   /* Set the file name because we need it to set the follow stream filter.
3716      XXX - is that still true?  We need it for other reasons, though,
3717      in any case. */
3718   cf->filename = g_strdup(fname);
3719
3720   /* Indicate whether it's a permanent or temporary file. */
3721   cf->is_tempfile = is_tempfile;
3722
3723   /* No user changes yet. */
3724   cf->unsaved_changes = FALSE;
3725
3726   cf->cd_t      = wtap_file_type(cf->wth);
3727   cf->count     = 0;
3728   cf->drops_known = FALSE;
3729   cf->drops     = 0;
3730   cf->snap      = wtap_snapshot_length(cf->wth);
3731   if (cf->snap == 0) {
3732     /* Snapshot length not known. */
3733     cf->has_snap = FALSE;
3734     cf->snap = WTAP_MAX_PACKET_SIZE;
3735   } else
3736     cf->has_snap = TRUE;
3737   nstime_set_zero(&cf->elapsed_time);
3738   nstime_set_unset(&first_ts);
3739   prev_dis = NULL;
3740   prev_cap = NULL;
3741
3742   cf->state = FILE_READ_IN_PROGRESS;
3743
3744   wtap_set_cb_new_ipv4(cf->wth, add_ipv4_name);
3745   wtap_set_cb_new_ipv6(cf->wth, (wtap_new_ipv6_callback_t) add_ipv6_name);
3746
3747   return CF_OK;
3748
3749 fail:
3750   g_snprintf(err_msg, sizeof err_msg,
3751              cf_open_error_message(*err, err_info, FALSE, cf->cd_t), fname);
3752   cmdarg_err("%s", err_msg);
3753   return CF_ERROR;
3754 }
3755
3756 static void
3757 show_capture_file_io_error(const char *fname, int err, gboolean is_close)
3758 {
3759   char *save_file_string;
3760
3761   save_file_string = output_file_description(fname);
3762
3763   switch (err) {
3764
3765   case ENOSPC:
3766     cmdarg_err("Not all the packets could be written to the %s because there is "
3767                "no space left on the file system.",
3768                save_file_string);
3769     break;
3770
3771 #ifdef EDQUOT
3772   case EDQUOT:
3773     cmdarg_err("Not all the packets could be written to the %s because you are "
3774                "too close to, or over your disk quota.",
3775                save_file_string);
3776   break;
3777 #endif
3778
3779   case WTAP_ERR_CANT_CLOSE:
3780     cmdarg_err("The %s couldn't be closed for some unknown reason.",
3781                save_file_string);
3782     break;
3783
3784   case WTAP_ERR_SHORT_WRITE:
3785     cmdarg_err("Not all the packets could be written to the %s.",
3786                save_file_string);
3787     break;
3788
3789   default:
3790     if (is_close) {
3791       cmdarg_err("The %s could not be closed: %s.", save_file_string,
3792                  wtap_strerror(err));
3793     } else {
3794       cmdarg_err("An error occurred while writing to the %s: %s.",
3795                  save_file_string, wtap_strerror(err));
3796     }
3797     break;
3798   }
3799   g_free(save_file_string);
3800 }
3801
3802 static void
3803 show_print_file_io_error(int err)
3804 {
3805   switch (err) {
3806
3807   case ENOSPC:
3808     cmdarg_err("Not all the packets could be printed because there is "
3809 "no space left on the file system.");
3810     break;
3811
3812 #ifdef EDQUOT
3813   case EDQUOT:
3814     cmdarg_err("Not all the packets could be printed because you are "
3815 "too close to, or over your disk quota.");
3816   break;
3817 #endif
3818
3819   default:
3820     cmdarg_err("An error occurred while printing packets: %s.",
3821       g_strerror(err));
3822     break;
3823   }
3824 }
3825
3826 static const char *
3827 cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
3828                       int file_type)
3829 {
3830   const char *errmsg;
3831   static char errmsg_errno[1024+1];
3832
3833   if (err < 0) {
3834     /* Wiretap error. */
3835     switch (err) {
3836
3837     case WTAP_ERR_NOT_REGULAR_FILE:
3838       errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
3839       break;
3840
3841     case WTAP_ERR_RANDOM_OPEN_PIPE:
3842       /* Seen only when opening a capture file for reading. */
3843       errmsg = "The file \"%s\" is a pipe or FIFO; TShark can't read pipe or FIFO files in two-pass mode.";
3844       break;
3845
3846     case WTAP_ERR_FILE_UNKNOWN_FORMAT:
3847       /* Seen only when opening a capture file for reading. */
3848       errmsg = "The file \"%s\" isn't a capture file in a format TShark understands.";
3849       break;
3850
3851     case WTAP_ERR_UNSUPPORTED:
3852       /* Seen only when opening a capture file for reading. */
3853       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3854                "The file \"%%s\" isn't a capture file in a format TShark understands.\n"
3855                "(%s)", err_info);
3856       g_free(err_info);
3857       errmsg = errmsg_errno;
3858       break;
3859
3860     case WTAP_ERR_CANT_WRITE_TO_PIPE:
3861       /* Seen only when opening a capture file for writing. */
3862       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3863                  "The file \"%%s\" is a pipe, and \"%s\" capture files can't be "
3864                  "written to a pipe.", wtap_file_type_short_string(file_type));
3865       errmsg = errmsg_errno;
3866       break;
3867
3868     case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
3869       /* Seen only when opening a capture file for writing. */
3870       errmsg = "TShark doesn't support writing capture files in that format.";
3871       break;
3872
3873     case WTAP_ERR_UNSUPPORTED_ENCAP:
3874       if (for_writing) {
3875         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3876                    "TShark can't save this capture as a \"%s\" file.",
3877                    wtap_file_type_short_string(file_type));
3878       } else {
3879         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3880                  "The file \"%%s\" is a capture for a network type that TShark doesn't support.\n"
3881                  "(%s)", err_info);
3882         g_free(err_info);
3883       }
3884       errmsg = errmsg_errno;
3885       break;
3886
3887     case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
3888       if (for_writing) {
3889         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3890                    "TShark can't save this capture as a \"%s\" file.",
3891                    wtap_file_type_short_string(file_type));
3892         errmsg = errmsg_errno;
3893       } else
3894         errmsg = "The file \"%s\" is a capture for a network type that TShark doesn't support.";
3895       break;
3896
3897     case WTAP_ERR_BAD_FILE:
3898       /* Seen only when opening a capture file for reading. */
3899       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3900                "The file \"%%s\" appears to be damaged or corrupt.\n"
3901                "(%s)", err_info);
3902       g_free(err_info);
3903       errmsg = errmsg_errno;
3904       break;
3905
3906     case WTAP_ERR_CANT_OPEN:
3907       if (for_writing)
3908         errmsg = "The file \"%s\" could not be created for some unknown reason.";
3909       else
3910         errmsg = "The file \"%s\" could not be opened for some unknown reason.";
3911       break;
3912
3913     case WTAP_ERR_SHORT_READ:
3914       errmsg = "The file \"%s\" appears to have been cut short"
3915                " in the middle of a packet or other data.";
3916       break;
3917
3918     case WTAP_ERR_SHORT_WRITE:
3919       errmsg = "A full header couldn't be written to the file \"%s\".";
3920       break;
3921
3922     case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
3923       errmsg = "This file type cannot be written as a compressed file.";
3924       break;
3925
3926     case WTAP_ERR_DECOMPRESS:
3927       /* Seen only when opening a capture file for reading. */
3928       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3929                  "The compressed file \"%%s\" appears to be damaged or corrupt.\n"
3930                  "(%s)", err_info);
3931       g_free(err_info);
3932       errmsg = errmsg_errno;
3933       break;
3934
3935     default:
3936       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3937                  "The file \"%%s\" could not be %s: %s.",
3938                  for_writing ? "created" : "opened",
3939                  wtap_strerror(err));
3940       errmsg = errmsg_errno;
3941       break;
3942     }
3943   } else
3944     errmsg = file_open_error_message(err, for_writing);
3945   return errmsg;
3946 }
3947
3948 /*
3949  * Open/create errors are reported with an console message in TShark.
3950  */
3951 static void
3952 open_failure_message(const char *filename, int err, gboolean for_writing)
3953 {
3954   fprintf(stderr, "tshark: ");
3955   fprintf(stderr, file_open_error_message(err, for_writing), filename);
3956   fprintf(stderr, "\n");
3957 }
3958
3959
3960 /*
3961  * General errors are reported with an console message in TShark.
3962  */
3963 static void
3964 failure_message(const char *msg_format, va_list ap)
3965 {
3966   fprintf(stderr, "tshark: ");
3967   vfprintf(stderr, msg_format, ap);
3968   fprintf(stderr, "\n");
3969 }
3970
3971 /*
3972  * Read errors are reported with an console message in TShark.
3973  */
3974 static void
3975 read_failure_message(const char *filename, int err)
3976 {
3977   cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
3978           filename, g_strerror(err));
3979 }
3980
3981 /*
3982  * Write errors are reported with an console message in TShark.
3983  */
3984 static void
3985 write_failure_message(const char *filename, int err)
3986 {
3987   cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
3988           filename, g_strerror(err));
3989 }
3990
3991 /*
3992  * Report an error in command-line arguments.
3993  */
3994 void
3995 cmdarg_err(const char *fmt, ...)
3996 {
3997   va_list ap;
3998
3999   va_start(ap, fmt);
4000   failure_message(fmt, ap);
4001   va_end(ap);
4002 }
4003
4004 /*
4005  * Report additional information for an error in command-line arguments.
4006  */
4007 void
4008 cmdarg_err_cont(const char *fmt, ...)
4009 {
4010   va_list ap;
4011
4012   va_start(ap, fmt);
4013   vfprintf(stderr, fmt, ap);
4014   fprintf(stderr, "\n");
4015   va_end(ap);
4016 }
4017
4018
4019 /*
4020  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
4021  *
4022  * Local variables:
4023  * c-basic-offset: 2
4024  * tab-width: 8
4025  * indent-tabs-mode: nil
4026  * End:
4027  *
4028  * vi: set shiftwidth=2 tabstop=8 expandtab:
4029  * :indentSize=2:tabSize=8:noTabs=true:
4030  */