From c362dc7a52c595237223938c0ad20304a5528017 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 21 Mar 2016 15:51:12 -0700 Subject: Fix randpkt and reordercap. Copy over recent wiretap plugin changes from mergecap, otherwise randpkt and reordercap will crash. Change-Id: I70111ded3d9a5c4380b964b2c5b626599eebc327 Reviewed-on: https://code.wireshark.org/review/14546 Reviewed-by: Gerald Combs Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann --- randpkt.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ reordercap.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) diff --git a/randpkt.c b/randpkt.c index 073d50d38f..fa6f467eba 100644 --- a/randpkt.c +++ b/randpkt.c @@ -27,7 +27,14 @@ #include #include #include +#include +#include +#ifdef HAVE_PLUGINS +#include +#endif + +#include #ifdef HAVE_GETOPT_H #include #endif @@ -38,6 +45,19 @@ #include "randpkt_core/randpkt_core.h" +#ifdef HAVE_PLUGINS +/* + * Don't report failures to load plugins because most (non-wiretap) plugins + * *should* fail to load (because we're not linked against libwireshark and + * dissector plugins need libwireshark). + */ +static void +failure_message(const char *msg_format _U_, va_list ap _U_) +{ + return; +} +#endif + /* Print usage statement and exit program */ static void usage(gboolean is_error) @@ -91,11 +111,41 @@ main(int argc, char **argv) {0, 0, 0, 0 } }; +#ifdef HAVE_PLUGINS + char *init_progfile_dir_error; +#endif + + /* + * Get credential information for later use. + */ + init_process_policies(); + init_open_routines(); + #ifdef _WIN32 arg_list_utf_16to8(argc, argv); create_app_running_mutex(); #endif /* _WIN32 */ +#ifdef HAVE_PLUGINS + /* Register wiretap plugins */ + if ((init_progfile_dir_error = init_progfile_dir(argv[0], main))) { + g_warning("randpkt: init_progfile_dir(): %s", init_progfile_dir_error); + g_free(init_progfile_dir_error); + } else { + /* Register all the plugin types we have. */ + wtap_register_plugin_types(); /* Types known to libwiretap */ + + init_report_err(failure_message,NULL,NULL,NULL); + + /* Scan for plugins. This does *not* call their registration routines; + that's done later. */ + scan_plugins(); + + /* Register all libwiretap plugin modules. */ + register_all_wiretap_modules(); + } +#endif + while ((opt = getopt_long(argc, argv, "b:c:ht:r", long_options, NULL)) != -1) { switch (opt) { case 'b': /* max bytes */ diff --git a/reordercap.c b/reordercap.c index 0c29ea59c8..5b531db7c1 100644 --- a/reordercap.c +++ b/reordercap.c @@ -43,11 +43,19 @@ #endif #include +#include #include +#include #include #include #include +#ifdef HAVE_PLUGINS +#include +#endif + +#include + /* Show command-line usage */ static void print_usage(FILE *output) @@ -169,6 +177,19 @@ get_reordercap_runtime_info(GString *str) #endif } +#ifdef HAVE_PLUGINS +/* + * Don't report failures to load plugins because most (non-wiretap) plugins + * *should* fail to load (because we're not linked against libwireshark and + * dissector plugins need libwireshark). + */ +static void +failure_message(const char *msg_format _U_, va_list ap _U_) +{ + return; +} +#endif + /********************************************************************/ /* Main function. */ /********************************************************************/ @@ -205,6 +226,10 @@ main(int argc, char *argv[]) char *infile; const char *outfile; +#ifdef HAVE_PLUGINS + char *init_progfile_dir_error; +#endif + /* Get the compile-time version information string */ comp_info_str = get_compiled_version_info(NULL, get_reordercap_compiled_info); @@ -219,6 +244,32 @@ main(int argc, char *argv[]) "%s", get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str); + /* + * Get credential information for later use. + */ + init_process_policies(); + init_open_routines(); + +#ifdef HAVE_PLUGINS + /* Register wiretap plugins */ + if ((init_progfile_dir_error = init_progfile_dir(argv[0], main))) { + g_warning("reordercap: init_progfile_dir(): %s", init_progfile_dir_error); + g_free(init_progfile_dir_error); + } else { + /* Register all the plugin types we have. */ + wtap_register_plugin_types(); /* Types known to libwiretap */ + + init_report_err(failure_message,NULL,NULL,NULL); + + /* Scan for plugins. This does *not* call their registration routines; + that's done later. */ + scan_plugins(); + + /* Register all libwiretap plugin modules. */ + register_all_wiretap_modules(); + } +#endif + /* Process the options first */ while ((opt = getopt_long(argc, argv, "hnv", long_options, NULL)) != -1) { switch (opt) { -- cgit v1.2.3