Fix the last remnant of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8160
[metze/wireshark/wip.git] / tshark.c
1 /* tshark.c
2  *
3  * Text-mode variant of Wireshark, along the lines of tcpdump and snoop,
4  * by Gilbert Ramirez <gram@alumni.rice.edu> and Guy Harris <guy@alum.mit.edu>.
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <locale.h>
34 #include <limits.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 #include <errno.h>
41
42 #ifdef HAVE_FCNTL_H
43 #include <fcntl.h>
44 #endif
45
46 #include <signal.h>
47
48 #ifdef HAVE_SYS_STAT_H
49 # include <sys/stat.h>
50 #endif
51
52 #ifndef HAVE_GETOPT
53 #include "wsutil/wsgetopt.h"
54 #endif
55
56 #include <glib.h>
57 #include <epan/epan.h>
58 #include <epan/filesystem.h>
59 #include <wsutil/crash_info.h>
60 #include <wsutil/privileges.h>
61 #include <wsutil/file_util.h>
62
63 #include "globals.h"
64 #include <epan/timestamp.h>
65 #include <epan/packet.h>
66 #include "file.h"
67 #include "disabled_protos.h"
68 #include <epan/prefs.h>
69 #include <epan/column.h>
70 #include "print.h"
71 #include <epan/addr_resolv.h>
72 #include "ui/util.h"
73 #include "clopts_common.h"
74 #include "cmdarg_err.h"
75 #include "version_info.h"
76 #include <epan/plugins.h>
77 #include "register.h"
78 #include <epan/epan_dissect.h>
79 #include <epan/tap.h>
80 #include <epan/stat_cmd_args.h>
81 #include <epan/timestamp.h>
82 #include <epan/ex-opt.h>
83
84 #ifdef HAVE_LIBPCAP
85 #include "capture_ui_utils.h"
86 #include "capture_ifinfo.h"
87 #include "capture-pcap-util.h"
88 #ifdef _WIN32
89 #include "capture-wpcap.h"
90 #include <wsutil/unicode-utils.h>
91 #endif /* _WIN32 */
92 #include "capture_session.h"
93 #include "capture_sync.h"
94 #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,NULL);
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, NULL);
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, NULL);
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 /* capture child detected an error */
2345 void
2346 capture_input_error_message(capture_session *cap_session _U_, char *error_msg, char *secondary_error_msg)
2347 {
2348   cmdarg_err("%s", error_msg);
2349   cmdarg_err_cont("%s", secondary_error_msg);
2350 }
2351
2352
2353 /* capture child detected an capture filter related error */
2354 void
2355 capture_input_cfilter_error_message(capture_session *cap_session, guint i, char *error_message)
2356 {
2357   capture_options *capture_opts = cap_session->capture_opts;
2358   dfilter_t         *rfcode = NULL;
2359   interface_options  interface_opts;
2360
2361   g_assert(i < capture_opts->ifaces->len);
2362   interface_opts = g_array_index(capture_opts->ifaces, interface_options, i);
2363
2364   if (dfilter_compile(interface_opts.cfilter, &rfcode) && rfcode != NULL) {
2365     cmdarg_err(
2366       "Invalid capture filter \"%s\" for interface %s!\n"
2367       "\n"
2368       "That string looks like a valid display filter; however, it isn't a valid\n"
2369       "capture filter (%s).\n"
2370       "\n"
2371       "Note that display filters and capture filters don't have the same syntax,\n"
2372       "so you can't use most display filter expressions as capture filters.\n"
2373       "\n"
2374       "See the User's Guide for a description of the capture filter syntax.",
2375       interface_opts.cfilter, interface_opts.descr, error_message);
2376     dfilter_free(rfcode);
2377   } else {
2378     cmdarg_err(
2379       "Invalid capture filter \"%s\" for interface %s!\n"
2380       "\n"
2381       "That string isn't a valid capture filter (%s).\n"
2382       "See the User's Guide for a description of the capture filter syntax.",
2383       interface_opts.cfilter, interface_opts.descr, error_message);
2384   }
2385 }
2386
2387
2388 /* capture child tells us we have a new (or the first) capture file */
2389 gboolean
2390 capture_input_new_file(capture_session *cap_session, gchar *new_file)
2391 {
2392   capture_options *capture_opts = cap_session->capture_opts;
2393   gboolean is_tempfile;
2394   int      err;
2395
2396   if (cap_session->state == CAPTURE_PREPARING) {
2397     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture started!");
2398   }
2399   g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "File: \"%s\"", new_file);
2400
2401   g_assert(cap_session->state == CAPTURE_PREPARING || cap_session->state == CAPTURE_RUNNING);
2402
2403   /* free the old filename */
2404   if (capture_opts->save_file != NULL) {
2405
2406     /* we start a new capture file, close the old one (if we had one before) */
2407     if ( ((capture_file *) cap_session->cf)->state != FILE_CLOSED) {
2408       if ( ((capture_file *) cap_session->cf)->wth != NULL) {
2409         wtap_close(((capture_file *) cap_session->cf)->wth);
2410       }
2411       ((capture_file *) cap_session->cf)->state = FILE_CLOSED;
2412     }
2413
2414     g_free(capture_opts->save_file);
2415     is_tempfile = FALSE;
2416   } else {
2417     /* we didn't had a save_file before, must be a tempfile */
2418     is_tempfile = TRUE;
2419   }
2420
2421   /* save the new filename */
2422   capture_opts->save_file = g_strdup(new_file);
2423
2424   /* if we are in real-time mode, open the new file now */
2425   if (do_dissection) {
2426     /* Attempt to open the capture file and set up to read from it. */
2427     switch(cf_open((capture_file *)cap_session->cf, capture_opts->save_file, is_tempfile, &err)) {
2428     case CF_OK:
2429       break;
2430     case CF_ERROR:
2431       /* Don't unlink (delete) the save file - leave it around,
2432          for debugging purposes. */
2433       g_free(capture_opts->save_file);
2434       capture_opts->save_file = NULL;
2435       return FALSE;
2436     }
2437   }
2438
2439   cap_session->state = CAPTURE_RUNNING;
2440
2441   return TRUE;
2442 }
2443
2444
2445 /* capture child tells us we have new packets to read */
2446 void
2447 capture_input_new_packets(capture_session *cap_session, int to_read)
2448 {
2449   gboolean      ret;
2450   int           err;
2451   gchar        *err_info;
2452   gint64        data_offset;
2453   capture_file *cf = (capture_file *)cap_session->cf;
2454   gboolean      filtering_tap_listeners;
2455   guint         tap_flags;
2456
2457 #ifdef SIGINFO
2458   /*
2459    * Prevent a SIGINFO handler from writing to the standard error while
2460    * we're doing so or writing to the standard output; instead, have it
2461    * just set a flag telling us to print that information when we're done.
2462    */
2463   infodelay = TRUE;
2464 #endif /* SIGINFO */
2465
2466   /* Do we have any tap listeners with filters? */
2467   filtering_tap_listeners = have_filtering_tap_listeners();
2468
2469   /* Get the union of the flags for all tap listeners. */
2470   tap_flags = union_of_tap_listener_flags();
2471
2472   if (do_dissection) {
2473     while (to_read-- && cf->wth) {
2474       wtap_cleareof(cf->wth);
2475       ret = wtap_read(cf->wth, &err, &err_info, &data_offset);
2476       if (ret == FALSE) {
2477         /* read from file failed, tell the capture child to stop */
2478         sync_pipe_stop(cap_session);
2479         wtap_close(cf->wth);
2480         cf->wth = NULL;
2481       } else {
2482         ret = process_packet(cf, data_offset, wtap_phdr(cf->wth),
2483                              wtap_buf_ptr(cf->wth),
2484                              filtering_tap_listeners, tap_flags);
2485       }
2486       if (ret != FALSE) {
2487         /* packet successfully read and gone through the "Read Filter" */
2488         packet_count++;
2489       }
2490     }
2491   } else {
2492     /*
2493      * Dumpcap's doing all the work; we're not doing any dissection.
2494      * Count all the packets it wrote.
2495      */
2496     packet_count += to_read;
2497   }
2498
2499   if (print_packet_counts) {
2500       /* We're printing packet counts. */
2501       if (packet_count != 0) {
2502         fprintf(stderr, "\r%u ", packet_count);
2503         /* stderr could be line buffered */
2504         fflush(stderr);
2505       }
2506   }
2507
2508 #ifdef SIGINFO
2509   /*
2510    * Allow SIGINFO handlers to write.
2511    */
2512   infodelay = FALSE;
2513
2514   /*
2515    * If a SIGINFO handler asked us to write out capture counts, do so.
2516    */
2517   if (infoprint)
2518     report_counts();
2519 #endif /* SIGINFO */
2520 }
2521
2522 static void
2523 report_counts(void)
2524 {
2525   if ((print_packet_counts == FALSE) && (really_quiet == FALSE)) {
2526     /* Report the count only if we aren't printing a packet count
2527        as packets arrive. */
2528       fprintf(stderr, "%u packet%s captured\n", packet_count,
2529             plurality(packet_count, "", "s"));
2530   }
2531 #ifdef SIGINFO
2532   infoprint = FALSE; /* we just reported it */
2533 #endif /* SIGINFO */
2534 }
2535
2536 #ifdef SIGINFO
2537 static void
2538 report_counts_siginfo(int signum _U_)
2539 {
2540   int sav_errno = errno;
2541   /* If we've been told to delay printing, just set a flag asking
2542      that we print counts (if we're supposed to), otherwise print
2543      the count of packets captured (if we're supposed to). */
2544   if (infodelay)
2545     infoprint = TRUE;
2546   else
2547     report_counts();
2548   errno = sav_errno;
2549 }
2550 #endif /* SIGINFO */
2551
2552
2553 /* capture child detected any packet drops? */
2554 void
2555 capture_input_drops(capture_session *cap_session _U_, guint32 dropped)
2556 {
2557   if (print_packet_counts) {
2558     /* We're printing packet counts to stderr.
2559        Send a newline so that we move to the line after the packet count. */
2560     fprintf(stderr, "\n");
2561   }
2562
2563   if (dropped != 0) {
2564     /* We're printing packet counts to stderr.
2565        Send a newline so that we move to the line after the packet count. */
2566     fprintf(stderr, "%u packet%s dropped\n", dropped, plurality(dropped, "", "s"));
2567   }
2568 }
2569
2570
2571 /*
2572  * Capture child closed its side of the pipe, report any error and
2573  * do the required cleanup.
2574  */
2575 void
2576 capture_input_closed(capture_session *cap_session, gchar *msg)
2577 {
2578   capture_file *cf = (capture_file *) cap_session->cf;
2579
2580   if (msg != NULL)
2581     fprintf(stderr, "tshark: %s\n", msg);
2582
2583   report_counts();
2584
2585   if (cf != NULL && cf->wth != NULL) {
2586     wtap_close(cf->wth);
2587     if (cf->is_tempfile) {
2588       ws_unlink(cf->filename);
2589     }
2590   }
2591 #ifdef USE_BROKEN_G_MAIN_LOOP
2592   /*g_main_loop_quit(loop);*/
2593   g_main_quit(loop);
2594 #else
2595   loop_running = FALSE;
2596 #endif
2597 }
2598
2599
2600
2601
2602 #ifdef _WIN32
2603 static BOOL WINAPI
2604 capture_cleanup(DWORD ctrltype _U_)
2605 {
2606   /* CTRL_C_EVENT is sort of like SIGINT, CTRL_BREAK_EVENT is unique to
2607      Windows, CTRL_CLOSE_EVENT is sort of like SIGHUP, CTRL_LOGOFF_EVENT
2608      is also sort of like SIGHUP, and CTRL_SHUTDOWN_EVENT is sort of
2609      like SIGTERM at least when the machine's shutting down.
2610
2611      For now, we handle them all as indications that we should clean up
2612      and quit, just as we handle SIGINT, SIGHUP, and SIGTERM in that
2613      way on UNIX.
2614
2615      We must return TRUE so that no other handler - such as one that would
2616      terminate the process - gets called.
2617
2618      XXX - for some reason, typing ^C to TShark, if you run this in
2619      a Cygwin console window in at least some versions of Cygwin,
2620      causes TShark to terminate immediately; this routine gets
2621      called, but the main loop doesn't get a chance to run and
2622      exit cleanly, at least if this is compiled with Microsoft Visual
2623      C++ (i.e., it's a property of the Cygwin console window or Bash;
2624      it happens if TShark is not built with Cygwin - for all I know,
2625      building it with Cygwin may make the problem go away). */
2626
2627   /* tell the capture child to stop */
2628   sync_pipe_stop(&global_capture_session);
2629
2630   /* don't stop our own loop already here, otherwise status messages and
2631    * cleanup wouldn't be done properly. The child will indicate the stop of
2632    * everything by calling capture_input_closed() later */
2633
2634   return TRUE;
2635 }
2636 #else
2637 static void
2638 capture_cleanup(int signum _U_)
2639 {
2640   /* tell the capture child to stop */
2641   sync_pipe_stop(&global_capture_session);
2642
2643   /* don't stop our own loop already here, otherwise status messages and
2644    * cleanup wouldn't be done properly. The child will indicate the stop of
2645    * everything by calling capture_input_closed() later */
2646 }
2647 #endif /* _WIN32 */
2648 #endif /* HAVE_LIBPCAP */
2649
2650 static gboolean
2651 process_packet_first_pass(capture_file *cf,
2652                gint64 offset, struct wtap_pkthdr *whdr,
2653                const guchar *pd)
2654 {
2655   frame_data     fdlocal;
2656   guint32        framenum;
2657   gboolean       create_proto_tree = FALSE;
2658   epan_dissect_t edt;
2659   gboolean       passed;
2660
2661   /* The frame number of this packet is one more than the count of
2662      frames in this packet. */
2663   framenum = cf->count + 1;
2664
2665   /* If we're not running a display filter and we're not printing any
2666      packet information, we don't need to do a dissection. This means
2667      that all packets can be marked as 'passed'. */
2668   passed = TRUE;
2669
2670   frame_data_init(&fdlocal, framenum, whdr, offset, cum_bytes);
2671
2672   /* If we're going to print packet information, or we're going to
2673      run a read filter, or display filter, or we're going to process taps, set up to
2674      do a dissection and do so. */
2675   if (do_dissection) {
2676     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2677         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2678       /* Grab any resolved addresses */
2679       host_name_lookup_process();
2680
2681     /* If we're going to be applying a filter, we'll need to
2682        create a protocol tree against which to apply the filter. */
2683     if (cf->rfcode)
2684       create_proto_tree = TRUE;
2685
2686     /* We're not going to display the protocol tree on this pass,
2687        so it's not going to be "visible". */
2688     epan_dissect_init(&edt, create_proto_tree, FALSE);
2689
2690     /* If we're running a read filter, prime the epan_dissect_t with that
2691        filter. */
2692     if (cf->rfcode)
2693       epan_dissect_prime_dfilter(&edt, cf->rfcode);
2694
2695     frame_data_set_before_dissect(&fdlocal, &cf->elapsed_time,
2696                                   &first_ts, prev_dis, prev_cap);
2697
2698     epan_dissect_run(&edt, whdr, pd, &fdlocal, NULL);
2699
2700     /* Run the read filter if we have one. */
2701     if (cf->rfcode)
2702       passed = dfilter_apply_edt(cf->rfcode, &edt);
2703   }
2704
2705   if (passed) {
2706     frame_data_set_after_dissect(&fdlocal, &cum_bytes);
2707     prev_cap = prev_dis = frame_data_sequence_add(cf->frames, &fdlocal);
2708
2709     /* If we're not doing dissection then there won't be any dependent frames.
2710      * More importantly, edt.pi.dependent_frames won't be initialized because
2711      * epan hasn't been initialized.
2712      */
2713     if (do_dissection) {
2714       g_slist_foreach(edt.pi.dependent_frames, find_and_mark_frame_depended_upon, cf->frames);
2715     }
2716
2717     cf->count++;
2718   } else {
2719     /* if we don't add it to the frame_data_sequence, clean it up right now
2720      * to avoid leaks */
2721     frame_data_destroy(&fdlocal);
2722   }
2723
2724   if (do_dissection)
2725     epan_dissect_cleanup(&edt);
2726
2727   return passed;
2728 }
2729
2730 static gboolean
2731 process_packet_second_pass(capture_file *cf, frame_data *fdata,
2732                struct wtap_pkthdr *phdr, Buffer *buf,
2733                gboolean filtering_tap_listeners, guint tap_flags)
2734 {
2735   gboolean        create_proto_tree;
2736   column_info    *cinfo;
2737   epan_dissect_t  edt;
2738   gboolean        passed;
2739
2740   /* If we're not running a display filter and we're not printing any
2741      packet information, we don't need to do a dissection. This means
2742      that all packets can be marked as 'passed'. */
2743   passed = TRUE;
2744
2745   /* If we're going to print packet information, or we're going to
2746      run a read filter, or we're going to process taps, set up to
2747      do a dissection and do so. */
2748   if (do_dissection) {
2749     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2750         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2751       /* Grab any resolved addresses */
2752       host_name_lookup_process();
2753
2754     if (cf->dfcode || print_details || filtering_tap_listeners ||
2755         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
2756       create_proto_tree = TRUE;
2757     else
2758       create_proto_tree = FALSE;
2759
2760     /* The protocol tree will be "visible", i.e., printed, only if we're
2761        printing packet details, which is true if we're printing stuff
2762        ("print_packet_info" is true) and we're in verbose mode
2763        ("packet_details" is true). */
2764     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
2765
2766     /* If we're running a display filter, prime the epan_dissect_t with that
2767        filter. */
2768     if (cf->dfcode)
2769       epan_dissect_prime_dfilter(&edt, cf->dfcode);
2770
2771     col_custom_prime_edt(&edt, &cf->cinfo);
2772
2773     /* We only need the columns if either
2774          1) some tap needs the columns
2775        or
2776          2) we're printing packet info but we're *not* verbose; in verbose
2777             mode, we print the protocol tree, not the protocol summary.
2778      */
2779     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary))
2780       cinfo = &cf->cinfo;
2781     else
2782       cinfo = NULL;
2783
2784     frame_data_set_before_dissect(fdata, &cf->elapsed_time,
2785                                   &first_ts, prev_dis, prev_cap);
2786
2787     epan_dissect_run_with_taps(&edt, phdr, buffer_start_ptr(buf), fdata, cinfo);
2788
2789     /* Run the read/display filter if we have one. */
2790     if (cf->dfcode)
2791       passed = dfilter_apply_edt(cf->dfcode, &edt);
2792   }
2793
2794   if (passed) {
2795     frame_data_set_after_dissect(fdata, &cum_bytes);
2796     /* Process this packet. */
2797     if (print_packet_info) {
2798       /* We're printing packet information; print the information for
2799          this packet. */
2800       if (do_dissection)
2801         print_packet(cf, &edt);
2802       else
2803         print_packet(cf, NULL);
2804
2805       /* The ANSI C standard does not appear to *require* that a line-buffered
2806          stream be flushed to the host environment whenever a newline is
2807          written, it just says that, on such a stream, characters "are
2808          intended to be transmitted to or from the host environment as a
2809          block when a new-line character is encountered".
2810
2811          The Visual C++ 6.0 C implementation doesn't do what is intended;
2812          even if you set a stream to be line-buffered, it still doesn't
2813          flush the buffer at the end of every line.
2814
2815          So, if the "-l" flag was specified, we flush the standard output
2816          at the end of a packet.  This will do the right thing if we're
2817          printing packet summary lines, and, as we print the entire protocol
2818          tree for a single packet without waiting for anything to happen,
2819          it should be as good as line-buffered mode if we're printing
2820          protocol trees.  (The whole reason for the "-l" flag in either
2821          tcpdump or TShark is to allow the output of a live capture to
2822          be piped to a program or script and to have that script see the
2823          information for the packet as soon as it's printed, rather than
2824          having to wait until a standard I/O buffer fills up. */
2825       if (line_buffered)
2826         fflush(stdout);
2827
2828       if (ferror(stdout)) {
2829         show_print_file_io_error(errno);
2830         exit(2);
2831       }
2832     }
2833     prev_dis = fdata;
2834   }
2835   prev_cap = fdata;
2836
2837   if (do_dissection) {
2838     epan_dissect_cleanup(&edt);
2839   }
2840   return passed || fdata->flags.dependent_of_displayed;
2841 }
2842
2843 static int
2844 load_cap_file(capture_file *cf, char *save_file, int out_file_type,
2845     gboolean out_file_name_res, int max_packet_count, gint64 max_byte_count)
2846 {
2847   gint         linktype;
2848   int          snapshot_length;
2849   wtap_dumper *pdh;
2850   guint32      framenum;
2851   int          err;
2852   gchar       *err_info = NULL;
2853   gint64       data_offset;
2854   char        *save_file_string = NULL;
2855   gboolean     filtering_tap_listeners;
2856   guint        tap_flags;
2857   wtapng_section_t            *shb_hdr;
2858   wtapng_iface_descriptions_t *idb_inf;
2859   char         appname[100];
2860   Buffer       buf;
2861
2862   shb_hdr = wtap_file_get_shb_info(cf->wth);
2863   idb_inf = wtap_file_get_idb_info(cf->wth);
2864 #ifdef PCAP_NG_DEFAULT
2865   if (idb_inf->number_of_interfaces > 1) {
2866     linktype = WTAP_ENCAP_PER_PACKET;
2867   } else {
2868     linktype = wtap_file_encap(cf->wth);
2869   }
2870 #else
2871   linktype = wtap_file_encap(cf->wth);
2872 #endif
2873   if (save_file != NULL) {
2874     /* Get a string that describes what we're writing to */
2875     save_file_string = output_file_description(save_file);
2876
2877     /* Set up to write to the capture file. */
2878     snapshot_length = wtap_snapshot_length(cf->wth);
2879     if (snapshot_length == 0) {
2880       /* Snapshot length of input file not known. */
2881       snapshot_length = WTAP_MAX_PACKET_SIZE;
2882     }
2883     /* If we don't have an application name add Tshark */
2884     if (shb_hdr->shb_user_appl == NULL) {
2885         g_snprintf(appname, sizeof(appname), "TShark " VERSION "%s", wireshark_svnversion);
2886         shb_hdr->shb_user_appl = appname;
2887     }
2888
2889     if (linktype != WTAP_ENCAP_PER_PACKET && out_file_type == WTAP_FILE_PCAP)
2890         pdh = wtap_dump_open(save_file, out_file_type, linktype,
2891             snapshot_length, FALSE /* compressed */, &err);
2892     else
2893         pdh = wtap_dump_open_ng(save_file, out_file_type, linktype,
2894             snapshot_length, FALSE /* compressed */, shb_hdr, idb_inf, &err);
2895
2896     g_free(idb_inf);
2897     idb_inf = NULL;
2898
2899     if (pdh == NULL) {
2900       /* We couldn't set up to write to the capture file. */
2901       switch (err) {
2902
2903       case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
2904         cmdarg_err("Capture files can't be written in that format.");
2905         break;
2906
2907       case WTAP_ERR_UNSUPPORTED_ENCAP:
2908       case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
2909         cmdarg_err("The capture file being read can't be written as a "
2910           "\"%s\" file.", wtap_file_type_short_string(out_file_type));
2911         break;
2912
2913       case WTAP_ERR_CANT_OPEN:
2914         cmdarg_err("The %s couldn't be created for some "
2915           "unknown reason.", save_file_string);
2916         break;
2917
2918       case WTAP_ERR_SHORT_WRITE:
2919         cmdarg_err("A full header couldn't be written to the %s.",
2920                    save_file_string);
2921         break;
2922
2923       default:
2924         cmdarg_err("The %s could not be created: %s.", save_file_string,
2925                    wtap_strerror(err));
2926         break;
2927       }
2928       goto out;
2929     }
2930   } else {
2931     if (print_packet_info) {
2932       if (!write_preamble(cf)) {
2933         err = errno;
2934         show_print_file_io_error(err);
2935         goto out;
2936       }
2937     }
2938     pdh = NULL;
2939   }
2940
2941   if (pdh && out_file_name_res) {
2942     if (!wtap_dump_set_addrinfo_list(pdh, get_addrinfo_list())) {
2943       cmdarg_err("The file format \"%s\" doesn't support name resolution information.",
2944                  wtap_file_type_short_string(out_file_type));
2945     }
2946   }
2947
2948   /* Do we have any tap listeners with filters? */
2949   filtering_tap_listeners = have_filtering_tap_listeners();
2950
2951   /* Get the union of the flags for all tap listeners. */
2952   tap_flags = union_of_tap_listener_flags();
2953
2954   if (perform_two_pass_analysis) {
2955     frame_data *fdata;
2956     int old_max_packet_count = max_packet_count;
2957
2958     /* Allocate a frame_data_sequence for all the frames. */
2959     cf->frames = new_frame_data_sequence();
2960
2961     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
2962       if (process_packet_first_pass(cf, data_offset, wtap_phdr(cf->wth),
2963                          wtap_buf_ptr(cf->wth))) {
2964         /* Stop reading if we have the maximum number of packets;
2965          * When the -c option has not been used, max_packet_count
2966          * starts at 0, which practically means, never stop reading.
2967          * (unless we roll over max_packet_count ?)
2968          */
2969         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
2970           err = 0; /* This is not an error */
2971           break;
2972         }
2973       }
2974     }
2975
2976     /* Close the sequential I/O side, to free up memory it requires. */
2977     wtap_sequential_close(cf->wth);
2978
2979     /* Allow the protocol dissectors to free up memory that they
2980      * don't need after the sequential run-through of the packets. */
2981     postseq_cleanup_all_protocols();
2982
2983     max_packet_count = old_max_packet_count;
2984
2985     prev_dis = NULL;
2986     prev_cap = NULL;
2987     buffer_init(&buf, 1500);
2988     for (framenum = 1; err == 0 && framenum <= cf->count; framenum++) {
2989       fdata = frame_data_sequence_find(cf->frames, framenum);
2990       if (wtap_seek_read(cf->wth, fdata->file_off, &cf->phdr,
2991           &buf, fdata->cap_len, &err, &err_info)) {
2992         if (process_packet_second_pass(cf, fdata, &cf->phdr, &buf,
2993                                        filtering_tap_listeners, tap_flags)) {
2994           /* Either there's no read filtering or this packet passed the
2995              filter, so, if we're writing to a capture file, write
2996              this packet out. */
2997           if (pdh != NULL) {
2998             if (!wtap_dump(pdh, &cf->phdr, buffer_start_ptr(&cf->buf), &err)) {
2999               /* Error writing to a capture file */
3000               switch (err) {
3001
3002               case WTAP_ERR_UNSUPPORTED_ENCAP:
3003                 /*
3004                  * This is a problem with the particular frame we're writing;
3005                  * note that, and give the frame number.
3006                  *
3007                  * XXX - framenum is not necessarily the frame number in
3008                  * the input file if there was a read filter.
3009                  */
3010                 fprintf(stderr,
3011                         "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3012                         framenum, cf->filename,
3013                         wtap_file_type_short_string(out_file_type));
3014                 break;
3015
3016               default:
3017                 show_capture_file_io_error(save_file, err, FALSE);
3018                 break;
3019               }
3020               wtap_dump_close(pdh, &err);
3021               g_free(shb_hdr);
3022               exit(2);
3023             }
3024           }
3025           /* Stop reading if we have the maximum number of packets;
3026            * When the -c option has not been used, max_packet_count
3027            * starts at 0, which practically means, never stop reading.
3028            * (unless we roll over max_packet_count ?)
3029            */
3030           if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3031             err = 0; /* This is not an error */
3032             break;
3033           }
3034         }
3035       }
3036     }
3037     buffer_free(&buf);
3038   }
3039   else {
3040     framenum = 0;
3041     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
3042       framenum++;
3043
3044       if (process_packet(cf, data_offset, wtap_phdr(cf->wth),
3045                          wtap_buf_ptr(cf->wth),
3046                          filtering_tap_listeners, tap_flags)) {
3047         /* Either there's no read filtering or this packet passed the
3048            filter, so, if we're writing to a capture file, write
3049            this packet out. */
3050         if (pdh != NULL) {
3051           if (!wtap_dump(pdh, wtap_phdr(cf->wth), wtap_buf_ptr(cf->wth), &err)) {
3052             /* Error writing to a capture file */
3053             switch (err) {
3054
3055             case WTAP_ERR_UNSUPPORTED_ENCAP:
3056               /*
3057                * This is a problem with the particular frame we're writing;
3058                * note that, and give the frame number.
3059                */
3060               fprintf(stderr,
3061                       "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
3062                       framenum, cf->filename,
3063                       wtap_file_type_short_string(out_file_type));
3064               break;
3065
3066             default:
3067               show_capture_file_io_error(save_file, err, FALSE);
3068               break;
3069             }
3070             wtap_dump_close(pdh, &err);
3071             g_free(shb_hdr);
3072             exit(2);
3073           }
3074         }
3075         /* Stop reading if we have the maximum number of packets;
3076          * When the -c option has not been used, max_packet_count
3077          * starts at 0, which practically means, never stop reading.
3078          * (unless we roll over max_packet_count ?)
3079          */
3080         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3081           err = 0; /* This is not an error */
3082           break;
3083         }
3084       }
3085     }
3086   }
3087
3088   if (err != 0) {
3089     /*
3090      * Print a message noting that the read failed somewhere along the line.
3091      *
3092      * If we're printing packet data, and the standard output and error are
3093      * going to the same place, flush the standard output, so everything
3094      * buffered up is written, and then print a newline to the standard error
3095      * before printing the error message, to separate it from the packet
3096      * data.  (Alas, that only works on UN*X; st_dev is meaningless, and
3097      * the _fstat() documentation at Microsoft doesn't indicate whether
3098      * st_ino is even supported.)
3099      */
3100 #ifndef _WIN32
3101     if (print_packet_info) {
3102       struct stat stat_stdout, stat_stderr;
3103
3104       if (fstat(1, &stat_stdout) == 0 && fstat(2, &stat_stderr) == 0) {
3105         if (stat_stdout.st_dev == stat_stderr.st_dev &&
3106             stat_stdout.st_ino == stat_stderr.st_ino) {
3107           fflush(stdout);
3108           fprintf(stderr, "\n");
3109         }
3110       }
3111     }
3112 #endif
3113     switch (err) {
3114
3115     case WTAP_ERR_UNSUPPORTED:
3116       cmdarg_err("The file \"%s\" contains record data that TShark doesn't support.\n(%s)",
3117                  cf->filename, err_info);
3118       g_free(err_info);
3119       break;
3120
3121     case WTAP_ERR_UNSUPPORTED_ENCAP:
3122       cmdarg_err("The file \"%s\" has a packet with a network type that TShark doesn't support.\n(%s)",
3123                  cf->filename, err_info);
3124       g_free(err_info);
3125       break;
3126
3127     case WTAP_ERR_CANT_READ:
3128       cmdarg_err("An attempt to read from the file \"%s\" failed for some unknown reason.",
3129                  cf->filename);
3130       break;
3131
3132     case WTAP_ERR_SHORT_READ:
3133       cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
3134                  cf->filename);
3135       break;
3136
3137     case WTAP_ERR_BAD_FILE:
3138       cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
3139                  cf->filename, err_info);
3140       g_free(err_info);
3141       break;
3142
3143     case WTAP_ERR_DECOMPRESS:
3144       cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n"
3145                  "(%s)", cf->filename, err_info);
3146       break;
3147
3148     default:
3149       cmdarg_err("An error occurred while reading the file \"%s\": %s.",
3150                  cf->filename, wtap_strerror(err));
3151       break;
3152     }
3153     if (save_file != NULL) {
3154       /* Now close the capture file. */
3155       if (!wtap_dump_close(pdh, &err))
3156         show_capture_file_io_error(save_file, err, TRUE);
3157     }
3158   } else {
3159     if (save_file != NULL) {
3160       /* Now close the capture file. */
3161       if (!wtap_dump_close(pdh, &err))
3162         show_capture_file_io_error(save_file, err, TRUE);
3163     } else {
3164       if (print_packet_info) {
3165         if (!write_finale()) {
3166           err = errno;
3167           show_print_file_io_error(err);
3168         }
3169       }
3170     }
3171   }
3172
3173 out:
3174   wtap_close(cf->wth);
3175   cf->wth = NULL;
3176
3177   g_free(save_file_string);
3178   g_free(shb_hdr);
3179
3180   return err;
3181 }
3182
3183 static gboolean
3184 process_packet(capture_file *cf, gint64 offset, struct wtap_pkthdr *whdr,
3185                const guchar *pd,
3186                gboolean filtering_tap_listeners, guint tap_flags)
3187 {
3188   frame_data      fdata;
3189   gboolean        create_proto_tree;
3190   column_info    *cinfo;
3191   epan_dissect_t  edt;
3192   gboolean        passed;
3193
3194   /* Count this packet. */
3195   cf->count++;
3196
3197   /* If we're not running a display filter and we're not printing any
3198      packet information, we don't need to do a dissection. This means
3199      that all packets can be marked as 'passed'. */
3200   passed = TRUE;
3201
3202   frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
3203
3204   /* If we're going to print packet information, or we're going to
3205      run a read filter, or we're going to process taps, set up to
3206      do a dissection and do so. */
3207   if (do_dissection) {
3208     if (print_packet_info && (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
3209         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns))
3210       /* Grab any resolved addresses */
3211       host_name_lookup_process();
3212
3213     if (cf->rfcode || cf->dfcode || print_details || filtering_tap_listeners ||
3214         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
3215       create_proto_tree = TRUE;
3216     else
3217       create_proto_tree = FALSE;
3218
3219     /* The protocol tree will be "visible", i.e., printed, only if we're
3220        printing packet details, which is true if we're printing stuff
3221        ("print_packet_info" is true) and we're in verbose mode
3222        ("packet_details" is true). */
3223     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
3224
3225     /* If we're running a filter, prime the epan_dissect_t with that
3226        filter. */
3227     if (cf->rfcode)
3228       epan_dissect_prime_dfilter(&edt, cf->rfcode);
3229     if (cf->dfcode)
3230       epan_dissect_prime_dfilter(&edt, cf->dfcode);
3231
3232     col_custom_prime_edt(&edt, &cf->cinfo);
3233
3234     /* We only need the columns if either
3235          1) some tap needs the columns
3236        or
3237          2) we're printing packet info but we're *not* verbose; in verbose
3238             mode, we print the protocol tree, not the protocol summary.
3239        or
3240          3) there is a column mapped as an individual field */
3241     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary) || output_fields_has_cols(output_fields))
3242       cinfo = &cf->cinfo;
3243     else
3244       cinfo = NULL;
3245
3246     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
3247                                   &first_ts, prev_dis, prev_cap);
3248
3249     epan_dissect_run_with_taps(&edt, whdr, pd, &fdata, cinfo);
3250
3251     /* Run the filters if we have them. */
3252     if (cf->rfcode)
3253       passed = dfilter_apply_edt(cf->rfcode, &edt);
3254     if (passed && cf->dfcode)
3255       passed = dfilter_apply_edt(cf->dfcode, &edt);
3256   }
3257
3258   if (passed) {
3259     frame_data_set_after_dissect(&fdata, &cum_bytes);
3260
3261     /* Process this packet. */
3262     if (print_packet_info) {
3263       /* We're printing packet information; print the information for
3264          this packet. */
3265       if (do_dissection)
3266         print_packet(cf, &edt);
3267       else
3268         print_packet(cf, NULL);
3269
3270       /* The ANSI C standard does not appear to *require* that a line-buffered
3271          stream be flushed to the host environment whenever a newline is
3272          written, it just says that, on such a stream, characters "are
3273          intended to be transmitted to or from the host environment as a
3274          block when a new-line character is encountered".
3275
3276          The Visual C++ 6.0 C implementation doesn't do what is intended;
3277          even if you set a stream to be line-buffered, it still doesn't
3278          flush the buffer at the end of every line.
3279
3280          So, if the "-l" flag was specified, we flush the standard output
3281          at the end of a packet.  This will do the right thing if we're
3282          printing packet summary lines, and, as we print the entire protocol
3283          tree for a single packet without waiting for anything to happen,
3284          it should be as good as line-buffered mode if we're printing
3285          protocol trees.  (The whole reason for the "-l" flag in either
3286          tcpdump or TShark is to allow the output of a live capture to
3287          be piped to a program or script and to have that script see the
3288          information for the packet as soon as it's printed, rather than
3289          having to wait until a standard I/O buffer fills up. */
3290       if (line_buffered)
3291         fflush(stdout);
3292
3293       if (ferror(stdout)) {
3294         show_print_file_io_error(errno);
3295         exit(2);
3296       }
3297     }
3298
3299     /* this must be set after print_packet() [bug #8160] */
3300     prev_dis_frame = fdata;
3301     prev_dis = &prev_dis_frame;
3302   }
3303
3304   prev_cap_frame = fdata;
3305   prev_cap = &prev_cap_frame;
3306
3307   if (do_dissection) {
3308     epan_dissect_cleanup(&edt);
3309     frame_data_destroy(&fdata);
3310   }
3311   return passed;
3312 }
3313
3314 static gboolean
3315 write_preamble(capture_file *cf)
3316 {
3317   switch (output_action) {
3318
3319   case WRITE_TEXT:
3320     return print_preamble(print_stream, cf ? cf->filename : NULL);
3321
3322   case WRITE_XML:
3323     if (print_details)
3324       write_pdml_preamble(stdout, cf ? cf->filename : NULL);
3325     else
3326       write_psml_preamble(stdout);
3327     return !ferror(stdout);
3328
3329   case WRITE_FIELDS:
3330     write_fields_preamble(output_fields, stdout);
3331     return !ferror(stdout);
3332
3333   default:
3334     g_assert_not_reached();
3335     return FALSE;
3336   }
3337 }
3338
3339 static char *
3340 get_line_buf(size_t len)
3341 {
3342   static char   *line_bufp    = NULL;
3343   static size_t  line_buf_len = 256;
3344   size_t         new_line_buf_len;
3345
3346   for (new_line_buf_len = line_buf_len; len > new_line_buf_len;
3347        new_line_buf_len *= 2)
3348     ;
3349   if (line_bufp == NULL) {
3350     line_buf_len = new_line_buf_len;
3351     line_bufp = (char *)g_malloc(line_buf_len + 1);
3352   } else {
3353     if (new_line_buf_len > line_buf_len) {
3354       line_buf_len = new_line_buf_len;
3355       line_bufp = (char *)g_realloc(line_bufp, line_buf_len + 1);
3356     }
3357   }
3358   return line_bufp;
3359 }
3360
3361 static gboolean
3362 print_columns(capture_file *cf)
3363 {
3364   char   *line_bufp;
3365   int     i;
3366   size_t  buf_offset;
3367   size_t  column_len;
3368
3369   line_bufp = get_line_buf(256);
3370   buf_offset = 0;
3371   *line_bufp = '\0';
3372   for (i = 0; i < cf->cinfo.num_cols; i++) {
3373     /* Skip columns not marked as visible. */
3374     if (!get_column_visible(i))
3375       continue;
3376     switch (cf->cinfo.col_fmt[i]) {
3377     case COL_NUMBER:
3378 #ifdef HAVE_LIBPCAP
3379       /*
3380        * Don't print this if we're doing a live capture from a network
3381        * interface - if we're doing a live capture, you won't be
3382        * able to look at the capture in the future (it's not being
3383        * saved anywhere), so the frame numbers are unlikely to be
3384        * useful.
3385        *
3386        * (XXX - it might be nice to be able to save and print at
3387        * the same time, sort of like an "Update list of packets
3388        * in real time" capture in Wireshark.)
3389        */
3390       if (global_capture_opts.ifaces->len > 0)
3391         continue;
3392 #endif
3393       column_len = strlen(cf->cinfo.col_data[i]);
3394       if (column_len < 3)
3395         column_len = 3;
3396       line_bufp = get_line_buf(buf_offset + column_len);
3397       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%3s", cf->cinfo.col_data[i]);
3398       break;
3399
3400     case COL_CLS_TIME:
3401     case COL_REL_TIME:
3402     case COL_ABS_TIME:
3403     case COL_ABS_DATE_TIME:
3404     case COL_UTC_TIME:
3405     case COL_UTC_DATE_TIME: /* XXX - wider */
3406       column_len = strlen(cf->cinfo.col_data[i]);
3407       if (column_len < 10)
3408         column_len = 10;
3409       line_bufp = get_line_buf(buf_offset + column_len);
3410       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%10s", cf->cinfo.col_data[i]);
3411       break;
3412
3413     case COL_DEF_SRC:
3414     case COL_RES_SRC:
3415     case COL_UNRES_SRC:
3416     case COL_DEF_DL_SRC:
3417     case COL_RES_DL_SRC:
3418     case COL_UNRES_DL_SRC:
3419     case COL_DEF_NET_SRC:
3420     case COL_RES_NET_SRC:
3421     case COL_UNRES_NET_SRC:
3422       column_len = strlen(cf->cinfo.col_data[i]);
3423       if (column_len < 12)
3424         column_len = 12;
3425       line_bufp = get_line_buf(buf_offset + column_len);
3426       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%12s", cf->cinfo.col_data[i]);
3427       break;
3428
3429     case COL_DEF_DST:
3430     case COL_RES_DST:
3431     case COL_UNRES_DST:
3432     case COL_DEF_DL_DST:
3433     case COL_RES_DL_DST:
3434     case COL_UNRES_DL_DST:
3435     case COL_DEF_NET_DST:
3436     case COL_RES_NET_DST:
3437     case COL_UNRES_NET_DST:
3438       column_len = strlen(cf->cinfo.col_data[i]);
3439       if (column_len < 12)
3440         column_len = 12;
3441       line_bufp = get_line_buf(buf_offset + column_len);
3442       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%-12s", cf->cinfo.col_data[i]);
3443       break;
3444
3445     default:
3446       column_len = strlen(cf->cinfo.col_data[i]);
3447       line_bufp = get_line_buf(buf_offset + column_len);
3448       g_strlcat(line_bufp + buf_offset, cf->cinfo.col_data[i], column_len + 1);
3449       break;
3450     }
3451     buf_offset += column_len;
3452     if (i != cf->cinfo.num_cols - 1) {
3453       /*
3454        * This isn't the last column, so we need to print a
3455        * separator between this column and the next.
3456        *
3457        * If we printed a network source and are printing a
3458        * network destination of the same type next, separate
3459        * them with " -> "; if we printed a network destination
3460        * and are printing a network source of the same type
3461        * next, separate them with " <- "; otherwise separate them
3462        * with a space.
3463        *
3464        * We add enough space to the buffer for " <- " or " -> ",
3465        * even if we're only adding " ".
3466        */
3467       line_bufp = get_line_buf(buf_offset + 4);
3468       switch (cf->cinfo.col_fmt[i]) {
3469
3470       case COL_DEF_SRC:
3471       case COL_RES_SRC:
3472       case COL_UNRES_SRC:
3473         switch (cf->cinfo.col_fmt[i + 1]) {
3474
3475         case COL_DEF_DST:
3476         case COL_RES_DST:
3477         case COL_UNRES_DST:
3478           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3479           buf_offset += 4;
3480           break;
3481
3482         default:
3483           g_strlcat(line_bufp + buf_offset, " ", 5);
3484           buf_offset += 1;
3485           break;
3486         }
3487         break;
3488
3489       case COL_DEF_DL_SRC:
3490       case COL_RES_DL_SRC:
3491       case COL_UNRES_DL_SRC:
3492         switch (cf->cinfo.col_fmt[i + 1]) {
3493
3494         case COL_DEF_DL_DST:
3495         case COL_RES_DL_DST:
3496         case COL_UNRES_DL_DST:
3497           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3498           buf_offset += 4;
3499           break;
3500
3501         default:
3502           g_strlcat(line_bufp + buf_offset, " ", 5);
3503           buf_offset += 1;
3504           break;
3505         }
3506         break;
3507
3508       case COL_DEF_NET_SRC:
3509       case COL_RES_NET_SRC:
3510       case COL_UNRES_NET_SRC:
3511         switch (cf->cinfo.col_fmt[i + 1]) {
3512
3513         case COL_DEF_NET_DST:
3514         case COL_RES_NET_DST:
3515         case COL_UNRES_NET_DST:
3516           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3517           buf_offset += 4;
3518           break;
3519
3520         default:
3521           g_strlcat(line_bufp + buf_offset, " ", 5);
3522           buf_offset += 1;
3523           break;
3524         }
3525         break;
3526
3527       case COL_DEF_DST:
3528       case COL_RES_DST:
3529       case COL_UNRES_DST:
3530         switch (cf->cinfo.col_fmt[i + 1]) {
3531
3532         case COL_DEF_SRC:
3533         case COL_RES_SRC:
3534         case COL_UNRES_SRC:
3535           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3536           buf_offset += 4;
3537           break;
3538
3539         default:
3540           g_strlcat(line_bufp + buf_offset, " ", 5);
3541           buf_offset += 1;
3542           break;
3543         }
3544         break;
3545
3546       case COL_DEF_DL_DST:
3547       case COL_RES_DL_DST:
3548       case COL_UNRES_DL_DST:
3549         switch (cf->cinfo.col_fmt[i + 1]) {
3550
3551         case COL_DEF_DL_SRC:
3552         case COL_RES_DL_SRC:
3553         case COL_UNRES_DL_SRC:
3554           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3555           buf_offset += 4;
3556           break;
3557
3558         default:
3559           g_strlcat(line_bufp + buf_offset, " ", 5);
3560           buf_offset += 1;
3561           break;
3562         }
3563         break;
3564
3565       case COL_DEF_NET_DST:
3566       case COL_RES_NET_DST:
3567       case COL_UNRES_NET_DST:
3568         switch (cf->cinfo.col_fmt[i + 1]) {
3569
3570         case COL_DEF_NET_SRC:
3571         case COL_RES_NET_SRC:
3572         case COL_UNRES_NET_SRC:
3573           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3574           buf_offset += 4;
3575           break;
3576
3577         default:
3578           g_strlcat(line_bufp + buf_offset, " ", 5);
3579           buf_offset += 1;
3580           break;
3581         }
3582         break;
3583
3584       default:
3585         g_strlcat(line_bufp + buf_offset, " ", 5);
3586         buf_offset += 1;
3587         break;
3588       }
3589     }
3590   }
3591   return print_line(print_stream, 0, line_bufp);
3592 }
3593
3594 static gboolean
3595 print_packet(capture_file *cf, epan_dissect_t *edt)
3596 {
3597   print_args_t print_args;
3598
3599   if (print_summary || output_fields_has_cols(output_fields)) {
3600     /* Just fill in the columns. */
3601     epan_dissect_fill_in_columns(edt, FALSE, TRUE);
3602
3603     if (print_summary) {
3604       /* Now print them. */
3605       switch (output_action) {
3606
3607       case WRITE_TEXT:
3608         if (!print_columns(cf))
3609           return FALSE;
3610         break;
3611
3612       case WRITE_XML:
3613         proto_tree_write_psml(edt, stdout);
3614         return !ferror(stdout);
3615       case WRITE_FIELDS: /*No non-verbose "fields" format */
3616         g_assert_not_reached();
3617         break;
3618       }
3619     }
3620   }
3621   if (print_details) {
3622     /* Print the information in the protocol tree. */
3623     switch (output_action) {
3624
3625     case WRITE_TEXT:
3626       /* Only initialize the fields that are actually used in proto_tree_print.
3627        * This is particularly important for .range, as that's heap memory which
3628        * we would otherwise have to g_free().
3629       print_args.to_file = TRUE;
3630       print_args.format = print_format;
3631       print_args.print_summary = print_summary;
3632       print_args.print_formfeed = FALSE;
3633       packet_range_init(&print_args.range, &cfile);
3634       */
3635       print_args.print_hex = print_hex;
3636       print_args.print_dissections = print_details ? print_dissections_expanded : print_dissections_none;
3637
3638       if (!proto_tree_print(&print_args, edt, print_stream))
3639         return FALSE;
3640       if (!print_hex) {
3641         if (!print_line(print_stream, 0, separator))
3642           return FALSE;
3643       }
3644       break;
3645
3646     case WRITE_XML:
3647       proto_tree_write_pdml(edt, stdout);
3648       printf("\n");
3649       return !ferror(stdout);
3650     case WRITE_FIELDS:
3651       proto_tree_write_fields(output_fields, edt, &cf->cinfo, stdout);
3652       printf("\n");
3653       return !ferror(stdout);
3654     }
3655   }
3656   if (print_hex) {
3657     if (print_summary || print_details) {
3658       if (!print_line(print_stream, 0, ""))
3659         return FALSE;
3660     }
3661     if (!print_hex_data(print_stream, edt))
3662       return FALSE;
3663     if (!print_line(print_stream, 0, separator))
3664       return FALSE;
3665   }
3666   return TRUE;
3667 }
3668
3669 static gboolean
3670 write_finale(void)
3671 {
3672   switch (output_action) {
3673
3674   case WRITE_TEXT:
3675     return print_finale(print_stream);
3676
3677   case WRITE_XML:
3678     if (print_details)
3679       write_pdml_finale(stdout);
3680     else
3681       write_psml_finale(stdout);
3682     return !ferror(stdout);
3683
3684   case WRITE_FIELDS:
3685     write_fields_finale(output_fields, stdout);
3686     return !ferror(stdout);
3687
3688   default:
3689     g_assert_not_reached();
3690     return FALSE;
3691   }
3692 }
3693
3694 cf_status_t
3695 cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
3696 {
3697   wtap  *wth;
3698   gchar *err_info;
3699   char   err_msg[2048+1];
3700
3701   wth = wtap_open_offline(fname, err, &err_info, perform_two_pass_analysis);
3702   if (wth == NULL)
3703     goto fail;
3704
3705   /* The open succeeded.  Fill in the information for this file. */
3706
3707   /* Cleanup all data structures used for dissection. */
3708   cleanup_dissection();
3709   /* Initialize all data structures used for dissection. */
3710   init_dissection();
3711
3712   cf->wth = wth;
3713   cf->f_datalen = 0; /* not used, but set it anyway */
3714
3715   /* Set the file name because we need it to set the follow stream filter.
3716      XXX - is that still true?  We need it for other reasons, though,
3717      in any case. */
3718   cf->filename = g_strdup(fname);
3719
3720   /* Indicate whether it's a permanent or temporary file. */
3721   cf->is_tempfile = is_tempfile;
3722
3723   /* No user changes yet. */
3724   cf->unsaved_changes = FALSE;
3725
3726   cf->cd_t      = wtap_file_type(cf->wth);
3727   cf->count     = 0;
3728   cf->drops_known = FALSE;
3729   cf->drops     = 0;
3730   cf->snap      = wtap_snapshot_length(cf->wth);
3731   if (cf->snap == 0) {
3732     /* Snapshot length not known. */
3733     cf->has_snap = FALSE;
3734     cf->snap = WTAP_MAX_PACKET_SIZE;
3735   } else
3736     cf->has_snap = TRUE;
3737   nstime_set_zero(&cf->elapsed_time);
3738   nstime_set_unset(&first_ts);
3739   prev_dis = NULL;
3740   prev_cap = NULL;
3741
3742   cf->state = FILE_READ_IN_PROGRESS;
3743
3744   wtap_set_cb_new_ipv4(cf->wth, add_ipv4_name);
3745   wtap_set_cb_new_ipv6(cf->wth, (wtap_new_ipv6_callback_t) add_ipv6_name);
3746
3747   return CF_OK;
3748
3749 fail:
3750   g_snprintf(err_msg, sizeof err_msg,
3751              cf_open_error_message(*err, err_info, FALSE, cf->cd_t), fname);
3752   cmdarg_err("%s", err_msg);
3753   return CF_ERROR;
3754 }
3755
3756 static void
3757 show_capture_file_io_error(const char *fname, int err, gboolean is_close)
3758 {
3759   char *save_file_string;
3760
3761   save_file_string = output_file_description(fname);
3762
3763   switch (err) {
3764
3765   case ENOSPC:
3766     cmdarg_err("Not all the packets could be written to the %s because there is "
3767                "no space left on the file system.",
3768                save_file_string);
3769     break;
3770
3771 #ifdef EDQUOT
3772   case EDQUOT:
3773     cmdarg_err("Not all the packets could be written to the %s because you are "
3774                "too close to, or over your disk quota.",
3775                save_file_string);
3776   break;
3777 #endif
3778
3779   case WTAP_ERR_CANT_CLOSE:
3780     cmdarg_err("The %s couldn't be closed for some unknown reason.",
3781                save_file_string);
3782     break;
3783
3784   case WTAP_ERR_SHORT_WRITE:
3785     cmdarg_err("Not all the packets could be written to the %s.",
3786                save_file_string);
3787     break;
3788
3789   default:
3790     if (is_close) {
3791       cmdarg_err("The %s could not be closed: %s.", save_file_string,
3792                  wtap_strerror(err));
3793     } else {
3794       cmdarg_err("An error occurred while writing to the %s: %s.",
3795                  save_file_string, wtap_strerror(err));
3796     }
3797     break;
3798   }
3799   g_free(save_file_string);
3800 }
3801
3802 static void
3803 show_print_file_io_error(int err)
3804 {
3805   switch (err) {
3806
3807   case ENOSPC:
3808     cmdarg_err("Not all the packets could be printed because there is "
3809 "no space left on the file system.");
3810     break;
3811
3812 #ifdef EDQUOT
3813   case EDQUOT:
3814     cmdarg_err("Not all the packets could be printed because you are "
3815 "too close to, or over your disk quota.");
3816   break;
3817 #endif
3818
3819   default:
3820     cmdarg_err("An error occurred while printing packets: %s.",
3821       g_strerror(err));
3822     break;
3823   }
3824 }
3825
3826 static const char *
3827 cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
3828                       int file_type)
3829 {
3830   const char *errmsg;
3831   static char errmsg_errno[1024+1];
3832
3833   if (err < 0) {
3834     /* Wiretap error. */
3835     switch (err) {
3836
3837     case WTAP_ERR_NOT_REGULAR_FILE:
3838       errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
3839       break;
3840
3841     case WTAP_ERR_RANDOM_OPEN_PIPE:
3842       /* Seen only when opening a capture file for reading. */
3843       errmsg = "The file \"%s\" is a pipe or FIFO; TShark can't read pipe or FIFO files in two-pass mode.";
3844       break;
3845
3846     case WTAP_ERR_FILE_UNKNOWN_FORMAT:
3847       /* Seen only when opening a capture file for reading. */
3848       errmsg = "The file \"%s\" isn't a capture file in a format TShark understands.";
3849       break;
3850
3851     case WTAP_ERR_UNSUPPORTED:
3852       /* Seen only when opening a capture file for reading. */
3853       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3854                "The file \"%%s\" isn't a capture file in a format TShark understands.\n"
3855                "(%s)", err_info);
3856       g_free(err_info);
3857       errmsg = errmsg_errno;
3858       break;
3859
3860     case WTAP_ERR_CANT_WRITE_TO_PIPE:
3861       /* Seen only when opening a capture file for writing. */
3862       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3863                  "The file \"%%s\" is a pipe, and \"%s\" capture files can't be "
3864                  "written to a pipe.", wtap_file_type_short_string(file_type));
3865       errmsg = errmsg_errno;
3866       break;
3867
3868     case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
3869       /* Seen only when opening a capture file for writing. */
3870       errmsg = "TShark doesn't support writing capture files in that format.";
3871       break;
3872
3873     case WTAP_ERR_UNSUPPORTED_ENCAP:
3874       if (for_writing) {
3875         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3876                    "TShark can't save this capture as a \"%s\" file.",
3877                    wtap_file_type_short_string(file_type));
3878       } else {
3879         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3880                  "The file \"%%s\" is a capture for a network type that TShark doesn't support.\n"
3881                  "(%s)", err_info);
3882         g_free(err_info);
3883       }
3884       errmsg = errmsg_errno;
3885       break;
3886
3887     case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
3888       if (for_writing) {
3889         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3890                    "TShark can't save this capture as a \"%s\" file.",
3891                    wtap_file_type_short_string(file_type));
3892         errmsg = errmsg_errno;
3893       } else
3894         errmsg = "The file \"%s\" is a capture for a network type that TShark doesn't support.";
3895       break;
3896
3897     case WTAP_ERR_BAD_FILE:
3898       /* Seen only when opening a capture file for reading. */
3899       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3900                "The file \"%%s\" appears to be damaged or corrupt.\n"
3901                "(%s)", err_info);
3902       g_free(err_info);
3903       errmsg = errmsg_errno;
3904       break;
3905
3906     case WTAP_ERR_CANT_OPEN:
3907       if (for_writing)
3908         errmsg = "The file \"%s\" could not be created for some unknown reason.";
3909       else
3910         errmsg = "The file \"%s\" could not be opened for some unknown reason.";
3911       break;
3912
3913     case WTAP_ERR_SHORT_READ:
3914       errmsg = "The file \"%s\" appears to have been cut short"
3915                " in the middle of a packet or other data.";
3916       break;
3917
3918     case WTAP_ERR_SHORT_WRITE:
3919       errmsg = "A full header couldn't be written to the file \"%s\".";
3920       break;
3921
3922     case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
3923       errmsg = "This file type cannot be written as a compressed file.";
3924       break;
3925
3926     case WTAP_ERR_DECOMPRESS:
3927       /* Seen only when opening a capture file for reading. */
3928       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3929                  "The compressed file \"%%s\" appears to be damaged or corrupt.\n"
3930                  "(%s)", err_info);
3931       g_free(err_info);
3932       errmsg = errmsg_errno;
3933       break;
3934
3935     default:
3936       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3937                  "The file \"%%s\" could not be %s: %s.",
3938                  for_writing ? "created" : "opened",
3939                  wtap_strerror(err));
3940       errmsg = errmsg_errno;
3941       break;
3942     }
3943   } else
3944     errmsg = file_open_error_message(err, for_writing);
3945   return errmsg;
3946 }
3947
3948 /*
3949  * Open/create errors are reported with an console message in TShark.
3950  */
3951 static void
3952 open_failure_message(const char *filename, int err, gboolean for_writing)
3953 {
3954   fprintf(stderr, "tshark: ");
3955   fprintf(stderr, file_open_error_message(err, for_writing), filename);
3956   fprintf(stderr, "\n");
3957 }
3958
3959
3960 /*
3961  * General errors are reported with an console message in TShark.
3962  */
3963 static void
3964 failure_message(const char *msg_format, va_list ap)
3965 {
3966   fprintf(stderr, "tshark: ");
3967   vfprintf(stderr, msg_format, ap);
3968   fprintf(stderr, "\n");
3969 }
3970
3971 /*
3972  * Read errors are reported with an console message in TShark.
3973  */
3974 static void
3975 read_failure_message(const char *filename, int err)
3976 {
3977   cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
3978           filename, g_strerror(err));
3979 }
3980
3981 /*
3982  * Write errors are reported with an console message in TShark.
3983  */
3984 static void
3985 write_failure_message(const char *filename, int err)
3986 {
3987   cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
3988           filename, g_strerror(err));
3989 }
3990
3991 /*
3992  * Report an error in command-line arguments.
3993  */
3994 void
3995 cmdarg_err(const char *fmt, ...)
3996 {
3997   va_list ap;
3998
3999   va_start(ap, fmt);
4000   failure_message(fmt, ap);
4001   va_end(ap);
4002 }
4003
4004 /*
4005  * Report additional information for an error in command-line arguments.
4006  */
4007 void
4008 cmdarg_err_cont(const char *fmt, ...)
4009 {
4010   va_list ap;
4011
4012   va_start(ap, fmt);
4013   vfprintf(stderr, fmt, ap);
4014   fprintf(stderr, "\n");
4015   va_end(ap);
4016 }
4017
4018
4019 /*
4020  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
4021  *
4022  * Local variables:
4023  * c-basic-offset: 2
4024  * tab-width: 8
4025  * indent-tabs-mode: nil
4026  * End:
4027  *
4028  * vi: set shiftwidth=2 tabstop=8 expandtab:
4029  * :indentSize=2:tabSize=8:noTabs=true:
4030  */