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