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