[Automatic update for 2016-09-18]
[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 executable file.
489      */
490     init_progfile_dir_error = init_progfile_dir(argv[0], main);
491     if (init_progfile_dir_error != NULL) {
492         fprintf(stderr, "rawshark: Can't get pathname of rawshark program: %s.\n",
493                 init_progfile_dir_error);
494     }
495
496     /* nothing more than the standard GLib handler, but without a warning */
497     log_flags =
498         G_LOG_LEVEL_WARNING |
499         G_LOG_LEVEL_MESSAGE |
500         G_LOG_LEVEL_INFO |
501         G_LOG_LEVEL_DEBUG;
502
503     g_log_set_handler(NULL,
504                       (GLogLevelFlags)log_flags,
505                       log_func_ignore, NULL /* user_data */);
506     g_log_set_handler(LOG_DOMAIN_CAPTURE_CHILD,
507                       (GLogLevelFlags)log_flags,
508                       log_func_ignore, NULL /* user_data */);
509
510     init_report_err(failure_message, open_failure_message, read_failure_message,
511                     write_failure_message);
512
513     timestamp_set_type(TS_RELATIVE);
514     timestamp_set_precision(TS_PREC_AUTO);
515     timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
516
517     /* Register all dissectors; we must do this before checking for the
518        "-G" flag, as the "-G" flag dumps information registered by the
519        dissectors, and we must do it before we read the preferences, in
520        case any dissectors register preferences. */
521     if (!epan_init(register_all_protocols, register_all_protocol_handoffs,
522                    NULL, NULL))
523         return 2;
524
525     prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
526                          &pf_open_errno, &pf_read_errno, &pf_path);
527     if (gpf_path != NULL) {
528         if (gpf_open_errno != 0) {
529             cmdarg_err("Can't open global preferences file \"%s\": %s.",
530                        pf_path, g_strerror(gpf_open_errno));
531         }
532         if (gpf_read_errno != 0) {
533             cmdarg_err("I/O error reading global preferences file \"%s\": %s.",
534                        pf_path, g_strerror(gpf_read_errno));
535         }
536     }
537     if (pf_path != NULL) {
538         if (pf_open_errno != 0) {
539             cmdarg_err("Can't open your preferences file \"%s\": %s.", pf_path,
540                        g_strerror(pf_open_errno));
541         }
542         if (pf_read_errno != 0) {
543             cmdarg_err("I/O error reading your preferences file \"%s\": %s.",
544                        pf_path, g_strerror(pf_read_errno));
545         }
546         g_free(pf_path);
547         pf_path = NULL;
548     }
549
550     /* Read the disabled protocols file. */
551     read_disabled_protos_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
552                               &dp_path, &dp_open_errno, &dp_read_errno);
553     read_disabled_heur_dissector_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
554                               &dp_path, &dp_open_errno, &dp_read_errno);
555     if (gdp_path != NULL) {
556         if (gdp_open_errno != 0) {
557             cmdarg_err("Could not open global disabled protocols file\n\"%s\": %s.",
558                        gdp_path, g_strerror(gdp_open_errno));
559         }
560         if (gdp_read_errno != 0) {
561             cmdarg_err("I/O error reading global disabled protocols file\n\"%s\": %s.",
562                        gdp_path, g_strerror(gdp_read_errno));
563         }
564         g_free(gdp_path);
565     }
566     if (dp_path != NULL) {
567         if (dp_open_errno != 0) {
568             cmdarg_err(
569                 "Could not open your disabled protocols file\n\"%s\": %s.", dp_path,
570                 g_strerror(dp_open_errno));
571         }
572         if (dp_read_errno != 0) {
573             cmdarg_err(
574                 "I/O error reading your disabled protocols file\n\"%s\": %s.", dp_path,
575                 g_strerror(dp_read_errno));
576         }
577         g_free(dp_path);
578     }
579
580 #ifdef _WIN32
581     ws_init_dll_search_path();
582     /* Load Wpcap, if possible */
583     load_wpcap();
584 #endif
585
586     cap_file_init(&cfile);
587
588     /* Print format defaults to this. */
589     print_format = PR_FMT_TEXT;
590
591     /* Initialize our encapsulation type */
592     encap = WTAP_ENCAP_UNKNOWN;
593
594     /* Now get our args */
595     /* XXX - We should probably have an option to dump libpcap link types */
596     while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
597         switch (opt) {
598             case 'd':        /* Payload type */
599                 if (!set_link_type(optarg)) {
600                     cmdarg_err("Invalid link type or protocol \"%s\"", optarg);
601                     exit(1);
602                 }
603                 break;
604             case 'F':        /* Read field to display */
605                 g_ptr_array_add(disp_fields, g_strdup(optarg));
606                 break;
607             case 'h':        /* Print help and exit */
608                 printf("Rawshark (Wireshark) %s\n"
609                        "Dump and analyze network traffic.\n"
610                        "See https://www.wireshark.org for more information.\n",
611                        get_ws_vcs_version_info());
612                 print_usage(stdout);
613                 exit(0);
614                 break;
615             case 'l':        /* "Line-buffer" standard output */
616                 /* This isn't line-buffering, strictly speaking, it's just
617                    flushing the standard output after the information for
618                    each packet is printed; however, that should be good
619                    enough for all the purposes to which "-l" is put (and
620                    is probably actually better for "-V", as it does fewer
621                    writes).
622
623                    See the comment in "process_packet()" for an explanation of
624                    why we do that, and why we don't just use "setvbuf()" to
625                    make the standard output line-buffered (short version: in
626                    Windows, "line-buffered" is the same as "fully-buffered",
627                    and the output buffer is only flushed when it fills up). */
628                 line_buffered = TRUE;
629                 break;
630             case 'n':        /* No name resolution */
631                 disable_name_resolution();
632                 break;
633             case 'N':        /* Select what types of addresses/port #s to resolve */
634                 badopt = string_to_name_resolve(optarg, &gbl_resolv_flags);
635                 if (badopt != '\0') {
636                     cmdarg_err("-N specifies unknown resolving option '%c'; valid options are 'd', m', 'n', 'N', and 't'",
637                                badopt);
638                     exit(1);
639                 }
640                 break;
641             case 'o':        /* Override preference from command line */
642                 switch (prefs_set_pref(optarg)) {
643
644                     case PREFS_SET_OK:
645                         break;
646
647                     case PREFS_SET_SYNTAX_ERR:
648                         cmdarg_err("Invalid -o flag \"%s\"", optarg);
649                         exit(1);
650                         break;
651
652                     case PREFS_SET_NO_SUCH_PREF:
653                     case PREFS_SET_OBSOLETE:
654                         cmdarg_err("-o flag \"%s\" specifies unknown preference", optarg);
655                         exit(1);
656                         break;
657                 }
658                 break;
659             case 'p':        /* Expect pcap_pkthdr packet headers, which may have 64-bit timestamps */
660                 want_pcap_pkthdr = TRUE;
661                 break;
662             case 'r':        /* Read capture file xxx */
663                 pipe_name = g_strdup(optarg);
664                 break;
665             case 'R':        /* Read file filter */
666                 if(n_rfilters < (int) sizeof(rfilters) / (int) sizeof(rfilters[0])) {
667                     rfilters[n_rfilters++] = optarg;
668                 }
669                 else {
670                     cmdarg_err("Too many display filters");
671                     exit(1);
672                 }
673                 break;
674             case 's':        /* Skip PCAP header */
675                 skip_pcap_header = TRUE;
676                 break;
677             case 'S':        /* Print string representations */
678                 if (!parse_field_string_format(optarg)) {
679                     cmdarg_err("Invalid field string format");
680                     exit(1);
681                 }
682                 break;
683             case 't':        /* Time stamp type */
684                 if (strcmp(optarg, "r") == 0)
685                     timestamp_set_type(TS_RELATIVE);
686                 else if (strcmp(optarg, "a") == 0)
687                     timestamp_set_type(TS_ABSOLUTE);
688                 else if (strcmp(optarg, "ad") == 0)
689                     timestamp_set_type(TS_ABSOLUTE_WITH_YMD);
690                 else if (strcmp(optarg, "adoy") == 0)
691                     timestamp_set_type(TS_ABSOLUTE_WITH_YDOY);
692                 else if (strcmp(optarg, "d") == 0)
693                     timestamp_set_type(TS_DELTA);
694                 else if (strcmp(optarg, "dd") == 0)
695                     timestamp_set_type(TS_DELTA_DIS);
696                 else if (strcmp(optarg, "e") == 0)
697                     timestamp_set_type(TS_EPOCH);
698                 else if (strcmp(optarg, "u") == 0)
699                     timestamp_set_type(TS_UTC);
700                 else if (strcmp(optarg, "ud") == 0)
701                     timestamp_set_type(TS_UTC_WITH_YMD);
702                 else if (strcmp(optarg, "udoy") == 0)
703                     timestamp_set_type(TS_UTC_WITH_YDOY);
704                 else {
705                     cmdarg_err("Invalid time stamp type \"%s\"",
706                                optarg);
707                     cmdarg_err_cont(
708 "It must be \"a\" for absolute, \"ad\" for absolute with YYYY-MM-DD date,");
709                     cmdarg_err_cont(
710 "\"adoy\" for absolute with YYYY/DOY date, \"d\" for delta,");
711                     cmdarg_err_cont(
712 "\"dd\" for delta displayed, \"e\" for epoch, \"r\" for relative,");
713                     cmdarg_err_cont(
714 "\"u\" for absolute UTC, \"ud\" for absolute UTC with YYYY-MM-DD date,");
715                     cmdarg_err_cont(
716 "or \"udoy\" for absolute UTC with YYYY/DOY date.");
717                     exit(1);
718                 }
719                 break;
720             case 'v':        /* Show version and exit */
721             {
722                 show_version("Rawshark (Wireshark)", comp_info_str, runtime_info_str);
723                 g_string_free(comp_info_str, TRUE);
724                 g_string_free(runtime_info_str, TRUE);
725                 exit(0);
726                 break;
727             }
728             default:
729             case '?':        /* Bad flag - print usage message */
730                 print_usage(stderr);
731             exit(1);
732             break;
733         }
734     }
735
736     /* Notify all registered modules that have had any of their preferences
737        changed either from one of the preferences file or from the command
738        line that their preferences have changed.
739        Initialize preferences before display filters, otherwise modules
740        like MATE won't work. */
741     prefs_apply_all();
742
743     /* Initialize our display fields */
744     for (fc = 0; fc < disp_fields->len; fc++) {
745         protocolinfo_init((char *)g_ptr_array_index(disp_fields, fc));
746     }
747     g_ptr_array_free(disp_fields, TRUE);
748     printf("\n");
749     fflush(stdout);
750
751     /* If no capture filter or read filter has been specified, and there are
752        still command-line arguments, treat them as the tokens of a capture
753        filter (if no "-r" flag was specified) or a read filter (if a "-r"
754        flag was specified. */
755     if (optind < argc) {
756         if (pipe_name != NULL) {
757             if (n_rfilters != 0) {
758                 cmdarg_err("Read filters were specified both with \"-R\" "
759                            "and with additional command-line arguments");
760                 exit(1);
761             }
762             rfilters[n_rfilters] = get_args_as_string(argc, argv, optind);
763         }
764     }
765
766     /* Make sure we got a dissector handle for our payload. */
767     if (encap == WTAP_ENCAP_UNKNOWN) {
768         cmdarg_err("No valid payload dissector specified.");
769         exit(1);
770     }
771
772     if (arg_error) {
773         print_usage(stderr);
774         exit(1);
775     }
776
777
778 #ifdef _WIN32
779     /* Start windows sockets */
780     WSAStartup( MAKEWORD( 1, 1 ), &wsaData );
781 #endif /* _WIN32 */
782
783     /* At this point MATE will have registered its field array so we can
784        have a tap filter with one of MATE's late-registered fields as part
785        of the filter.  We can now process all the "-z" arguments. */
786     start_requested_stats();
787
788     /* disabled protocols as per configuration file */
789     if (gdp_path == NULL && dp_path == NULL) {
790         set_disabled_protos_list();
791         set_disabled_heur_dissector_list();
792     }
793
794     /* Build the column format array */
795     build_column_format_array(&cfile.cinfo, prefs_p->num_cols, TRUE);
796
797     if (n_rfilters != 0) {
798         for (i = 0; i < n_rfilters; i++) {
799             gchar *err_msg;
800
801             if (!dfilter_compile(rfilters[i], &rfcodes[n_rfcodes], &err_msg)) {
802                 cmdarg_err("%s", err_msg);
803                 g_free(err_msg);
804                 epan_free(cfile.epan);
805                 epan_cleanup();
806 #ifdef HAVE_EXTCAP
807                 extcap_cleanup();
808 #endif
809                 exit(2);
810             }
811             n_rfcodes++;
812         }
813     }
814
815     if (pipe_name) {
816         /*
817          * We're reading a pipe (or capture file).
818          */
819
820         /*
821          * Immediately relinquish any special privileges we have; we must not
822          * be allowed to read any capture files the user running Rawshark
823          * can't open.
824          */
825         relinquish_special_privs_perm();
826
827         if (raw_cf_open(&cfile, pipe_name) != CF_OK) {
828             epan_free(cfile.epan);
829             epan_cleanup();
830 #ifdef HAVE_EXTCAP
831             extcap_cleanup();
832 #endif
833             exit(2);
834         }
835
836         /* Do we need to PCAP header and magic? */
837         if (skip_pcap_header) {
838             size_t bytes_left = sizeof(struct pcap_hdr) + sizeof(guint32);
839             gchar buf[sizeof(struct pcap_hdr) + sizeof(guint32)];
840             while (bytes_left != 0) {
841                 ssize_t bytes = ws_read(fd, buf, (int)bytes_left);
842                 if (bytes <= 0) {
843                     cmdarg_err("Not enough bytes for pcap header.");
844                     exit(2);
845                 }
846                 bytes_left -= bytes;
847             }
848         }
849
850         /* Process the packets in the file */
851         if (!load_cap_file(&cfile)) {
852             epan_free(cfile.epan);
853             epan_cleanup();
854 #ifdef HAVE_EXTCAP
855             extcap_cleanup();
856 #endif
857             exit(2);
858         }
859     } else {
860         /* If you want to capture live packets, use TShark. */
861         cmdarg_err("Input file or pipe name not specified.");
862         exit(2);
863     }
864
865     epan_free(cfile.epan);
866     epan_cleanup();
867 #ifdef HAVE_EXTCAP
868     extcap_cleanup();
869 #endif
870     return 0;
871 }
872
873 /**
874  * Read data from a raw pipe.  The "raw" data consists of a libpcap
875  * packet header followed by the payload.
876  * @param pd [IN] A POSIX file descriptor.  Because that's _exactly_ the sort
877  *           of thing you want to use in Windows.
878  * @param phdr [OUT] Packet header information.
879  * @param err [OUT] Error indicator.  Uses wiretap values.
880  * @param err_info [OUT] Error message.
881  * @param data_offset [OUT] data offset in the pipe.
882  * @return TRUE on success, FALSE on failure.
883  */
884 static gboolean
885 raw_pipe_read(struct wtap_pkthdr *phdr, guchar * pd, int *err, gchar **err_info, gint64 *data_offset) {
886     struct pcap_pkthdr mem_hdr;
887     struct pcaprec_hdr disk_hdr;
888     ssize_t bytes_read = 0;
889     size_t bytes_needed = sizeof(disk_hdr);
890     guchar *ptr = (guchar*) &disk_hdr;
891
892     if (want_pcap_pkthdr) {
893         bytes_needed = sizeof(mem_hdr);
894         ptr = (guchar*) &mem_hdr;
895     }
896
897     /* Copied from capture_loop.c */
898     while (bytes_needed > 0) {
899         bytes_read = ws_read(fd, ptr, (int)bytes_needed);
900         if (bytes_read == 0) {
901             *err = 0;
902             *err_info = NULL;
903             return FALSE;
904         } else if (bytes_read < 0) {
905             *err = errno;
906             *err_info = NULL;
907             return FALSE;
908         }
909         bytes_needed -= bytes_read;
910         *data_offset += bytes_read;
911         ptr += bytes_read;
912     }
913
914     if (want_pcap_pkthdr) {
915         phdr->ts.secs = mem_hdr.ts.tv_sec;
916         phdr->ts.nsecs = (gint32)mem_hdr.ts.tv_usec * 1000;
917         phdr->caplen = mem_hdr.caplen;
918         phdr->len = mem_hdr.len;
919     } else {
920         phdr->ts.secs = disk_hdr.ts_sec;
921         phdr->ts.nsecs = disk_hdr.ts_usec * 1000;
922         phdr->caplen = disk_hdr.incl_len;
923         phdr->len = disk_hdr.orig_len;
924     }
925     bytes_needed = phdr->caplen;
926
927     phdr->pkt_encap = encap;
928
929 #if 0
930     printf("mem_hdr: %lu disk_hdr: %lu\n", sizeof(mem_hdr), sizeof(disk_hdr));
931     printf("tv_sec: %u (%04x)\n", (unsigned int) phdr->ts.secs, (unsigned int) phdr->ts.secs);
932     printf("tv_nsec: %d (%04x)\n", phdr->ts.nsecs, phdr->ts.nsecs);
933     printf("caplen: %d (%04x)\n", phdr->caplen, phdr->caplen);
934     printf("len: %d (%04x)\n", phdr->len, phdr->len);
935 #endif
936     if (bytes_needed > WTAP_MAX_PACKET_SIZE) {
937         *err = WTAP_ERR_BAD_FILE;
938         *err_info = g_strdup_printf("Bad packet length: %lu\n",
939                    (unsigned long) bytes_needed);
940         return FALSE;
941     }
942
943     ptr = pd;
944     while (bytes_needed > 0) {
945         bytes_read = ws_read(fd, ptr, (int)bytes_needed);
946         if (bytes_read == 0) {
947             *err = WTAP_ERR_SHORT_READ;
948             *err_info = NULL;
949             return FALSE;
950         } else if (bytes_read < 0) {
951             *err = errno;
952             *err_info = NULL;
953             return FALSE;
954         }
955         bytes_needed -= bytes_read;
956         *data_offset += bytes_read;
957         ptr += bytes_read;
958     }
959     return TRUE;
960 }
961
962 static gboolean
963 load_cap_file(capture_file *cf)
964 {
965     int          err;
966     gchar       *err_info;
967     gint64       data_offset = 0;
968
969     guchar pd[WTAP_MAX_PACKET_SIZE];
970     struct wtap_pkthdr phdr;
971     epan_dissect_t edt;
972
973     wtap_phdr_init(&phdr);
974
975     epan_dissect_init(&edt, cf->epan, TRUE, FALSE);
976
977     while (raw_pipe_read(&phdr, pd, &err, &err_info, &data_offset)) {
978         process_packet(cf, &edt, data_offset, &phdr, pd);
979     }
980
981     epan_dissect_cleanup(&edt);
982
983     wtap_phdr_cleanup(&phdr);
984
985     if (err != 0) {
986         /* Print a message noting that the read failed somewhere along the line. */
987         switch (err) {
988
989             case WTAP_ERR_UNSUPPORTED:
990                 cmdarg_err("The file \"%s\" contains record data that Rawshark doesn't support.\n(%s)",
991                            cf->filename,
992                            err_info != NULL ? err_info : "no information supplied");
993                 g_free(err_info);
994                 break;
995
996             case WTAP_ERR_SHORT_READ:
997                 cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
998                            cf->filename);
999                 break;
1000
1001             case WTAP_ERR_BAD_FILE:
1002                 cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
1003                            cf->filename,
1004                            err_info != NULL ? err_info : "no information supplied");
1005                 g_free(err_info);
1006                 break;
1007
1008             case WTAP_ERR_DECOMPRESS:
1009                 cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n(%s)",
1010                            cf->filename,
1011                            err_info != NULL ? err_info : "no information supplied");
1012                 g_free(err_info);
1013                 break;
1014
1015             default:
1016                 cmdarg_err("An error occurred while reading the file \"%s\": %s.",
1017                            cf->filename, wtap_strerror(err));
1018                 break;
1019         }
1020         return FALSE;
1021     }
1022
1023     return TRUE;
1024 }
1025
1026 static gboolean
1027 process_packet(capture_file *cf, epan_dissect_t *edt, gint64 offset,
1028                struct wtap_pkthdr *whdr, const guchar *pd)
1029 {
1030     frame_data fdata;
1031     gboolean passed;
1032     int i;
1033
1034     if(whdr->len == 0)
1035     {
1036         /* The user sends an empty packet when he wants to get output from us even if we don't currently have
1037            packets to process. We spit out a line with the timestamp and the text "void"
1038         */
1039         printf("%lu %lu %lu void -\n", (unsigned long int)cf->count,
1040                (unsigned long int)whdr->ts.secs,
1041                (unsigned long int)whdr->ts.nsecs);
1042
1043         fflush(stdout);
1044
1045         return FALSE;
1046     }
1047
1048     /* Count this packet. */
1049     cf->count++;
1050
1051     /* If we're going to print packet information, or we're going to
1052        run a read filter, or we're going to process taps, set up to
1053        do a dissection and do so. */
1054     frame_data_init(&fdata, cf->count, whdr, offset, cum_bytes);
1055
1056     passed = TRUE;
1057
1058     /* If we're running a read filter, prime the epan_dissect_t with that
1059        filter. */
1060     if (n_rfilters > 0) {
1061         for(i = 0; i < n_rfcodes; i++) {
1062             epan_dissect_prime_dfilter(edt, rfcodes[i]);
1063         }
1064     }
1065
1066     printf("%lu", (unsigned long int) cf->count);
1067
1068     frame_data_set_before_dissect(&fdata, &cf->elapsed_time,
1069                                   &ref, prev_dis);
1070
1071     if (ref == &fdata) {
1072        ref_frame = fdata;
1073        ref = &ref_frame;
1074     }
1075
1076     /* We only need the columns if we're printing packet info but we're
1077      *not* verbose; in verbose mode, we print the protocol tree, not
1078      the protocol summary. */
1079     epan_dissect_run_with_taps(edt, cf->cd_t, whdr, frame_tvbuff_new(&fdata, pd), &fdata, &cf->cinfo);
1080
1081     frame_data_set_after_dissect(&fdata, &cum_bytes);
1082     prev_dis_frame = fdata;
1083     prev_dis = &prev_dis_frame;
1084
1085     prev_cap_frame = fdata;
1086     prev_cap = &prev_cap_frame;
1087
1088     for(i = 0; i < n_rfilters; i++) {
1089         /* Run the read filter if we have one. */
1090         if (rfcodes[i])
1091             passed = dfilter_apply_edt(rfcodes[i], edt);
1092         else
1093             passed = TRUE;
1094
1095         /* Print a one-line summary */
1096         printf(" %d", passed ? 1 : 0);
1097     }
1098
1099     printf(" -\n");
1100
1101     /* The ANSI C standard does not appear to *require* that a line-buffered
1102        stream be flushed to the host environment whenever a newline is
1103        written, it just says that, on such a stream, characters "are
1104        intended to be transmitted to or from the host environment as a
1105        block when a new-line character is encountered".
1106
1107        The Visual C++ 6.0 C implementation doesn't do what is intended;
1108        even if you set a stream to be line-buffered, it still doesn't
1109        flush the buffer at the end of every line.
1110
1111        So, if the "-l" flag was specified, we flush the standard output
1112        at the end of a packet.  This will do the right thing if we're
1113        printing packet summary lines, and, as we print the entire protocol
1114        tree for a single packet without waiting for anything to happen,
1115        it should be as good as line-buffered mode if we're printing
1116        protocol trees.  (The whole reason for the "-l" flag in either
1117        tcpdump or Rawshark is to allow the output of a live capture to
1118        be piped to a program or script and to have that script see the
1119        information for the packet as soon as it's printed, rather than
1120        having to wait until a standard I/O buffer fills up. */
1121     if (line_buffered)
1122         fflush(stdout);
1123
1124     if (ferror(stdout)) {
1125         show_print_file_io_error(errno);
1126         exit(2);
1127     }
1128
1129     epan_dissect_reset(edt);
1130     frame_data_destroy(&fdata);
1131
1132     return passed;
1133 }
1134
1135 /****************************************************************************************
1136  * FIELD EXTRACTION ROUTINES
1137  ****************************************************************************************/
1138 typedef struct _pci_t {
1139     char *filter;
1140     int hf_index;
1141     int cmd_line_index;
1142 } pci_t;
1143
1144 static const char* ftenum_to_string(header_field_info *hfi)
1145 {
1146     const char* str;
1147     if (!hfi) {
1148         return "n.a.";
1149     }
1150
1151     if (string_fmts->len > 0 && hfi->strings) {
1152         return "FT_STRING";
1153     }
1154
1155     str = ftype_name(hfi->type);
1156     if (str == NULL) {
1157         str = "n.a.";
1158     }
1159
1160     return str;
1161 }
1162
1163 static void field_display_to_string(header_field_info *hfi, char* buf, int size)
1164 {
1165     if (hfi->type != FT_BOOLEAN)
1166     {
1167         g_strlcpy(buf, proto_field_display_to_string(hfi->display), size);
1168     }
1169     else
1170     {
1171         g_snprintf(buf, size, "(Bit count: %d)", hfi->display);
1172     }
1173 }
1174
1175 /*
1176  * Copied from various parts of proto.c
1177  */
1178 #define FIELD_STR_INIT_LEN 256
1179 #define cVALS(x) (const value_string*)(x)
1180 static gboolean print_field_value(field_info *finfo, int cmd_line_index)
1181 {
1182     header_field_info   *hfinfo;
1183     char                *fs_buf = NULL;
1184     char                *fs_ptr = NULL;
1185     static GString     *label_s = NULL;
1186     int                 fs_len;
1187     guint              i;
1188     string_fmt_t       *sf;
1189     guint32            uvalue;
1190     gint32             svalue;
1191     guint64            uvalue64;
1192     gint64             svalue64;
1193     const true_false_string *tfstring = &tfs_true_false;
1194
1195     hfinfo = finfo->hfinfo;
1196
1197     if (!label_s) {
1198         label_s = g_string_new("");
1199     }
1200
1201     if(finfo->value.ftype->val_to_string_repr)
1202     {
1203         /*
1204          * this field has an associated value,
1205          * e.g: ip.hdr_len
1206          */
1207         fs_len = fvalue_string_repr_len(&finfo->value, FTREPR_DFILTER, finfo->hfinfo->display);
1208         fs_buf = fvalue_to_string_repr(NULL, &finfo->value,
1209                               FTREPR_DFILTER, finfo->hfinfo->display);
1210         fs_ptr = fs_buf;
1211
1212         /* String types are quoted. Remove them. */
1213         if (IS_FT_STRING(finfo->value.ftype->ftype) && fs_len > 2) {
1214             fs_buf[fs_len - 1] = '\0';
1215             fs_ptr++;
1216         }
1217     }
1218
1219     if (string_fmts->len > 0 && finfo->hfinfo->strings) {
1220         g_string_truncate(label_s, 0);
1221         for (i = 0; i < string_fmts->len; i++) {
1222             sf = (string_fmt_t *)g_ptr_array_index(string_fmts, i);
1223             if (sf->plain) {
1224                 g_string_append(label_s, sf->plain);
1225             } else {
1226                 switch (sf->format) {
1227                     case SF_NAME:
1228                         g_string_append(label_s, hfinfo->name);
1229                         break;
1230                     case SF_NUMVAL:
1231                         g_string_append(label_s, fs_ptr);
1232                         break;
1233                     case SF_STRVAL:
1234                         switch(hfinfo->type) {
1235                             case FT_BOOLEAN:
1236                                 uvalue64 = fvalue_get_uinteger64(&finfo->value);
1237                                 tfstring = (const struct true_false_string*) hfinfo->strings;
1238                                 g_string_append(label_s, uvalue64 ? tfstring->true_string : tfstring->false_string);
1239                                 break;
1240                             case FT_INT8:
1241                             case FT_INT16:
1242                             case FT_INT24:
1243                             case FT_INT32:
1244                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1245                                 svalue = fvalue_get_sinteger(&finfo->value);
1246                                 if (hfinfo->display & BASE_RANGE_STRING) {
1247                                     g_string_append(label_s, rval_to_str_const(svalue, RVALS(hfinfo->strings), "Unknown"));
1248                                 } else if (hfinfo->display & BASE_EXT_STRING) {
1249                                     g_string_append(label_s, val_to_str_ext_const(svalue, (value_string_ext *) hfinfo->strings, "Unknown"));
1250                                 } else {
1251                                     g_string_append(label_s, val_to_str_const(svalue, cVALS(hfinfo->strings), "Unknown"));
1252                                 }
1253                                 break;
1254                             case FT_INT40: /* XXX: Shouldn't these be as smart as FT_INT{8,16,24,32}? */
1255                             case FT_INT48:
1256                             case FT_INT56:
1257                             case FT_INT64:
1258                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1259                                 svalue64 = (gint64)fvalue_get_sinteger64(&finfo->value);
1260                                 if (hfinfo->display & BASE_VAL64_STRING) {
1261                                     g_string_append(label_s, val64_to_str_const(svalue64, (const val64_string *)(hfinfo->strings), "Unknown"));
1262                                 }
1263                                 break;
1264                             case FT_UINT8:
1265                             case FT_UINT16:
1266                             case FT_UINT24:
1267                             case FT_UINT32:
1268                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1269                                 uvalue = fvalue_get_uinteger(&finfo->value);
1270                                 if (!hfinfo->bitmask && hfinfo->display & BASE_RANGE_STRING) {
1271                                     g_string_append(label_s, rval_to_str_const(uvalue, RVALS(hfinfo->strings), "Unknown"));
1272                                 } else if (hfinfo->display & BASE_EXT_STRING) {
1273                                     g_string_append(label_s, val_to_str_ext_const(uvalue, (value_string_ext *) hfinfo->strings, "Unknown"));
1274                                 } else {
1275                                     g_string_append(label_s, val_to_str_const(uvalue, cVALS(hfinfo->strings), "Unknown"));
1276                                 }
1277                                 break;
1278                             case FT_UINT40: /* XXX: Shouldn't these be as smart as FT_INT{8,16,24,32}? */
1279                             case FT_UINT48:
1280                             case FT_UINT56:
1281                             case FT_UINT64:
1282                                 DISSECTOR_ASSERT(!hfinfo->bitmask);
1283                                 uvalue64 = fvalue_get_uinteger64(&finfo->value);
1284                                 if (hfinfo->display & BASE_VAL64_STRING) {
1285                                     g_string_append(label_s, val64_to_str_const(uvalue64, (const val64_string *)(hfinfo->strings), "Unknown"));
1286                                 }
1287                                 break;
1288                             default:
1289                                 break;
1290                         }
1291                         break;
1292                     default:
1293                         break;
1294                 }
1295             }
1296         }
1297         printf(" %d=\"%s\"", cmd_line_index, label_s->str);
1298         wmem_free(NULL, fs_buf);
1299         return TRUE;
1300     }
1301
1302     if(finfo->value.ftype->val_to_string_repr)
1303     {
1304         printf(" %d=\"%s\"", cmd_line_index, fs_ptr);
1305         wmem_free(NULL, fs_buf);
1306         return TRUE;
1307     }
1308
1309     /*
1310      * This field doesn't have an associated value,
1311      * e.g. http
1312      * We return n.a.
1313      */
1314     printf(" %d=\"n.a.\"", cmd_line_index);
1315     return TRUE;
1316 }
1317
1318 static int
1319 protocolinfo_packet(void *prs, packet_info *pinfo _U_, epan_dissect_t *edt, const void *dummy _U_)
1320 {
1321     pci_t *rs=(pci_t *)prs;
1322     GPtrArray *gp;
1323     guint i;
1324
1325     gp=proto_get_finfo_ptr_array(edt->tree, rs->hf_index);
1326     if(!gp){
1327         printf(" n.a.");
1328         return 0;
1329     }
1330
1331     /*
1332      * Print each occurrence of the field
1333      */
1334     for (i = 0; i < gp->len; i++) {
1335         print_field_value((field_info *)gp->pdata[i], rs->cmd_line_index);
1336     }
1337
1338     return 0;
1339 }
1340
1341 int g_cmd_line_index = 0;
1342
1343 /*
1344  * field must be persistent - we don't g_strdup() it below
1345  */
1346 static void
1347 protocolinfo_init(char *field)
1348 {
1349     pci_t *rs;
1350     header_field_info *hfi;
1351     GString *error_string;
1352     char hfibuf[100];
1353
1354     hfi=proto_registrar_get_byname(field);
1355     if(!hfi){
1356         fprintf(stderr, "rawshark: Field \"%s\" doesn't exist.\n", field);
1357         exit(1);
1358     }
1359
1360     field_display_to_string(hfi, hfibuf, sizeof(hfibuf));
1361     printf("%d %s %s - ",
1362             g_cmd_line_index,
1363             ftenum_to_string(hfi),
1364             hfibuf);
1365
1366     rs=(pci_t *)g_malloc(sizeof(pci_t));
1367     rs->hf_index=hfi->id;
1368     rs->filter=field;
1369     rs->cmd_line_index = g_cmd_line_index++;
1370
1371     error_string=register_tap_listener("frame", rs, rs->filter, TL_REQUIRES_PROTO_TREE, NULL, protocolinfo_packet, NULL);
1372     if(error_string){
1373         /* error, we failed to attach to the tap. complain and clean up */
1374         fprintf(stderr, "rawshark: Couldn't register field extraction tap: %s\n",
1375                 error_string->str);
1376         g_string_free(error_string, TRUE);
1377         if(rs->filter){
1378             g_free(rs->filter);
1379         }
1380         g_free(rs);
1381
1382         exit(1);
1383     }
1384 }
1385
1386 /*
1387  * Given a format string, split it into a GPtrArray of string_fmt_t structs
1388  * and fill in string_fmt_parts.
1389  */
1390
1391 static void
1392 add_string_fmt(string_fmt_e format, gchar *plain) {
1393     string_fmt_t *sf = (string_fmt_t *)g_malloc(sizeof(string_fmt_t));
1394
1395     sf->format = format;
1396     sf->plain = g_strdup(plain);
1397
1398     g_ptr_array_add(string_fmts, sf);
1399 }
1400
1401 static gboolean
1402 parse_field_string_format(gchar *format) {
1403     GString *plain_s = g_string_new("");
1404     size_t len;
1405     size_t pos = 0;
1406
1407     if (!format) {
1408         return FALSE;
1409     }
1410
1411     len = strlen(format);
1412     g_ptr_array_set_size(string_fmts, 0);
1413
1414     while (pos < len) {
1415         if (format[pos] == '%') {
1416             if (pos >= len) { /* There should always be a following character */
1417                 return FALSE;
1418             }
1419             pos++;
1420             if (plain_s->len > 0) {
1421                 add_string_fmt(SF_NONE, plain_s->str);
1422                 g_string_truncate(plain_s, 0);
1423             }
1424             switch (format[pos]) {
1425                 case 'D':
1426                     add_string_fmt(SF_NAME, NULL);
1427                     break;
1428                 case 'N':
1429                     add_string_fmt(SF_NUMVAL, NULL);
1430                     break;
1431                 case 'S':
1432                     add_string_fmt(SF_STRVAL, NULL);
1433                     break;
1434                 case '%':
1435                     g_string_append_c(plain_s, '%');
1436                     break;
1437                 default: /* Invalid format */
1438                     return FALSE;
1439             }
1440         } else {
1441             g_string_append_c(plain_s, format[pos]);
1442         }
1443         pos++;
1444     }
1445
1446     if (plain_s->len > 0) {
1447         add_string_fmt(SF_NONE, plain_s->str);
1448     }
1449     g_string_free(plain_s, TRUE);
1450
1451     return TRUE;
1452 }
1453 /****************************************************************************************
1454  * END OF FIELD EXTRACTION ROUTINES
1455  ****************************************************************************************/
1456
1457 static void
1458 show_print_file_io_error(int err)
1459 {
1460     switch (err) {
1461
1462         case ENOSPC:
1463             cmdarg_err("Not all the packets could be printed because there is "
1464                        "no space left on the file system.");
1465             break;
1466
1467 #ifdef EDQUOT
1468         case EDQUOT:
1469             cmdarg_err("Not all the packets could be printed because you are "
1470                        "too close to, or over your disk quota.");
1471             break;
1472 #endif
1473
1474         default:
1475             cmdarg_err("An error occurred while printing packets: %s.",
1476                        g_strerror(err));
1477             break;
1478     }
1479 }
1480
1481 /*
1482  * Open/create errors are reported with an console message in Rawshark.
1483  */
1484 static void
1485 open_failure_message(const char *filename, int err, gboolean for_writing)
1486 {
1487     fprintf(stderr, "rawshark: ");
1488     fprintf(stderr, file_open_error_message(err, for_writing), filename);
1489     fprintf(stderr, "\n");
1490 }
1491
1492 static const nstime_t *
1493 raw_get_frame_ts(void *data _U_, guint32 frame_num)
1494 {
1495     if (ref && ref->num == frame_num)
1496         return &ref->abs_ts;
1497
1498     if (prev_dis && prev_dis->num == frame_num)
1499         return &prev_dis->abs_ts;
1500
1501     if (prev_cap && prev_cap->num == frame_num)
1502         return &prev_cap->abs_ts;
1503
1504     return NULL;
1505 }
1506
1507 static epan_t *
1508 raw_epan_new(capture_file *cf)
1509 {
1510     epan_t *epan = epan_new();
1511
1512     epan->data = cf;
1513     epan->get_frame_ts = raw_get_frame_ts;
1514     epan->get_interface_name = cap_file_get_interface_name;
1515     epan->get_user_comment = NULL;
1516
1517     return epan;
1518 }
1519
1520 cf_status_t
1521 raw_cf_open(capture_file *cf, const char *fname)
1522 {
1523     if ((fd = raw_pipe_open(fname)) < 0)
1524         return CF_ERROR;
1525
1526     /* The open succeeded.  Fill in the information for this file. */
1527
1528     /* Create new epan session for dissection. */
1529     epan_free(cf->epan);
1530     cf->epan = raw_epan_new(cf);
1531
1532     cf->wth = NULL;
1533     cf->f_datalen = 0; /* not used, but set it anyway */
1534
1535     /* Set the file name because we need it to set the follow stream filter.
1536        XXX - is that still true?  We need it for other reasons, though,
1537        in any case. */
1538     cf->filename = g_strdup(fname);
1539
1540     /* Indicate whether it's a permanent or temporary file. */
1541     cf->is_tempfile = FALSE;
1542
1543     /* No user changes yet. */
1544     cf->unsaved_changes = FALSE;
1545
1546     cf->cd_t      = WTAP_FILE_TYPE_SUBTYPE_UNKNOWN;
1547     cf->open_type = WTAP_TYPE_AUTO;
1548     cf->count     = 0;
1549     cf->drops_known = FALSE;
1550     cf->drops     = 0;
1551     cf->has_snap = FALSE;
1552     cf->snap = WTAP_MAX_PACKET_SIZE;
1553     nstime_set_zero(&cf->elapsed_time);
1554     ref = NULL;
1555     prev_dis = NULL;
1556     prev_cap = NULL;
1557
1558     return CF_OK;
1559 }
1560
1561
1562 /*
1563  * General errors are reported with an console message in Rawshark.
1564  */
1565 static void
1566 failure_message(const char *msg_format, va_list ap)
1567 {
1568     fprintf(stderr, "rawshark: ");
1569     vfprintf(stderr, msg_format, ap);
1570     fprintf(stderr, "\n");
1571 }
1572
1573 /*
1574  * Read errors are reported with an console message in Rawshark.
1575  */
1576 static void
1577 read_failure_message(const char *filename, int err)
1578 {
1579     cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
1580                filename, g_strerror(err));
1581 }
1582
1583 /*
1584  * Write errors are reported with an console message in Rawshark.
1585  */
1586 static void
1587 write_failure_message(const char *filename, int err)
1588 {
1589     cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
1590                filename, g_strerror(err));
1591 }
1592
1593 /*
1594  * Report an error in command-line arguments.
1595  */
1596 static void
1597 rawshark_cmdarg_err(const char *fmt, va_list ap)
1598 {
1599     fprintf(stderr, "rawshark: ");
1600     vfprintf(stderr, fmt, ap);
1601     fprintf(stderr, "\n");
1602 }
1603
1604 /*
1605  * Report additional information for an error in command-line arguments.
1606  */
1607 static void
1608 rawshark_cmdarg_err_cont(const char *fmt, va_list ap)
1609 {
1610     vfprintf(stderr, fmt, ap);
1611     fprintf(stderr, "\n");
1612 }
1613
1614 /*
1615  * Editor modelines
1616  *
1617  * Local Variables:
1618  * c-basic-offset: 4
1619  * tab-width: 8
1620  * indent-tabs-mode: nil
1621  * End:
1622  *
1623  * ex: set shiftwidth=4 tabstop=8 expandtab:
1624  * :indentSize=4:tabSize=8:noTabs=true:
1625  */