Attempt to use dladdr() to get the pathname of the executable image if
[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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, 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 #ifdef NEED_STRERROR_H
36 #include "strerror.h"
37 #endif
38
39 #include <glib.h>
40 #include <epan/epan.h>
41
42 #include <epan/timestamp.h>
43 #include <epan/plugins.h>
44 #include <epan/filesystem.h>
45 #include <wsutil/privileges.h>
46 #include <epan/prefs.h>
47 #include "util.h"
48 #include "epan/dfilter/dfilter.h"
49 #include "register.h"
50
51 packet_info     pi;
52
53 static void failure_message(const char *msg_format, va_list ap);
54 static void open_failure_message(const char *filename, int err,
55     gboolean for_writing);
56 static void read_failure_message(const char *filename, int err);
57 static void write_failure_message(const char *filename, int err);
58
59 int
60 main(int argc, char **argv)
61 {
62         char            *init_progfile_dir_error;
63         char            *text;
64         char            *gpf_path, *pf_path;
65         int             gpf_open_errno, gpf_read_errno;
66         int             pf_open_errno, pf_read_errno;
67         e_prefs         *prefs;
68         dfilter_t       *df;
69
70         /*
71          * Get credential information for later use.
72          */
73         get_credential_info();
74
75         /*
76          * Attempt to get the pathname of the executable file.
77          */
78         init_progfile_dir_error = init_progfile_dir(argv[0],
79             (const void *)main);
80         if (init_progfile_dir_error != NULL) {
81                 fprintf(stderr, "dftest: Can't get pathname of dftest program: %s.\n",
82                     init_progfile_dir_error);
83         }
84
85         timestamp_set_type(TS_RELATIVE);
86
87         /* Register all dissectors; we must do this before checking for the
88            "-g" flag, as the "-g" flag dumps a list of fields registered
89            by the dissectors, and we must do it before we read the preferences,
90            in case any dissectors register preferences. */
91         epan_init(register_all_protocols,
92                   register_all_protocol_handoffs, NULL, NULL,
93                   failure_message, open_failure_message, read_failure_message,
94                   write_failure_message);
95
96         /* now register the preferences for any non-dissector modules.
97         we must do that before we read the preferences as well. */
98         prefs_register_modules();
99
100         /* set the c-language locale to the native environment. */
101         setlocale(LC_ALL, "");
102
103         prefs = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
104             &pf_open_errno, &pf_read_errno, &pf_path);
105         if (gpf_path != NULL) {
106                 if (gpf_open_errno != 0) {
107                         fprintf(stderr,
108                             "can't open global preferences file \"%s\": %s.\n",
109                             pf_path, strerror(gpf_open_errno));
110                 }
111                 if (gpf_read_errno != 0) {
112                         fprintf(stderr,
113                             "I/O error reading global preferences file \"%s\": %s.\n",
114                             pf_path, strerror(gpf_read_errno));
115                 }
116         }
117         if (pf_path != NULL) {
118                 if (pf_open_errno != 0) {
119                         fprintf(stderr,
120                             "can't open your preferences file \"%s\": %s.\n",
121                             pf_path, strerror(pf_open_errno));
122                 }
123                 if (pf_read_errno != 0) {
124                         fprintf(stderr,
125                             "I/O error reading your preferences file \"%s\": %s.\n",
126                             pf_path, strerror(pf_read_errno));
127                 }
128         }
129
130         /* notify all registered modules that have had any of their preferences
131         changed either from one of the preferences file or from the command
132         line that its preferences have changed. */
133         prefs_apply_all();
134
135         /* Check for filter on command line */
136         if (argc <= 1) {
137                 fprintf(stderr, "Usage: dftest <filter>\n");
138                 exit(1);
139         }
140
141         /* Get filter text */
142         text = get_args_as_string(argc, argv, 1);
143
144         printf("Filter: \"%s\"\n", text);
145
146         /* Compile it */
147         if (!dfilter_compile(text, &df)) {
148                 fprintf(stderr, "dftest: %s\n", dfilter_error_msg);
149                 epan_cleanup();
150                 exit(2);
151         }
152         printf("dfilter ptr = 0x%08x\n", GPOINTER_TO_INT(df));
153
154         printf("\n\n");
155
156         if (df == NULL)
157                 printf("Filter is empty\n");
158         else
159                 dfilter_dump(df);
160
161         epan_cleanup();
162         exit(0);
163 }
164
165 /*
166  * General errors are reported with an console message in "dftest".
167  */
168 static void
169 failure_message(const char *msg_format, va_list ap)
170 {
171         fprintf(stderr, "dftest: ");
172         vfprintf(stderr, msg_format, ap);
173         fprintf(stderr, "\n");
174 }
175
176 /*
177  * Open/create errors are reported with an console message in "dftest".
178  */
179 static void
180 open_failure_message(const char *filename, int err, gboolean for_writing)
181 {
182         fprintf(stderr, "dftest: ");
183         fprintf(stderr, file_open_error_message(err, for_writing), filename);
184         fprintf(stderr, "\n");
185 }
186
187 /*
188  * Read errors are reported with an console message in "dftest".
189  */
190 static void
191 read_failure_message(const char *filename, int err)
192 {
193         fprintf(stderr, "dftest: An error occurred while reading from the file \"%s\": %s.\n",
194             filename, strerror(err));
195 }
196
197 /*
198  * Write errors are reported with an console message in "dftest".
199  */
200 static void
201 write_failure_message(const char *filename, int err)
202 {
203         fprintf(stderr, "dftest: An error occurred while writing to the file \"%s\": %s.\n",
204             filename, strerror(err));
205 }