aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-03-15 11:29:43 -0700
committerGuy Harris <gharris@sonic.net>2021-03-15 12:17:59 -0700
commitc33e2f7b51f9e14f99f6b6d9018ac41b7e97d5a6 (patch)
tree4e02fee80e16cfd08afc9d555e4612399c72d69b /fuzz
parent89ae76d3008719f6b797eb201794dfe0de294640 (diff)
Add more error-reporting routines that call through a function pointer.
Have routines to report capture-file errors, using libwireshark error codes and strings, that call through a pointer, so they can pop up dialogs in GUI apps, print a message to the standard error on command-line apps, and possibly do something different on server programs. Have init_report_message() take a pointer to structure containing those function pointers, rather than the function pointers themselves, as arguments. Make other API changes to make that work.
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzzshark.c57
1 files changed, 20 insertions, 37 deletions
diff --git a/fuzz/fuzzshark.c b/fuzz/fuzzshark.c
index 3bcfca451a..f7cefd98d0 100644
--- a/fuzz/fuzzshark.c
+++ b/fuzz/fuzzshark.c
@@ -1,4 +1,4 @@
-/* oss-fuzzshark.c
+/* fuzzshark.c
*
* Fuzzer variant of Wireshark for oss-fuzz
*
@@ -21,6 +21,7 @@
#include <epan/epan.h>
#include <ui/cmdarg_err.h>
+#include <ui/failure_message.h>
#include <wsutil/filesystem.h>
#include <wsutil/privileges.h>
#include <wsutil/report_message.h>
@@ -49,11 +50,10 @@ static epan_t *fuzz_epan;
static epan_dissect_t *fuzz_edt;
/*
- * General errors and warnings are reported with an console message
- * in oss-fuzzshark.
+ * Report an error in command-line arguments.
*/
static void
-failure_warning_message(const char *msg_format, va_list ap)
+fuzzshark_cmdarg_err(const char *msg_format, va_list ap)
{
fprintf(stderr, "oss-fuzzshark: ");
vfprintf(stderr, msg_format, ap);
@@ -61,39 +61,10 @@ failure_warning_message(const char *msg_format, va_list ap)
}
/*
- * Open/create errors are reported with an console message in oss-fuzzshark.
- */
-static void
-open_failure_message(const char *filename, int err, gboolean for_writing)
-{
- fprintf(stderr, "oss-fuzzshark: ");
- fprintf(stderr, file_open_error_message(err, for_writing), filename);
- fprintf(stderr, "\n");
-}
-
-/*
- * Read errors are reported with an console message in oss-fuzzshark.
- */
-static void
-read_failure_message(const char *filename, int err)
-{
- cmdarg_err("An error occurred while reading from the file \"%s\": %s.", filename, g_strerror(err));
-}
-
-/*
- * Write errors are reported with an console message in oss-fuzzshark.
- */
-static void
-write_failure_message(const char *filename, int err)
-{
- cmdarg_err("An error occurred while writing to the file \"%s\": %s.", filename, g_strerror(err));
-}
-
-/*
* Report additional information for an error in command-line arguments.
*/
static void
-failure_message_cont(const char *msg_format, va_list ap)
+fuzzshark_cmdarg_err_cont(const char *msg_format, va_list ap)
{
vfprintf(stderr, msg_format, ap);
fprintf(stderr, "\n");
@@ -181,6 +152,19 @@ fuzz_init(int argc _U_, char **argv)
{
char *init_progfile_dir_error;
+ static const struct report_message_routines fuzzshark_report_routines = {
+ failure_message,
+ failure_message,
+ open_failure_message,
+ read_failure_message,
+ write_failure_message,
+ cfile_open_failure_message,
+ cfile_dump_open_failure_message,
+ cfile_read_failure_message,
+ cfile_write_failure_message,
+ cfile_close_failure_message
+ };
+
char *err_msg = NULL;
e_prefs *prefs_p;
int ret = EXIT_SUCCESS;
@@ -250,7 +234,7 @@ fuzz_init(int argc _U_, char **argv)
g_setenv("WIRESHARK_DEBUG_WMEM_OVERRIDE", "simple", 0);
g_setenv("G_SLICE", "always-malloc", 0);
- cmdarg_err_init(failure_warning_message, failure_message_cont);
+ cmdarg_err_init(fuzzshark_cmdarg_err, fuzzshark_cmdarg_err_cont);
/*
* Get credential information for later use, and drop privileges
@@ -273,8 +257,7 @@ fuzz_init(int argc _U_, char **argv)
ws_init_version_info("OSS Fuzzshark (Wireshark)", NULL,
epan_get_compiled_version_info, epan_get_runtime_version_info);
- init_report_message(failure_warning_message, failure_warning_message,
- open_failure_message, read_failure_message, write_failure_message);
+ init_report_message("fuzzshark", &fuzzshark_report_routines);
timestamp_set_type(TS_RELATIVE);
timestamp_set_precision(TS_PREC_AUTO);