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