Initialize fd_head->frame in all cases where we allocate fd_head.
[metze/wireshark/wip.git] / rawshark.c
1 /* rawshark.c
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * Rawshark - Raw field extractor by Gerald Combs <gerald@wireshark.org>
8  * and Loris Degioanni <loris.degioanni@cacetech.com>
9  * Based on TShark, by Gilbert Ramirez <gram@alumni.rice.edu> and Guy Harris
10  * <guy@alum.mit.edu>.
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 /*
28  * Rawshark does the following:
29  * - Opens a specified file or named pipe
30  * - Applies a specfied DLT or "decode as" encapsulation
31  * - Reads frames prepended with a libpcap packet header.
32  * - Prints a status line, followed by fields from a specified list.
33  */
34
35 #include <config.h>
36
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <string.h>
40 #include <locale.h>
41 #include <limits.h>
42
43 #ifdef HAVE_GETOPT_H
44 #include <getopt.h>
45 #endif
46
47 #include <errno.h>
48
49 #ifndef HAVE_GETOPT_LONG
50 #include "wsutil/wsgetopt.h"
51 #endif
52
53 #include <glib.h>
54 #include <epan/epan-int.h>
55 #include <epan/epan.h>
56
57 #include <wsutil/cmdarg_err.h>
58 #include <wsutil/crash_info.h>
59 #include <wsutil/filesystem.h>
60 #include <wsutil/file_util.h>
61 #include <wsutil/plugins.h>
62 #include <wsutil/privileges.h>
63 #include <wsutil/report_err.h>
64
65 #include "globals.h"
66 #include <epan/packet.h>
67 #include <epan/ftypes/ftypes-int.h>
68 #include "file.h"
69 #include "frame_tvbuff.h"
70 #include <epan/disabled_protos.h>
71 #include <epan/prefs.h>
72 #include <epan/column.h>
73 #include <epan/print.h>
74 #include <epan/addr_resolv.h>
75 #ifdef HAVE_LIBPCAP
76 #include "ui/capture_ui_utils.h"
77 #endif
78 #include "ui/util.h"
79 #include "register.h"
80 #include "conditions.h"
81 #include "capture_stop_conditions.h"
82 #include <epan/epan_dissect.h>
83 #include <epan/stat_tap_ui.h>
84 #include <epan/timestamp.h>
85 #include <wsutil/unicode-utils.h>
86 #include "epan/column-utils.h"
87 #include "epan/proto.h"
88 #include <epan/tap.h>
89
90 #include <wiretap/wtap.h>
91 #include <wiretap/libpcap.h>
92 #include <wiretap/pcap-encap.h>
93
94 #include <wsutil/clopts_common.h>
95 #include <ws_version_info.h>
96
97 #include "caputils/capture-pcap-util.h"
98
99 #ifdef HAVE_EXTCAP
100 #include "extcap.h"
101 #endif
102
103 #ifdef HAVE_LIBPCAP
104 #include <setjmp.h>
105 #ifdef _WIN32
106 #include "caputils/capture-wpcap.h"
107 #endif /* _WIN32 */
108 #endif /* HAVE_LIBPCAP */
109 #include "log.h"
110
111 #if 0
112 /*
113  * This is the template for the decode as option; it is shared between the
114  * various functions that output the usage for this parameter.
115  */
116 static const gchar decode_as_arg_template[] = "<layer_type>==<selector>,<decode_as_protocol>";
117 #endif
118
119 static guint32 cum_bytes;
120 static const frame_data *ref;
121 static frame_data ref_frame;
122 static frame_data *prev_dis;
123 static frame_data prev_dis_frame;
124 static frame_data *prev_cap;
125 static frame_data prev_cap_frame;
126
127 /*
128  * The way the packet decode is to be written.
129  */
130 typedef enum {
131     WRITE_TEXT, /* summary or detail text */
132     WRITE_XML   /* PDML or PSML */
133     /* Add CSV and the like here */
134 } output_action_e;
135
136 static gboolean line_buffered;
137 static print_format_e print_format = PR_FMT_TEXT;
138
139 static gboolean want_pcap_pkthdr;
140
141 cf_status_t raw_cf_open(capture_file *cf, const char *fname);
142 static gboolean load_cap_file(capture_file *cf);
143 static gboolean process_packet(capture_file *cf, epan_dissect_t *edt, gint64 offset,
144                                struct wtap_pkthdr *whdr, const guchar *pd);
145 static void show_print_file_io_error(int err);
146
147 static void open_failure_message(const char *filename, int err,
148                                  gboolean for_writing);
149 static void failure_message(const char *msg_format, va_list ap);
150 static void read_failure_message(const char *filename, int err);
151 static void write_failure_message(const char *filename, int err);
152 static void rawshark_cmdarg_err(const char *fmt, va_list ap);
153 static void rawshark_cmdarg_err_cont(const char *fmt, va_list ap);
154 static void protocolinfo_init(char *field);
155 static gboolean parse_field_string_format(char *format);
156
157 typedef enum {
158     SF_NONE,    /* No format (placeholder) */
159     SF_NAME,    /* %D Field name / description */
160     SF_NUMVAL,  /* %N Numeric value */
161     SF_STRVAL   /* %S String value */
162 } string_fmt_e;
163
164 typedef struct string_fmt_s {
165     gchar *plain;
166     string_fmt_e format;    /* Valid if plain is NULL */
167 } string_fmt_t;
168
169 capture_file cfile;
170 int n_rfilters;
171 int n_rfcodes;
172 dfilter_t *rfcodes[64];
173 int n_rfieldfilters;
174 dfilter_t *rfieldfcodes[64];
175 int fd;
176 int encap;
177 GPtrArray *string_fmts;
178
179 static void
180 print_usage(FILE *output)
181 {
182     fprintf(output, "\n");
183     fprintf(output, "Usage: rawshark [options] ...\n");
184     fprintf(output, "\n");
185
186     fprintf(output, "Input file:\n");
187     fprintf(output, "  -r <infile>              set the pipe or file name to read from\n");
188
189     fprintf(output, "\n");
190     fprintf(output, "Processing:\n");
191     fprintf(output, "  -d <encap:linktype>|<proto:protoname>\n");
192     fprintf(output, "                           packet encapsulation or protocol\n");
193     fprintf(output, "  -F <field>               field to display\n");
194     fprintf(output, "  -n                       disable all name resolution (def: all enabled)\n");
195     fprintf(output, "  -N <name resolve flags>  enable specific name resolution(s): \"mnNtd\"\n");
196     fprintf(output, "  -p                       use the system's packet header format\n");
197     fprintf(output, "                           (which may have 64-bit timestamps)\n");
198     fprintf(output, "  -R <read filter>         packet filter in Wireshark display filter syntax\n");
199     fprintf(output, "  -s                       skip PCAP header on input\n");
200
201     fprintf(output, "\n");
202     fprintf(output, "Output:\n");
203     fprintf(output, "  -l                       flush output after each packet\n");
204     fprintf(output, "  -S                       format string for fields\n");
205     fprintf(output, "                           (%%D - name, %%S - stringval, %%N numval)\n");
206     fprintf(output, "  -t ad|a|r|d|dd|e         output format of time stamps (def: r: rel. to first)\n");
207
208     fprintf(output, "\n");
209     fprintf(output, "Miscellaneous:\n");
210     fprintf(output, "  -h                       display this help and exit\n");
211     fprintf(output, "  -o <name>:<value> ...    override preference setting\n");
212     fprintf(output, "  -v                       display version info and exit\n");
213 }
214
215 static void
216 log_func_ignore (const gchar *log_domain _U_, GLogLevelFlags log_level _U_,
217                  const gchar *message _U_, gpointer user_data _U_)
218 {
219 }
220
221 /**
222  * Open a pipe for raw input.  This is a stripped-down version of
223  * pcap_loop.c:cap_pipe_open_live().
224  * We check if "pipe_name" is "-" (stdin) or a FIFO, and open it.
225  * @param pipe_name The name of the pipe or FIFO.
226  * @return A POSIX file descriptor on success, or -1 on failure.
227  */
228 static int
229 raw_pipe_open(const char *pipe_name)
230 {
231 #ifndef _WIN32
232     ws_statb64 pipe_stat;
233 #else
234     char *pncopy, *pos = NULL;
235     DWORD err;
236     wchar_t *err_str;
237     HANDLE hPipe = NULL;
238 #endif
239     int          rfd;
240
241     g_log(LOG_DOMAIN_CAPTURE_CHILD, G_LOG_LEVEL_DEBUG, "open_raw_pipe: %s", pipe_name);
242
243     /*
244      * XXX Rawshark blocks until we return
245      */
246     if (strcmp(pipe_name, "-") == 0) {
247         rfd = 0; /* read from stdin */
248 #ifdef _WIN32
249         /*
250          * This is needed to set the stdin pipe into binary mode, otherwise
251          * CR/LF are mangled...
252          */
253         _setmode(0, _O_BINARY);
254 #endif  /* _WIN32 */
255     } else {
256 #ifndef _WIN32
257         if (ws_stat64(pipe_name, &pipe_stat) < 0) {
258             fprintf(stderr, "rawshark: The pipe %s could not be checked: %s\n",
259                     pipe_name, g_strerror(errno));
260             return -1;
261         }
262         if (! S_ISFIFO(pipe_stat.st_mode)) {
263             if (S_ISCHR(pipe_stat.st_mode)) {
264                 /*
265                  * Assume the user specified an interface on a system where
266                  * interfaces are in /dev.  Pretend we haven't seen it.
267                  */
268             } else
269             {
270                 fprintf(stderr, "rawshark: \"%s\" is neither an interface nor a pipe\n",
271                         pipe_name);
272             }
273             return -1;
274         }
275         rfd = ws_open(pipe_name, O_RDONLY | O_NONBLOCK, 0000 /* no creation so don't matter */);
276         if (rfd == -1) {
277             fprintf(stderr, "rawshark: \"%s\" could not be opened: %s\n",
278                     pipe_name, g_strerror(errno));
279             return -1;
280         }
281 #else /* _WIN32 */
282 #define PIPE_STR "\\pipe\\"
283         /* Under Windows, named pipes _must_ have the form
284          * "\\<server>\pipe\<pipe_name>".  <server> may be "." for localhost.
285          */
286         pncopy = g_strdup(pipe_name);
287         if (strstr(pncopy, "\\\\") == pncopy) {
288             pos = strchr(pncopy + 3, '\\');
289             if (pos && g_ascii_strncasecmp(pos, PIPE_STR, strlen(PIPE_STR)) != 0)
290                 pos = NULL;
291         }
292
293         g_free(pncopy);
294
295         if (!pos) {
296             fprintf(stderr, "rawshark: \"%s\" is neither an interface nor a pipe\n",
297                     pipe_name);
298             return -1;
299         }
300
301         /* Wait for the pipe to appear */
302         while (1) {
303             hPipe = CreateFile(utf_8to16(pipe_name), GENERIC_READ, 0, NULL,
304                                OPEN_EXISTING, 0, NULL);
305
306             if (hPipe != INVALID_HANDLE_VALUE)
307                 break;
308
309             err = GetLastError();
310             if (err != ERROR_PIPE_BUSY) {
311                 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS,
312                               NULL, err, 0, (LPTSTR) &err_str, 0, NULL);
313                 fprintf(stderr, "rawshark: \"%s\" could not be opened: %s (error %lu)\n",
314                         pipe_name, utf_16to8(err_str), err);
315                 LocalFree(err_str);
316                 return -1;
317             }
318
319             if (!WaitNamedPipe(utf_8to16(pipe_name), 30 * 1000)) {
320                 err = GetLastError();
321                 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS,
322                               NULL, err, 0, (LPTSTR) &err_str, 0, NULL);
323                 fprintf(stderr, "rawshark: \"%s\" could not be waited for: %s (error %lu)\n",
324                         pipe_name, utf_16to8(err_str), err);
325                 LocalFree(err_str);
326                 return -1;
327             }
328         }
329
330         rfd = _open_osfhandle((intptr_t) hPipe, _O_RDONLY);
331         if (rfd == -1) {
332             fprintf(stderr, "rawshark: \"%s\" could not be opened: %s\n",
333                     pipe_name, g_strerror(errno));
334             return -1;
335         }
336 #endif /* _WIN32 */
337     }
338
339     return rfd;
340 }
341
342 /**
343  * Parse a link-type argument of the form "encap:<pcap linktype>" or
344  * "proto:<proto name>".  "Pcap linktype" must be a name conforming to
345  * pcap_datalink_name_to_val() or an integer; the integer should be
346  * a LINKTYPE_ value supported by Wiretap.  "Proto name" must be
347  * a protocol name, e.g. "http".
348  */
349 static gboolean
350 set_link_type(const char *lt_arg) {
351     char *spec_ptr = strchr(lt_arg, ':');
352     char *p;
353     int dlt_val;
354     long val;
355     dissector_handle_t dhandle;
356     GString *pref_str;
357
358     if (!spec_ptr)
359         return FALSE;
360
361     spec_ptr++;
362
363     if (strncmp(lt_arg, "encap:", strlen("encap:")) == 0) {
364         dlt_val = linktype_name_to_val(spec_ptr);
365         if (dlt_val == -1) {
366             errno = 0;
367             val = strtol(spec_ptr, &p, 10);
368             if (p == spec_ptr || *p != '\0' || errno != 0 || val > INT_MAX) {
369                 return FALSE;
370             }
371             dlt_val = (int)val;
372         }
373         /*
374          * In those cases where a given link-layer header type
375          * has different LINKTYPE_ and DLT_ values, linktype_name_to_val()
376          * will return the OS's DLT_ value for that link-layer header
377          * type, not its OS-independent LINKTYPE_ value.
378          *
379          * On a given OS, wtap_pcap_encap_to_wtap_encap() should
380          * be able to map either LINKTYPE_ values or DLT_ values
381          * for the OS to the appropriate Wiretap encapsulation.
382          */
383         encap = wtap_pcap_encap_to_wtap_encap(dlt_val);
384         if (encap == WTAP_ENCAP_UNKNOWN) {
385             return FALSE;
386         }
387         return TRUE;
388     } else if (strncmp(lt_arg, "proto:", strlen("proto:")) == 0) {
389         dhandle = find_dissector(spec_ptr);
390         if (dhandle) {
391             encap = WTAP_ENCAP_USER0;
392             pref_str = g_string_new("uat:user_dlts:");
393             /* This must match the format used in the user_dlts file */
394             g_string_append_printf(pref_str,
395                                    "\"User 0 (DLT=147)\",\"%s\",\"0\",\"\",\"0\",\"\"",
396                                    spec_ptr);
397             if (prefs_set_pref(pref_str->str) != PREFS_SET_OK) {
398                 g_string_free(pref_str, TRUE);
399                 return FALSE;
400             }
401             g_string_free(pref_str, TRUE);
402             return TRUE;
403         }
404     }
405     return FALSE;
406 }
407
408 int
409 main(int argc, char *argv[])
410 {
411     GString             *comp_info_str;
412     GString             *runtime_info_str;
413     char                *init_progfile_dir_error;
414     int                  opt, i;
415     gboolean             arg_error = FALSE;
416
417 #ifdef _WIN32
418     WSADATA              wsaData;
419 #endif  /* _WIN32 */
420
421     char                *gpf_path, *pf_path;
422     char                *gdp_path, *dp_path;
423     int                  gpf_open_errno, gpf_read_errno;
424     int                  pf_open_errno, pf_read_errno;
425     int                  gdp_open_errno, gdp_read_errno;
426     int                  dp_open_errno, dp_read_errno;
427     gchar               *pipe_name = NULL;
428     gchar               *rfilters[64];
429     e_prefs             *prefs_p;
430     char                 badopt;
431     int                  log_flags;
432     GPtrArray           *disp_fields = g_ptr_array_new();
433     guint                fc;
434     gboolean             skip_pcap_header = FALSE;
435     static const struct option long_options[] = {
436       {"help", no_argument, NULL, 'h'},
437       {"version", no_argument, NULL, 'v'},
438       {0, 0, 0, 0 }
439     };
440
441 #define OPTSTRING_INIT "d:F:hlnN:o:pr:R:sS:t:v"
442
443     static const char    optstring[] = OPTSTRING_INIT;
444
445     /* Set the C-language locale to the native environment. */
446     setlocale(LC_ALL, "");
447
448     cmdarg_err_init(rawshark_cmdarg_err, rawshark_cmdarg_err_cont);
449
450     /* Get the compile-time version information string */
451     comp_info_str = get_compiled_version_info(NULL, epan_get_compiled_version_info);
452
453     /* Get the run-time version information string */
454     runtime_info_str = get_runtime_version_info(NULL);
455
456     /* Add it to the information to be reported on a crash. */
457     ws_add_crash_info("Rawshark (Wireshark) %s\n"
458            "\n"
459            "%s"
460            "\n"
461            "%s",
462         get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
463
464 #ifdef _WIN32
465     arg_list_utf_16to8(argc, argv);
466     create_app_running_mutex();
467 #endif /* _WIN32 */
468
469     /*
470      * Get credential information for later use.
471      */
472     init_process_policies();
473
474     /*
475      * Clear the filters arrays
476      */
477     memset(rfilters, 0, sizeof(rfilters));
478     memset(rfcodes, 0, sizeof(rfcodes));
479     n_rfilters = 0;
480     n_rfcodes = 0;
481
482     /*
483      * Initialize our string format
484      */
485     string_fmts = g_ptr_array_new();
486
487     /*
488      * Attempt to get the pathname of the directory containing the
489      * executable file.
490      */
491     init_progfile_dir_error = init_progfile_dir(argv[0], main);
492     if (init_progfile_dir_error != NULL) {
493         fprintf(stderr, "rawshark: Can't get pathname of rawshark program: %s.\n",
494                 init_progfile_dir_error);
495     }
496
497     /* nothing more than the standard GLib handler, but without a warning */
498     log_flags =
499         G_LOG_LEVEL_WARNING |
500         G_LOG_LEVEL_MESSAGE |
501         G_LOG_LEVEL_INFO |
502         G_LOG_LEVEL_DEBUG;
503
504     g_log_set_handler(NULL,
505                       (GLogLevelFlags)log_flags,
506                       log_func_ignore, NULL /* user_data */);
507     g_log_set_handler(LOG_DOMAIN_CAPTURE_CHILD,
508                       (GLogLevelFlags)log_flags,
509                       log_func_ignore, NULL /* user_data */);
510
511     init_report_err(failure_message, open_failure_message, read_failure_message,
512                     write_failure_message);
513
514     timestamp_set_type(TS_RELATIVE);
515     timestamp_set_precision(TS_PREC_AUTO);
516     timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
517
518     wtap_init();
519
520     /* Register all dissectors; we must do this before checking for the
521        "-G" flag, as the "-G" flag dumps information registered by the
522        dissectors, and we must do it before we read the preferences, in
523        case any dissectors register preferences. */
524     if (!epan_init(register_all_protocols, register_all_protocol_handoffs,
525                    NULL, NULL))
526         return 2;
527
528     prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
529                          &pf_open_errno, &pf_read_errno, &pf_path);
530     if (gpf_path != NULL) {
531         if (gpf_open_errno != 0) {
532             cmdarg_err("Can't open global preferences file \"%s\": %s.",
533                        pf_path, g_strerror(gpf_open_errno));
534         }
535         if (gpf_read_errno != 0) {
536             cmdarg_err("I/O error reading global preferences file \"%s\": %s.",
537                        pf_path, g_strerror(gpf_read_errno));
538         }
539     }
540     if (pf_path != NULL) {
541         if (pf_open_errno != 0) {
542             cmdarg_err("Can't open your preferences file \"%s\": %s.", pf_path,
543                        g_strerror(pf_open_errno));
544         }
545         if (pf_read_errno != 0) {
546             cmdarg_err("I/O error reading your preferences file \"%s\": %s.",
547                        pf_path, g_strerror(pf_read_errno));
548         }
549         g_free(pf_path);
550         pf_path = NULL;
551     }
552
553     /* Read the disabled protocols file. */
554     read_disabled_protos_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
555                               &dp_path, &dp_open_errno, &dp_read_errno);
556     read_disabled_heur_dissector_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
557                               &dp_path, &dp_open_errno, &dp_read_errno);
558     if (gdp_path != NULL) {
559         if (gdp_open_errno != 0) {
560             cmdarg_err("Could not open global disabled protocols file\n\"%s\": %s.",
561                        gdp_path, g_strerror(gdp_open_errno));
562         }
563         if (gdp_read_errno != 0) {
564             cmdarg_err("I/O error reading global disabled protocols file\n\"%s\": %s.",
565                        gdp_path, g_strerror(gdp_read_errno));
566         }
567         g_free(gdp_path);
568     }
569     if (dp_path != NULL) {
570         if (dp_open_errno != 0) {
571             cmdarg_err(
572                 "Could not open your disabled protocols file\n\"%s\": %s.", dp_path,
573                 g_strerror(dp_open_errno));
574         }
575         if (dp_read_errno != 0) {
576             cmdarg_err(
577                 "I/O error reading your disabled protocols file\n\"%s\": %s.", dp_path,
578                 g_strerror(dp_read_errno));
579         }
580         g_free(dp_path);
581     }
582
583 #ifdef _WIN32
584     ws_init_dll_search_path();
585     /* Load Wpcap, if possible */
586     load_wpcap();
587 #endif
588
589     cap_file_init(&cfile);
590
591     /* Print format defaults to this. */
592     print_format = PR_FMT_TEXT;
593
594     /* Initialize our encapsulation type */
595     encap = WTAP_ENCAP_UNKNOWN;
596
597     /* Now get our args */
598     /* XXX - We should probably have an option to dump libpcap link types */
599     while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
600         switch (opt) {
601             case 'd':        /* Payload type */
602                 if (!set_link_type(optarg)) {
603                     cmdarg_err("Invalid link type or protocol \"%s\"", optarg);
604                     exit(1);
605                 }
606                 break;
607             case 'F':        /* Read field to display */
608                 g_ptr_array_add(disp_fields, g_strdup(optarg));
609                 break;
610             case 'h':        /* Print help and exit */
611                 printf("Rawshark (Wireshark) %s\n"
612                        "Dump and analyze network traffic.\n"
613                        "See https://www.wireshark.org for more information.\n",
614                        get_ws_vcs_version_info());
615                 print_usage(stdout);
616                 exit(0);
617                 break;
618             case 'l':        /* "Line-buffer" standard output */
619                 /* This isn't line-buffering, strictly speaking, it's just
620                    flushing the standard output after the information for
621                    each packet is printed; however, that should be good
622                    enough for all the purposes to which "-l" is put (and
623                    is probably actually better for "-V", as it does fewer
624                    writes).
625
626                    See the comment in "process_packet()" for an explanation of
627                    why we do that, and why we don't just use "setvbuf()" to
628                    make the standard output line-buffered (short version: in
629                    Windows, "line-buffered" is the same as "fully-buffered",
630                    and the output buffer is only flushed when it fills up). */
631                 line_buffered = TRUE;
632                 break;
633             case 'n':        /* No name resolution */
634                 disable_name_resolution();
635                 break;
636             case 'N':        /* Select what types of addresses/port #s to resolve */
637                 badopt = string_to_name_resolve(optarg, &gbl_resolv_flags);
638                 if (badopt != '\0') {
639                     cmdarg_err("-N specifies unknown resolving option '%c'; valid options are 'd', m', 'n', 'N', and 't'",
640                                badopt);
641                     exit(1);
642                 }
643                 break;
644             case 'o':        /* Override preference from command line */
645                 switch (prefs_set_pref(optarg)) {
646
647                     case PREFS_SET_OK:
648                         break;
649
650                     case PREFS_SET_SYNTAX_ERR:
651                         cmdarg_err("Invalid -o flag \"%s\"", optarg);
652                         exit(1);
653                         break;
654
655                     case PREFS_SET_NO_SUCH_PREF:
656                     case PREFS_SET_OBSOLETE:
657                         cmdarg_err("-o flag \"%s\" specifies unknown preference", optarg);
658                         exit(1);
659                         break;
660                 }
661                 break;
662             case 'p':        /* Expect pcap_pkthdr packet headers, which may have 64-bit timestamps */
663                 want_pcap_pkthdr = TRUE;
664                 break;
665             case 'r':        /* Read capture file xxx */
666                 pipe_name = g_strdup(optarg);
667                 break;
668             case 'R':        /* Read file filter */
669                 if(n_rfilters < (int) sizeof(rfilters) / (int) sizeof(rfilters[0])) {
670                     rfilters[n_rfilters++] = optarg;
671                 }
672                 else {
673                     cmdarg_err("Too many display filters");
674                     exit(1);
675                 }
676                 break;
677             case 's':        /* Skip PCAP header */
678                 skip_pcap_header = TRUE;
679                 break;
680             case 'S':        /* Print string representations */
681                 if (!parse_field_string_format(optarg)) {
682                     cmdarg_err("Invalid field string format");
683                     exit(1);
684                 }
685                 break;
686             case 't':        /* Time stamp type */
687                 if (strcmp(optarg, "r") == 0)
688                     timestamp_set_type(TS_RELATIVE);
689                 else if (strcmp(optarg, "a") == 0)
690                     timestamp_set_type(TS_ABSOLUTE);
691                 else if (strcmp(optarg, "ad") == 0)
692                     timestamp_set_type(TS_ABSOLUTE_WITH_YMD);
693                 else if (strcmp(optarg, "adoy") == 0)
694                     timestamp_set_type(TS_ABSOLUTE_WITH_YDOY);
695                 else if (strcmp(optarg, "d") == 0)
696                     timestamp_set_type(TS_DELTA);
697                 else if (strcmp(optarg, "dd") == 0)
698                     timestamp_set_type(TS_DELTA_DIS);
699                 else if (strcmp(optarg, "e") == 0)
700                     timestamp_set_type(TS_EPOCH);
701                 else if (strcmp(optarg, "u") == 0)
702                     timestamp_set_type(TS_UTC);
703                 else if (strcmp(optarg, "ud") == 0)
704                     timestamp_set_type(TS_UTC_WITH_YMD);
705                 else if (strcmp(optarg, "udoy") == 0)
706                     timestamp_set_type(TS_UTC_WITH_YDOY);
707                 else {
708                     cmdarg_err("Invalid time stamp type \"%s\"",
709                                optarg);
710                     cmdarg_err_cont(
711 "It must be \"a\" for absolute, \"ad\" for absolute with YYYY-MM-DD date,");
712                     cmdarg_err_cont(
713 "\"adoy\" for absolute with YYYY/DOY date, \"d\" for delta,");
714                     cmdarg_err_cont(
715 "\"dd\" for delta displayed, \"e\" for epoch, \"r\" for relative,");
716                     cmdarg_err_cont(
717 "\"u\" for absolute UTC, \"ud\" for absolute UTC with YYYY-MM-DD date,");
718                     cmdarg_err_cont(
719 "or \"udoy\" for absolute UTC with YYYY/DOY date.");
720                     exit(1);
721                 }
722                 break;
723             case 'v':        /* Show version and exit */
724             {
725                 show_version("Rawshark (Wireshark)", comp_info_str, runtime_info_str);
726                 g_string_free(comp_info_str, TRUE);
727                 g_string_free(runtime_info_str, TRUE);
728                 exit(0);
729                 break;
730             }
731             default:
732             case '?':        /* Bad flag - print usage message */
733                 print_usage(stderr);
734             exit(1);
735             break;
736         }
737     }
738
739     /* Notify all registered modules that have had any of their preferences
740        changed either from one of the preferences file or from the command
741        line that their preferences have changed.
742        Initialize preferences before display filters, otherwise modules
743        like MATE won't work. */
744     prefs_apply_all();
745
746     /* Initialize our display fields */
747     for (fc = 0; fc < disp_fields->len; fc++) {
748         protocolinfo_init((char *)g_ptr_array_index(disp_fields, fc));
749     }
750     g_ptr_array_free(disp_fields, TRUE);
751     printf("\n");
752     fflush(stdout);
753
754     /* If no capture filter or read filter has been specified, and there are
755        still command-line arguments, treat them as the tokens of a capture
756        filter (if no "-r" flag was specified) or a read filter (if a "-r"
757        flag was specified. */
758     if (optind < argc) {
759         if (pipe_name != NULL) {
760             if (n_rfilters != 0) {
761                 cmdarg_err("Read filters were specified both with \"-R\" "
762                            "and with additional command-line arguments");
763                 exit(1);
764             }
765             rfilters[n_rfilters] = get_args_as_string(argc, argv, optind);
766         }
767     }
768
769     /* Make sure we got a dissector handle for our payload. */
770     if (encap == WTAP_ENCAP_UNKNOWN) {
771         cmdarg_err("No valid payload dissector specified.");
772         exit(1);
773     }
774
775     if (arg_error) {
776         print_usage(stderr);
777         exit(1);
778     }
779
780
781 #ifdef _WIN32
782     /* Start windows sockets */
783     WSAStartup( MAKEWORD( 1, 1 ), &wsaData );
784 #endif /* _WIN32 */
785
786     /* At this point MATE will have registered its field array so we can
787        have a tap filter with one of MATE's late-registered fields as part
788        of the filter.  We can now process all the "-z" arguments. */
789     start_requested_stats();
790
791     /* disabled protocols as per configuration file */
792     if (gdp_path == NULL && dp_path == NULL) {
793         set_disabled_protos_list();
794         set_disabled_heur_dissector_list();
795     }
796
797     /* Build the column format array */
798     build_column_format_array(&cfile.cinfo, prefs_p->num_cols, TRUE);
799
800     if (n_rfilters != 0) {
801         for (i = 0; i < n_rfilters; i++) {
802             gchar *err_msg;
803
804             if (!dfilter_compile(rfilters[i], &rfcodes[n_rfcodes], &err_msg)) {
805                 cmdarg_err("%s", err_msg);
806                 g_free(err_msg);
807                 epan_free(cfile.epan);
808                 epan_cleanup();
809 #ifdef HAVE_EXTCAP
810                 extcap_cleanup();
811 #endif
812                 exit(2);
813             }
814             n_rfcodes++;
815         }
816     }
817
818     if (pipe_name) {
819         /*
820          * We're reading a pipe (or capture file).
821          */
822
823         /*
824          * Immediately relinquish any special privileges we have; we must not
825          * be allowed to read any capture files the user running Rawshark
826          * can't open.
827          */
828         relinquish_special_privs_perm();
829
830         if (raw_cf_open(&cfile, pipe_name) != CF_OK) {
831             epan_free(cfile.epan);
832             epan_cleanup();
833 #ifdef HAVE_EXTCAP
834             extcap_cleanup();
835 #endif
836             exit(2);
837         }
838
839         /* Do we need to PCAP header and magic? */
840         if (skip_pcap_header) {
841             size_t bytes_left = sizeof(struct pcap_hdr) + sizeof(guint32);
842             gchar buf[sizeof(struct pcap_hdr) + sizeof(guint32)];
843             while (bytes_left != 0) {
844                 ssize_t bytes = ws_read(fd, buf, (int)bytes_left);
845                 if (bytes <= 0) {
846                     cmdarg_err("Not enough bytes for pcap header.");
847                     exit(2);
848                 }
849                 bytes_left -= bytes;
850             }
851         }
852
853         /* Process the packets in the file */
854         if (!load_cap_file(&cfile)) {
855             epan_free(cfile.epan);
856             epan_cleanup();
857 #ifdef HAVE_EXTCAP
858             extcap_cleanup();
859 #endif
860             exit(2);
861         }
862     } else {
863         /* If you want to capture live packets, use TShark. */
864         cmdarg_err("Input file or pipe name not specified.");
865         exit(2);
866     }
867
868     epan_free(cfile.epan);
869     epan_cleanup();
870 #ifdef HAVE_EXTCAP
871     extcap_cleanup();
872 #endif
873     return 0;
874 }
875
876 /**
877  * Read data from a raw pipe.  The "raw" data consists of a libpcap
878  * packet header followed by the payload.
879  * @param pd [IN] A POSIX file descriptor.  Because that's _exactly_ the sort
880  *           of thing you want to use in Windows.
881  * @param phdr [OUT] Packet header information.
882  * @param err [OUT] Error indicator.  Uses wiretap values.
883  * @param err_info [OUT] Error message.
884  * @param data_offset [OUT] data offset in the pipe.
885  * @return TRUE on success, FALSE on failure.
886  */
887 static gboolean
888 raw_pipe_read(struct wtap_pkthdr *phdr, guchar * pd, int *err, gchar **err_info, gint64 *data_offset) {
889     struct pcap_pkthdr mem_hdr;
890     struct pcaprec_hdr disk_hdr;
891     ssize_t bytes_read = 0;
892     size_t bytes_needed = sizeof(disk_hdr);
893     guchar *ptr = (guchar*) &disk_hdr;
894
895     if (want_pcap_pkthdr) {
896         bytes_needed = sizeof(mem_hdr);
897         ptr = (guchar*) &mem_hdr;
898     }
899
900     /* Copied from capture_loop.c */
901     while (bytes_needed > 0) {
902         bytes_read = ws_read(fd, ptr, (int)bytes_needed);
903         if (bytes_read == 0) {
904             *err = 0;
905             *err_info = NULL;
906             return FALSE;
907         } else if (bytes_read < 0) {
908             *err = errno;
909             *err_info = NULL;
910             return FALSE;
911         }
912         bytes_needed -= bytes_read;
913         *data_offset += bytes_read;
914         ptr += bytes_read;
915     }
916
917     if (want_pcap_pkthdr) {
918         phdr->ts.secs = mem_hdr.ts.tv_sec;
919         phdr->ts.nsecs = (gint32)mem_hdr.ts.tv_usec * 1000;
920         phdr->caplen = mem_hdr.caplen;
921         phdr->len = mem_hdr.len;
922     } else {
923         phdr->ts.secs = disk_hdr.ts_sec;
924         phdr->ts.nsecs = disk_hdr.ts_usec * 1000;
925         phdr->caplen = disk_hdr.incl_len;
926         phdr->len = disk_hdr.orig_len;
927     }
928     bytes_needed = phdr->caplen;
929
930     phdr->pkt_encap = encap;
931
932 #if 0
933     printf("mem_hdr: %lu disk_hdr: %lu\n", sizeof(mem_hdr), sizeof(disk_hdr));
934     printf("tv_sec: %u (%04x)\n", (unsigned int) phdr->ts.secs, (unsigned int) phdr->ts.secs);
935     printf("tv_nsec: %d (%04x)\n", phdr->ts.nsecs, phdr->ts.nsecs);
936     printf("caplen: %d (%04x)\n", phdr->caplen, phdr->caplen);
937     printf("len: %d (%04x)\n", phdr->len, phdr->len);
938 #endif
939     if (bytes_needed > WTAP_MAX_PACKET_SIZE) {
940         *err = WTAP_ERR_BAD_FILE;
941         *err_info = g_strdup_printf("Bad packet length: %lu\n",
942                    (unsigned long) bytes_needed);
943         return FALSE;
944     }
945
946     ptr = pd;
947     while (bytes_needed > 0) {
948         bytes_read = ws_read(fd, ptr, (int)bytes_needed);
949         if (bytes_read == 0) {
950             *err = WTAP_ERR_SHORT_READ;
951             *err_info = NULL;
952             return FALSE;
953         } else if (bytes_read < 0) {
954             *err = errno;
955             *err_info = NULL;
956             return FALSE;
957         }
958         bytes_needed -= bytes_read;
959         *data_offset += bytes_read;
960         ptr += bytes_read;
961     }
962     return TRUE;
963 }
964
965 static gboolean
966 load_cap_file(capture_file *cf)
967 {
968     int          err;
969     gchar       *err_info;
970     gint64       data_offset = 0;
971
972     guchar pd[WTAP_MAX_PACKET_SIZE];
973     struct wtap_pkthdr phdr;
974     epan_dissect_t edt;
975
976     wtap_phdr_init(&phdr);
977
978     epan_dissect_init(&edt, cf->epan, TRUE, FALSE);
979
980     while (raw_pipe_read(&phdr, pd, &err, &err_info, &data_offset)) {
981         process_packet(cf, &edt, data_offset, &phdr, pd);
982     }
983
984     epan_dissect_cleanup(&edt);
985
986     wtap_phdr_cleanup(&phdr);
987
988     if (err != 0) {
989         /* Print a message noting that the read failed somewhere along the line. */
990         switch (err) {
991
992             case WTAP_ERR_UNSUPPORTED:
993                 cmdarg_err("The file \"%s\" contains record data that Rawshark doesn't support.\n(%s)",
994                            cf->filename,
995                            err_info != NULL ? err_info : "no information supplied");
996                 g_free(err_info);
997                 break;
998
999             case WTAP_ERR_SHORT_READ:
1000                 cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
1001                            cf->filename);
1002                 break;
1003
1004             case WTAP_ERR_BAD_FILE:
1005                 cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
1006                            cf->filename,
1007                            err_info != NULL ? err_info : "no information supplied");
1008                 g_free(err_info);
1009                 break;
1010
1011             case WTAP_ERR_DECOMPRESS:
1012                 cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n(%s)",
1013                            cf->filename,
1014                            err_info != NULL ? err_info : "no information supplied");
1015                 g_free(err_info);
1016                 break;
1017
1018             default:
1019                 cmdarg_err("An error occurred while reading the file \"%s\": %s.",
1020                            cf->filename, wtap_strerror(err));
1021                 break;
1022         }
1023         return FALSE;
1024     }
1025
1026     return TRUE;
1027 }
1028
1029 static gboolean
1030 process_packet(capture_file *cf, epan_dissect_t *edt, gint64 offset,
1031                struct wtap_pkthdr *whdr, const guchar *pd)
1032 {
1033     frame_data fdata;
1034     gboolean passed;
1035     int i;
1036
1037     if(whdr->len == 0)
1038     {
1039         /* The user sends an empty packet when he wants to get output from us even if we don't currently have
1040            packets to process. We spit out a line with the timestamp and the text "void"
1041         */
1042         printf("%lu %lu %lu void -\n", (unsigned long int)cf->count,
1043                (unsigned long int)whdr->ts.secs,
1044                (unsigned long int)whdr->ts.nsecs);
1045
1046         fflush(stdout);
1047
1048         return FALSE;
1049     }
1050
1051     /* Count this packet. */
1052     cf->count++;
1053
1054     /* If we're going to print packet information, or we're going to
1055        run a read filter, or we're going to process taps, set up to
1056        do a dissection and do so. */
1057     frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
1058
1059     passed = TRUE;
1060
1061     /* If we're running a read filter, prime the epan_dissect_t with that
1062        filter. */
1063     if (n_rfilters > 0) {
1064         for(i = 0; i < n_rfcodes; i++) {
1065             epan_dissect_prime_dfilter(edt, rfcodes[i]);
1066         }
1067     }
1068
1069     printf("%lu", (unsigned long int) cf->count);
1070
1071     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
1072                                   &ref, prev_dis);
1073
1074     if (ref == &fdata) {
1075        ref_frame = fdata;
1076        ref = &ref_frame;
1077     }
1078
1079     /* We only need the columns if we're printing packet info but we're
1080      *not* verbose; in verbose mode, we print the protocol tree, not
1081      the protocol summary. */
1082     epan_dissect_run_with_taps(edt, cf->cd_t, whdr, frame_tvbuff_new(&fdata, pd), &fdata, &cf->cinfo);
1083
1084     frame_data_set_after_dissect(&fdata, &cum_bytes);
1085     prev_dis_frame = fdata;
1086     prev_dis = &prev_dis_frame;
1087
1088     prev_cap_frame = fdata;
1089     prev_cap = &prev_cap_frame;
1090
1091     for(i = 0; i < n_rfilters; i++) {
1092         /* Run the read filter if we have one. */
1093         if (rfcodes[i])
1094             passed = dfilter_apply_edt(rfcodes[i], edt);
1095         else
1096             passed = TRUE;
1097
1098         /* Print a one-line summary */
1099         printf(" %d", passed ? 1 : 0);
1100     }
1101
1102     printf(" -\n");
1103
1104     /* The ANSI C standard does not appear to *require* that a line-buffered
1105        stream be flushed to the host environment whenever a newline is
1106        written, it just says that, on such a stream, characters "are
1107        intended to be transmitted to or from the host environment as a
1108        block when a new-line character is encountered".
1109
1110        The Visual C++ 6.0 C implementation doesn't do what is intended;
1111        even if you set a stream to be line-buffered, it still doesn't
1112        flush the buffer at the end of every line.
1113
1114        So, if the "-l" flag was specified, we flush the standard output
1115        at the end of a packet.  This will do the right thing if we're
1116        printing packet summary lines, and, as we print the entire protocol
1117        tree for a single packet without waiting for anything to happen,
1118        it should be as good as line-buffered mode if we're printing
1119        protocol trees.  (The whole reason for the "-l" flag in either
1120        tcpdump or Rawshark is to allow the output of a live capture to
1121        be piped to a program or script and to have that script see the
1122        information for the packet as soon as it's printed, rather than
1123        having to wait until a standard I/O buffer fills up. */
1124     if (line_buffered)
1125         fflush(stdout);
1126
1127     if (ferror(stdout)) {
1128         show_print_file_io_error(errno);
1129         exit(2);
1130     }
1131
1132     epan_dissect_reset(edt);
1133     frame_data_destroy(&fdata);
1134
1135     return passed;
1136 }
1137
1138 /****************************************************************************************
1139  * FIELD EXTRACTION ROUTINES
1140  ****************************************************************************************/
1141 typedef struct _pci_t {
1142     char *filter;
1143     int hf_index;
1144     int cmd_line_index;
1145 } pci_t;
1146
1147 static const char* ftenum_to_string(header_field_info *hfi)
1148 {
1149     const char* str;
1150     if (!hfi) {
1151         return "n.a.";
1152     }
1153
1154     if (string_fmts->len > 0 && hfi->strings) {
1155         return "FT_STRING";
1156     }
1157
1158     str = ftype_name(hfi->type);
1159     if (str == NULL) {
1160         str = "n.a.";
1161     }
1162
1163     return str;
1164 }
1165
1166 static void field_display_to_string(header_field_info *hfi, char* buf, int size)
1167 {
1168     if (hfi->type != FT_BOOLEAN)
1169     {
1170         g_strlcpy(buf, proto_field_display_to_string(hfi->display), size);
1171     }
1172     else
1173     {
1174         g_snprintf(buf, size, "(Bit count: %d)", hfi->display);
1175     }
1176 }
1177
1178 /*
1179  * Copied from various parts of proto.c
1180  */
1181 #define FIELD_STR_INIT_LEN 256
1182 #define cVALS(x) (const value_string*)(x)
1183 static gboolean print_field_value(field_info *finfo, int cmd_line_index)
1184 {
1185     header_field_info   *hfinfo;
1186     char                *fs_buf = NULL;
1187     char                *fs_ptr = NULL;
1188     static GString     *label_s = NULL;
1189     int                 fs_len;
1190     guint              i;
1191     string_fmt_t       *sf;
1192     guint32            uvalue;
1193     gint32             svalue;
1194     guint64            uvalue64;
1195     gint64             svalue64;
1196     const true_false_string *tfstring = &tfs_true_false;
1197
1198     hfinfo = finfo->hfinfo;
1199
1200     if (!label_s) {
1201         label_s = g_string_new("");
1202     }
1203
1204     if(finfo->value.ftype->val_to_string_repr)
1205     {
1206         /*
1207          * this field has an associated value,
1208          * e.g: ip.hdr_len
1209          */
1210         fs_len = fvalue_string_repr_len(&finfo->value, FTREPR_DFILTER, finfo->hfinfo->display);
1211         fs_buf = fvalue_to_string_repr(NULL, &finfo->value,
1212                               FTREPR_DFILTER, finfo->hfinfo->display);
1213         fs_ptr = fs_buf;
1214
1215         /* String types are quoted. Remove them. */
1216         if (IS_FT_STRING(finfo->value.ftype->ftype) && fs_len > 2) {
1217             fs_buf[fs_len - 1] = '\0';
1218             fs_ptr++;
1219         }
1220     }
1221
1222     if (string_fmts->len > 0 && finfo->hfinfo->strings) {
1223         g_string_truncate(label_s, 0);
1224         for (i = 0; i < string_fmts->len; i++) {
1225             sf = (string_fmt_t *)g_ptr_array_index(string_fmts, i);
1226             if (sf->plain) {
1227                 g_string_append(label_s, sf->plain);
1228             } else {
1229                 switch (sf->format) {
1230                     case SF_NAME:
1231                         g_string_append(label_s, hfinfo->name);
1232                         break;
1233                     case SF_NUMVAL:
1234                         g_string_append(label_s, fs_ptr);
1235                         break;
1236                     case SF_STRVAL:
1237                         switch(hfinfo->type) {
1238                             case FT_BOOLEAN:
1239                                 uvalue64 = fvalue_get_uinteger64(&finfo->value);
1240                                 tfstring = (const struct true_false_string*) hfinfo->strings;
1241                                 g_string_append(label_s, uvalue64 ? tfstring->true_string : tfstring->false_string);
1242                                 break;
1243                             case FT_INT8:
1244                             case FT_INT16:
1245                             case FT_INT24:
1246                             case FT_INT32:
1247                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1248                                 svalue = fvalue_get_sinteger(&finfo->value);
1249                                 if (hfinfo->display & BASE_RANGE_STRING) {
1250                                     g_string_append(label_s, rval_to_str_const(svalue, RVALS(hfinfo->strings), "Unknown"));
1251                                 } else if (hfinfo->display & BASE_EXT_STRING) {
1252                                     g_string_append(label_s, val_to_str_ext_const(svalue, (value_string_ext *) hfinfo->strings, "Unknown"));
1253                                 } else {
1254                                     g_string_append(label_s, val_to_str_const(svalue, cVALS(hfinfo->strings), "Unknown"));
1255                                 }
1256                                 break;
1257                             case FT_INT40: /* XXX: Shouldn't these be as smart as FT_INT{8,16,24,32}? */
1258                             case FT_INT48:
1259                             case FT_INT56:
1260                             case FT_INT64:
1261                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1262                                 svalue64 = (gint64)fvalue_get_sinteger64(&finfo->value);
1263                                 if (hfinfo->display & BASE_VAL64_STRING) {
1264                                     g_string_append(label_s, val64_to_str_const(svalue64, (const val64_string *)(hfinfo->strings), "Unknown"));
1265                                 }
1266                                 break;
1267                             case FT_UINT8:
1268                             case FT_UINT16:
1269                             case FT_UINT24:
1270                             case FT_UINT32:
1271                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1272                                 uvalue = fvalue_get_uinteger(&finfo->value);
1273                                 if (!hfinfo->bitmask && hfinfo->display & BASE_RANGE_STRING) {
1274                                     g_string_append(label_s, rval_to_str_const(uvalue, RVALS(hfinfo->strings), "Unknown"));
1275                                 } else if (hfinfo->display & BASE_EXT_STRING) {
1276                                     g_string_append(label_s, val_to_str_ext_const(uvalue, (value_string_ext *) hfinfo->strings, "Unknown"));
1277                                 } else {
1278                                     g_string_append(label_s, val_to_str_const(uvalue, cVALS(hfinfo->strings), "Unknown"));
1279                                 }
1280                                 break;
1281                             case FT_UINT40: /* XXX: Shouldn't these be as smart as FT_INT{8,16,24,32}? */
1282                             case FT_UINT48:
1283                             case FT_UINT56:
1284                             case FT_UINT64:
1285                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1286                                 uvalue64 = fvalue_get_uinteger64(&finfo->value);
1287                                 if (hfinfo->display & BASE_VAL64_STRING) {
1288                                     g_string_append(label_s, val64_to_str_const(uvalue64, (const val64_string *)(hfinfo->strings), "Unknown"));
1289                                 }
1290                                 break;
1291                             default:
1292                                 break;
1293                         }
1294                         break;
1295                     default:
1296                         break;
1297                 }
1298             }
1299         }
1300         printf(" %d=\"%s\"", cmd_line_index, label_s->str);
1301         wmem_free(NULL, fs_buf);
1302         return TRUE;
1303     }
1304
1305     if(finfo->value.ftype->val_to_string_repr)
1306     {
1307         printf(" %d=\"%s\"", cmd_line_index, fs_ptr);
1308         wmem_free(NULL, fs_buf);
1309         return TRUE;
1310     }
1311
1312     /*
1313      * This field doesn't have an associated value,
1314      * e.g. http
1315      * We return n.a.
1316      */
1317     printf(" %d=\"n.a.\"", cmd_line_index);
1318     return TRUE;
1319 }
1320
1321 static int
1322 protocolinfo_packet(void *prs, packet_info *pinfo _U_, epan_dissect_t *edt, const void *dummy _U_)
1323 {
1324     pci_t *rs=(pci_t *)prs;
1325     GPtrArray *gp;
1326     guint i;
1327
1328     gp=proto_get_finfo_ptr_array(edt->tree, rs->hf_index);
1329     if(!gp){
1330         printf(" n.a.");
1331         return 0;
1332     }
1333
1334     /*
1335      * Print each occurrence of the field
1336      */
1337     for (i = 0; i < gp->len; i++) {
1338         print_field_value((field_info *)gp->pdata[i], rs->cmd_line_index);
1339     }
1340
1341     return 0;
1342 }
1343
1344 int g_cmd_line_index = 0;
1345
1346 /*
1347  * field must be persistent - we don't g_strdup() it below
1348  */
1349 static void
1350 protocolinfo_init(char *field)
1351 {
1352     pci_t *rs;
1353     header_field_info *hfi;
1354     GString *error_string;
1355     char hfibuf[100];
1356
1357     hfi=proto_registrar_get_byname(field);
1358     if(!hfi){
1359         fprintf(stderr, "rawshark: Field \"%s\" doesn't exist.\n", field);
1360         exit(1);
1361     }
1362
1363     field_display_to_string(hfi, hfibuf, sizeof(hfibuf));
1364     printf("%d %s %s - ",
1365             g_cmd_line_index,
1366             ftenum_to_string(hfi),
1367             hfibuf);
1368
1369     rs=(pci_t *)g_malloc(sizeof(pci_t));
1370     rs->hf_index=hfi->id;
1371     rs->filter=field;
1372     rs->cmd_line_index = g_cmd_line_index++;
1373
1374     error_string=register_tap_listener("frame", rs, rs->filter, TL_REQUIRES_PROTO_TREE, NULL, protocolinfo_packet, NULL);
1375     if(error_string){
1376         /* error, we failed to attach to the tap. complain and clean up */
1377         fprintf(stderr, "rawshark: Couldn't register field extraction tap: %s\n",
1378                 error_string->str);
1379         g_string_free(error_string, TRUE);
1380         if(rs->filter){
1381             g_free(rs->filter);
1382         }
1383         g_free(rs);
1384
1385         exit(1);
1386     }
1387 }
1388
1389 /*
1390  * Given a format string, split it into a GPtrArray of string_fmt_t structs
1391  * and fill in string_fmt_parts.
1392  */
1393
1394 static void
1395 add_string_fmt(string_fmt_e format, gchar *plain) {
1396     string_fmt_t *sf = (string_fmt_t *)g_malloc(sizeof(string_fmt_t));
1397
1398     sf->format = format;
1399     sf->plain = g_strdup(plain);
1400
1401     g_ptr_array_add(string_fmts, sf);
1402 }
1403
1404 static gboolean
1405 parse_field_string_format(gchar *format) {
1406     GString *plain_s = g_string_new("");
1407     size_t len;
1408     size_t pos = 0;
1409
1410     if (!format) {
1411         return FALSE;
1412     }
1413
1414     len = strlen(format);
1415     g_ptr_array_set_size(string_fmts, 0);
1416
1417     while (pos < len) {
1418         if (format[pos] == '%') {
1419             if (pos >= len) { /* There should always be a following character */
1420                 return FALSE;
1421             }
1422             pos++;
1423             if (plain_s->len > 0) {
1424                 add_string_fmt(SF_NONE, plain_s->str);
1425                 g_string_truncate(plain_s, 0);
1426             }
1427             switch (format[pos]) {
1428                 case 'D':
1429                     add_string_fmt(SF_NAME, NULL);
1430                     break;
1431                 case 'N':
1432                     add_string_fmt(SF_NUMVAL, NULL);
1433                     break;
1434                 case 'S':
1435                     add_string_fmt(SF_STRVAL, NULL);
1436                     break;
1437                 case '%':
1438                     g_string_append_c(plain_s, '%');
1439                     break;
1440                 default: /* Invalid format */
1441                     return FALSE;
1442             }
1443         } else {
1444             g_string_append_c(plain_s, format[pos]);
1445         }
1446         pos++;
1447     }
1448
1449     if (plain_s->len > 0) {
1450         add_string_fmt(SF_NONE, plain_s->str);
1451     }
1452     g_string_free(plain_s, TRUE);
1453
1454     return TRUE;
1455 }
1456 /****************************************************************************************
1457  * END OF FIELD EXTRACTION ROUTINES
1458  ****************************************************************************************/
1459
1460 static void
1461 show_print_file_io_error(int err)
1462 {
1463     switch (err) {
1464
1465         case ENOSPC:
1466             cmdarg_err("Not all the packets could be printed because there is "
1467                        "no space left on the file system.");
1468             break;
1469
1470 #ifdef EDQUOT
1471         case EDQUOT:
1472             cmdarg_err("Not all the packets could be printed because you are "
1473                        "too close to, or over your disk quota.");
1474             break;
1475 #endif
1476
1477         default:
1478             cmdarg_err("An error occurred while printing packets: %s.",
1479                        g_strerror(err));
1480             break;
1481     }
1482 }
1483
1484 /*
1485  * Open/create errors are reported with an console message in Rawshark.
1486  */
1487 static void
1488 open_failure_message(const char *filename, int err, gboolean for_writing)
1489 {
1490     fprintf(stderr, "rawshark: ");
1491     fprintf(stderr, file_open_error_message(err, for_writing), filename);
1492     fprintf(stderr, "\n");
1493 }
1494
1495 static const nstime_t *
1496 raw_get_frame_ts(void *data _U_, guint32 frame_num)
1497 {
1498     if (ref && ref->num == frame_num)
1499         return &ref->abs_ts;
1500
1501     if (prev_dis && prev_dis->num == frame_num)
1502         return &prev_dis->abs_ts;
1503
1504     if (prev_cap && prev_cap->num == frame_num)
1505         return &prev_cap->abs_ts;
1506
1507     return NULL;
1508 }
1509
1510 static epan_t *
1511 raw_epan_new(capture_file *cf)
1512 {
1513     epan_t *epan = epan_new();
1514
1515     epan->data = cf;
1516     epan->get_frame_ts = raw_get_frame_ts;
1517     epan->get_interface_name = cap_file_get_interface_name;
1518     epan->get_user_comment = NULL;
1519
1520     return epan;
1521 }
1522
1523 cf_status_t
1524 raw_cf_open(capture_file *cf, const char *fname)
1525 {
1526     if ((fd = raw_pipe_open(fname)) < 0)
1527         return CF_ERROR;
1528
1529     /* The open succeeded.  Fill in the information for this file. */
1530
1531     /* Create new epan session for dissection. */
1532     epan_free(cf->epan);
1533     cf->epan = raw_epan_new(cf);
1534
1535     cf->wth = NULL;
1536     cf->f_datalen = 0; /* not used, but set it anyway */
1537
1538     /* Set the file name because we need it to set the follow stream filter.
1539        XXX - is that still true?  We need it for other reasons, though,
1540        in any case. */
1541     cf->filename = g_strdup(fname);
1542
1543     /* Indicate whether it's a permanent or temporary file. */
1544     cf->is_tempfile = FALSE;
1545
1546     /* No user changes yet. */
1547     cf->unsaved_changes = FALSE;
1548
1549     cf->cd_t      = WTAP_FILE_TYPE_SUBTYPE_UNKNOWN;
1550     cf->open_type = WTAP_TYPE_AUTO;
1551     cf->count     = 0;
1552     cf->drops_known = FALSE;
1553     cf->drops     = 0;
1554     cf->has_snap = FALSE;
1555     cf->snap = WTAP_MAX_PACKET_SIZE;
1556     nstime_set_zero(&cf->elapsed_time);
1557     ref = NULL;
1558     prev_dis = NULL;
1559     prev_cap = NULL;
1560
1561     return CF_OK;
1562 }
1563
1564
1565 /*
1566  * General errors are reported with an console message in Rawshark.
1567  */
1568 static void
1569 failure_message(const char *msg_format, va_list ap)
1570 {
1571     fprintf(stderr, "rawshark: ");
1572     vfprintf(stderr, msg_format, ap);
1573     fprintf(stderr, "\n");
1574 }
1575
1576 /*
1577  * Read errors are reported with an console message in Rawshark.
1578  */
1579 static void
1580 read_failure_message(const char *filename, int err)
1581 {
1582     cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
1583                filename, g_strerror(err));
1584 }
1585
1586 /*
1587  * Write errors are reported with an console message in Rawshark.
1588  */
1589 static void
1590 write_failure_message(const char *filename, int err)
1591 {
1592     cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
1593                filename, g_strerror(err));
1594 }
1595
1596 /*
1597  * Report an error in command-line arguments.
1598  */
1599 static void
1600 rawshark_cmdarg_err(const char *fmt, va_list ap)
1601 {
1602     fprintf(stderr, "rawshark: ");
1603     vfprintf(stderr, fmt, ap);
1604     fprintf(stderr, "\n");
1605 }
1606
1607 /*
1608  * Report additional information for an error in command-line arguments.
1609  */
1610 static void
1611 rawshark_cmdarg_err_cont(const char *fmt, va_list ap)
1612 {
1613     vfprintf(stderr, fmt, ap);
1614     fprintf(stderr, "\n");
1615 }
1616
1617 /*
1618  * Editor modelines
1619  *
1620  * Local Variables:
1621  * c-basic-offset: 4
1622  * tab-width: 8
1623  * indent-tabs-mode: nil
1624  * End:
1625  *
1626  * ex: set shiftwidth=4 tabstop=8 expandtab:
1627  * :indentSize=4:tabSize=8:noTabs=true:
1628  */