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