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