Allow tshark to read a pcap file and either save it as a new pcap file or for packets...
[jelmer/wireshark.git] / tshark.c
1 /* tshark.c
2  *
3  * Text-mode variant of Wireshark, along the lines of tcpdump and snoop,
4  * by Gilbert Ramirez <gram@alumni.rice.edu> and Guy Harris <guy@alum.mit.edu>.
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <locale.h>
34 #include <limits.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 #include <errno.h>
41
42 #ifdef HAVE_FCNTL_H
43 #include <fcntl.h>
44 #endif
45
46 #include <signal.h>
47
48 #ifdef HAVE_SYS_STAT_H
49 # include <sys/stat.h>
50 #endif
51
52 #ifndef HAVE_GETOPT
53 #include "wsutil/wsgetopt.h"
54 #endif
55
56 #include <glib.h>
57 #include <epan/epan.h>
58 #include <epan/filesystem.h>
59 #include <wsutil/crash_info.h>
60 #include <wsutil/privileges.h>
61 #include <wsutil/file_util.h>
62
63 #include "globals.h"
64 #include <epan/timestamp.h>
65 #include <epan/packet.h>
66 #include "file.h"
67 #include "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 #include "capture_opts.h"
95 #endif /* HAVE_LIBPCAP */
96 #include "log.h"
97 #include <epan/funnel.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     /* If we're not doing dissection then there won't be any dependent frames.
2717      * More importantly, edt.pi.dependent_frames won't be initialized because
2718      * epan hasn't been initialized.
2719      */
2720     if (do_dissection) {
2721       g_slist_foreach(edt.pi.dependent_frames, find_and_mark_frame_depended_upon, cf->frames);
2722     }
2723
2724     cf->count++;
2725   } else {
2726     /* if we don't add it to the frame_data_sequence, clean it up right now
2727      * to avoid leaks */
2728     frame_data_destroy(&fdlocal);
2729     /* TODO, bug #8160 */
2730     /*
2731     prev_cap_frame = fdlocal;
2732     prev_cap = &prev_cap_frame;
2733      */
2734   }
2735
2736   if (do_dissection)
2737     epan_dissect_cleanup(&edt);
2738
2739   return passed;
2740 }
2741
2742 static gboolean
2743 process_packet_second_pass(capture_file *cf, frame_data *fdata,
2744                struct wtap_pkthdr *phdr, const guchar *pd,
2745                gboolean filtering_tap_listeners, guint tap_flags)
2746 {
2747   gboolean        create_proto_tree;
2748   column_info    *cinfo;
2749   epan_dissect_t  edt;
2750   gboolean        passed;
2751
2752   /* If we're not running a display filter and we're not printing any
2753      packet information, we don't need to do a dissection. This means
2754      that all packets can be marked as 'passed'. */
2755   passed = TRUE;
2756
2757   /* If we're going to print packet information, or we're going to
2758      run a read filter, or we're going to process taps, set up to
2759      do a dissection and do so. */
2760   if (do_dissection) {
2761     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2762         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2763       /* Grab any resolved addresses */
2764       host_name_lookup_process();
2765
2766     if (cf->dfcode || print_details || filtering_tap_listeners ||
2767         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
2768       create_proto_tree = TRUE;
2769     else
2770       create_proto_tree = FALSE;
2771
2772     /* The protocol tree will be "visible", i.e., printed, only if we're
2773        printing packet details, which is true if we're printing stuff
2774        ("print_packet_info" is true) and we're in verbose mode
2775        ("packet_details" is true). */
2776     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
2777
2778     /* If we're running a display filter, prime the epan_dissect_t with that
2779        filter. */
2780     if (cf->dfcode)
2781       epan_dissect_prime_dfilter(&edt, cf->dfcode);
2782
2783     col_custom_prime_edt(&edt, &cf->cinfo);
2784
2785     /* We only need the columns if either
2786          1) some tap needs the columns
2787        or
2788          2) we're printing packet info but we're *not* verbose; in verbose
2789             mode, we print the protocol tree, not the protocol summary.
2790      */
2791     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary))
2792       cinfo = &cf->cinfo;
2793     else
2794       cinfo = NULL;
2795
2796     epan_dissect_run_with_taps(&edt, phdr, pd, fdata, cinfo);
2797
2798     /* Run the read/display filter if we have one. */
2799     if (cf->dfcode)
2800       passed = dfilter_apply_edt(cf->dfcode, &edt);
2801   }
2802
2803   if (passed) {
2804     /* Process this packet. */
2805     if (print_packet_info) {
2806       /* We're printing packet information; print the information for
2807          this packet. */
2808       if (do_dissection)
2809         print_packet(cf, &edt);
2810       else
2811         print_packet(cf, NULL);
2812
2813       /* The ANSI C standard does not appear to *require* that a line-buffered
2814          stream be flushed to the host environment whenever a newline is
2815          written, it just says that, on such a stream, characters "are
2816          intended to be transmitted to or from the host environment as a
2817          block when a new-line character is encountered".
2818
2819          The Visual C++ 6.0 C implementation doesn't do what is intended;
2820          even if you set a stream to be line-buffered, it still doesn't
2821          flush the buffer at the end of every line.
2822
2823          So, if the "-l" flag was specified, we flush the standard output
2824          at the end of a packet.  This will do the right thing if we're
2825          printing packet summary lines, and, as we print the entire protocol
2826          tree for a single packet without waiting for anything to happen,
2827          it should be as good as line-buffered mode if we're printing
2828          protocol trees.  (The whole reason for the "-l" flag in either
2829          tcpdump or TShark is to allow the output of a live capture to
2830          be piped to a program or script and to have that script see the
2831          information for the packet as soon as it's printed, rather than
2832          having to wait until a standard I/O buffer fills up. */
2833       if (line_buffered)
2834         fflush(stdout);
2835
2836       if (ferror(stdout)) {
2837         show_print_file_io_error(errno);
2838         exit(2);
2839       }
2840     }
2841   }
2842
2843   if (do_dissection) {
2844     epan_dissect_cleanup(&edt);
2845   }
2846   return passed || fdata->flags.dependent_of_displayed;
2847 }
2848
2849 static int
2850 load_cap_file(capture_file *cf, char *save_file, int out_file_type,
2851     gboolean out_file_name_res, int max_packet_count, gint64 max_byte_count)
2852 {
2853   gint         linktype;
2854   int          snapshot_length;
2855   wtap_dumper *pdh;
2856   guint32      framenum;
2857   int          err;
2858   gchar       *err_info = NULL;
2859   gint64       data_offset;
2860   char        *save_file_string = NULL;
2861   gboolean     filtering_tap_listeners;
2862   guint        tap_flags;
2863   wtapng_section_t            *shb_hdr;
2864   wtapng_iface_descriptions_t *idb_inf;
2865   char         appname[100];
2866
2867   shb_hdr = wtap_file_get_shb_info(cf->wth);
2868   idb_inf = wtap_file_get_idb_info(cf->wth);
2869 #ifdef PCAP_NG_DEFAULT
2870   if (idb_inf->number_of_interfaces > 1) {
2871     linktype = WTAP_ENCAP_PER_PACKET;
2872   } else {
2873     linktype = wtap_file_encap(cf->wth);
2874   }
2875 #else
2876   linktype = wtap_file_encap(cf->wth);
2877 #endif
2878   if (save_file != NULL) {
2879     /* Get a string that describes what we're writing to */
2880     save_file_string = output_file_description(save_file);
2881
2882     /* Set up to write to the capture file. */
2883     snapshot_length = wtap_snapshot_length(cf->wth);
2884     if (snapshot_length == 0) {
2885       /* Snapshot length of input file not known. */
2886       snapshot_length = WTAP_MAX_PACKET_SIZE;
2887     }
2888     /* If we don't have an application name add Tshark */
2889     if (shb_hdr->shb_user_appl == NULL) {
2890         g_snprintf(appname, sizeof(appname), "TShark " VERSION "%s", wireshark_svnversion);
2891         shb_hdr->shb_user_appl = appname;
2892     }
2893
2894     if (linktype != WTAP_ENCAP_PER_PACKET && out_file_type == WTAP_FILE_PCAP)
2895         pdh = wtap_dump_open(save_file, out_file_type, linktype,
2896             snapshot_length, FALSE /* compressed */, &err);
2897     else
2898         pdh = wtap_dump_open_ng(save_file, out_file_type, linktype,
2899             snapshot_length, FALSE /* compressed */, shb_hdr, idb_inf, &err);
2900
2901     g_free(idb_inf);
2902     idb_inf = NULL;
2903
2904     if (pdh == NULL) {
2905       /* We couldn't set up to write to the capture file. */
2906       switch (err) {
2907
2908       case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
2909         cmdarg_err("Capture files can't be written in that format.");
2910         break;
2911
2912       case WTAP_ERR_UNSUPPORTED_ENCAP:
2913       case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
2914         cmdarg_err("The capture file being read can't be written as a "
2915           "\"%s\" file.", wtap_file_type_short_string(out_file_type));
2916         break;
2917
2918       case WTAP_ERR_CANT_OPEN:
2919         cmdarg_err("The %s couldn't be created for some "
2920           "unknown reason.", save_file_string);
2921         break;
2922
2923       case WTAP_ERR_SHORT_WRITE:
2924         cmdarg_err("A full header couldn't be written to the %s.",
2925                    save_file_string);
2926         break;
2927
2928       default:
2929         cmdarg_err("The %s could not be created: %s.", save_file_string,
2930                    wtap_strerror(err));
2931         break;
2932       }
2933       goto out;
2934     }
2935   } else {
2936     if (print_packet_info) {
2937       if (!write_preamble(cf)) {
2938         err = errno;
2939         show_print_file_io_error(err);
2940         goto out;
2941       }
2942     }
2943     pdh = NULL;
2944   }
2945
2946   if (pdh && out_file_name_res) {
2947     if (!wtap_dump_set_addrinfo_list(pdh, get_addrinfo_list())) {
2948       cmdarg_err("The file format \"%s\" doesn't support name resolution information.",
2949                  wtap_file_type_short_string(out_file_type));
2950     }
2951   }
2952
2953   /* Do we have any tap listeners with filters? */
2954   filtering_tap_listeners = have_filtering_tap_listeners();
2955
2956   /* Get the union of the flags for all tap listeners. */
2957   tap_flags = union_of_tap_listener_flags();
2958
2959   if (perform_two_pass_analysis) {
2960     frame_data *fdata;
2961     int old_max_packet_count = max_packet_count;
2962
2963     /* Allocate a frame_data_sequence for all the frames. */
2964     cf->frames = new_frame_data_sequence();
2965
2966     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
2967       if (process_packet_first_pass(cf, data_offset, wtap_phdr(cf->wth),
2968                          wtap_buf_ptr(cf->wth))) {
2969         /* Stop reading if we have the maximum number of packets;
2970          * When the -c option has not been used, max_packet_count
2971          * starts at 0, which practically means, never stop reading.
2972          * (unless we roll over max_packet_count ?)
2973          */
2974         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
2975           err = 0; /* This is not an error */
2976           break;
2977         }
2978       }
2979     }
2980
2981     /* Close the sequential I/O side, to free up memory it requires. */
2982     wtap_sequential_close(cf->wth);
2983
2984     /* Allow the protocol dissectors to free up memory that they
2985      * don't need after the sequential run-through of the packets. */
2986     postseq_cleanup_all_protocols();
2987
2988     max_packet_count = old_max_packet_count;
2989
2990     for (framenum = 1; err == 0 && framenum <= cf->count; framenum++) {
2991       fdata = frame_data_sequence_find(cf->frames, framenum);
2992       if (wtap_seek_read(cf->wth, fdata->file_off, &cf->phdr,
2993           cf->pd, fdata->cap_len, &err, &err_info)) {
2994         if (process_packet_second_pass(cf, fdata,
2995                            &cf->phdr, cf->pd,
2996                            filtering_tap_listeners, tap_flags)) {
2997           /* Either there's no read filtering or this packet passed the
2998              filter, so, if we're writing to a capture file, write
2999              this packet out. */
3000           if (pdh != NULL) {
3001             if (!wtap_dump(pdh, &cf->phdr, cf->pd, &err)) {
3002               /* Error writing to a capture file */
3003               switch (err) {
3004
3005               case WTAP_ERR_UNSUPPORTED_ENCAP:
3006                 /*
3007                  * This is a problem with the particular frame we're writing;
3008                  * note that, and give the frame number.
3009                  *
3010                  * XXX - framenum is not necessarily the frame number in
3011                  * the input file if there was a read filter.
3012                  */
3013                 fprintf(stderr,
3014                         "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3015                         framenum, cf->filename,
3016                         wtap_file_type_short_string(out_file_type));
3017                 break;
3018
3019               default:
3020                 show_capture_file_io_error(save_file, err, FALSE);
3021                 break;
3022               }
3023               wtap_dump_close(pdh, &err);
3024               g_free(shb_hdr);
3025               exit(2);
3026             }
3027           }
3028           /* Stop reading if we have the maximum number of packets;
3029            * When the -c option has not been used, max_packet_count
3030            * starts at 0, which practically means, never stop reading.
3031            * (unless we roll over max_packet_count ?)
3032            */
3033           if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3034             err = 0; /* This is not an error */
3035             break;
3036           }
3037         }
3038       }
3039     }
3040   }
3041   else {
3042     framenum = 0;
3043     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
3044       framenum++;
3045
3046       if (process_packet(cf, data_offset, wtap_phdr(cf->wth),
3047                          wtap_buf_ptr(cf->wth),
3048                          filtering_tap_listeners, tap_flags)) {
3049         /* Either there's no read filtering or this packet passed the
3050            filter, so, if we're writing to a capture file, write
3051            this packet out. */
3052         if (pdh != NULL) {
3053           if (!wtap_dump(pdh, wtap_phdr(cf->wth), wtap_buf_ptr(cf->wth), &err)) {
3054             /* Error writing to a capture file */
3055             switch (err) {
3056
3057             case WTAP_ERR_UNSUPPORTED_ENCAP:
3058               /*
3059                * This is a problem with the particular frame we're writing;
3060                * note that, and give the frame number.
3061                */
3062               fprintf(stderr,
3063                       "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3064                       framenum, cf->filename,
3065                       wtap_file_type_short_string(out_file_type));
3066               break;
3067
3068             default:
3069               show_capture_file_io_error(save_file, err, FALSE);
3070               break;
3071             }
3072             wtap_dump_close(pdh, &err);
3073             g_free(shb_hdr);
3074             exit(2);
3075           }
3076         }
3077         /* Stop reading if we have the maximum number of packets;
3078          * When the -c option has not been used, max_packet_count
3079          * starts at 0, which practically means, never stop reading.
3080          * (unless we roll over max_packet_count ?)
3081          */
3082         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3083           err = 0; /* This is not an error */
3084           break;
3085         }
3086       }
3087     }
3088   }
3089
3090   if (err != 0) {
3091     /*
3092      * Print a message noting that the read failed somewhere along the line.
3093      *
3094      * If we're printing packet data, and the standard output and error are
3095      * going to the same place, flush the standard output, so everything
3096      * buffered up is written, and then print a newline to the standard error
3097      * before printing the error message, to separate it from the packet
3098      * data.  (Alas, that only works on UN*X; st_dev is meaningless, and
3099      * the _fstat() documentation at Microsoft doesn't indicate whether
3100      * st_ino is even supported.)
3101      */
3102 #ifndef _WIN32
3103     if (print_packet_info) {
3104       struct stat stat_stdout, stat_stderr;
3105
3106       if (fstat(1, &stat_stdout) == 0 && fstat(2, &stat_stderr) == 0) {
3107         if (stat_stdout.st_dev == stat_stderr.st_dev &&
3108             stat_stdout.st_ino == stat_stderr.st_ino) {
3109           fflush(stdout);
3110           fprintf(stderr, "\n");
3111         }
3112       }
3113     }
3114 #endif
3115     switch (err) {
3116
3117     case WTAP_ERR_UNSUPPORTED:
3118       cmdarg_err("The file \"%s\" contains record data that TShark doesn't support.\n(%s)",
3119                  cf->filename, err_info);
3120       g_free(err_info);
3121       break;
3122
3123     case WTAP_ERR_UNSUPPORTED_ENCAP:
3124       cmdarg_err("The file \"%s\" has a packet with a network type that TShark doesn't support.\n(%s)",
3125                  cf->filename, err_info);
3126       g_free(err_info);
3127       break;
3128
3129     case WTAP_ERR_CANT_READ:
3130       cmdarg_err("An attempt to read from the file \"%s\" failed for some unknown reason.",
3131                  cf->filename);
3132       break;
3133
3134     case WTAP_ERR_SHORT_READ:
3135       cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
3136                  cf->filename);
3137       break;
3138
3139     case WTAP_ERR_BAD_FILE:
3140       cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
3141                  cf->filename, err_info);
3142       g_free(err_info);
3143       break;
3144
3145     case WTAP_ERR_DECOMPRESS:
3146       cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n"
3147                  "(%s)", cf->filename, err_info);
3148       break;
3149
3150     default:
3151       cmdarg_err("An error occurred while reading the file \"%s\": %s.",
3152                  cf->filename, wtap_strerror(err));
3153       break;
3154     }
3155     if (save_file != NULL) {
3156       /* Now close the capture file. */
3157       if (!wtap_dump_close(pdh, &err))
3158         show_capture_file_io_error(save_file, err, TRUE);
3159     }
3160   } else {
3161     if (save_file != NULL) {
3162       /* Now close the capture file. */
3163       if (!wtap_dump_close(pdh, &err))
3164         show_capture_file_io_error(save_file, err, TRUE);
3165     } else {
3166       if (print_packet_info) {
3167         if (!write_finale()) {
3168           err = errno;
3169           show_print_file_io_error(err);
3170         }
3171       }
3172     }
3173   }
3174
3175 out:
3176   wtap_close(cf->wth);
3177   cf->wth = NULL;
3178
3179   g_free(save_file_string);
3180   g_free(shb_hdr);
3181
3182   return err;
3183 }
3184
3185 static gboolean
3186 process_packet(capture_file *cf, gint64 offset, struct wtap_pkthdr *whdr,
3187                const guchar *pd,
3188                gboolean filtering_tap_listeners, guint tap_flags)
3189 {
3190   frame_data      fdata;
3191   gboolean        create_proto_tree;
3192   column_info    *cinfo;
3193   epan_dissect_t  edt;
3194   gboolean        passed;
3195
3196   /* Count this packet. */
3197   cf->count++;
3198
3199   /* If we're not running a display filter and we're not printing any
3200      packet information, we don't need to do a dissection. This means
3201      that all packets can be marked as 'passed'. */
3202   passed = TRUE;
3203
3204   frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
3205
3206   /* If we're going to print packet information, or we're going to
3207      run a read filter, or we're going to process taps, set up to
3208      do a dissection and do so. */
3209   if (do_dissection) {
3210     if (print_packet_info && (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
3211         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns))
3212       /* Grab any resolved addresses */
3213       host_name_lookup_process();
3214
3215     if (cf->rfcode || cf->dfcode || print_details || filtering_tap_listeners ||
3216         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
3217       create_proto_tree = TRUE;
3218     else
3219       create_proto_tree = FALSE;
3220
3221     /* The protocol tree will be "visible", i.e., printed, only if we're
3222        printing packet details, which is true if we're printing stuff
3223        ("print_packet_info" is true) and we're in verbose mode
3224        ("packet_details" is true). */
3225     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
3226
3227     /* If we're running a filter, prime the epan_dissect_t with that
3228        filter. */
3229     if (cf->rfcode)
3230       epan_dissect_prime_dfilter(&edt, cf->rfcode);
3231     if (cf->dfcode)
3232       epan_dissect_prime_dfilter(&edt, cf->dfcode);
3233
3234     col_custom_prime_edt(&edt, &cf->cinfo);
3235
3236     /* We only need the columns if either
3237          1) some tap needs the columns
3238        or
3239          2) we're printing packet info but we're *not* verbose; in verbose
3240             mode, we print the protocol tree, not the protocol summary.
3241        or
3242          3) there is a column mapped as an individual field */
3243     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary) || output_fields_has_cols(output_fields))
3244       cinfo = &cf->cinfo;
3245     else
3246       cinfo = NULL;
3247
3248     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
3249                                   &first_ts, prev_dis, prev_cap);
3250
3251     epan_dissect_run_with_taps(&edt, whdr, pd, &fdata, cinfo);
3252
3253     /* Run the filters if we have them. */
3254     if (cf->rfcode)
3255       passed = dfilter_apply_edt(cf->rfcode, &edt);
3256     if (passed && cf->dfcode)
3257       passed = dfilter_apply_edt(cf->dfcode, &edt);
3258   }
3259
3260   if (passed) {
3261     frame_data_set_after_dissect(&fdata, &cum_bytes);
3262
3263     /* Process this packet. */
3264     if (print_packet_info) {
3265       /* We're printing packet information; print the information for
3266          this packet. */
3267       if (do_dissection)
3268         print_packet(cf, &edt);
3269       else
3270         print_packet(cf, NULL);
3271
3272       /* The ANSI C standard does not appear to *require* that a line-buffered
3273          stream be flushed to the host environment whenever a newline is
3274          written, it just says that, on such a stream, characters "are
3275          intended to be transmitted to or from the host environment as a
3276          block when a new-line character is encountered".
3277
3278          The Visual C++ 6.0 C implementation doesn't do what is intended;
3279          even if you set a stream to be line-buffered, it still doesn't
3280          flush the buffer at the end of every line.
3281
3282          So, if the "-l" flag was specified, we flush the standard output
3283          at the end of a packet.  This will do the right thing if we're
3284          printing packet summary lines, and, as we print the entire protocol
3285          tree for a single packet without waiting for anything to happen,
3286          it should be as good as line-buffered mode if we're printing
3287          protocol trees.  (The whole reason for the "-l" flag in either
3288          tcpdump or TShark is to allow the output of a live capture to
3289          be piped to a program or script and to have that script see the
3290          information for the packet as soon as it's printed, rather than
3291          having to wait until a standard I/O buffer fills up. */
3292       if (line_buffered)
3293         fflush(stdout);
3294
3295       if (ferror(stdout)) {
3296         show_print_file_io_error(errno);
3297         exit(2);
3298       }
3299     }
3300
3301     /* this must be set after print_packet() [bug #8160] */
3302     prev_dis_frame = fdata;
3303     prev_dis = &prev_dis_frame;
3304   }
3305
3306   prev_cap_frame = fdata;
3307   prev_cap = &prev_cap_frame;
3308
3309   if (do_dissection) {
3310     epan_dissect_cleanup(&edt);
3311     frame_data_destroy(&fdata);
3312   }
3313   return passed;
3314 }
3315
3316 static gboolean
3317 write_preamble(capture_file *cf)
3318 {
3319   switch (output_action) {
3320
3321   case WRITE_TEXT:
3322     return print_preamble(print_stream, cf ? cf->filename : NULL);
3323
3324   case WRITE_XML:
3325     if (print_details)
3326       write_pdml_preamble(stdout, cf ? cf->filename : NULL);
3327     else
3328       write_psml_preamble(stdout);
3329     return !ferror(stdout);
3330
3331   case WRITE_FIELDS:
3332     write_fields_preamble(output_fields, stdout);
3333     return !ferror(stdout);
3334
3335   default:
3336     g_assert_not_reached();
3337     return FALSE;
3338   }
3339 }
3340
3341 static char *
3342 get_line_buf(size_t len)
3343 {
3344   static char   *line_bufp    = NULL;
3345   static size_t  line_buf_len = 256;
3346   size_t         new_line_buf_len;
3347
3348   for (new_line_buf_len = line_buf_len; len > new_line_buf_len;
3349        new_line_buf_len *= 2)
3350     ;
3351   if (line_bufp == NULL) {
3352     line_buf_len = new_line_buf_len;
3353     line_bufp = (char *)g_malloc(line_buf_len + 1);
3354   } else {
3355     if (new_line_buf_len > line_buf_len) {
3356       line_buf_len = new_line_buf_len;
3357       line_bufp = (char *)g_realloc(line_bufp, line_buf_len + 1);
3358     }
3359   }
3360   return line_bufp;
3361 }
3362
3363 static gboolean
3364 print_columns(capture_file *cf)
3365 {
3366   char   *line_bufp;
3367   int     i;
3368   size_t  buf_offset;
3369   size_t  column_len;
3370
3371   line_bufp = get_line_buf(256);
3372   buf_offset = 0;
3373   *line_bufp = '\0';
3374   for (i = 0; i < cf->cinfo.num_cols; i++) {
3375     /* Skip columns not marked as visible. */
3376     if (!get_column_visible(i))
3377       continue;
3378     switch (cf->cinfo.col_fmt[i]) {
3379     case COL_NUMBER:
3380 #ifdef HAVE_LIBPCAP
3381       /*
3382        * Don't print this if we're doing a live capture from a network
3383        * interface - if we're doing a live capture, you won't be
3384        * able to look at the capture in the future (it's not being
3385        * saved anywhere), so the frame numbers are unlikely to be
3386        * useful.
3387        *
3388        * (XXX - it might be nice to be able to save and print at
3389        * the same time, sort of like an "Update list of packets
3390        * in real time" capture in Wireshark.)
3391        */
3392       if (global_capture_opts.ifaces->len > 0)
3393         continue;
3394 #endif
3395       column_len = strlen(cf->cinfo.col_data[i]);
3396       if (column_len < 3)
3397         column_len = 3;
3398       line_bufp = get_line_buf(buf_offset + column_len);
3399       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%3s", cf->cinfo.col_data[i]);
3400       break;
3401
3402     case COL_CLS_TIME:
3403     case COL_REL_TIME:
3404     case COL_ABS_TIME:
3405     case COL_ABS_DATE_TIME:
3406     case COL_UTC_TIME:
3407     case COL_UTC_DATE_TIME: /* XXX - wider */
3408       column_len = strlen(cf->cinfo.col_data[i]);
3409       if (column_len < 10)
3410         column_len = 10;
3411       line_bufp = get_line_buf(buf_offset + column_len);
3412       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%10s", cf->cinfo.col_data[i]);
3413       break;
3414
3415     case COL_DEF_SRC:
3416     case COL_RES_SRC:
3417     case COL_UNRES_SRC:
3418     case COL_DEF_DL_SRC:
3419     case COL_RES_DL_SRC:
3420     case COL_UNRES_DL_SRC:
3421     case COL_DEF_NET_SRC:
3422     case COL_RES_NET_SRC:
3423     case COL_UNRES_NET_SRC:
3424       column_len = strlen(cf->cinfo.col_data[i]);
3425       if (column_len < 12)
3426         column_len = 12;
3427       line_bufp = get_line_buf(buf_offset + column_len);
3428       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%12s", cf->cinfo.col_data[i]);
3429       break;
3430
3431     case COL_DEF_DST:
3432     case COL_RES_DST:
3433     case COL_UNRES_DST:
3434     case COL_DEF_DL_DST:
3435     case COL_RES_DL_DST:
3436     case COL_UNRES_DL_DST:
3437     case COL_DEF_NET_DST:
3438     case COL_RES_NET_DST:
3439     case COL_UNRES_NET_DST:
3440       column_len = strlen(cf->cinfo.col_data[i]);
3441       if (column_len < 12)
3442         column_len = 12;
3443       line_bufp = get_line_buf(buf_offset + column_len);
3444       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%-12s", cf->cinfo.col_data[i]);
3445       break;
3446
3447     default:
3448       column_len = strlen(cf->cinfo.col_data[i]);
3449       line_bufp = get_line_buf(buf_offset + column_len);
3450       g_strlcat(line_bufp + buf_offset, cf->cinfo.col_data[i], column_len + 1);
3451       break;
3452     }
3453     buf_offset += column_len;
3454     if (i != cf->cinfo.num_cols - 1) {
3455       /*
3456        * This isn't the last column, so we need to print a
3457        * separator between this column and the next.
3458        *
3459        * If we printed a network source and are printing a
3460        * network destination of the same type next, separate
3461        * them with " -> "; if we printed a network destination
3462        * and are printing a network source of the same type
3463        * next, separate them with " <- "; otherwise separate them
3464        * with a space.
3465        *
3466        * We add enough space to the buffer for " <- " or " -> ",
3467        * even if we're only adding " ".
3468        */
3469       line_bufp = get_line_buf(buf_offset + 4);
3470       switch (cf->cinfo.col_fmt[i]) {
3471
3472       case COL_DEF_SRC:
3473       case COL_RES_SRC:
3474       case COL_UNRES_SRC:
3475         switch (cf->cinfo.col_fmt[i + 1]) {
3476
3477         case COL_DEF_DST:
3478         case COL_RES_DST:
3479         case COL_UNRES_DST:
3480           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3481           buf_offset += 4;
3482           break;
3483
3484         default:
3485           g_strlcat(line_bufp + buf_offset, " ", 5);
3486           buf_offset += 1;
3487           break;
3488         }
3489         break;
3490
3491       case COL_DEF_DL_SRC:
3492       case COL_RES_DL_SRC:
3493       case COL_UNRES_DL_SRC:
3494         switch (cf->cinfo.col_fmt[i + 1]) {
3495
3496         case COL_DEF_DL_DST:
3497         case COL_RES_DL_DST:
3498         case COL_UNRES_DL_DST:
3499           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3500           buf_offset += 4;
3501           break;
3502
3503         default:
3504           g_strlcat(line_bufp + buf_offset, " ", 5);
3505           buf_offset += 1;
3506           break;
3507         }
3508         break;
3509
3510       case COL_DEF_NET_SRC:
3511       case COL_RES_NET_SRC:
3512       case COL_UNRES_NET_SRC:
3513         switch (cf->cinfo.col_fmt[i + 1]) {
3514
3515         case COL_DEF_NET_DST:
3516         case COL_RES_NET_DST:
3517         case COL_UNRES_NET_DST:
3518           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3519           buf_offset += 4;
3520           break;
3521
3522         default:
3523           g_strlcat(line_bufp + buf_offset, " ", 5);
3524           buf_offset += 1;
3525           break;
3526         }
3527         break;
3528
3529       case COL_DEF_DST:
3530       case COL_RES_DST:
3531       case COL_UNRES_DST:
3532         switch (cf->cinfo.col_fmt[i + 1]) {
3533
3534         case COL_DEF_SRC:
3535         case COL_RES_SRC:
3536         case COL_UNRES_SRC:
3537           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3538           buf_offset += 4;
3539           break;
3540
3541         default:
3542           g_strlcat(line_bufp + buf_offset, " ", 5);
3543           buf_offset += 1;
3544           break;
3545         }
3546         break;
3547
3548       case COL_DEF_DL_DST:
3549       case COL_RES_DL_DST:
3550       case COL_UNRES_DL_DST:
3551         switch (cf->cinfo.col_fmt[i + 1]) {
3552
3553         case COL_DEF_DL_SRC:
3554         case COL_RES_DL_SRC:
3555         case COL_UNRES_DL_SRC:
3556           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3557           buf_offset += 4;
3558           break;
3559
3560         default:
3561           g_strlcat(line_bufp + buf_offset, " ", 5);
3562           buf_offset += 1;
3563           break;
3564         }
3565         break;
3566
3567       case COL_DEF_NET_DST:
3568       case COL_RES_NET_DST:
3569       case COL_UNRES_NET_DST:
3570         switch (cf->cinfo.col_fmt[i + 1]) {
3571
3572         case COL_DEF_NET_SRC:
3573         case COL_RES_NET_SRC:
3574         case COL_UNRES_NET_SRC:
3575           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3576           buf_offset += 4;
3577           break;
3578
3579         default:
3580           g_strlcat(line_bufp + buf_offset, " ", 5);
3581           buf_offset += 1;
3582           break;
3583         }
3584         break;
3585
3586       default:
3587         g_strlcat(line_bufp + buf_offset, " ", 5);
3588         buf_offset += 1;
3589         break;
3590       }
3591     }
3592   }
3593   return print_line(print_stream, 0, line_bufp);
3594 }
3595
3596 static gboolean
3597 print_packet(capture_file *cf, epan_dissect_t *edt)
3598 {
3599   print_args_t print_args;
3600
3601   if (print_summary || output_fields_has_cols(output_fields)) {
3602     /* Just fill in the columns. */
3603     epan_dissect_fill_in_columns(edt, FALSE, TRUE);
3604
3605     if (print_summary) {
3606       /* Now print them. */
3607       switch (output_action) {
3608
3609       case WRITE_TEXT:
3610         if (!print_columns(cf))
3611           return FALSE;
3612         break;
3613
3614       case WRITE_XML:
3615         proto_tree_write_psml(edt, stdout);
3616         return !ferror(stdout);
3617       case WRITE_FIELDS: /*No non-verbose "fields" format */
3618         g_assert_not_reached();
3619         break;
3620       }
3621     }
3622   }
3623   if (print_details) {
3624     /* Print the information in the protocol tree. */
3625     switch (output_action) {
3626
3627     case WRITE_TEXT:
3628       /* Only initialize the fields that are actually used in proto_tree_print.
3629        * This is particularly important for .range, as that's heap memory which
3630        * we would otherwise have to g_free().
3631       print_args.to_file = TRUE;
3632       print_args.format = print_format;
3633       print_args.print_summary = print_summary;
3634       print_args.print_formfeed = FALSE;
3635       packet_range_init(&print_args.range, &cfile);
3636       */
3637       print_args.print_hex = print_hex;
3638       print_args.print_dissections = print_details ? print_dissections_expanded : print_dissections_none;
3639
3640       if (!proto_tree_print(&print_args, edt, print_stream))
3641         return FALSE;
3642       if (!print_hex) {
3643         if (!print_line(print_stream, 0, separator))
3644           return FALSE;
3645       }
3646       break;
3647
3648     case WRITE_XML:
3649       proto_tree_write_pdml(edt, stdout);
3650       printf("\n");
3651       return !ferror(stdout);
3652     case WRITE_FIELDS:
3653       proto_tree_write_fields(output_fields, edt, &cf->cinfo, stdout);
3654       printf("\n");
3655       return !ferror(stdout);
3656     }
3657   }
3658   if (print_hex) {
3659     if (print_summary || print_details) {
3660       if (!print_line(print_stream, 0, ""))
3661         return FALSE;
3662     }
3663     if (!print_hex_data(print_stream, edt))
3664       return FALSE;
3665     if (!print_line(print_stream, 0, separator))
3666       return FALSE;
3667   }
3668   return TRUE;
3669 }
3670
3671 static gboolean
3672 write_finale(void)
3673 {
3674   switch (output_action) {
3675
3676   case WRITE_TEXT:
3677     return print_finale(print_stream);
3678
3679   case WRITE_XML:
3680     if (print_details)
3681       write_pdml_finale(stdout);
3682     else
3683       write_psml_finale(stdout);
3684     return !ferror(stdout);
3685
3686   case WRITE_FIELDS:
3687     write_fields_finale(output_fields, stdout);
3688     return !ferror(stdout);
3689
3690   default:
3691     g_assert_not_reached();
3692     return FALSE;
3693   }
3694 }
3695
3696 cf_status_t
3697 cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
3698 {
3699   wtap  *wth;
3700   gchar *err_info;
3701   char   err_msg[2048+1];
3702
3703   wth = wtap_open_offline(fname, err, &err_info, perform_two_pass_analysis);
3704   if (wth == NULL)
3705     goto fail;
3706
3707   /* The open succeeded.  Fill in the information for this file. */
3708
3709   /* Cleanup all data structures used for dissection. */
3710   cleanup_dissection();
3711   /* Initialize all data structures used for dissection. */
3712   init_dissection();
3713
3714   cf->wth = wth;
3715   cf->f_datalen = 0; /* not used, but set it anyway */
3716
3717   /* Set the file name because we need it to set the follow stream filter.
3718      XXX - is that still true?  We need it for other reasons, though,
3719      in any case. */
3720   cf->filename = g_strdup(fname);
3721
3722   /* Indicate whether it's a permanent or temporary file. */
3723   cf->is_tempfile = is_tempfile;
3724
3725   /* No user changes yet. */
3726   cf->unsaved_changes = FALSE;
3727
3728   cf->cd_t      = wtap_file_type(cf->wth);
3729   cf->count     = 0;
3730   cf->drops_known = FALSE;
3731   cf->drops     = 0;
3732   cf->snap      = wtap_snapshot_length(cf->wth);
3733   if (cf->snap == 0) {
3734     /* Snapshot length not known. */
3735     cf->has_snap = FALSE;
3736     cf->snap = WTAP_MAX_PACKET_SIZE;
3737   } else
3738     cf->has_snap = TRUE;
3739   nstime_set_zero(&cf->elapsed_time);
3740   nstime_set_unset(&first_ts);
3741   prev_dis = NULL;
3742   prev_cap = NULL;
3743
3744   cf->state = FILE_READ_IN_PROGRESS;
3745
3746   wtap_set_cb_new_ipv4(cf->wth, add_ipv4_name);
3747   wtap_set_cb_new_ipv6(cf->wth, (wtap_new_ipv6_callback_t) add_ipv6_name);
3748
3749   return CF_OK;
3750
3751 fail:
3752   g_snprintf(err_msg, sizeof err_msg,
3753              cf_open_error_message(*err, err_info, FALSE, cf->cd_t), fname);
3754   cmdarg_err("%s", err_msg);
3755   return CF_ERROR;
3756 }
3757
3758 static void
3759 show_capture_file_io_error(const char *fname, int err, gboolean is_close)
3760 {
3761   char *save_file_string;
3762
3763   save_file_string = output_file_description(fname);
3764
3765   switch (err) {
3766
3767   case ENOSPC:
3768     cmdarg_err("Not all the packets could be written to the %s because there is "
3769                "no space left on the file system.",
3770                save_file_string);
3771     break;
3772
3773 #ifdef EDQUOT
3774   case EDQUOT:
3775     cmdarg_err("Not all the packets could be written to the %s because you are "
3776                "too close to, or over your disk quota.",
3777                save_file_string);
3778   break;
3779 #endif
3780
3781   case WTAP_ERR_CANT_CLOSE:
3782     cmdarg_err("The %s couldn't be closed for some unknown reason.",
3783                save_file_string);
3784     break;
3785
3786   case WTAP_ERR_SHORT_WRITE:
3787     cmdarg_err("Not all the packets could be written to the %s.",
3788                save_file_string);
3789     break;
3790
3791   default:
3792     if (is_close) {
3793       cmdarg_err("The %s could not be closed: %s.", save_file_string,
3794                  wtap_strerror(err));
3795     } else {
3796       cmdarg_err("An error occurred while writing to the %s: %s.",
3797                  save_file_string, wtap_strerror(err));
3798     }
3799     break;
3800   }
3801   g_free(save_file_string);
3802 }
3803
3804 static void
3805 show_print_file_io_error(int err)
3806 {
3807   switch (err) {
3808
3809   case ENOSPC:
3810     cmdarg_err("Not all the packets could be printed because there is "
3811 "no space left on the file system.");
3812     break;
3813
3814 #ifdef EDQUOT
3815   case EDQUOT:
3816     cmdarg_err("Not all the packets could be printed because you are "
3817 "too close to, or over your disk quota.");
3818   break;
3819 #endif
3820
3821   default:
3822     cmdarg_err("An error occurred while printing packets: %s.",
3823       g_strerror(err));
3824     break;
3825   }
3826 }
3827
3828 static const char *
3829 cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
3830                       int file_type)
3831 {
3832   const char *errmsg;
3833   static char errmsg_errno[1024+1];
3834
3835   if (err < 0) {
3836     /* Wiretap error. */
3837     switch (err) {
3838
3839     case WTAP_ERR_NOT_REGULAR_FILE:
3840       errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
3841       break;
3842
3843     case WTAP_ERR_RANDOM_OPEN_PIPE:
3844       /* Seen only when opening a capture file for reading. */
3845       errmsg = "The file \"%s\" is a pipe or FIFO; TShark can't read pipe or FIFO files in two-pass mode.";
3846       break;
3847
3848     case WTAP_ERR_FILE_UNKNOWN_FORMAT:
3849       /* Seen only when opening a capture file for reading. */
3850       errmsg = "The file \"%s\" isn't a capture file in a format TShark understands.";
3851       break;
3852
3853     case WTAP_ERR_UNSUPPORTED:
3854       /* Seen only when opening a capture file for reading. */
3855       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3856                "The file \"%%s\" isn't a capture file in a format TShark understands.\n"
3857                "(%s)", err_info);
3858       g_free(err_info);
3859       errmsg = errmsg_errno;
3860       break;
3861
3862     case WTAP_ERR_CANT_WRITE_TO_PIPE:
3863       /* Seen only when opening a capture file for writing. */
3864       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3865                  "The file \"%%s\" is a pipe, and \"%s\" capture files can't be "
3866                  "written to a pipe.", wtap_file_type_short_string(file_type));
3867       errmsg = errmsg_errno;
3868       break;
3869
3870     case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
3871       /* Seen only when opening a capture file for writing. */
3872       errmsg = "TShark doesn't support writing capture files in that format.";
3873       break;
3874
3875     case WTAP_ERR_UNSUPPORTED_ENCAP:
3876       if (for_writing) {
3877         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3878                    "TShark can't save this capture as a \"%s\" file.",
3879                    wtap_file_type_short_string(file_type));
3880       } else {
3881         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3882                  "The file \"%%s\" is a capture for a network type that TShark doesn't support.\n"
3883                  "(%s)", err_info);
3884         g_free(err_info);
3885       }
3886       errmsg = errmsg_errno;
3887       break;
3888
3889     case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
3890       if (for_writing) {
3891         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3892                    "TShark can't save this capture as a \"%s\" file.",
3893                    wtap_file_type_short_string(file_type));
3894         errmsg = errmsg_errno;
3895       } else
3896         errmsg = "The file \"%s\" is a capture for a network type that TShark doesn't support.";
3897       break;
3898
3899     case WTAP_ERR_BAD_FILE:
3900       /* Seen only when opening a capture file for reading. */
3901       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3902                "The file \"%%s\" appears to be damaged or corrupt.\n"
3903                "(%s)", err_info);
3904       g_free(err_info);
3905       errmsg = errmsg_errno;
3906       break;
3907
3908     case WTAP_ERR_CANT_OPEN:
3909       if (for_writing)
3910         errmsg = "The file \"%s\" could not be created for some unknown reason.";
3911       else
3912         errmsg = "The file \"%s\" could not be opened for some unknown reason.";
3913       break;
3914
3915     case WTAP_ERR_SHORT_READ:
3916       errmsg = "The file \"%s\" appears to have been cut short"
3917                " in the middle of a packet or other data.";
3918       break;
3919
3920     case WTAP_ERR_SHORT_WRITE:
3921       errmsg = "A full header couldn't be written to the file \"%s\".";
3922       break;
3923
3924     case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
3925       errmsg = "This file type cannot be written as a compressed file.";
3926       break;
3927
3928     case WTAP_ERR_DECOMPRESS:
3929       /* Seen only when opening a capture file for reading. */
3930       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3931                  "The compressed file \"%%s\" appears to be damaged or corrupt.\n"
3932                  "(%s)", err_info);
3933       g_free(err_info);
3934       errmsg = errmsg_errno;
3935       break;
3936
3937     default:
3938       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3939                  "The file \"%%s\" could not be %s: %s.",
3940                  for_writing ? "created" : "opened",
3941                  wtap_strerror(err));
3942       errmsg = errmsg_errno;
3943       break;
3944     }
3945   } else
3946     errmsg = file_open_error_message(err, for_writing);
3947   return errmsg;
3948 }
3949
3950 /*
3951  * Open/create errors are reported with an console message in TShark.
3952  */
3953 static void
3954 open_failure_message(const char *filename, int err, gboolean for_writing)
3955 {
3956   fprintf(stderr, "tshark: ");
3957   fprintf(stderr, file_open_error_message(err, for_writing), filename);
3958   fprintf(stderr, "\n");
3959 }
3960
3961
3962 /*
3963  * General errors are reported with an console message in TShark.
3964  */
3965 static void
3966 failure_message(const char *msg_format, va_list ap)
3967 {
3968   fprintf(stderr, "tshark: ");
3969   vfprintf(stderr, msg_format, ap);
3970   fprintf(stderr, "\n");
3971 }
3972
3973 /*
3974  * Read errors are reported with an console message in TShark.
3975  */
3976 static void
3977 read_failure_message(const char *filename, int err)
3978 {
3979   cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
3980           filename, g_strerror(err));
3981 }
3982
3983 /*
3984  * Write errors are reported with an console message in TShark.
3985  */
3986 static void
3987 write_failure_message(const char *filename, int err)
3988 {
3989   cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
3990           filename, g_strerror(err));
3991 }
3992
3993 /*
3994  * Report an error in command-line arguments.
3995  */
3996 void
3997 cmdarg_err(const char *fmt, ...)
3998 {
3999   va_list ap;
4000
4001   va_start(ap, fmt);
4002   failure_message(fmt, ap);
4003   va_end(ap);
4004 }
4005
4006 /*
4007  * Report additional information for an error in command-line arguments.
4008  */
4009 void
4010 cmdarg_err_cont(const char *fmt, ...)
4011 {
4012   va_list ap;
4013
4014   va_start(ap, fmt);
4015   vfprintf(stderr, fmt, ap);
4016   fprintf(stderr, "\n");
4017   va_end(ap);
4018 }
4019
4020
4021 /*
4022  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
4023  *
4024  * Local variables:
4025  * c-basic-offset: 2
4026  * tab-width: 8
4027  * indent-tabs-mode: nil
4028  * End:
4029  *
4030  * vi: set shiftwidth=2 tabstop=8 expandtab:
4031  * :indentSize=2:tabSize=8:noTabs=true:
4032  */