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