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