Move the common parts of iface_lists.[ch] from ui/gtk/ to ui/. Leave the
[metze/wireshark/wip.git] / dftest.c
1 /* dftest.c
2  * Shows display filter byte-code, for debugging dfilter routines.
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <locale.h>
32 #include <string.h>
33 #include <errno.h>
34
35 #include <glib.h>
36 #include <epan/epan.h>
37
38 #include <epan/timestamp.h>
39 #include <epan/plugins.h>
40 #include <epan/filesystem.h>
41 #include <wsutil/privileges.h>
42 #include <epan/prefs.h>
43 #include "ui/util.h"
44 #include "epan/dfilter/dfilter.h"
45 #include "register.h"
46
47 static void failure_message(const char *msg_format, va_list ap);
48 static void open_failure_message(const char *filename, int err,
49         gboolean for_writing);
50 static void read_failure_message(const char *filename, int err);
51 static void write_failure_message(const char *filename, int err);
52
53 int
54 main(int argc, char **argv)
55 {
56         char            *init_progfile_dir_error;
57         char            *text;
58         char            *gpf_path, *pf_path;
59         int             gpf_open_errno, gpf_read_errno;
60         int             pf_open_errno, pf_read_errno;
61         dfilter_t       *df;
62
63         /*
64          * Get credential information for later use.
65          */
66         init_process_policies();
67
68         /*
69          * Attempt to get the pathname of the executable file.
70          */
71         init_progfile_dir_error = init_progfile_dir(argv[0], main);
72         if (init_progfile_dir_error != NULL) {
73                 fprintf(stderr, "dftest: Can't get pathname of dftest program: %s.\n",
74                         init_progfile_dir_error);
75         }
76
77         timestamp_set_type(TS_RELATIVE);
78         timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
79
80         /* Register all dissectors; we must do this before checking for the
81            "-g" flag, as the "-g" flag dumps a list of fields registered
82            by the dissectors, and we must do it before we read the preferences,
83            in case any dissectors register preferences. */
84         epan_init(register_all_protocols,
85                   register_all_protocol_handoffs, NULL, NULL,
86                   failure_message, open_failure_message, read_failure_message,
87                   write_failure_message);
88
89         /* set the c-language locale to the native environment. */
90         setlocale(LC_ALL, "");
91
92         read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
93                 &pf_open_errno, &pf_read_errno, &pf_path);
94         if (gpf_path != NULL) {
95                 if (gpf_open_errno != 0) {
96                         fprintf(stderr,
97                                 "can't open global preferences file \"%s\": %s.\n",
98                                 pf_path, g_strerror(gpf_open_errno));
99                 }
100                 if (gpf_read_errno != 0) {
101                         fprintf(stderr,
102                                 "I/O error reading global preferences file \"%s\": %s.\n",
103                                 pf_path, g_strerror(gpf_read_errno));
104                 }
105         }
106         if (pf_path != NULL) {
107                 if (pf_open_errno != 0) {
108                         fprintf(stderr,
109                                 "can't open your preferences file \"%s\": %s.\n",
110                                 pf_path, g_strerror(pf_open_errno));
111                 }
112                 if (pf_read_errno != 0) {
113                         fprintf(stderr,
114                                 "I/O error reading your preferences file \"%s\": %s.\n",
115                                 pf_path, g_strerror(pf_read_errno));
116                 }
117         }
118
119         /* notify all registered modules that have had any of their preferences
120         changed either from one of the preferences file or from the command
121         line that its preferences have changed. */
122         prefs_apply_all();
123
124         /* Check for filter on command line */
125         if (argc <= 1) {
126                 fprintf(stderr, "Usage: dftest <filter>\n");
127                 exit(1);
128         }
129
130         /* Get filter text */
131         text = get_args_as_string(argc, argv, 1);
132
133         printf("Filter: \"%s\"\n", text);
134
135         /* Compile it */
136         if (!dfilter_compile(text, &df)) {
137                 fprintf(stderr, "dftest: %s\n", dfilter_error_msg);
138                 epan_cleanup();
139                 exit(2);
140         }
141
142         printf("\n");
143
144         if (df == NULL)
145                 printf("Filter is empty\n");
146         else
147                 dfilter_dump(df);
148
149         dfilter_free(df);
150         epan_cleanup();
151         exit(0);
152 }
153
154 /*
155  * General errors are reported with an console message in "dftest".
156  */
157 static void
158 failure_message(const char *msg_format, va_list ap)
159 {
160         fprintf(stderr, "dftest: ");
161         vfprintf(stderr, msg_format, ap);
162         fprintf(stderr, "\n");
163 }
164
165 /*
166  * Open/create errors are reported with an console message in "dftest".
167  */
168 static void
169 open_failure_message(const char *filename, int err, gboolean for_writing)
170 {
171         fprintf(stderr, "dftest: ");
172         fprintf(stderr, file_open_error_message(err, for_writing), filename);
173         fprintf(stderr, "\n");
174 }
175
176 /*
177  * Read errors are reported with an console message in "dftest".
178  */
179 static void
180 read_failure_message(const char *filename, int err)
181 {
182         fprintf(stderr, "dftest: An error occurred while reading from the file \"%s\": %s.\n",
183                 filename, g_strerror(err));
184 }
185
186 /*
187  * Write errors are reported with an console message in "dftest".
188  */
189 static void
190 write_failure_message(const char *filename, int err)
191 {
192         fprintf(stderr, "dftest: An error occurred while writing to the file \"%s\": %s.\n",
193                 filename, g_strerror(err));
194 }