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