Add some routines to wsutil to, at least on some platforms, add
[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 #if !GLIB_CHECK_VERSION(2,31,0)
954   g_thread_init(NULL);
955 #endif
956 #endif /* _WIN32 */
957
958   /*
959    * Get credential information for later use.
960    */
961   init_process_policies();
962
963   /*
964    * Attempt to get the pathname of the executable file.
965    */
966   init_progfile_dir_error = init_progfile_dir(argv[0], main);
967   if (init_progfile_dir_error != NULL) {
968     fprintf(stderr, "tshark: Can't get pathname of tshark program: %s.\n",
969             init_progfile_dir_error);
970   }
971
972   /*
973    * In order to have the -X opts assigned before the wslua machine starts
974    * we need to call getopts before epan_init() gets called.
975    */
976   opterr = 0;
977   optind_initial = optind;
978
979   while ((opt = getopt(argc, argv, optstring)) != -1) {
980     switch (opt) {
981     case 'C':        /* Configuration Profile */
982       if (profile_exists (optarg, FALSE)) {
983         set_profile_name (optarg);
984       } else {
985         cmdarg_err("Configuration Profile \"%s\" does not exist", optarg);
986         return 1;
987       }
988       break;
989     case 'P':        /* Print packet summary info even when writing to a file */
990       print_packet_info = TRUE;
991       print_summary = TRUE;
992       break;
993     case 'O':        /* Only output these protocols */
994       output_only = g_strdup(optarg);
995       /* FALLTHROUGH */
996     case 'V':        /* Verbose */
997       print_details = TRUE;
998       print_packet_info = TRUE;
999       break;
1000     case 'x':        /* Print packet data in hex (and ASCII) */
1001       print_hex = TRUE;
1002       /*  The user asked for hex output, so let's ensure they get it,
1003        *  even if they're writing to a file.
1004        */
1005       print_packet_info = TRUE;
1006       break;
1007     case 'X':
1008       ex_opt_add(optarg);
1009       break;
1010     default:
1011       break;
1012     }
1013   }
1014
1015   /*
1016    * Print packet summary information is the default, unless either -V or -x
1017    * were specified and -P was not.  Note that this is new behavior, which
1018    * allows for the possibility of printing only hex/ascii output without
1019    * necessarily requiring that either the summary or details be printed too.
1020    */
1021   if (print_summary == -1)
1022     print_summary = (print_details || print_hex) ? FALSE : TRUE;
1023
1024   optind = optind_initial;
1025   opterr = 1;
1026
1027
1028
1029 /** Send All g_log messages to our own handler **/
1030
1031   log_flags =
1032                     G_LOG_LEVEL_ERROR|
1033                     G_LOG_LEVEL_CRITICAL|
1034                     G_LOG_LEVEL_WARNING|
1035                     G_LOG_LEVEL_MESSAGE|
1036                     G_LOG_LEVEL_INFO|
1037                     G_LOG_LEVEL_DEBUG|
1038                     G_LOG_FLAG_FATAL|G_LOG_FLAG_RECURSION;
1039
1040   g_log_set_handler(NULL,
1041                     log_flags,
1042                     tshark_log_handler, NULL /* user_data */);
1043   g_log_set_handler(LOG_DOMAIN_MAIN,
1044                     log_flags,
1045                     tshark_log_handler, NULL /* user_data */);
1046
1047 #ifdef HAVE_LIBPCAP
1048   g_log_set_handler(LOG_DOMAIN_CAPTURE,
1049                     log_flags,
1050                     tshark_log_handler, NULL /* user_data */);
1051   g_log_set_handler(LOG_DOMAIN_CAPTURE_CHILD,
1052                     log_flags,
1053                     tshark_log_handler, NULL /* user_data */);
1054 #endif
1055
1056   initialize_funnel_ops();
1057
1058 #ifdef HAVE_LIBPCAP
1059   capture_opts_init(&global_capture_opts, &cfile);
1060 #endif
1061
1062   timestamp_set_type(TS_RELATIVE);
1063   timestamp_set_precision(TS_PREC_AUTO);
1064   timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1065
1066   /* Register all dissectors; we must do this before checking for the
1067      "-G" flag, as the "-G" flag dumps information registered by the
1068      dissectors, and we must do it before we read the preferences, in
1069      case any dissectors register preferences. */
1070   epan_init(register_all_protocols, register_all_protocol_handoffs, NULL, NULL,
1071             failure_message, open_failure_message, read_failure_message,
1072             write_failure_message);
1073
1074   /* Register all tap listeners; we do this before we parse the arguments,
1075      as the "-z" argument can specify a registered tap. */
1076
1077   /* we register the plugin taps before the other taps because
1078      stats_tree taps plugins will be registered as tap listeners
1079      by stats_tree_stat.c and need to registered before that */
1080 #ifdef HAVE_PLUGINS
1081   register_all_plugin_tap_listeners();
1082 #endif
1083   register_all_tap_listeners();
1084
1085   /* If invoked with the "-G" flag, we dump out information based on
1086      the argument to the "-G" flag; if no argument is specified,
1087      for backwards compatibility we dump out a glossary of display
1088      filter symbols.
1089
1090      XXX - we do this here, for now, to support "-G" with no arguments.
1091      If none of our build or other processes uses "-G" with no arguments,
1092      we can just process it with the other arguments. */
1093   if (argc >= 2 && strcmp(argv[1], "-G") == 0) {
1094     proto_initialize_all_prefixes();
1095
1096     if (argc == 2)
1097       proto_registrar_dump_fields(1);
1098     else {
1099       if (strcmp(argv[2], "fields") == 0)
1100         proto_registrar_dump_fields(1);
1101       else if (strcmp(argv[2], "fields2") == 0)
1102         proto_registrar_dump_fields(2);
1103       else if (strcmp(argv[2], "fields3") == 0)
1104         proto_registrar_dump_fields(3);
1105       else if (strcmp(argv[2], "protocols") == 0)
1106         proto_registrar_dump_protocols();
1107       else if (strcmp(argv[2], "values") == 0)
1108         proto_registrar_dump_values();
1109       else if (strcmp(argv[2], "ftypes") == 0)
1110         proto_registrar_dump_ftypes();
1111       else if (strcmp(argv[2], "decodes") == 0)
1112         dissector_dump_decodes();
1113       else if (strcmp(argv[2], "heuristic-decodes") == 0)
1114         dissector_dump_heur_decodes();
1115       else if (strcmp(argv[2], "defaultprefs") == 0)
1116         write_prefs(NULL);
1117       else if (strcmp(argv[2], "plugins") == 0)
1118         plugins_dump_all();
1119       else if (strcmp(argv[2], "?") == 0)
1120         glossary_option_help();
1121       else if (strcmp(argv[2], "-?") == 0)
1122         glossary_option_help();
1123       else if (strcmp(argv[2], "currentprefs") == 0) {
1124         read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
1125             &pf_open_errno, &pf_read_errno, &pf_path);
1126         write_prefs(NULL);
1127       } else {
1128         cmdarg_err("Invalid \"%s\" option for -G flag, enter -G ? for more help.", argv[2]);
1129         return 1;
1130       }
1131     }
1132     return 0;
1133   }
1134
1135   /* Set the C-language locale to the native environment. */
1136   setlocale(LC_ALL, "");
1137
1138   prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
1139                      &pf_open_errno, &pf_read_errno, &pf_path);
1140   if (gpf_path != NULL) {
1141     if (gpf_open_errno != 0) {
1142       cmdarg_err("Can't open global preferences file \"%s\": %s.",
1143               pf_path, g_strerror(gpf_open_errno));
1144     }
1145     if (gpf_read_errno != 0) {
1146       cmdarg_err("I/O error reading global preferences file \"%s\": %s.",
1147               pf_path, g_strerror(gpf_read_errno));
1148     }
1149   }
1150   if (pf_path != NULL) {
1151     if (pf_open_errno != 0) {
1152       cmdarg_err("Can't open your preferences file \"%s\": %s.", pf_path,
1153               g_strerror(pf_open_errno));
1154     }
1155     if (pf_read_errno != 0) {
1156       cmdarg_err("I/O error reading your preferences file \"%s\": %s.",
1157               pf_path, g_strerror(pf_read_errno));
1158     }
1159     g_free(pf_path);
1160     pf_path = NULL;
1161   }
1162
1163   /* Read the disabled protocols file. */
1164   read_disabled_protos_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
1165                             &dp_path, &dp_open_errno, &dp_read_errno);
1166   if (gdp_path != NULL) {
1167     if (gdp_open_errno != 0) {
1168       cmdarg_err("Could not open global disabled protocols file\n\"%s\": %s.",
1169                  gdp_path, g_strerror(gdp_open_errno));
1170     }
1171     if (gdp_read_errno != 0) {
1172       cmdarg_err("I/O error reading global disabled protocols file\n\"%s\": %s.",
1173                  gdp_path, g_strerror(gdp_read_errno));
1174     }
1175     g_free(gdp_path);
1176   }
1177   if (dp_path != NULL) {
1178     if (dp_open_errno != 0) {
1179       cmdarg_err(
1180         "Could not open your disabled protocols file\n\"%s\": %s.", dp_path,
1181         g_strerror(dp_open_errno));
1182     }
1183     if (dp_read_errno != 0) {
1184       cmdarg_err(
1185         "I/O error reading your disabled protocols file\n\"%s\": %s.", dp_path,
1186         g_strerror(dp_read_errno));
1187     }
1188     g_free(dp_path);
1189   }
1190
1191   check_capture_privs();
1192
1193   cap_file_init(&cfile);
1194
1195   /* Print format defaults to this. */
1196   print_format = PR_FMT_TEXT;
1197
1198   output_fields = output_fields_new();
1199
1200   /* Now get our args */
1201   while ((opt = getopt(argc, argv, optstring)) != -1) {
1202     switch (opt) {
1203     case '2':        /* Perform two pass analysis */
1204       perform_two_pass_analysis = TRUE;
1205       break;
1206     case 'a':        /* autostop criteria */
1207     case 'b':        /* Ringbuffer option */
1208     case 'c':        /* Capture x packets */
1209     case 'f':        /* capture filter */
1210     case 'g':        /* enable group read access on file(s) */
1211     case 'i':        /* Use interface x */
1212     case 'p':        /* Don't capture in promiscuous mode */
1213 #ifdef HAVE_PCAP_REMOTE
1214     case 'A':        /* Authentication */
1215 #endif
1216 #ifdef HAVE_PCAP_CREATE
1217     case 'I':        /* Capture in monitor mode, if available */
1218 #endif
1219     case 's':        /* Set the snapshot (capture) length */
1220     case 'w':        /* Write to capture file x */
1221     case 'y':        /* Set the pcap data link type */
1222 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
1223     case 'B':        /* Buffer size */
1224 #endif /* _WIN32 or HAVE_PCAP_CREATE */
1225 #ifdef HAVE_LIBPCAP
1226       status = capture_opts_add_opt(&global_capture_opts, opt, optarg, &start_capture);
1227       if (status != 0) {
1228         return status;
1229       }
1230 #else
1231       capture_option_specified = TRUE;
1232       arg_error = TRUE;
1233 #endif
1234       break;
1235     case 'C':
1236       /* Configuration profile settings were already processed just ignore them this time*/
1237       break;
1238     case 'd':        /* Decode as rule */
1239       if (!add_decode_as(optarg))
1240         return 1;
1241       break;
1242 #if defined(HAVE_HEIMDAL_KERBEROS) || defined(HAVE_MIT_KERBEROS)
1243     case 'K':        /* Kerberos keytab file */
1244       read_keytab_file(optarg);
1245       break;
1246 #endif
1247     case 'D':        /* Print a list of capture devices and exit */
1248 #ifdef HAVE_LIBPCAP
1249       if_list = capture_interface_list(&err, &err_str);
1250       if (if_list == NULL) {
1251         switch (err) {
1252         case CANT_GET_INTERFACE_LIST:
1253         case DONT_HAVE_PCAP:
1254           cmdarg_err("%s", err_str);
1255           g_free(err_str);
1256           break;
1257
1258         case NO_INTERFACES_FOUND:
1259           cmdarg_err("There are no interfaces on which a capture can be done");
1260           break;
1261         }
1262         return 2;
1263       }
1264       capture_opts_print_interfaces(if_list);
1265       free_interface_list(if_list);
1266       return 0;
1267 #else
1268       capture_option_specified = TRUE;
1269       arg_error = TRUE;
1270 #endif
1271       break;
1272     case 'e':
1273       /* Field entry */
1274       output_fields_add(output_fields, optarg);
1275       break;
1276     case 'E':
1277       /* Field option */
1278       if (!output_fields_set_option(output_fields, optarg)) {
1279         cmdarg_err("\"%s\" is not a valid field output option=value pair.", optarg);
1280         output_fields_list_options(stderr);
1281         return 1;
1282       }
1283       break;
1284     case 'F':
1285       out_file_type = wtap_short_string_to_file_type(optarg);
1286       if (out_file_type < 0) {
1287         cmdarg_err("\"%s\" isn't a valid capture file type", optarg);
1288         list_capture_types();
1289         return 1;
1290       }
1291       break;
1292     case 'W':        /* Select extra information to save in our capture file */
1293       /* This is patterned after the -N flag which may not be the best idea. */
1294       if (strchr(optarg, 'n')) {
1295         out_file_name_res = TRUE;
1296       } else {
1297         cmdarg_err("Invalid -W argument \"%s\"", optarg);
1298         return 1;
1299       }
1300       break;
1301     case 'H':        /* Read address to name mappings from a hosts file */
1302       if (! add_hosts_file(optarg))
1303       {
1304         cmdarg_err("Can't read host entries from \"%s\"", optarg);
1305         return 1;
1306       }
1307       out_file_name_res = TRUE;
1308       break;
1309
1310     case 'h':        /* Print help and exit */
1311       print_usage(TRUE);
1312       return 0;
1313       break;
1314     case 'l':        /* "Line-buffer" standard output */
1315       /* This isn't line-buffering, strictly speaking, it's just
1316          flushing the standard output after the information for
1317          each packet is printed; however, that should be good
1318          enough for all the purposes to which "-l" is put (and
1319          is probably actually better for "-V", as it does fewer
1320          writes).
1321
1322          See the comment in "process_packet()" for an explanation of
1323          why we do that, and why we don't just use "setvbuf()" to
1324          make the standard output line-buffered (short version: in
1325          Windows, "line-buffered" is the same as "fully-buffered",
1326          and the output buffer is only flushed when it fills up). */
1327       line_buffered = TRUE;
1328       break;
1329     case 'L':        /* Print list of link-layer types and exit */
1330 #ifdef HAVE_LIBPCAP
1331       list_link_layer_types = TRUE;
1332 #else
1333       capture_option_specified = TRUE;
1334       arg_error = TRUE;
1335 #endif
1336       break;
1337     case 'n':        /* No name resolution */
1338       gbl_resolv_flags.mac_name = FALSE;
1339       gbl_resolv_flags.network_name = FALSE;
1340       gbl_resolv_flags.transport_name = FALSE;
1341       gbl_resolv_flags.concurrent_dns = FALSE;
1342       break;
1343     case 'N':        /* Select what types of addresses/port #s to resolve */
1344       badopt = string_to_name_resolve(optarg, &gbl_resolv_flags);
1345       if (badopt != '\0') {
1346         cmdarg_err("-N specifies unknown resolving option '%c';",
1347                    badopt);
1348         cmdarg_err_cont( "           Valid options are 'm', 'n', 't', and 'C'");
1349         return 1;
1350       }
1351       break;
1352     case 'o':        /* Override preference from command line */
1353       switch (prefs_set_pref(optarg)) {
1354
1355       case PREFS_SET_OK:
1356         break;
1357
1358       case PREFS_SET_SYNTAX_ERR:
1359         cmdarg_err("Invalid -o flag \"%s\"", optarg);
1360         return 1;
1361         break;
1362
1363       case PREFS_SET_NO_SUCH_PREF:
1364       case PREFS_SET_OBSOLETE:
1365         cmdarg_err("-o flag \"%s\" specifies unknown preference", optarg);
1366         return 1;
1367         break;
1368       }
1369       break;
1370     case 'q':        /* Quiet */
1371       quiet = TRUE;
1372       break;
1373     case 'Q':        /* Really quiet */
1374       quiet = TRUE;
1375       really_quiet = TRUE;
1376       break;
1377     case 'r':        /* Read capture file x */
1378       cf_name = g_strdup(optarg);
1379       break;
1380     case 'R':        /* Read file filter */
1381       rfilter = optarg;
1382       break;
1383     case 'P':
1384         /* already processed; just ignore it now */
1385         break;
1386     case 'S':        /* Set the line Separator to be printed between packets */
1387       separator = strdup(optarg);
1388       break;
1389     case 't':        /* Time stamp type */
1390       if (strcmp(optarg, "r") == 0)
1391         timestamp_set_type(TS_RELATIVE);
1392       else if (strcmp(optarg, "a") == 0)
1393         timestamp_set_type(TS_ABSOLUTE);
1394       else if (strcmp(optarg, "ad") == 0)
1395         timestamp_set_type(TS_ABSOLUTE_WITH_DATE);
1396       else if (strcmp(optarg, "d") == 0)
1397         timestamp_set_type(TS_DELTA);
1398       else if (strcmp(optarg, "dd") == 0)
1399         timestamp_set_type(TS_DELTA_DIS);
1400       else if (strcmp(optarg, "e") == 0)
1401         timestamp_set_type(TS_EPOCH);
1402       else if (strcmp(optarg, "u") == 0)
1403         timestamp_set_type(TS_UTC);
1404       else if (strcmp(optarg, "ud") == 0)
1405         timestamp_set_type(TS_UTC_WITH_DATE);
1406       else {
1407         cmdarg_err("Invalid time stamp type \"%s\"",
1408                    optarg);
1409         cmdarg_err_cont("It must be \"r\" for relative, \"a\" for absolute,");
1410         cmdarg_err_cont("\"ad\" for absolute with date, or \"d\" for delta.");
1411         return 1;
1412       }
1413       break;
1414     case 'T':        /* printing Type */
1415       if (strcmp(optarg, "text") == 0) {
1416         output_action = WRITE_TEXT;
1417         print_format = PR_FMT_TEXT;
1418       } else if (strcmp(optarg, "ps") == 0) {
1419         output_action = WRITE_TEXT;
1420         print_format = PR_FMT_PS;
1421       } else if (strcmp(optarg, "pdml") == 0) {
1422         output_action = WRITE_XML;
1423         print_details = TRUE;   /* Need details */
1424         print_summary = FALSE;  /* Don't allow summary */
1425       } else if (strcmp(optarg, "psml") == 0) {
1426         output_action = WRITE_XML;
1427         print_details = FALSE;  /* Don't allow details */
1428         print_summary = TRUE;   /* Need summary */
1429       } else if (strcmp(optarg, "fields") == 0) {
1430         output_action = WRITE_FIELDS;
1431         print_details = TRUE;   /* Need full tree info */
1432         print_summary = FALSE;  /* Don't allow summary */
1433       } else {
1434         cmdarg_err("Invalid -T parameter.");
1435         cmdarg_err_cont("It must be \"ps\", \"text\", \"pdml\", \"psml\" or \"fields\".");
1436         return 1;
1437       }
1438       break;
1439     case 'u':        /* Seconds type */
1440       if (strcmp(optarg, "s") == 0)
1441         timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1442       else if (strcmp(optarg, "hms") == 0)
1443         timestamp_set_seconds_type(TS_SECONDS_HOUR_MIN_SEC);
1444       else {
1445         cmdarg_err("Invalid seconds type \"%s\"", optarg);
1446         cmdarg_err_cont("It must be \"s\" for seconds or \"hms\" for hours, minutes and seconds.");
1447         return 1;
1448       }
1449       break;
1450     case 'v':         /* Show version and exit */
1451     {
1452       show_version(comp_info_str, runtime_info_str);
1453       g_string_free(comp_info_str, TRUE);
1454       g_string_free(runtime_info_str, TRUE);
1455       return 0;
1456     }
1457     case 'O':        /* Only output these protocols */
1458       /* already processed; just ignore it now */
1459       break;
1460     case 'V':        /* Verbose */
1461       /* already processed; just ignore it now */
1462       break;
1463     case 'x':        /* Print packet data in hex (and ASCII) */
1464       /* already processed; just ignore it now */
1465       break;
1466     case 'X':
1467       break;
1468     case 'z':
1469       /* We won't call the init function for the stat this soon
1470          as it would disallow MATE's fields (which are registered
1471          by the preferences set callback) from being used as
1472          part of a tap filter.  Instead, we just add the argument
1473          to a list of stat arguments. */
1474       if (!process_stat_cmd_arg(optarg)) {
1475         cmdarg_err("Invalid -z argument \"%s\".", optarg);
1476         cmdarg_err_cont("  -z argument must be one of :");
1477         list_stat_cmd_args();
1478         return 1;
1479       }
1480       break;
1481     default:
1482     case '?':        /* Bad flag - print usage message */
1483       switch(optopt) {
1484       case 'F':
1485         list_capture_types();
1486         break;
1487       default:
1488         print_usage(TRUE);
1489       }
1490       return 1;
1491       break;
1492     }
1493   }
1494
1495   /* If we specified output fields, but not the output field type... */
1496   if (WRITE_FIELDS != output_action && 0 != output_fields_num_fields(output_fields)) {
1497         cmdarg_err("Output fields were specified with \"-e\", "
1498             "but \"-Tfields\" was not specified.");
1499         return 1;
1500   } else if (WRITE_FIELDS == output_action && 0 == output_fields_num_fields(output_fields)) {
1501         cmdarg_err("\"-Tfields\" was specified, but no fields were "
1502                     "specified with \"-e\".");
1503
1504         return 1;
1505   }
1506
1507   /* If no capture filter or read filter has been specified, and there are
1508      still command-line arguments, treat them as the tokens of a capture
1509      filter (if no "-r" flag was specified) or a read filter (if a "-r"
1510      flag was specified. */
1511   if (optind < argc) {
1512     if (cf_name != NULL) {
1513       if (rfilter != NULL) {
1514         cmdarg_err("Read filters were specified both with \"-R\" "
1515             "and with additional command-line arguments.");
1516         return 1;
1517       }
1518       rfilter = get_args_as_string(argc, argv, optind);
1519     } else {
1520 #ifdef HAVE_LIBPCAP
1521       guint i;
1522
1523       if (global_capture_opts.default_options.cfilter) {
1524         cmdarg_err("A default capture filter was specified both with \"-f\""
1525             " and with additional command-line arguments.");
1526         return 1;
1527       }
1528       for (i = 0; i < global_capture_opts.ifaces->len; i++) {
1529         interface_options interface_opts;
1530         interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
1531         if (interface_opts.cfilter == NULL) {
1532           interface_opts.cfilter = get_args_as_string(argc, argv, optind);
1533           global_capture_opts.ifaces = g_array_remove_index(global_capture_opts.ifaces, i);
1534           g_array_insert_val(global_capture_opts.ifaces, i, interface_opts);
1535         } else {
1536           cmdarg_err("A capture filter was specified both with \"-f\""
1537               " and with additional command-line arguments.");
1538           return 1;
1539         }
1540       }
1541       global_capture_opts.default_options.cfilter = get_args_as_string(argc, argv, optind);
1542 #else
1543       capture_option_specified = TRUE;
1544 #endif
1545     }
1546   }
1547
1548 #ifdef HAVE_LIBPCAP
1549   if (!global_capture_opts.saving_to_file) {
1550     /* We're not saving the capture to a file; if "-q" wasn't specified,
1551        we should print packet information */
1552     if (!quiet)
1553       print_packet_info = TRUE;
1554   } else {
1555     /* We're saving to a file; if we're writing to the standard output.
1556        and we'll also be writing dissected packets to the standard
1557        output, reject the request.  At best, we could redirect that
1558        to the standard error; we *can't* write both to the standard
1559        output and have either of them be useful. */
1560     if (strcmp(global_capture_opts.save_file, "-") == 0 && print_packet_info) {
1561       cmdarg_err("You can't write both raw packet data and dissected packets"
1562           " to the standard output.");
1563       return 1;
1564     }
1565   }
1566 #else
1567   /* We're not saving the capture to a file; if "-q" wasn't specified,
1568      we should print packet information */
1569   if (!quiet)
1570     print_packet_info = TRUE;
1571 #endif
1572
1573 #ifndef HAVE_LIBPCAP
1574   if (capture_option_specified)
1575     cmdarg_err("This version of TShark was not built with support for capturing packets.");
1576 #endif
1577   if (arg_error) {
1578     print_usage(FALSE);
1579     return 1;
1580   }
1581
1582   /* We don't support capture filters when reading from a capture file
1583      (the BPF compiler doesn't support all link-layer types that we
1584      support in capture files we read). */
1585 #ifdef HAVE_LIBPCAP
1586   if (cf_name != NULL) {
1587     if (global_capture_opts.default_options.cfilter) {
1588       cmdarg_err("Only read filters, not capture filters, "
1589           "can be specified when reading a capture file.");
1590       return 1;
1591     }
1592   }
1593 #endif
1594
1595   if (print_hex) {
1596     if (output_action != WRITE_TEXT) {
1597       cmdarg_err("Raw packet hex data can only be printed as text or PostScript");
1598       return 1;
1599     }
1600   }
1601
1602   if (output_only != NULL) {
1603     char *ps;
1604
1605     if (!print_details) {
1606       cmdarg_err("-O requires -V");
1607       return 1;
1608     }
1609
1610     output_only_tables = g_hash_table_new (g_str_hash, g_str_equal);
1611     for (ps = strtok (output_only, ","); ps; ps = strtok (NULL, ",")) {
1612       g_hash_table_insert(output_only_tables, (gpointer)ps, (gpointer)ps);
1613     }
1614   }
1615
1616 #ifdef HAVE_LIBPCAP
1617   if (list_link_layer_types) {
1618     /* We're supposed to list the link-layer types for an interface;
1619        did the user also specify a capture file to be read? */
1620     if (cf_name) {
1621       /* Yes - that's bogus. */
1622       cmdarg_err("You can't specify -L and a capture file to be read.");
1623       return 1;
1624     }
1625     /* No - did they specify a ring buffer option? */
1626     if (global_capture_opts.multi_files_on) {
1627       cmdarg_err("Ring buffer requested, but a capture isn't being done.");
1628       return 1;
1629     }
1630   } else {
1631     if (cf_name) {
1632       /*
1633        * "-r" was specified, so we're reading a capture file.
1634        * Capture options don't apply here.
1635        */
1636       if (global_capture_opts.multi_files_on) {
1637         cmdarg_err("Multiple capture files requested, but "
1638                    "a capture isn't being done.");
1639         return 1;
1640       }
1641       if (global_capture_opts.has_file_duration) {
1642         cmdarg_err("Switching capture files after a time interval was specified, but "
1643                    "a capture isn't being done.");
1644         return 1;
1645       }
1646       if (global_capture_opts.has_ring_num_files) {
1647         cmdarg_err("A ring buffer of capture files was specified, but "
1648           "a capture isn't being done.");
1649         return 1;
1650       }
1651       if (global_capture_opts.has_autostop_files) {
1652         cmdarg_err("A maximum number of capture files was specified, but "
1653           "a capture isn't being done.");
1654         return 1;
1655       }
1656
1657       /* Note: TShark now allows the restriction of a _read_ file by packet count
1658        * and byte count as well as a write file. Other autostop options remain valid
1659        * only for a write file.
1660        */
1661       if (global_capture_opts.has_autostop_duration) {
1662         cmdarg_err("A maximum capture time was specified, but "
1663           "a capture isn't being done.");
1664         return 1;
1665       }
1666     } else {
1667       /*
1668        * "-r" wasn't specified, so we're doing a live capture.
1669        */
1670       if (global_capture_opts.saving_to_file) {
1671         /* They specified a "-w" flag, so we'll be saving to a capture file. */
1672
1673         /* When capturing, we only support writing pcap or pcap-ng format. */
1674         if (out_file_type != WTAP_FILE_PCAP && out_file_type != WTAP_FILE_PCAPNG) {
1675           cmdarg_err("Live captures can only be saved in libpcap format.");
1676           return 1;
1677         }
1678         if (global_capture_opts.multi_files_on) {
1679           /* Multiple-file mode doesn't work under certain conditions:
1680              a) it doesn't work if you're writing to the standard output;
1681              b) it doesn't work if you're writing to a pipe;
1682           */
1683           if (strcmp(global_capture_opts.save_file, "-") == 0) {
1684             cmdarg_err("Multiple capture files requested, but "
1685               "the capture is being written to the standard output.");
1686             return 1;
1687           }
1688           if (global_capture_opts.output_to_pipe) {
1689             cmdarg_err("Multiple capture files requested, but "
1690               "the capture file is a pipe.");
1691             return 1;
1692           }
1693           if (!global_capture_opts.has_autostop_filesize &&
1694               !global_capture_opts.has_file_duration) {
1695             cmdarg_err("Multiple capture files requested, but "
1696               "no maximum capture file size or duration was specified.");
1697             return 1;
1698           }
1699         }
1700         /* Currently, we don't support read filters when capturing
1701            and saving the packets. */
1702         if (rfilter != NULL) {
1703           cmdarg_err("Read filters aren't supported when capturing and saving the captured packets.");
1704           return 1;
1705         }
1706       } else {
1707         /* They didn't specify a "-w" flag, so we won't be saving to a
1708            capture file.  Check for options that only make sense if
1709            we're saving to a file. */
1710         if (global_capture_opts.has_autostop_filesize) {
1711           cmdarg_err("Maximum capture file size specified, but "
1712            "capture isn't being saved to a file.");
1713           return 1;
1714         }
1715         if (global_capture_opts.multi_files_on) {
1716           cmdarg_err("Multiple capture files requested, but "
1717             "the capture isn't being saved to a file.");
1718           return 1;
1719         }
1720       }
1721     }
1722   }
1723 #endif
1724
1725 #ifdef _WIN32
1726   /* Start windows sockets */
1727   WSAStartup( MAKEWORD( 1, 1 ), &wsaData );
1728 #endif /* _WIN32 */
1729
1730   /* Notify all registered modules that have had any of their preferences
1731      changed either from one of the preferences file or from the command
1732      line that their preferences have changed. */
1733   prefs_apply_all();
1734
1735   /* At this point MATE will have registered its field array so we can
1736      have a tap filter with one of MATE's late-registered fields as part
1737      of the filter.  We can now process all the "-z" arguments. */
1738   start_requested_stats();
1739
1740 #ifdef HAVE_LIBPCAP
1741   /* We currently don't support taps, or printing dissected packets,
1742      if we're writing to a pipe. */
1743   if (global_capture_opts.saving_to_file &&
1744       global_capture_opts.output_to_pipe) {
1745     if (tap_listeners_require_dissection()) {
1746       cmdarg_err("Taps aren't supported when saving to a pipe.");
1747       return 1;
1748     }
1749     if (print_packet_info) {
1750       cmdarg_err("Printing dissected packets isn't supported when saving to a pipe.");
1751       return 1;
1752     }
1753   }
1754 #endif
1755
1756   /* disabled protocols as per configuration file */
1757   if (gdp_path == NULL && dp_path == NULL) {
1758     set_disabled_protos_list();
1759   }
1760
1761   /* Build the column format array */
1762   build_column_format_array(&cfile.cinfo, prefs_p->num_cols, TRUE);
1763
1764 #ifdef HAVE_LIBPCAP
1765   capture_opts_trim_snaplen(&global_capture_opts, MIN_PACKET_SIZE);
1766   capture_opts_trim_ring_num_files(&global_capture_opts);
1767 #endif
1768
1769   if (rfilter != NULL) {
1770     if (!dfilter_compile(rfilter, &rfcode)) {
1771       cmdarg_err("%s", dfilter_error_msg);
1772       epan_cleanup();
1773 #ifdef HAVE_PCAP_OPEN_DEAD
1774       {
1775         pcap_t *pc;
1776
1777         pc = pcap_open_dead(DLT_EN10MB, MIN_PACKET_SIZE);
1778         if (pc != NULL) {
1779           if (pcap_compile(pc, &fcode, rfilter, 0, 0) != -1) {
1780             cmdarg_err_cont(
1781               "  Note: That display filter code looks like a valid capture filter;");
1782             cmdarg_err_cont(
1783               "        maybe you mixed them up?");
1784           }
1785           pcap_close(pc);
1786         }
1787       }
1788 #endif
1789       return 2;
1790     }
1791   }
1792   cfile.rfcode = rfcode;
1793
1794   if (print_packet_info) {
1795     /* If we're printing as text or PostScript, we have
1796        to create a print stream. */
1797     if (output_action == WRITE_TEXT) {
1798       switch (print_format) {
1799
1800       case PR_FMT_TEXT:
1801         print_stream = print_stream_text_stdio_new(stdout);
1802         break;
1803
1804       case PR_FMT_PS:
1805         print_stream = print_stream_ps_stdio_new(stdout);
1806         break;
1807
1808       default:
1809         g_assert_not_reached();
1810       }
1811     }
1812   }
1813
1814   /* We have to dissect each packet if:
1815
1816         we're printing information about each packet;
1817
1818         we're using a read filter on the packets;
1819
1820         we're using any taps that need dissection. */
1821   do_dissection = print_packet_info || rfcode || tap_listeners_require_dissection();
1822
1823   if (cf_name) {
1824     /*
1825      * We're reading a capture file.
1826      */
1827
1828     /*
1829      * Immediately relinquish any special privileges we have; we must not
1830      * be allowed to read any capture files the user running TShark
1831      * can't open.
1832      */
1833     relinquish_special_privs_perm();
1834     print_current_user();
1835
1836     if (cf_open(&cfile, cf_name, FALSE, &err) != CF_OK) {
1837       epan_cleanup();
1838       return 2;
1839     }
1840
1841     /* Set timestamp precision; there should arguably be a command-line
1842        option to let the user set this. */
1843     switch(wtap_file_tsprecision(cfile.wth)) {
1844     case(WTAP_FILE_TSPREC_SEC):
1845       timestamp_set_precision(TS_PREC_AUTO_SEC);
1846       break;
1847     case(WTAP_FILE_TSPREC_DSEC):
1848       timestamp_set_precision(TS_PREC_AUTO_DSEC);
1849       break;
1850     case(WTAP_FILE_TSPREC_CSEC):
1851       timestamp_set_precision(TS_PREC_AUTO_CSEC);
1852       break;
1853     case(WTAP_FILE_TSPREC_MSEC):
1854       timestamp_set_precision(TS_PREC_AUTO_MSEC);
1855       break;
1856     case(WTAP_FILE_TSPREC_USEC):
1857       timestamp_set_precision(TS_PREC_AUTO_USEC);
1858       break;
1859     case(WTAP_FILE_TSPREC_NSEC):
1860       timestamp_set_precision(TS_PREC_AUTO_NSEC);
1861       break;
1862     default:
1863       g_assert_not_reached();
1864     }
1865
1866     /* Process the packets in the file */
1867     TRY {
1868 #ifdef HAVE_LIBPCAP
1869       err = load_cap_file(&cfile, global_capture_opts.save_file, out_file_type, out_file_name_res,
1870           global_capture_opts.has_autostop_packets ? global_capture_opts.autostop_packets : 0,
1871           global_capture_opts.has_autostop_filesize ? global_capture_opts.autostop_filesize : 0);
1872 #else
1873       err = load_cap_file(&cfile, NULL, out_file_type, out_file_name_res, 0, 0);
1874 #endif
1875     }
1876     CATCH(OutOfMemoryError) {
1877       fprintf(stderr,
1878               "Out Of Memory!\n"
1879               "\n"
1880               "Sorry, but TShark has to terminate now!\n"
1881               "\n"
1882               "Some infos / workarounds can be found at:\n"
1883               "http://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
1884       err = ENOMEM;
1885     }
1886     ENDTRY;
1887     if (err != 0) {
1888       /* We still dump out the results of taps, etc., as we might have
1889          read some packets; however, we exit with an error status. */
1890       exit_status = 2;
1891     }
1892   } else {
1893     /* No capture file specified, so we're supposed to do a live capture
1894        (or get a list of link-layer types for a live capture device);
1895        do we have support for live captures? */
1896 #ifdef HAVE_LIBPCAP
1897     /* trim the interface name and exit if that failed */
1898     exit_status = capture_opts_trim_iface(&global_capture_opts,
1899         ((prefs_p->capture_device) && (*prefs_p->capture_device != '\0')) ? get_if_name(prefs_p->capture_device) : NULL);
1900     if (exit_status != 0)
1901         return exit_status;
1902
1903     /* if requested, list the link layer types and exit */
1904     if (list_link_layer_types) {
1905         guint i;
1906
1907         /* Get the list of link-layer types for the capture devices. */
1908         for (i = 0; i < global_capture_opts.ifaces->len; i++) {
1909           interface_options  interface_opts;
1910           if_capabilities_t *caps;
1911
1912           interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
1913           caps = capture_get_if_capabilities(interface_opts.name, interface_opts.monitor_mode, &err_str);
1914           if (caps == NULL) {
1915             cmdarg_err("%s", err_str);
1916             g_free(err_str);
1917             return 2;
1918           }
1919           if (caps->data_link_types == NULL) {
1920             cmdarg_err("The capture device \"%s\" has no data link types.", interface_opts.name);
1921             return 2;
1922           }
1923           capture_opts_print_if_capabilities(caps, interface_opts.name, interface_opts.monitor_mode);
1924           free_if_capabilities(caps);
1925         }
1926         return 0;
1927     }
1928
1929     if (print_packet_info) {
1930       if (!write_preamble(NULL)) {
1931         show_print_file_io_error(errno);
1932         return 2;
1933       }
1934     } else if (!quiet) {
1935       /*
1936        * We're not printing information for each packet, and the user
1937        * didn't ask us not to print a count of packets as they arrive,
1938        * so print that count so the user knows that packets are arriving.
1939        *
1940        * XXX - what if the user wants to do a live capture, doesn't want
1941        * to save it to a file, doesn't want information printed for each
1942        * packet, does want some "-z" statistic, and wants packet counts
1943        * so they know whether they're seeing any packets?
1944        */
1945       print_packet_counts = TRUE;
1946     }
1947
1948     /* For now, assume libpcap gives microsecond precision. */
1949     timestamp_set_precision(TS_PREC_AUTO_USEC);
1950
1951     /*
1952      * XXX - this returns FALSE if an error occurred, but it also
1953      * returns FALSE if the capture stops because a time limit
1954      * was reached (and possibly other limits), so we can't assume
1955      * it means an error.
1956      *
1957      * The capture code is a bit twisty, so it doesn't appear to
1958      * be an easy fix.  We just ignore the return value for now.
1959      * Instead, pass on the exit status from the capture child.
1960      */
1961     capture();
1962     exit_status = global_capture_opts.fork_child_status;
1963
1964     if (print_packet_info) {
1965       if (!write_finale()) {
1966         err = errno;
1967         show_print_file_io_error(err);
1968       }
1969     }
1970 #else
1971     /* No - complain. */
1972     cmdarg_err("This version of TShark was not built with support for capturing packets.");
1973     return 2;
1974 #endif
1975   }
1976
1977   g_free(cf_name);
1978
1979   if (cfile.frames != NULL) {
1980     free_frame_data_sequence(cfile.frames);
1981     cfile.frames = NULL;
1982   }
1983
1984   draw_tap_listeners(TRUE);
1985   funnel_dump_all_text_windows();
1986   epan_cleanup();
1987
1988   output_fields_free(output_fields);
1989   output_fields = NULL;
1990
1991   return exit_status;
1992 }
1993
1994 /*#define USE_BROKEN_G_MAIN_LOOP*/
1995
1996 #ifdef USE_BROKEN_G_MAIN_LOOP
1997   GMainLoop *loop;
1998 #else
1999   gboolean loop_running = FALSE;
2000 #endif
2001   guint32 packet_count = 0;
2002
2003
2004 /* XXX - move to the right position / file */
2005 /* read from a pipe (callback) */
2006 typedef gboolean (*pipe_input_cb_t) (gint source, gpointer user_data);
2007
2008 typedef struct pipe_input_tag {
2009   gint             source;
2010   gpointer         user_data;
2011   int             *child_process;
2012   pipe_input_cb_t  input_cb;
2013   guint            pipe_input_id;
2014 #ifdef _WIN32
2015   GMutex          *callback_running;
2016 #endif
2017 } pipe_input_t;
2018
2019 static pipe_input_t pipe_input;
2020
2021 #ifdef _WIN32
2022 /* The timer has expired, see if there's stuff to read from the pipe,
2023    if so, do the callback */
2024 static gint
2025 pipe_timer_cb(gpointer data)
2026 {
2027   HANDLE        handle;
2028   DWORD         avail        = 0;
2029   gboolean      result;
2030   DWORD         childstatus;
2031   pipe_input_t *pipe_input_p = data;
2032   gint          iterations   = 0;
2033
2034   g_mutex_lock (pipe_input_p->callback_running);
2035
2036   /* try to read data from the pipe only 5 times, to avoid blocking */
2037   while(iterations < 5) {
2038     /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: new iteration");*/
2039
2040     /* Oddly enough although Named pipes don't work on win9x,
2041        PeekNamedPipe does !!! */
2042     handle = (HANDLE) _get_osfhandle (pipe_input_p->source);
2043     result = PeekNamedPipe(handle, NULL, 0, NULL, &avail, NULL);
2044
2045     /* Get the child process exit status */
2046     GetExitCodeProcess((HANDLE)*(pipe_input_p->child_process),
2047                        &childstatus);
2048
2049     /* If the Peek returned an error, or there are bytes to be read
2050        or the childwatcher thread has terminated then call the normal
2051        callback */
2052     if (!result || avail > 0 || childstatus != STILL_ACTIVE) {
2053
2054       /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: data avail");*/
2055
2056       /* And call the real handler */
2057       if (!pipe_input_p->input_cb(pipe_input_p->source, pipe_input_p->user_data)) {
2058         g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: input pipe closed, iterations: %u", iterations);
2059         /* pipe closed, return false so that the timer is stopped */
2060         g_mutex_unlock (pipe_input_p->callback_running);
2061         return FALSE;
2062       }
2063     }
2064     else {
2065       /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: no data avail");*/
2066       /* No data, stop now */
2067       break;
2068     }
2069
2070     iterations++;
2071   }
2072
2073   /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: finished with iterations: %u, new timer", iterations);*/
2074
2075   g_mutex_unlock (pipe_input_p->callback_running);
2076
2077   /* we didn't stopped the timer, so let it run */
2078   return TRUE;
2079 }
2080 #endif
2081
2082
2083 void
2084 pipe_input_set_handler(gint source, gpointer user_data, int *child_process, pipe_input_cb_t input_cb)
2085 {
2086
2087   pipe_input.source         = source;
2088   pipe_input.child_process  = child_process;
2089   pipe_input.user_data      = user_data;
2090   pipe_input.input_cb       = input_cb;
2091
2092 #ifdef _WIN32
2093 #if GLIB_CHECK_VERSION(2,31,0)
2094   pipe_input.callback_running = g_malloc(sizeof(GMutex));
2095   g_mutex_init(pipe_input.callback_running);
2096 #else
2097   pipe_input.callback_running = g_mutex_new();
2098 #endif
2099   /* Tricky to use pipes in win9x, as no concept of wait.  NT can
2100      do this but that doesn't cover all win32 platforms.  GTK can do
2101      this but doesn't seem to work over processes.  Attempt to do
2102      something similar here, start a timer and check for data on every
2103      timeout. */
2104   /*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_input_set_handler: new");*/
2105   pipe_input.pipe_input_id = g_timeout_add(200, pipe_timer_cb, &pipe_input);
2106 #endif
2107 }
2108
2109
2110 #ifdef HAVE_LIBPCAP
2111 static gboolean
2112 capture(void)
2113 {
2114   gboolean          ret;
2115   guint             i;
2116   GString          *str = g_string_new("");
2117 #ifdef USE_TSHARK_SELECT
2118   fd_set            readfds;
2119 #endif
2120 #ifndef _WIN32
2121   struct sigaction  action, oldaction;
2122 #endif
2123
2124   /*
2125    * XXX - dropping privileges is still required, until code cleanup is done
2126    *
2127    * remove all dependencies to pcap specific code and using only dumpcap is almost done.
2128    * when it's done, we don't need special privileges to run tshark at all,
2129    * therefore we don't need to drop these privileges
2130    * The only thing we might want to keep is a warning if tshark is run as root,
2131    * as it's no longer necessary and potentially dangerous.
2132    *
2133    * THE FOLLOWING IS THE FORMER COMMENT WHICH IS NO LONGER REALLY VALID:
2134    * We've opened the capture device, so we shouldn't need any special
2135    * privileges any more; relinquish those privileges.
2136    *
2137    * XXX - if we have saved set-user-ID support, we should give up those
2138    * privileges immediately, and then reclaim them long enough to get
2139    * a list of network interfaces and to open one, and then give them
2140    * up again, so that stuff we do while processing the argument list,
2141    * reading the user's preferences, loading and starting plugins
2142    * (especially *user* plugins), etc. is done with the user's privileges,
2143    * not special privileges.
2144    */
2145   relinquish_special_privs_perm();
2146   print_current_user();
2147
2148   /* Cleanup all data structures used for dissection. */
2149   cleanup_dissection();
2150   /* Initialize all data structures used for dissection. */
2151   init_dissection();
2152
2153 #ifdef _WIN32
2154   /* Catch a CTRL+C event and, if we get it, clean up and exit. */
2155   SetConsoleCtrlHandler(capture_cleanup, TRUE);
2156 #else /* _WIN32 */
2157   /* Catch SIGINT and SIGTERM and, if we get either of them,
2158      clean up and exit.  If SIGHUP isn't being ignored, catch
2159      it too and, if we get it, clean up and exit.
2160
2161      We restart any read that was in progress, so that it doesn't
2162      disrupt reading from the sync pipe.  The signal handler tells
2163      the capture child to finish; it will report that it finished,
2164      or will exit abnormally, so  we'll stop reading from the sync
2165      pipe, pick up the exit status, and quit. */
2166   memset(&action, 0, sizeof(action));
2167   action.sa_handler = capture_cleanup;
2168   action.sa_flags = SA_RESTART;
2169   sigemptyset(&action.sa_mask);
2170   sigaction(SIGTERM, &action, NULL);
2171   sigaction(SIGINT, &action, NULL);
2172   sigaction(SIGHUP, NULL, &oldaction);
2173   if (oldaction.sa_handler == SIG_DFL)
2174     sigaction(SIGHUP, &action, NULL);
2175
2176 #ifdef SIGINFO
2177   /* Catch SIGINFO and, if we get it and we're capturing to a file in
2178      quiet mode, report the number of packets we've captured.
2179
2180      Again, restart any read that was in progress, so that it doesn't
2181      disrupt reading from the sync pipe. */
2182   action.sa_handler = report_counts_siginfo;
2183   action.sa_flags = SA_RESTART;
2184   sigemptyset(&action.sa_mask);
2185   sigaction(SIGINFO, &action, NULL);
2186 #endif /* SIGINFO */
2187 #endif /* _WIN32 */
2188
2189   global_capture_opts.state = CAPTURE_PREPARING;
2190
2191   /* Let the user know which interfaces were chosen. */
2192   for (i = 0; i < global_capture_opts.ifaces->len; i++) {
2193     interface_options interface_opts;
2194
2195     interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
2196     interface_opts.descr = get_interface_descriptive_name(interface_opts.name);
2197     global_capture_opts.ifaces = g_array_remove_index(global_capture_opts.ifaces, i);
2198     g_array_insert_val(global_capture_opts.ifaces, i, interface_opts);
2199   }
2200 #ifdef _WIN32
2201   if (global_capture_opts.ifaces->len < 2) {
2202 #else
2203   if (global_capture_opts.ifaces->len < 4) {
2204 #endif
2205     for (i = 0; i < global_capture_opts.ifaces->len; i++) {
2206       interface_options interface_opts;
2207
2208       interface_opts = g_array_index(global_capture_opts.ifaces, interface_options, i);
2209       if (i > 0) {
2210           if (global_capture_opts.ifaces->len > 2) {
2211               g_string_append_printf(str, ",");
2212           }
2213           g_string_append_printf(str, " ");
2214           if (i == global_capture_opts.ifaces->len - 1) {
2215               g_string_append_printf(str, "and ");
2216           }
2217       }
2218       g_string_append_printf(str, "'%s'", interface_opts.descr);
2219     }
2220   } else {
2221     g_string_append_printf(str, "%u interfaces", global_capture_opts.ifaces->len);
2222   }
2223   if (really_quiet == FALSE)
2224     fprintf(stderr, "Capturing on %s\n", str->str);
2225   fflush(stderr);
2226   g_string_free(str, TRUE);
2227
2228   ret = sync_pipe_start(&global_capture_opts);
2229
2230   if (!ret)
2231     return FALSE;
2232
2233   /* the actual capture loop
2234    *
2235    * XXX - glib doesn't seem to provide any event based loop handling.
2236    *
2237    * XXX - for whatever reason,
2238    * calling g_main_loop_new() ends up in 100% cpu load.
2239    *
2240    * But that doesn't matter: in UNIX we can use select() to find an input
2241    * source with something to do.
2242    *
2243    * But that doesn't matter because we're in a CLI (that doesn't need to
2244    * update a GUI or something at the same time) so it's OK if we block
2245    * trying to read from the pipe.
2246    *
2247    * So all the stuff in USE_TSHARK_SELECT could be removed unless I'm
2248    * wrong (but I leave it there in case I am...).
2249    */
2250
2251 #ifdef USE_TSHARK_SELECT
2252   FD_ZERO(&readfds);
2253   FD_SET(pipe_input.source, &readfds);
2254 #endif
2255
2256   loop_running = TRUE;
2257
2258   TRY
2259   {
2260     while (loop_running)
2261     {
2262 #ifdef USE_TSHARK_SELECT
2263       ret = select(pipe_input.source+1, &readfds, NULL, NULL, NULL);
2264
2265       if (ret == -1)
2266       {
2267         perror("select()");
2268         return TRUE;
2269       } else if (ret == 1) {
2270 #endif
2271         /* Call the real handler */
2272         if (!pipe_input.input_cb(pipe_input.source, pipe_input.user_data)) {
2273           g_log(NULL, G_LOG_LEVEL_DEBUG, "input pipe closed");
2274           return FALSE;
2275         }
2276 #ifdef USE_TSHARK_SELECT
2277       }
2278 #endif
2279     }
2280   }
2281   CATCH(OutOfMemoryError) {
2282     fprintf(stderr,
2283             "Out Of Memory!\n"
2284             "\n"
2285             "Sorry, but TShark has to terminate now!\n"
2286             "\n"
2287             "Some infos / workarounds can be found at:\n"
2288             "http://wiki.wireshark.org/KnownBugs/OutOfMemory\n");
2289     exit(1);
2290   }
2291   ENDTRY;
2292   return TRUE;
2293 }
2294
2295
2296 /* XXX - move the call to main_window_update() out of capture_sync.c */
2297 /* dummy for capture_sync.c to make linker happy */
2298 void main_window_update(void)
2299 {
2300 }
2301
2302 /* capture child detected an error */
2303 void
2304 capture_input_error_message(capture_options *capture_opts _U_, char *error_msg, char *secondary_error_msg)
2305 {
2306   cmdarg_err("%s", error_msg);
2307   cmdarg_err_cont("%s", secondary_error_msg);
2308 }
2309
2310
2311 /* capture child detected an capture filter related error */
2312 void
2313 capture_input_cfilter_error_message(capture_options *capture_opts, guint i, char *error_message)
2314 {
2315   dfilter_t         *rfcode = NULL;
2316   interface_options  interface_opts;
2317
2318   g_assert(i < capture_opts->ifaces->len);
2319   interface_opts = g_array_index(capture_opts->ifaces, interface_options, i);
2320
2321   if (dfilter_compile(interface_opts.cfilter, &rfcode) && rfcode != NULL) {
2322     cmdarg_err(
2323       "Invalid capture filter \"%s\" for interface %s!\n"
2324       "\n"
2325       "That string looks like a valid display filter; however, it isn't a valid\n"
2326       "capture filter (%s).\n"
2327       "\n"
2328       "Note that display filters and capture filters don't have the same syntax,\n"
2329       "so you can't use most display filter expressions as capture filters.\n"
2330       "\n"
2331       "See the User's Guide for a description of the capture filter syntax.",
2332       interface_opts.cfilter, interface_opts.descr, error_message);
2333     dfilter_free(rfcode);
2334   } else {
2335     cmdarg_err(
2336       "Invalid capture filter \"%s\" for interface %s!\n"
2337       "\n"
2338       "That string isn't a valid capture filter (%s).\n"
2339       "See the User's Guide for a description of the capture filter syntax.",
2340       interface_opts.cfilter, interface_opts.descr, error_message);
2341   }
2342 }
2343
2344
2345 /* capture child tells us we have a new (or the first) capture file */
2346 gboolean
2347 capture_input_new_file(capture_options *capture_opts, gchar *new_file)
2348 {
2349   gboolean is_tempfile;
2350   int      err;
2351
2352   if (capture_opts->state == CAPTURE_PREPARING) {
2353     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture started!");
2354   }
2355   g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "File: \"%s\"", new_file);
2356
2357   g_assert(capture_opts->state == CAPTURE_PREPARING || capture_opts->state == CAPTURE_RUNNING);
2358
2359   /* free the old filename */
2360   if (capture_opts->save_file != NULL) {
2361
2362     /* we start a new capture file, close the old one (if we had one before) */
2363     if ( ((capture_file *) capture_opts->cf)->state != FILE_CLOSED) {
2364       if ( ((capture_file *) capture_opts->cf)->wth != NULL) {
2365         wtap_close(((capture_file *) capture_opts->cf)->wth);
2366       }
2367       ((capture_file *) capture_opts->cf)->state = FILE_CLOSED;
2368     }
2369
2370     g_free(capture_opts->save_file);
2371     is_tempfile = FALSE;
2372   } else {
2373     /* we didn't had a save_file before, must be a tempfile */
2374     is_tempfile = TRUE;
2375   }
2376
2377   /* save the new filename */
2378   capture_opts->save_file = g_strdup(new_file);
2379
2380   /* if we are in real-time mode, open the new file now */
2381   if (do_dissection) {
2382     /* Attempt to open the capture file and set up to read from it. */
2383     switch(cf_open(capture_opts->cf, capture_opts->save_file, is_tempfile, &err)) {
2384     case CF_OK:
2385       break;
2386     case CF_ERROR:
2387       /* Don't unlink (delete) the save file - leave it around,
2388          for debugging purposes. */
2389       g_free(capture_opts->save_file);
2390       capture_opts->save_file = NULL;
2391       return FALSE;
2392     }
2393   }
2394
2395   capture_opts->state = CAPTURE_RUNNING;
2396
2397   return TRUE;
2398 }
2399
2400
2401 /* capture child tells us we have new packets to read */
2402 void
2403 capture_input_new_packets(capture_options *capture_opts, int to_read)
2404 {
2405   gboolean      ret;
2406   int           err;
2407   gchar        *err_info;
2408   gint64        data_offset;
2409   capture_file *cf = capture_opts->cf;
2410   gboolean      filtering_tap_listeners;
2411   guint         tap_flags;
2412
2413 #ifdef SIGINFO
2414   /*
2415    * Prevent a SIGINFO handler from writing to the standard error while
2416    * we're doing so or writing to the standard output; instead, have it
2417    * just set a flag telling us to print that information when we're done.
2418    */
2419   infodelay = TRUE;
2420 #endif /* SIGINFO */
2421
2422   /* Do we have any tap listeners with filters? */
2423   filtering_tap_listeners = have_filtering_tap_listeners();
2424
2425   /* Get the union of the flags for all tap listeners. */
2426   tap_flags = union_of_tap_listener_flags();
2427
2428   if (do_dissection) {
2429     while (to_read-- && cf->wth) {
2430       wtap_cleareof(cf->wth);
2431       ret = wtap_read(cf->wth, &err, &err_info, &data_offset);
2432       if (ret == FALSE) {
2433         /* read from file failed, tell the capture child to stop */
2434         sync_pipe_stop(capture_opts);
2435         wtap_close(cf->wth);
2436         cf->wth = NULL;
2437       } else {
2438         ret = process_packet(cf, data_offset, wtap_phdr(cf->wth),
2439                              wtap_buf_ptr(cf->wth),
2440                              filtering_tap_listeners, tap_flags);
2441       }
2442       if (ret != FALSE) {
2443         /* packet successfully read and gone through the "Read Filter" */
2444         packet_count++;
2445       }
2446     }
2447   } else {
2448     /*
2449      * Dumpcap's doing all the work; we're not doing any dissection.
2450      * Count all the packets it wrote.
2451      */
2452     packet_count += to_read;
2453   }
2454
2455   if (print_packet_counts) {
2456       /* We're printing packet counts. */
2457       if (packet_count != 0) {
2458         fprintf(stderr, "\r%u ", packet_count);
2459         /* stderr could be line buffered */
2460         fflush(stderr);
2461       }
2462   }
2463
2464 #ifdef SIGINFO
2465   /*
2466    * Allow SIGINFO handlers to write.
2467    */
2468   infodelay = FALSE;
2469
2470   /*
2471    * If a SIGINFO handler asked us to write out capture counts, do so.
2472    */
2473   if (infoprint)
2474     report_counts();
2475 #endif /* SIGINFO */
2476 }
2477
2478 static void
2479 report_counts(void)
2480 {
2481   if ((print_packet_counts == FALSE) && (really_quiet == FALSE)) {
2482     /* Report the count only if we aren't printing a packet count
2483        as packets arrive. */
2484       fprintf(stderr, "%u packet%s captured\n", packet_count,
2485             plurality(packet_count, "", "s"));
2486   }
2487 #ifdef SIGINFO
2488   infoprint = FALSE; /* we just reported it */
2489 #endif /* SIGINFO */
2490 }
2491
2492 #ifdef SIGINFO
2493 static void
2494 report_counts_siginfo(int signum _U_)
2495 {
2496   int sav_errno = errno;
2497   /* If we've been told to delay printing, just set a flag asking
2498      that we print counts (if we're supposed to), otherwise print
2499      the count of packets captured (if we're supposed to). */
2500   if (infodelay)
2501     infoprint = TRUE;
2502   else
2503     report_counts();
2504   errno = sav_errno;
2505 }
2506 #endif /* SIGINFO */
2507
2508
2509 /* capture child detected any packet drops? */
2510 void
2511 capture_input_drops(capture_options *capture_opts _U_, guint32 dropped)
2512 {
2513   if (print_packet_counts) {
2514     /* We're printing packet counts to stderr.
2515        Send a newline so that we move to the line after the packet count. */
2516     fprintf(stderr, "\n");
2517   }
2518
2519   if (dropped != 0) {
2520     /* We're printing packet counts to stderr.
2521        Send a newline so that we move to the line after the packet count. */
2522     fprintf(stderr, "%u packet%s dropped\n", dropped, plurality(dropped, "", "s"));
2523   }
2524 }
2525
2526
2527 /*
2528  * Capture child closed its side of the pipe, report any error and
2529  * do the required cleanup.
2530  */
2531 void
2532 capture_input_closed(capture_options *capture_opts, gchar *msg)
2533 {
2534   capture_file *cf = (capture_file *) capture_opts->cf;
2535
2536   if (msg != NULL)
2537     fprintf(stderr, "tshark: %s\n", msg);
2538
2539   report_counts();
2540
2541   if (cf != NULL && cf->wth != NULL) {
2542     wtap_close(cf->wth);
2543     if (cf->is_tempfile) {
2544       ws_unlink(cf->filename);
2545     }
2546   }
2547 #ifdef USE_BROKEN_G_MAIN_LOOP
2548   /*g_main_loop_quit(loop);*/
2549   g_main_quit(loop);
2550 #else
2551   loop_running = FALSE;
2552 #endif
2553 }
2554
2555
2556
2557
2558 #ifdef _WIN32
2559 static BOOL WINAPI
2560 capture_cleanup(DWORD ctrltype _U_)
2561 {
2562   /* CTRL_C_EVENT is sort of like SIGINT, CTRL_BREAK_EVENT is unique to
2563      Windows, CTRL_CLOSE_EVENT is sort of like SIGHUP, CTRL_LOGOFF_EVENT
2564      is also sort of like SIGHUP, and CTRL_SHUTDOWN_EVENT is sort of
2565      like SIGTERM at least when the machine's shutting down.
2566
2567      For now, we handle them all as indications that we should clean up
2568      and quit, just as we handle SIGINT, SIGHUP, and SIGTERM in that
2569      way on UNIX.
2570
2571      We must return TRUE so that no other handler - such as one that would
2572      terminate the process - gets called.
2573
2574      XXX - for some reason, typing ^C to TShark, if you run this in
2575      a Cygwin console window in at least some versions of Cygwin,
2576      causes TShark to terminate immediately; this routine gets
2577      called, but the main loop doesn't get a chance to run and
2578      exit cleanly, at least if this is compiled with Microsoft Visual
2579      C++ (i.e., it's a property of the Cygwin console window or Bash;
2580      it happens if TShark is not built with Cygwin - for all I know,
2581      building it with Cygwin may make the problem go away). */
2582
2583   /* tell the capture child to stop */
2584   sync_pipe_stop(&global_capture_opts);
2585
2586   /* don't stop our own loop already here, otherwise status messages and
2587    * cleanup wouldn't be done properly. The child will indicate the stop of
2588    * everything by calling capture_input_closed() later */
2589
2590   return TRUE;
2591 }
2592 #else
2593 static void
2594 capture_cleanup(int signum _U_)
2595 {
2596   /* tell the capture child to stop */
2597   sync_pipe_stop(&global_capture_opts);
2598
2599   /* don't stop our own loop already here, otherwise status messages and
2600    * cleanup wouldn't be done properly. The child will indicate the stop of
2601    * everything by calling capture_input_closed() later */
2602 }
2603 #endif /* _WIN32 */
2604 #endif /* HAVE_LIBPCAP */
2605
2606 static gboolean
2607 process_packet_first_pass(capture_file *cf,
2608                gint64 offset, struct wtap_pkthdr *whdr,
2609                const guchar *pd)
2610 {
2611   frame_data     fdlocal;
2612   guint32        framenum;
2613   gboolean       create_proto_tree = FALSE;
2614   epan_dissect_t edt;
2615   gboolean       passed;
2616
2617   /* The frame number of this packet is one more than the count of
2618      frames in this packet. */
2619   framenum = cf->count + 1;
2620
2621   /* If we're not running a display filter and we're not printing any
2622      packet information, we don't need to do a dissection. This means
2623      that all packets can be marked as 'passed'. */
2624   passed = TRUE;
2625
2626   frame_data_init(&fdlocal, framenum, whdr, offset, cum_bytes);
2627
2628   /* If we're going to print packet information, or we're going to
2629      run a read filter, or we're going to process taps, set up to
2630      do a dissection and do so. */
2631   if (do_dissection) {
2632     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2633         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2634       /* Grab any resolved addresses */
2635       host_name_lookup_process();
2636
2637     /* If we're going to be applying a read filter, we'll need to
2638        create a protocol tree against which to apply the filter. */
2639     if (cf->rfcode)
2640       create_proto_tree = TRUE;
2641
2642     /* We're not going to display the protocol tree on this pass,
2643        so it's not going to be "visible". */
2644     epan_dissect_init(&edt, create_proto_tree, FALSE);
2645
2646     /* If we're running a read filter, prime the epan_dissect_t with that
2647        filter. */
2648     if (cf->rfcode)
2649       epan_dissect_prime_dfilter(&edt, cf->rfcode);
2650
2651     frame_data_set_before_dissect(&fdlocal, &cf->elapsed_time,
2652                                   &first_ts, prev_dis, prev_cap);
2653
2654     epan_dissect_run(&edt, whdr, pd, &fdlocal, NULL);
2655
2656     /* Run the read filter if we have one. */
2657     if (cf->rfcode)
2658       passed = dfilter_apply_edt(cf->rfcode, &edt);
2659   }
2660
2661   if (passed) {
2662     frame_data_set_after_dissect(&fdlocal, &cum_bytes);
2663     prev_dis_frame = fdlocal;
2664     prev_dis = &prev_dis_frame;
2665     frame_data_sequence_add(cf->frames, &fdlocal);
2666     cf->count++;
2667   }
2668
2669   prev_cap_frame = fdlocal;
2670   prev_cap = &prev_cap_frame;
2671
2672   if (do_dissection)
2673     epan_dissect_cleanup(&edt);
2674
2675   return passed;
2676 }
2677
2678 static gboolean
2679 process_packet_second_pass(capture_file *cf, frame_data *fdata,
2680                struct wtap_pkthdr *phdr, const guchar *pd,
2681                gboolean filtering_tap_listeners, guint tap_flags)
2682 {
2683   gboolean        create_proto_tree;
2684   column_info    *cinfo;
2685   epan_dissect_t  edt;
2686   gboolean        passed;
2687
2688   /* If we're not running a display filter and we're not printing any
2689      packet information, we don't need to do a dissection. This means
2690      that all packets can be marked as 'passed'. */
2691   passed = TRUE;
2692
2693   /* If we're going to print packet information, or we're going to
2694      run a read filter, or we're going to process taps, set up to
2695      do a dissection and do so. */
2696   if (do_dissection) {
2697     if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
2698         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns)
2699       /* Grab any resolved addresses */
2700       host_name_lookup_process();
2701
2702     if (cf->rfcode || print_details || filtering_tap_listeners ||
2703         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
2704       create_proto_tree = TRUE;
2705     else
2706       create_proto_tree = FALSE;
2707
2708     /* The protocol tree will be "visible", i.e., printed, only if we're
2709        printing packet details, which is true if we're printing stuff
2710        ("print_packet_info" is true) and we're in verbose mode
2711        ("packet_details" is true). */
2712     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
2713
2714     /* If we're running a read filter, prime the epan_dissect_t with that
2715        filter. */
2716     if (cf->rfcode)
2717       epan_dissect_prime_dfilter(&edt, cf->rfcode);
2718
2719     col_custom_prime_edt(&edt, &cf->cinfo);
2720
2721     /* We only need the columns if either
2722          1) some tap needs the columns
2723        or
2724          2) we're printing packet info but we're *not* verbose; in verbose
2725             mode, we print the protocol tree, not the protocol summary.
2726      */
2727     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary))
2728       cinfo = &cf->cinfo;
2729     else
2730       cinfo = NULL;
2731
2732     epan_dissect_run_with_taps(&edt, phdr, pd, fdata, cinfo);
2733
2734     /* Run the read filter if we have one. */
2735     if (cf->rfcode)
2736       passed = dfilter_apply_edt(cf->rfcode, &edt);
2737   }
2738
2739   if (passed) {
2740     /* Process this packet. */
2741     if (print_packet_info) {
2742       /* We're printing packet information; print the information for
2743          this packet. */
2744       if (do_dissection)
2745         print_packet(cf, &edt);
2746       else
2747         print_packet(cf, NULL);
2748
2749       /* The ANSI C standard does not appear to *require* that a line-buffered
2750          stream be flushed to the host environment whenever a newline is
2751          written, it just says that, on such a stream, characters "are
2752          intended to be transmitted to or from the host environment as a
2753          block when a new-line character is encountered".
2754
2755          The Visual C++ 6.0 C implementation doesn't do what is intended;
2756          even if you set a stream to be line-buffered, it still doesn't
2757          flush the buffer at the end of every line.
2758
2759          So, if the "-l" flag was specified, we flush the standard output
2760          at the end of a packet.  This will do the right thing if we're
2761          printing packet summary lines, and, as we print the entire protocol
2762          tree for a single packet without waiting for anything to happen,
2763          it should be as good as line-buffered mode if we're printing
2764          protocol trees.  (The whole reason for the "-l" flag in either
2765          tcpdump or TShark is to allow the output of a live capture to
2766          be piped to a program or script and to have that script see the
2767          information for the packet as soon as it's printed, rather than
2768          having to wait until a standard I/O buffer fills up. */
2769       if (line_buffered)
2770         fflush(stdout);
2771
2772       if (ferror(stdout)) {
2773         show_print_file_io_error(errno);
2774         exit(2);
2775       }
2776     }
2777   }
2778
2779   if (do_dissection) {
2780     epan_dissect_cleanup(&edt);
2781   }
2782   return passed;
2783 }
2784
2785 static int
2786 load_cap_file(capture_file *cf, char *save_file, int out_file_type,
2787     gboolean out_file_name_res, int max_packet_count, gint64 max_byte_count)
2788 {
2789   gint         linktype;
2790   int          snapshot_length;
2791   wtap_dumper *pdh;
2792   guint32      framenum;
2793   int          err;
2794   gchar       *err_info = NULL;
2795   gint64       data_offset;
2796   char        *save_file_string = NULL;
2797   gboolean     filtering_tap_listeners;
2798   guint        tap_flags;
2799   wtapng_section_t            *shb_hdr;
2800   wtapng_iface_descriptions_t *idb_inf;
2801   char         appname[100];
2802
2803   shb_hdr = wtap_file_get_shb_info(cf->wth);
2804   idb_inf = wtap_file_get_idb_info(cf->wth);
2805 #ifdef PCAP_NG_DEFAULT
2806   if (idb_inf->number_of_interfaces > 0) {
2807     linktype = WTAP_ENCAP_PER_PACKET;
2808   } else {
2809     linktype = wtap_file_encap(cf->wth);
2810   }
2811 #else
2812   linktype = wtap_file_encap(cf->wth);
2813 #endif
2814   if (save_file != NULL) {
2815     /* Get a string that describes what we're writing to */
2816     save_file_string = output_file_description(save_file);
2817
2818     /* Set up to write to the capture file. */
2819     snapshot_length = wtap_snapshot_length(cf->wth);
2820     if (snapshot_length == 0) {
2821       /* Snapshot length of input file not known. */
2822       snapshot_length = WTAP_MAX_PACKET_SIZE;
2823     }
2824     /* If we don't have an application name add Tshark */
2825     if (shb_hdr->shb_user_appl == NULL) {
2826         g_snprintf(appname, sizeof(appname), "TShark " VERSION "%s", wireshark_svnversion);
2827         shb_hdr->shb_user_appl = appname;
2828     }
2829
2830     pdh = wtap_dump_open_ng(save_file, out_file_type, linktype, snapshot_length,
2831         FALSE /* compressed */, shb_hdr, idb_inf, &err);
2832
2833     g_free(idb_inf);
2834     idb_inf = NULL;
2835
2836     if (pdh == NULL) {
2837       /* We couldn't set up to write to the capture file. */
2838       switch (err) {
2839
2840       case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
2841         cmdarg_err("Capture files can't be written in that format.");
2842         break;
2843
2844       case WTAP_ERR_UNSUPPORTED_ENCAP:
2845       case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
2846         cmdarg_err("The capture file being read can't be written as a "
2847           "\"%s\" file.", wtap_file_type_short_string(out_file_type));
2848         break;
2849
2850       case WTAP_ERR_CANT_OPEN:
2851         cmdarg_err("The %s couldn't be created for some "
2852           "unknown reason.", save_file_string);
2853         break;
2854
2855       case WTAP_ERR_SHORT_WRITE:
2856         cmdarg_err("A full header couldn't be written to the %s.",
2857                    save_file_string);
2858         break;
2859
2860       default:
2861         cmdarg_err("The %s could not be created: %s.", save_file_string,
2862                    wtap_strerror(err));
2863         break;
2864       }
2865       goto out;
2866     }
2867   } else {
2868     if (print_packet_info) {
2869       if (!write_preamble(cf)) {
2870         err = errno;
2871         show_print_file_io_error(err);
2872         goto out;
2873       }
2874     }
2875     pdh = NULL;
2876   }
2877
2878   if (pdh && out_file_name_res) {
2879     if (!wtap_dump_set_addrinfo_list(pdh, get_addrinfo_list())) {
2880       cmdarg_err("The file format \"%s\" doesn't support name resolution information.",
2881                  wtap_file_type_short_string(out_file_type));
2882     }
2883   }
2884
2885   /* Do we have any tap listeners with filters? */
2886   filtering_tap_listeners = have_filtering_tap_listeners();
2887
2888   /* Get the union of the flags for all tap listeners. */
2889   tap_flags = union_of_tap_listener_flags();
2890
2891   if (perform_two_pass_analysis) {
2892     frame_data *fdata;
2893     int old_max_packet_count = max_packet_count;
2894
2895     /* Allocate a frame_data_sequence for all the frames. */
2896     cf->frames = new_frame_data_sequence();
2897
2898     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
2899       if (process_packet_first_pass(cf, data_offset, wtap_phdr(cf->wth),
2900                          wtap_buf_ptr(cf->wth))) {
2901         /* Stop reading if we have the maximum number of packets;
2902          * When the -c option has not been used, max_packet_count
2903          * starts at 0, which practically means, never stop reading.
2904          * (unless we roll over max_packet_count ?)
2905          */
2906         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
2907           err = 0; /* This is not an error */
2908           break;
2909         }
2910       }
2911     }
2912
2913     /* Close the sequential I/O side, to free up memory it requires. */
2914     wtap_sequential_close(cf->wth);
2915
2916     /* Allow the protocol dissectors to free up memory that they
2917      * don't need after the sequential run-through of the packets. */
2918     postseq_cleanup_all_protocols();
2919
2920     max_packet_count = old_max_packet_count;
2921
2922     for (framenum = 1; err == 0 && framenum <= cf->count; framenum++) {
2923       fdata = frame_data_sequence_find(cf->frames, framenum);
2924       if (wtap_seek_read(cf->wth, fdata->file_off, &cf->phdr,
2925           cf->pd, fdata->cap_len, &err, &err_info)) {
2926         if (process_packet_second_pass(cf, fdata,
2927                            &cf->phdr, cf->pd,
2928                            filtering_tap_listeners, tap_flags)) {
2929           /* Either there's no read filtering or this packet passed the
2930              filter, so, if we're writing to a capture file, write
2931              this packet out. */
2932           if (pdh != NULL) {
2933             if (!wtap_dump(pdh, &cf->phdr, wtap_buf_ptr(cf->wth), &err)) {
2934               /* Error writing to a capture file */
2935               switch (err) {
2936
2937               case WTAP_ERR_UNSUPPORTED_ENCAP:
2938                 /*
2939                  * This is a problem with the particular frame we're writing;
2940                  * note that, and give the frame number.
2941                  *
2942                  * XXX - framenum is not necessarily the frame number in
2943                  * the input file if there was a read filter.
2944                  */
2945                 fprintf(stderr,
2946                         "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
2947                         framenum, cf->filename,
2948                         wtap_file_type_short_string(out_file_type));
2949                 break;
2950
2951               default:
2952                 show_capture_file_io_error(save_file, err, FALSE);
2953                 break;
2954               }
2955               wtap_dump_close(pdh, &err);
2956               g_free(shb_hdr);
2957               exit(2);
2958             }
2959           }
2960           /* Stop reading if we have the maximum number of packets;
2961            * When the -c option has not been used, max_packet_count
2962            * starts at 0, which practically means, never stop reading.
2963            * (unless we roll over max_packet_count ?)
2964            */
2965           if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
2966             err = 0; /* This is not an error */
2967             break;
2968           }
2969         }
2970       }
2971     }
2972   }
2973   else {
2974     framenum = 0;
2975     while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
2976       framenum++;
2977
2978       if (process_packet(cf, data_offset, wtap_phdr(cf->wth),
2979                          wtap_buf_ptr(cf->wth),
2980                          filtering_tap_listeners, tap_flags)) {
2981         /* Either there's no read filtering or this packet passed the
2982            filter, so, if we're writing to a capture file, write
2983            this packet out. */
2984         if (pdh != NULL) {
2985           if (!wtap_dump(pdh, wtap_phdr(cf->wth), wtap_buf_ptr(cf->wth), &err)) {
2986             /* Error writing to a capture file */
2987             switch (err) {
2988
2989             case WTAP_ERR_UNSUPPORTED_ENCAP:
2990               /*
2991                * This is a problem with the particular frame we're writing;
2992                * note that, and give the frame number.
2993                */
2994               fprintf(stderr,
2995                       "Frame %u of \"%s\" has a network type that can't be saved in a \"%s\" file.\n",
2996                       framenum, cf->filename,
2997                       wtap_file_type_short_string(out_file_type));
2998               break;
2999
3000             default:
3001               show_capture_file_io_error(save_file, err, FALSE);
3002               break;
3003             }
3004             wtap_dump_close(pdh, &err);
3005             g_free(shb_hdr);
3006             exit(2);
3007           }
3008         }
3009         /* Stop reading if we have the maximum number of packets;
3010          * When the -c option has not been used, max_packet_count
3011          * starts at 0, which practically means, never stop reading.
3012          * (unless we roll over max_packet_count ?)
3013          */
3014         if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
3015           err = 0; /* This is not an error */
3016           break;
3017         }
3018       }
3019     }
3020   }
3021
3022   if (err != 0) {
3023     /*
3024      * Print a message noting that the read failed somewhere along the line.
3025      *
3026      * If we're printing packet data, and the standard output and error are
3027      * going to the same place, flush the standard output, so everything
3028      * buffered up is written, and then print a newline to the standard error
3029      * before printing the error message, to separate it from the packet
3030      * data.  (Alas, that only works on UN*X; st_dev is meaningless, and
3031      * the _fstat() documentation at Microsoft doesn't indicate whether
3032      * st_ino is even supported.)
3033      */
3034 #ifndef _WIN32
3035     if (print_packet_info) {
3036       struct stat stat_stdout, stat_stderr;
3037
3038       if (fstat(1, &stat_stdout) == 0 && fstat(2, &stat_stderr) == 0) {
3039         if (stat_stdout.st_dev == stat_stderr.st_dev &&
3040             stat_stdout.st_ino == stat_stderr.st_ino) {
3041           fflush(stdout);
3042           fprintf(stderr, "\n");
3043         }
3044       }
3045     }
3046 #endif
3047     switch (err) {
3048
3049     case WTAP_ERR_UNSUPPORTED:
3050       cmdarg_err("The file \"%s\" contains record data that TShark doesn't support.\n(%s)",
3051                  cf->filename, err_info);
3052       g_free(err_info);
3053       break;
3054
3055     case WTAP_ERR_UNSUPPORTED_ENCAP:
3056       cmdarg_err("The file \"%s\" has a packet with a network type that TShark doesn't support.\n(%s)",
3057                  cf->filename, err_info);
3058       g_free(err_info);
3059       break;
3060
3061     case WTAP_ERR_CANT_READ:
3062       cmdarg_err("An attempt to read from the file \"%s\" failed for some unknown reason.",
3063                  cf->filename);
3064       break;
3065
3066     case WTAP_ERR_SHORT_READ:
3067       cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
3068                  cf->filename);
3069       break;
3070
3071     case WTAP_ERR_BAD_FILE:
3072       cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
3073                  cf->filename, err_info);
3074       g_free(err_info);
3075       break;
3076
3077     case WTAP_ERR_DECOMPRESS:
3078       cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n"
3079                  "(%s)", cf->filename, err_info);
3080       break;
3081
3082     default:
3083       cmdarg_err("An error occurred while reading the file \"%s\": %s.",
3084                  cf->filename, wtap_strerror(err));
3085       break;
3086     }
3087     if (save_file != NULL) {
3088       /* Now close the capture file. */
3089       if (!wtap_dump_close(pdh, &err))
3090         show_capture_file_io_error(save_file, err, TRUE);
3091     }
3092   } else {
3093     if (save_file != NULL) {
3094       /* Now close the capture file. */
3095       if (!wtap_dump_close(pdh, &err))
3096         show_capture_file_io_error(save_file, err, TRUE);
3097     } else {
3098       if (print_packet_info) {
3099         if (!write_finale()) {
3100           err = errno;
3101           show_print_file_io_error(err);
3102         }
3103       }
3104     }
3105   }
3106
3107 out:
3108   wtap_close(cf->wth);
3109   cf->wth = NULL;
3110
3111   g_free(save_file_string);
3112   g_free(shb_hdr);
3113
3114   return err;
3115 }
3116
3117 static gboolean
3118 process_packet(capture_file *cf, gint64 offset, struct wtap_pkthdr *whdr,
3119                const guchar *pd,
3120                gboolean filtering_tap_listeners, guint tap_flags)
3121 {
3122   frame_data      fdata;
3123   gboolean        create_proto_tree;
3124   column_info    *cinfo;
3125   epan_dissect_t  edt;
3126   gboolean        passed;
3127
3128   /* Count this packet. */
3129   cf->count++;
3130
3131   /* If we're not running a display filter and we're not printing any
3132      packet information, we don't need to do a dissection. This means
3133      that all packets can be marked as 'passed'. */
3134   passed = TRUE;
3135
3136   frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
3137
3138   /* If we're going to print packet information, or we're going to
3139      run a read filter, or we're going to process taps, set up to
3140      do a dissection and do so. */
3141   if (do_dissection) {
3142     if (print_packet_info && (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
3143         gbl_resolv_flags.transport_name || gbl_resolv_flags.concurrent_dns))
3144       /* Grab any resolved addresses */
3145       host_name_lookup_process();
3146
3147     if (cf->rfcode || print_details || filtering_tap_listeners ||
3148         (tap_flags & TL_REQUIRES_PROTO_TREE) || have_custom_cols(&cf->cinfo))
3149       create_proto_tree = TRUE;
3150     else
3151       create_proto_tree = FALSE;
3152
3153     /* The protocol tree will be "visible", i.e., printed, only if we're
3154        printing packet details, which is true if we're printing stuff
3155        ("print_packet_info" is true) and we're in verbose mode
3156        ("packet_details" is true). */
3157     epan_dissect_init(&edt, create_proto_tree, print_packet_info && print_details);
3158
3159     /* If we're running a read filter, prime the epan_dissect_t with that
3160        filter. */
3161     if (cf->rfcode)
3162       epan_dissect_prime_dfilter(&edt, cf->rfcode);
3163
3164     col_custom_prime_edt(&edt, &cf->cinfo);
3165
3166     /* We only need the columns if either
3167          1) some tap needs the columns
3168        or
3169          2) we're printing packet info but we're *not* verbose; in verbose
3170             mode, we print the protocol tree, not the protocol summary.
3171        or
3172          3) there is a column mapped as an individual field */
3173     if ((tap_flags & TL_REQUIRES_COLUMNS) || (print_packet_info && print_summary) || output_fields_has_cols(output_fields))
3174       cinfo = &cf->cinfo;
3175     else
3176       cinfo = NULL;
3177
3178     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
3179                                   &first_ts, prev_dis, prev_cap);
3180
3181     epan_dissect_run_with_taps(&edt, whdr, pd, &fdata, cinfo);
3182
3183     /* Run the read filter if we have one. */
3184     if (cf->rfcode)
3185       passed = dfilter_apply_edt(cf->rfcode, &edt);
3186   }
3187
3188   if (passed) {
3189     frame_data_set_after_dissect(&fdata, &cum_bytes);
3190     prev_dis_frame = fdata;
3191     prev_dis = &prev_dis_frame;
3192
3193     /* Process this packet. */
3194     if (print_packet_info) {
3195       /* We're printing packet information; print the information for
3196          this packet. */
3197       if (do_dissection)
3198         print_packet(cf, &edt);
3199       else
3200         print_packet(cf, NULL);
3201
3202       /* The ANSI C standard does not appear to *require* that a line-buffered
3203          stream be flushed to the host environment whenever a newline is
3204          written, it just says that, on such a stream, characters "are
3205          intended to be transmitted to or from the host environment as a
3206          block when a new-line character is encountered".
3207
3208          The Visual C++ 6.0 C implementation doesn't do what is intended;
3209          even if you set a stream to be line-buffered, it still doesn't
3210          flush the buffer at the end of every line.
3211
3212          So, if the "-l" flag was specified, we flush the standard output
3213          at the end of a packet.  This will do the right thing if we're
3214          printing packet summary lines, and, as we print the entire protocol
3215          tree for a single packet without waiting for anything to happen,
3216          it should be as good as line-buffered mode if we're printing
3217          protocol trees.  (The whole reason for the "-l" flag in either
3218          tcpdump or TShark is to allow the output of a live capture to
3219          be piped to a program or script and to have that script see the
3220          information for the packet as soon as it's printed, rather than
3221          having to wait until a standard I/O buffer fills up. */
3222       if (line_buffered)
3223         fflush(stdout);
3224
3225       if (ferror(stdout)) {
3226         show_print_file_io_error(errno);
3227         exit(2);
3228       }
3229     }
3230   }
3231
3232   prev_cap_frame = fdata;
3233   prev_cap = &prev_cap_frame;
3234
3235   if (do_dissection) {
3236     epan_dissect_cleanup(&edt);
3237     frame_data_cleanup(&fdata);
3238   }
3239   return passed;
3240 }
3241
3242 static gboolean
3243 write_preamble(capture_file *cf)
3244 {
3245   switch (output_action) {
3246
3247   case WRITE_TEXT:
3248     return print_preamble(print_stream, cf ? cf->filename : NULL);
3249
3250   case WRITE_XML:
3251     if (print_details)
3252       write_pdml_preamble(stdout, cf ? cf->filename : NULL);
3253     else
3254       write_psml_preamble(stdout);
3255     return !ferror(stdout);
3256
3257   case WRITE_FIELDS:
3258     write_fields_preamble(output_fields, stdout);
3259     return !ferror(stdout);
3260
3261   default:
3262     g_assert_not_reached();
3263     return FALSE;
3264   }
3265 }
3266
3267 static char *
3268 get_line_buf(size_t len)
3269 {
3270   static char   *line_bufp    = NULL;
3271   static size_t  line_buf_len = 256;
3272   size_t         new_line_buf_len;
3273
3274   for (new_line_buf_len = line_buf_len; len > new_line_buf_len;
3275        new_line_buf_len *= 2)
3276     ;
3277   if (line_bufp == NULL) {
3278     line_buf_len = new_line_buf_len;
3279     line_bufp = g_malloc(line_buf_len + 1);
3280   } else {
3281     if (new_line_buf_len > line_buf_len) {
3282       line_buf_len = new_line_buf_len;
3283       line_bufp = g_realloc(line_bufp, line_buf_len + 1);
3284     }
3285   }
3286   return line_bufp;
3287 }
3288
3289 static gboolean
3290 print_columns(capture_file *cf)
3291 {
3292   char   *line_bufp;
3293   int     i;
3294   size_t  buf_offset;
3295   size_t  column_len;
3296
3297   line_bufp = get_line_buf(256);
3298   buf_offset = 0;
3299   *line_bufp = '\0';
3300   for (i = 0; i < cf->cinfo.num_cols; i++) {
3301     /* Skip columns not marked as visible. */
3302     if (!get_column_visible(i))
3303       continue;
3304     switch (cf->cinfo.col_fmt[i]) {
3305     case COL_NUMBER:
3306 #ifdef HAVE_LIBPCAP
3307       /*
3308        * Don't print this if we're doing a live capture from a network
3309        * interface - if we're doing a live capture, you won't be
3310        * able to look at the capture in the future (it's not being
3311        * saved anywhere), so the frame numbers are unlikely to be
3312        * useful.
3313        *
3314        * (XXX - it might be nice to be able to save and print at
3315        * the same time, sort of like an "Update list of packets
3316        * in real time" capture in Wireshark.)
3317        */
3318       if (global_capture_opts.ifaces->len > 0)
3319         continue;
3320 #endif
3321       column_len = strlen(cf->cinfo.col_data[i]);
3322       if (column_len < 3)
3323         column_len = 3;
3324       line_bufp = get_line_buf(buf_offset + column_len);
3325       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%3s", cf->cinfo.col_data[i]);
3326       break;
3327
3328     case COL_CLS_TIME:
3329     case COL_REL_TIME:
3330     case COL_ABS_TIME:
3331     case COL_ABS_DATE_TIME:
3332     case COL_UTC_TIME:
3333     case COL_UTC_DATE_TIME: /* XXX - wider */
3334       column_len = strlen(cf->cinfo.col_data[i]);
3335       if (column_len < 10)
3336         column_len = 10;
3337       line_bufp = get_line_buf(buf_offset + column_len);
3338       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%10s", cf->cinfo.col_data[i]);
3339       break;
3340
3341     case COL_DEF_SRC:
3342     case COL_RES_SRC:
3343     case COL_UNRES_SRC:
3344     case COL_DEF_DL_SRC:
3345     case COL_RES_DL_SRC:
3346     case COL_UNRES_DL_SRC:
3347     case COL_DEF_NET_SRC:
3348     case COL_RES_NET_SRC:
3349     case COL_UNRES_NET_SRC:
3350       column_len = strlen(cf->cinfo.col_data[i]);
3351       if (column_len < 12)
3352         column_len = 12;
3353       line_bufp = get_line_buf(buf_offset + column_len);
3354       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%12s", cf->cinfo.col_data[i]);
3355       break;
3356
3357     case COL_DEF_DST:
3358     case COL_RES_DST:
3359     case COL_UNRES_DST:
3360     case COL_DEF_DL_DST:
3361     case COL_RES_DL_DST:
3362     case COL_UNRES_DL_DST:
3363     case COL_DEF_NET_DST:
3364     case COL_RES_NET_DST:
3365     case COL_UNRES_NET_DST:
3366       column_len = strlen(cf->cinfo.col_data[i]);
3367       if (column_len < 12)
3368         column_len = 12;
3369       line_bufp = get_line_buf(buf_offset + column_len);
3370       g_snprintf(line_bufp + buf_offset, (int)column_len + 1, "%-12s", cf->cinfo.col_data[i]);
3371       break;
3372
3373     default:
3374       column_len = strlen(cf->cinfo.col_data[i]);
3375       line_bufp = get_line_buf(buf_offset + column_len);
3376       g_strlcat(line_bufp + buf_offset, cf->cinfo.col_data[i], column_len + 1);
3377       break;
3378     }
3379     buf_offset += column_len;
3380     if (i != cf->cinfo.num_cols - 1) {
3381       /*
3382        * This isn't the last column, so we need to print a
3383        * separator between this column and the next.
3384        *
3385        * If we printed a network source and are printing a
3386        * network destination of the same type next, separate
3387        * them with " -> "; if we printed a network destination
3388        * and are printing a network source of the same type
3389        * next, separate them with " <- "; otherwise separate them
3390        * with a space.
3391        *
3392        * We add enough space to the buffer for " <- " or " -> ",
3393        * even if we're only adding " ".
3394        */
3395       line_bufp = get_line_buf(buf_offset + 4);
3396       switch (cf->cinfo.col_fmt[i]) {
3397
3398       case COL_DEF_SRC:
3399       case COL_RES_SRC:
3400       case COL_UNRES_SRC:
3401         switch (cf->cinfo.col_fmt[i + 1]) {
3402
3403         case COL_DEF_DST:
3404         case COL_RES_DST:
3405         case COL_UNRES_DST:
3406           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3407           buf_offset += 4;
3408           break;
3409
3410         default:
3411           g_strlcat(line_bufp + buf_offset, " ", 5);
3412           buf_offset += 1;
3413           break;
3414         }
3415         break;
3416
3417       case COL_DEF_DL_SRC:
3418       case COL_RES_DL_SRC:
3419       case COL_UNRES_DL_SRC:
3420         switch (cf->cinfo.col_fmt[i + 1]) {
3421
3422         case COL_DEF_DL_DST:
3423         case COL_RES_DL_DST:
3424         case COL_UNRES_DL_DST:
3425           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3426           buf_offset += 4;
3427           break;
3428
3429         default:
3430           g_strlcat(line_bufp + buf_offset, " ", 5);
3431           buf_offset += 1;
3432           break;
3433         }
3434         break;
3435
3436       case COL_DEF_NET_SRC:
3437       case COL_RES_NET_SRC:
3438       case COL_UNRES_NET_SRC:
3439         switch (cf->cinfo.col_fmt[i + 1]) {
3440
3441         case COL_DEF_NET_DST:
3442         case COL_RES_NET_DST:
3443         case COL_UNRES_NET_DST:
3444           g_strlcat(line_bufp + buf_offset, " -> ", 5);
3445           buf_offset += 4;
3446           break;
3447
3448         default:
3449           g_strlcat(line_bufp + buf_offset, " ", 5);
3450           buf_offset += 1;
3451           break;
3452         }
3453         break;
3454
3455       case COL_DEF_DST:
3456       case COL_RES_DST:
3457       case COL_UNRES_DST:
3458         switch (cf->cinfo.col_fmt[i + 1]) {
3459
3460         case COL_DEF_SRC:
3461         case COL_RES_SRC:
3462         case COL_UNRES_SRC:
3463           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3464           buf_offset += 4;
3465           break;
3466
3467         default:
3468           g_strlcat(line_bufp + buf_offset, " ", 5);
3469           buf_offset += 1;
3470           break;
3471         }
3472         break;
3473
3474       case COL_DEF_DL_DST:
3475       case COL_RES_DL_DST:
3476       case COL_UNRES_DL_DST:
3477         switch (cf->cinfo.col_fmt[i + 1]) {
3478
3479         case COL_DEF_DL_SRC:
3480         case COL_RES_DL_SRC:
3481         case COL_UNRES_DL_SRC:
3482           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3483           buf_offset += 4;
3484           break;
3485
3486         default:
3487           g_strlcat(line_bufp + buf_offset, " ", 5);
3488           buf_offset += 1;
3489           break;
3490         }
3491         break;
3492
3493       case COL_DEF_NET_DST:
3494       case COL_RES_NET_DST:
3495       case COL_UNRES_NET_DST:
3496         switch (cf->cinfo.col_fmt[i + 1]) {
3497
3498         case COL_DEF_NET_SRC:
3499         case COL_RES_NET_SRC:
3500         case COL_UNRES_NET_SRC:
3501           g_strlcat(line_bufp + buf_offset, " <- ", 5);
3502           buf_offset += 4;
3503           break;
3504
3505         default:
3506           g_strlcat(line_bufp + buf_offset, " ", 5);
3507           buf_offset += 1;
3508           break;
3509         }
3510         break;
3511
3512       default:
3513         g_strlcat(line_bufp + buf_offset, " ", 5);
3514         buf_offset += 1;
3515         break;
3516       }
3517     }
3518   }
3519   return print_line(print_stream, 0, line_bufp);
3520 }
3521
3522 static gboolean
3523 print_packet(capture_file *cf, epan_dissect_t *edt)
3524 {
3525   print_args_t print_args;
3526
3527   if (print_summary || output_fields_has_cols(output_fields)) {
3528     /* Just fill in the columns. */
3529     epan_dissect_fill_in_columns(edt, FALSE, TRUE);
3530
3531     if (print_summary) {
3532       /* Now print them. */
3533       switch (output_action) {
3534
3535       case WRITE_TEXT:
3536         if (!print_columns(cf))
3537           return FALSE;
3538         break;
3539
3540       case WRITE_XML:
3541         proto_tree_write_psml(edt, stdout);
3542         return !ferror(stdout);
3543       case WRITE_FIELDS: /*No non-verbose "fields" format */
3544         g_assert_not_reached();
3545         break;
3546       }
3547     }
3548   }
3549   if (print_details) {
3550     /* Print the information in the protocol tree. */
3551     switch (output_action) {
3552
3553     case WRITE_TEXT:
3554       /* Only initialize the fields that are actually used in proto_tree_print.
3555        * This is particularly important for .range, as that's heap memory which
3556        * we would otherwise have to g_free().
3557       print_args.to_file = TRUE;
3558       print_args.format = print_format;
3559       print_args.print_summary = print_summary;
3560       print_args.print_formfeed = FALSE;
3561       packet_range_init(&print_args.range, &cfile);
3562       */
3563       print_args.print_hex = print_hex;
3564       print_args.print_dissections = print_details ? print_dissections_expanded : print_dissections_none;
3565
3566       if (!proto_tree_print(&print_args, edt, print_stream))
3567         return FALSE;
3568       if (!print_hex) {
3569         if (!print_line(print_stream, 0, separator))
3570           return FALSE;
3571       }
3572       break;
3573
3574     case WRITE_XML:
3575       proto_tree_write_pdml(edt, stdout);
3576       printf("\n");
3577       return !ferror(stdout);
3578     case WRITE_FIELDS:
3579       proto_tree_write_fields(output_fields, edt, &cf->cinfo, stdout);
3580       printf("\n");
3581       return !ferror(stdout);
3582     }
3583   }
3584   if (print_hex) {
3585     if (print_summary || print_details) {
3586       if (!print_line(print_stream, 0, ""))
3587         return FALSE;
3588     }
3589     if (!print_hex_data(print_stream, edt))
3590       return FALSE;
3591     if (!print_line(print_stream, 0, separator))
3592       return FALSE;
3593   }
3594   return TRUE;
3595 }
3596
3597 static gboolean
3598 write_finale(void)
3599 {
3600   switch (output_action) {
3601
3602   case WRITE_TEXT:
3603     return print_finale(print_stream);
3604
3605   case WRITE_XML:
3606     if (print_details)
3607       write_pdml_finale(stdout);
3608     else
3609       write_psml_finale(stdout);
3610     return !ferror(stdout);
3611
3612   case WRITE_FIELDS:
3613     write_fields_finale(output_fields, stdout);
3614     return !ferror(stdout);
3615
3616   default:
3617     g_assert_not_reached();
3618     return FALSE;
3619   }
3620 }
3621
3622 cf_status_t
3623 cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
3624 {
3625   wtap  *wth;
3626   gchar *err_info;
3627   char   err_msg[2048+1];
3628
3629   wth = wtap_open_offline(fname, err, &err_info, perform_two_pass_analysis);
3630   if (wth == NULL)
3631     goto fail;
3632
3633   /* The open succeeded.  Fill in the information for this file. */
3634
3635   /* Cleanup all data structures used for dissection. */
3636   cleanup_dissection();
3637   /* Initialize all data structures used for dissection. */
3638   init_dissection();
3639
3640   cf->wth = wth;
3641   cf->f_datalen = 0; /* not used, but set it anyway */
3642
3643   /* Set the file name because we need it to set the follow stream filter.
3644      XXX - is that still true?  We need it for other reasons, though,
3645      in any case. */
3646   cf->filename = g_strdup(fname);
3647
3648   /* Indicate whether it's a permanent or temporary file. */
3649   cf->is_tempfile = is_tempfile;
3650
3651   /* No user changes yet. */
3652   cf->unsaved_changes = FALSE;
3653
3654   cf->cd_t      = wtap_file_type(cf->wth);
3655   cf->count     = 0;
3656   cf->drops_known = FALSE;
3657   cf->drops     = 0;
3658   cf->snap      = wtap_snapshot_length(cf->wth);
3659   if (cf->snap == 0) {
3660     /* Snapshot length not known. */
3661     cf->has_snap = FALSE;
3662     cf->snap = WTAP_MAX_PACKET_SIZE;
3663   } else
3664     cf->has_snap = TRUE;
3665   nstime_set_zero(&cf->elapsed_time);
3666   nstime_set_unset(&first_ts);
3667   prev_dis = NULL;
3668   prev_cap = NULL;
3669
3670   cf->state = FILE_READ_IN_PROGRESS;
3671
3672   wtap_set_cb_new_ipv4(cf->wth, add_ipv4_name);
3673   wtap_set_cb_new_ipv6(cf->wth, (wtap_new_ipv6_callback_t) add_ipv6_name);
3674
3675   return CF_OK;
3676
3677 fail:
3678   g_snprintf(err_msg, sizeof err_msg,
3679              cf_open_error_message(*err, err_info, FALSE, cf->cd_t), fname);
3680   cmdarg_err("%s", err_msg);
3681   return CF_ERROR;
3682 }
3683
3684 static void
3685 show_capture_file_io_error(const char *fname, int err, gboolean is_close)
3686 {
3687   char *save_file_string;
3688
3689   save_file_string = output_file_description(fname);
3690
3691   switch (err) {
3692
3693   case ENOSPC:
3694     cmdarg_err("Not all the packets could be written to the %s because there is "
3695                "no space left on the file system.",
3696                save_file_string);
3697     break;
3698
3699 #ifdef EDQUOT
3700   case EDQUOT:
3701     cmdarg_err("Not all the packets could be written to the %s because you are "
3702                "too close to, or over your disk quota.",
3703                save_file_string);
3704   break;
3705 #endif
3706
3707   case WTAP_ERR_CANT_CLOSE:
3708     cmdarg_err("The %s couldn't be closed for some unknown reason.",
3709                save_file_string);
3710     break;
3711
3712   case WTAP_ERR_SHORT_WRITE:
3713     cmdarg_err("Not all the packets could be written to the %s.",
3714                save_file_string);
3715     break;
3716
3717   default:
3718     if (is_close) {
3719       cmdarg_err("The %s could not be closed: %s.", save_file_string,
3720                  wtap_strerror(err));
3721     } else {
3722       cmdarg_err("An error occurred while writing to the %s: %s.",
3723                  save_file_string, wtap_strerror(err));
3724     }
3725     break;
3726   }
3727   g_free(save_file_string);
3728 }
3729
3730 static void
3731 show_print_file_io_error(int err)
3732 {
3733   switch (err) {
3734
3735   case ENOSPC:
3736     cmdarg_err("Not all the packets could be printed because there is "
3737 "no space left on the file system.");
3738     break;
3739
3740 #ifdef EDQUOT
3741   case EDQUOT:
3742     cmdarg_err("Not all the packets could be printed because you are "
3743 "too close to, or over your disk quota.");
3744   break;
3745 #endif
3746
3747   default:
3748     cmdarg_err("An error occurred while printing packets: %s.",
3749       g_strerror(err));
3750     break;
3751   }
3752 }
3753
3754 static const char *
3755 cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
3756                       int file_type)
3757 {
3758   const char *errmsg;
3759   static char errmsg_errno[1024+1];
3760
3761   if (err < 0) {
3762     /* Wiretap error. */
3763     switch (err) {
3764
3765     case WTAP_ERR_NOT_REGULAR_FILE:
3766       errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
3767       break;
3768
3769     case WTAP_ERR_RANDOM_OPEN_PIPE:
3770       /* Seen only when opening a capture file for reading. */
3771       errmsg = "The file \"%s\" is a pipe or FIFO; TShark can't read pipe or FIFO files in two-pass mode.";
3772       break;
3773
3774     case WTAP_ERR_FILE_UNKNOWN_FORMAT:
3775       /* Seen only when opening a capture file for reading. */
3776       errmsg = "The file \"%s\" isn't a capture file in a format TShark understands.";
3777       break;
3778
3779     case WTAP_ERR_UNSUPPORTED:
3780       /* Seen only when opening a capture file for reading. */
3781       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3782                "The file \"%%s\" isn't a capture file in a format TShark understands.\n"
3783                "(%s)", err_info);
3784       g_free(err_info);
3785       errmsg = errmsg_errno;
3786       break;
3787
3788     case WTAP_ERR_CANT_WRITE_TO_PIPE:
3789       /* Seen only when opening a capture file for writing. */
3790       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3791                  "The file \"%%s\" is a pipe, and \"%s\" capture files can't be "
3792                  "written to a pipe.", wtap_file_type_short_string(file_type));
3793       errmsg = errmsg_errno;
3794       break;
3795
3796     case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
3797       /* Seen only when opening a capture file for writing. */
3798       errmsg = "TShark doesn't support writing capture files in that format.";
3799       break;
3800
3801     case WTAP_ERR_UNSUPPORTED_ENCAP:
3802       if (for_writing) {
3803         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3804                    "TShark can't save this capture as a \"%s\" file.",
3805                    wtap_file_type_short_string(file_type));
3806       } else {
3807         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3808                  "The file \"%%s\" is a capture for a network type that TShark doesn't support.\n"
3809                  "(%s)", err_info);
3810         g_free(err_info);
3811       }
3812       errmsg = errmsg_errno;
3813       break;
3814
3815     case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
3816       if (for_writing) {
3817         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3818                    "TShark can't save this capture as a \"%s\" file.",
3819                    wtap_file_type_short_string(file_type));
3820         errmsg = errmsg_errno;
3821       } else
3822         errmsg = "The file \"%s\" is a capture for a network type that TShark doesn't support.";
3823       break;
3824
3825     case WTAP_ERR_BAD_FILE:
3826       /* Seen only when opening a capture file for reading. */
3827       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3828                "The file \"%%s\" appears to be damaged or corrupt.\n"
3829                "(%s)", err_info);
3830       g_free(err_info);
3831       errmsg = errmsg_errno;
3832       break;
3833
3834     case WTAP_ERR_CANT_OPEN:
3835       if (for_writing)
3836         errmsg = "The file \"%s\" could not be created for some unknown reason.";
3837       else
3838         errmsg = "The file \"%s\" could not be opened for some unknown reason.";
3839       break;
3840
3841     case WTAP_ERR_SHORT_READ:
3842       errmsg = "The file \"%s\" appears to have been cut short"
3843                " in the middle of a packet or other data.";
3844       break;
3845
3846     case WTAP_ERR_SHORT_WRITE:
3847       errmsg = "A full header couldn't be written to the file \"%s\".";
3848       break;
3849
3850     case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
3851       errmsg = "This file type cannot be written as a compressed file.";
3852       break;
3853
3854     case WTAP_ERR_DECOMPRESS:
3855       /* Seen only when opening a capture file for reading. */
3856       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3857                  "The compressed file \"%%s\" appears to be damaged or corrupt.\n"
3858                  "(%s)", err_info);
3859       g_free(err_info);
3860       errmsg = errmsg_errno;
3861       break;
3862
3863     default:
3864       g_snprintf(errmsg_errno, sizeof(errmsg_errno),
3865                  "The file \"%%s\" could not be %s: %s.",
3866                  for_writing ? "created" : "opened",
3867                  wtap_strerror(err));
3868       errmsg = errmsg_errno;
3869       break;
3870     }
3871   } else
3872     errmsg = file_open_error_message(err, for_writing);
3873   return errmsg;
3874 }
3875
3876 /*
3877  * Open/create errors are reported with an console message in TShark.
3878  */
3879 static void
3880 open_failure_message(const char *filename, int err, gboolean for_writing)
3881 {
3882   fprintf(stderr, "tshark: ");
3883   fprintf(stderr, file_open_error_message(err, for_writing), filename);
3884   fprintf(stderr, "\n");
3885 }
3886
3887
3888 /*
3889  * General errors are reported with an console message in TShark.
3890  */
3891 static void
3892 failure_message(const char *msg_format, va_list ap)
3893 {
3894   fprintf(stderr, "tshark: ");
3895   vfprintf(stderr, msg_format, ap);
3896   fprintf(stderr, "\n");
3897 }
3898
3899 /*
3900  * Read errors are reported with an console message in TShark.
3901  */
3902 static void
3903 read_failure_message(const char *filename, int err)
3904 {
3905   cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
3906           filename, g_strerror(err));
3907 }
3908
3909 /*
3910  * Write errors are reported with an console message in TShark.
3911  */
3912 static void
3913 write_failure_message(const char *filename, int err)
3914 {
3915   cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
3916           filename, g_strerror(err));
3917 }
3918
3919 /*
3920  * Print to the standard error.  This is a command-line tool, so there's
3921  * no need to pop up a console.
3922  */
3923 void
3924 vfprintf_stderr(const char *fmt, va_list ap)
3925 {
3926   vfprintf(stderr, fmt, ap);
3927 }
3928
3929 void
3930 fprintf_stderr(const char *fmt, ...)
3931 {
3932   va_list ap;
3933
3934   va_start(ap, fmt);
3935   vfprintf_stderr(fmt, ap);
3936   va_end(ap);
3937 }
3938
3939 /*
3940  * Report an error in command-line arguments.
3941  */
3942 void
3943 cmdarg_err(const char *fmt, ...)
3944 {
3945   va_list ap;
3946
3947   va_start(ap, fmt);
3948   failure_message(fmt, ap);
3949   va_end(ap);
3950 }
3951
3952 /*
3953  * Report additional information for an error in command-line arguments.
3954  */
3955 void
3956 cmdarg_err_cont(const char *fmt, ...)
3957 {
3958   va_list ap;
3959
3960   va_start(ap, fmt);
3961   vfprintf(stderr, fmt, ap);
3962   fprintf(stderr, "\n");
3963   va_end(ap);
3964 }
3965
3966
3967 /*
3968  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
3969  *
3970  * Local variables:
3971  * c-basic-offset: 2
3972  * tab-width: 8
3973  * indent-tabs-mode: nil
3974  * End:
3975  *
3976  * vi: set shiftwidth=2 tabstop=8 expandtab:
3977  * :indentSize=2:tabSize=8:noTabs=true:
3978  */