2013-09-06 21:57:04 +00:00
|
|
|
/* Combine dump files, either by appending or by merging by timestamp
|
2001-07-12 19:59:41 +00:00
|
|
|
*
|
2011-11-30 15:55:53 +00:00
|
|
|
* Wireshark - Network traffic analyzer
|
|
|
|
* By Gerald Combs <gerald@wireshark.org>
|
|
|
|
* Copyright 1998 Gerald Combs
|
|
|
|
*
|
2018-02-07 12:26:45 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
2011-11-30 15:55:53 +00:00
|
|
|
*
|
|
|
|
* Mergecap written by Scott Renfro <scott@renfro.org> based on
|
2001-07-12 19:59:41 +00:00
|
|
|
* editcap by Richard Sharpe and Guy Harris
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-22 22:13:05 +01:00
|
|
|
#include <config.h>
|
2022-10-06 18:41:17 +01:00
|
|
|
#define WS_LOG_DOMAIN LOG_DOMAIN_MAIN
|
2001-07-12 19:59:41 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
2021-07-26 17:22:36 +01:00
|
|
|
#include <wsutil/ws_getopt.h>
|
2014-07-02 21:50:54 -07:00
|
|
|
|
2001-07-12 19:59:41 +00:00
|
|
|
#include <string.h>
|
2016-01-05 16:24:52 -08:00
|
|
|
|
|
|
|
#include <wiretap/wtap.h>
|
2001-07-12 19:59:41 +00:00
|
|
|
|
2023-02-06 22:50:32 +00:00
|
|
|
#include <wsutil/clopts_common.h>
|
2023-02-06 22:46:45 +00:00
|
|
|
#include <wsutil/cmdarg_err.h>
|
2016-03-02 09:13:08 -05:00
|
|
|
#include <wsutil/filesystem.h>
|
2015-02-19 16:05:49 -08:00
|
|
|
#include <wsutil/file_util.h>
|
2016-03-03 14:10:38 -08:00
|
|
|
#include <wsutil/privileges.h>
|
2015-02-19 16:05:49 -08:00
|
|
|
#include <wsutil/strnatcmp.h>
|
2021-06-18 19:21:42 +01:00
|
|
|
#include <wsutil/ws_assert.h>
|
2021-06-19 19:44:58 +01:00
|
|
|
#include <wsutil/wslog.h>
|
2025-04-28 13:30:46 +00:00
|
|
|
#include <ws_exit_codes.h>
|
2018-12-12 02:53:08 -08:00
|
|
|
|
|
|
|
#include <cli_main.h>
|
2023-02-06 21:57:51 +00:00
|
|
|
#include <wsutil/version_info.h>
|
2013-07-16 01:16:50 +00:00
|
|
|
|
2016-03-02 09:13:08 -05:00
|
|
|
#ifdef HAVE_PLUGINS
|
|
|
|
#include <wsutil/plugins.h>
|
|
|
|
#endif
|
|
|
|
|
2013-07-16 02:35:33 +00:00
|
|
|
#include <wiretap/merge.h>
|
2013-07-10 16:18:37 +00:00
|
|
|
|
2017-04-20 13:25:21 -07:00
|
|
|
#include "ui/failure_message.h"
|
|
|
|
|
2024-07-31 10:17:15 +02:00
|
|
|
#define LONGOPT_COMPRESS LONGOPT_BASE_APPLICATION+1
|
|
|
|
|
2001-07-13 08:16:16 +00:00
|
|
|
/*
|
|
|
|
* Show the usage
|
2002-08-28 21:04:11 +00:00
|
|
|
*/
|
2001-07-13 08:16:16 +00:00
|
|
|
static void
|
2014-07-03 01:45:32 -07:00
|
|
|
print_usage(FILE *output)
|
2001-07-12 19:59:41 +00:00
|
|
|
{
|
2022-02-20 19:39:37 +00:00
|
|
|
fprintf(output, "\n");
|
|
|
|
fprintf(output, "Usage: mergecap [options] -w <outfile>|- <infile> [<infile> ...]\n");
|
|
|
|
fprintf(output, "\n");
|
|
|
|
fprintf(output, "Output:\n");
|
|
|
|
fprintf(output, " -a concatenate rather than merge files.\n");
|
|
|
|
fprintf(output, " default is to merge based on frame timestamps.\n");
|
|
|
|
fprintf(output, " -s <snaplen> truncate packets to <snaplen> bytes of data.\n");
|
|
|
|
fprintf(output, " -w <outfile>|- set the output filename to <outfile> or '-' for stdout.\n");
|
2024-07-31 10:17:15 +02:00
|
|
|
fprintf(output, " if the output filename has the .gz extension, it will be compressed to a gzip archive\n");
|
2022-02-20 19:39:37 +00:00
|
|
|
fprintf(output, " -F <capture type> set the output file type; default is pcapng.\n");
|
|
|
|
fprintf(output, " an empty \"-F\" option will list the file types.\n");
|
|
|
|
fprintf(output, " -I <IDB merge mode> set the merge mode for Interface Description Blocks; default is 'all'.\n");
|
|
|
|
fprintf(output, " an empty \"-I\" option will list the merge modes.\n");
|
2024-07-31 10:17:15 +02:00
|
|
|
fprintf(output, " --compress <type> compress the output file using the type compression format.\n");
|
2022-02-20 19:39:37 +00:00
|
|
|
fprintf(output, "\n");
|
|
|
|
fprintf(output, "Miscellaneous:\n");
|
2022-06-14 21:05:10 -05:00
|
|
|
fprintf(output, " -h, --help display this help and exit.\n");
|
|
|
|
fprintf(output, " -V verbose output.\n");
|
|
|
|
fprintf(output, " -v, --version print version information and exit.\n");
|
2006-01-10 23:06:05 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 21:52:16 +00:00
|
|
|
static void
|
|
|
|
list_capture_types(void) {
|
2022-02-20 19:39:37 +00:00
|
|
|
GArray *writable_type_subtypes;
|
|
|
|
|
|
|
|
fprintf(stderr, "mergecap: The available capture file types for the \"-F\" flag are:\n");
|
|
|
|
writable_type_subtypes = wtap_get_writable_file_types_subtypes(FT_SORT_BY_NAME);
|
2024-07-07 08:44:20 -04:00
|
|
|
for (unsigned i = 0; i < writable_type_subtypes->len; i++) {
|
2022-02-20 19:39:37 +00:00
|
|
|
int ft = g_array_index(writable_type_subtypes, int, i);
|
|
|
|
fprintf(stderr, " %s - %s\n", wtap_file_type_subtype_name(ft),
|
|
|
|
wtap_file_type_subtype_description(ft));
|
|
|
|
}
|
|
|
|
g_array_free(writable_type_subtypes, TRUE);
|
2006-01-10 23:06:05 +00:00
|
|
|
}
|
|
|
|
|
2011-12-22 21:52:16 +00:00
|
|
|
static void
|
2015-08-16 12:37:11 -04:00
|
|
|
list_idb_merge_modes(void) {
|
2022-02-20 19:39:37 +00:00
|
|
|
int i;
|
2013-09-06 21:57:04 +00:00
|
|
|
|
2022-02-20 19:39:37 +00:00
|
|
|
fprintf(stderr, "mergecap: The available IDB merge modes for the \"-I\" flag are:\n");
|
|
|
|
for (i = 0; i < IDB_MERGE_MODE_MAX; i++) {
|
|
|
|
fprintf(stderr, " %s\n", merge_idb_merge_mode_to_string(i));
|
|
|
|
}
|
2001-07-12 19:59:41 +00:00
|
|
|
}
|
|
|
|
|
2024-07-31 10:17:15 +02:00
|
|
|
static void
|
|
|
|
list_output_compression_types(void) {
|
|
|
|
GSList *output_compression_types;
|
|
|
|
|
|
|
|
fprintf(stderr, "mergecap: The available output compress type(s) for the \"--compress\" flag are:\n");
|
|
|
|
output_compression_types = wtap_get_all_output_compression_type_names_list();
|
|
|
|
for (GSList *compression_type = output_compression_types;
|
|
|
|
compression_type != NULL;
|
|
|
|
compression_type = g_slist_next(compression_type)) {
|
|
|
|
fprintf(stderr, " %s\n", (const char *)compression_type->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free(output_compression_types);
|
|
|
|
}
|
|
|
|
|
Convert Wiretap to C99
This one is complicated because a gboolean is an int, but a bool
is not, in the way that a pointer to a bool (including in the
return of a function pointer) cannot be substituted for a pointer
to a gboolean. (They can convert a bool used internally to a gboolean
on return.)
Continue for that reason to have some functions return gboolean
when used with glib callback functions:
https://docs.gtk.org/glib/callback.HRFunc.html
Another small gotcha is that macros like UINT64_C are not necessarily
guaranteed to wrap the return in parentheses, which G_GUINT64_CONSTANT
and the like do.
In wtap.h, the file subtype "dump_open" function was typedef'd
as returning an int, but almost all users (except in wslua) returned
a gboolean. Switch it to a bool.
Make a note about why can_write_encap does not return a bool,
because it returns error codes on failure (for Lua) instead of
having the err as a separate parameter.
Update the usbdump wiretap plugin too.
A few places outside of wiretap use wiretap function pointers, such
as in the Lua interface, adding IP addresses to NRBs, merging, and
the frame dissector using wiretap functions. Switch those to bool.
Ping #19116
2024-03-20 15:26:00 -04:00
|
|
|
static bool
|
2015-08-16 12:37:11 -04:00
|
|
|
merge_callback(merge_event event, int num,
|
2024-07-07 08:44:20 -04:00
|
|
|
const merge_in_file_t in_files[], const unsigned in_file_count,
|
2022-02-20 19:39:37 +00:00
|
|
|
void *data _U_)
|
2015-08-16 12:37:11 -04:00
|
|
|
{
|
2024-07-07 08:44:20 -04:00
|
|
|
unsigned i;
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
|
|
|
|
case MERGE_EVENT_INPUT_FILES_OPENED:
|
|
|
|
for (i = 0; i < in_file_count; i++) {
|
|
|
|
fprintf(stderr, "mergecap: %s is type %s.\n", in_files[i].filename,
|
|
|
|
wtap_file_type_subtype_description(wtap_file_type_subtype(in_files[i].wth)));
|
|
|
|
}
|
2015-08-16 12:37:11 -04:00
|
|
|
break;
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
case MERGE_EVENT_FRAME_TYPE_SELECTED:
|
|
|
|
/* for this event, num = frame_type */
|
|
|
|
if (num == WTAP_ENCAP_PER_PACKET) {
|
|
|
|
/*
|
|
|
|
* Find out why we had to choose WTAP_ENCAP_PER_PACKET.
|
|
|
|
*/
|
|
|
|
int first_frame_type, this_frame_type;
|
|
|
|
|
|
|
|
first_frame_type = wtap_file_encap(in_files[0].wth);
|
|
|
|
for (i = 1; i < in_file_count; i++) {
|
|
|
|
this_frame_type = wtap_file_encap(in_files[i].wth);
|
|
|
|
if (first_frame_type != this_frame_type) {
|
|
|
|
fprintf(stderr, "mergecap: multiple frame encapsulation types detected\n");
|
|
|
|
fprintf(stderr, " defaulting to WTAP_ENCAP_PER_PACKET\n");
|
|
|
|
fprintf(stderr, " %s had type %s (%s)\n",
|
|
|
|
in_files[0].filename,
|
|
|
|
wtap_encap_description(first_frame_type),
|
|
|
|
wtap_encap_name(first_frame_type));
|
|
|
|
fprintf(stderr, " %s had type %s (%s)\n",
|
|
|
|
in_files[i].filename,
|
|
|
|
wtap_encap_description(this_frame_type),
|
|
|
|
wtap_encap_name(this_frame_type));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "mergecap: selected frame_type %s (%s)\n",
|
|
|
|
wtap_encap_description(num),
|
|
|
|
wtap_encap_name(num));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MERGE_EVENT_READY_TO_MERGE:
|
|
|
|
fprintf(stderr, "mergecap: ready to merge records\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MERGE_EVENT_RECORD_WAS_READ:
|
|
|
|
/* for this event, num = count */
|
|
|
|
fprintf(stderr, "Record: %d\n", num);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MERGE_EVENT_DONE:
|
|
|
|
fprintf(stderr, "mergecap: merging complete\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* false = do not stop merging */
|
Convert Wiretap to C99
This one is complicated because a gboolean is an int, but a bool
is not, in the way that a pointer to a bool (including in the
return of a function pointer) cannot be substituted for a pointer
to a gboolean. (They can convert a bool used internally to a gboolean
on return.)
Continue for that reason to have some functions return gboolean
when used with glib callback functions:
https://docs.gtk.org/glib/callback.HRFunc.html
Another small gotcha is that macros like UINT64_C are not necessarily
guaranteed to wrap the return in parentheses, which G_GUINT64_CONSTANT
and the like do.
In wtap.h, the file subtype "dump_open" function was typedef'd
as returning an int, but almost all users (except in wslua) returned
a gboolean. Switch it to a bool.
Make a note about why can_write_encap does not return a bool,
because it returns error codes on failure (for Lua) instead of
having the err as a separate parameter.
Update the usbdump wiretap plugin too.
A few places outside of wiretap use wiretap function pointers, such
as in the Lua interface, adding IP addresses to NRBs, merging, and
the frame dissector using wiretap functions. Switch those to bool.
Ping #19116
2024-03-20 15:26:00 -04:00
|
|
|
return false;
|
2015-08-16 12:37:11 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 02:53:08 -08:00
|
|
|
int
|
2018-12-26 18:10:12 +01:00
|
|
|
main(int argc, char *argv[])
|
2001-07-12 19:59:41 +00:00
|
|
|
{
|
2022-02-20 12:09:34 -08:00
|
|
|
char *configuration_init_error;
|
2022-02-20 19:39:37 +00:00
|
|
|
int opt;
|
|
|
|
static const struct ws_option long_options[] = {
|
|
|
|
{"help", ws_no_argument, NULL, 'h'},
|
2022-06-14 21:05:10 -05:00
|
|
|
{"version", ws_no_argument, NULL, 'v'},
|
2024-07-31 10:17:15 +02:00
|
|
|
{"compress", ws_required_argument, NULL, LONGOPT_COMPRESS},
|
2025-04-28 13:30:46 +00:00
|
|
|
LONGOPT_WSLOG
|
2022-02-20 19:39:37 +00:00
|
|
|
{0, 0, 0, 0 }
|
|
|
|
};
|
2025-04-28 13:30:46 +00:00
|
|
|
#define OPTSTRING "aF:hI:s:vVw:"
|
|
|
|
static const char optstring[] = OPTSTRING;
|
2024-07-31 10:17:15 +02:00
|
|
|
bool do_append = false;
|
|
|
|
bool verbose = false;
|
|
|
|
int in_file_count = 0;
|
|
|
|
uint32_t snaplen = 0;
|
|
|
|
int file_type = WTAP_FILE_TYPE_SUBTYPE_UNKNOWN;
|
|
|
|
char *out_filename = NULL;
|
|
|
|
bool status = true;
|
|
|
|
idb_merge_mode mode = IDB_MERGE_MODE_MAX;
|
2024-08-16 06:30:50 -04:00
|
|
|
wtap_compression_type compression_type = WTAP_UNKNOWN_COMPRESSION;
|
2022-02-20 19:39:37 +00:00
|
|
|
merge_progress_callback_t cb;
|
|
|
|
|
2024-11-28 14:04:14 -08:00
|
|
|
/* Set the program name. */
|
|
|
|
g_set_prgname("mergecap");
|
|
|
|
|
|
|
|
cmdarg_err_init(stderr_cmdarg_err, stderr_cmdarg_err_cont);
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
/* Initialize log handler early so we can have proper logging during startup. */
|
2024-11-28 14:04:14 -08:00
|
|
|
ws_log_init(vcmdarg_err);
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
/* Early logging command-line initialization. */
|
2025-04-28 13:30:46 +00:00
|
|
|
ws_log_parse_args(&argc, argv, optstring, long_options, vcmdarg_err, WS_EXIT_INVALID_OPTION);
|
2021-06-19 19:44:58 +01:00
|
|
|
|
2022-10-06 18:41:17 +01:00
|
|
|
ws_noisy("Finished log init and parsing command line log arguments");
|
|
|
|
|
2011-01-06 23:28:58 +00:00
|
|
|
#ifdef _WIN32
|
2022-02-20 19:39:37 +00:00
|
|
|
create_app_running_mutex();
|
2011-01-06 23:28:58 +00:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2022-02-20 19:39:37 +00:00
|
|
|
/*
|
|
|
|
* Get credential information for later use.
|
|
|
|
*/
|
|
|
|
init_process_policies();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attempt to get the pathname of the directory containing the
|
|
|
|
* executable file.
|
|
|
|
*/
|
2024-11-21 09:45:22 -08:00
|
|
|
configuration_init_error = configuration_init(argv[0]);
|
2022-02-20 12:09:34 -08:00
|
|
|
if (configuration_init_error != NULL) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err(
|
|
|
|
"Can't get pathname of directory containing the mergecap program: %s.",
|
2022-02-20 12:09:34 -08:00
|
|
|
configuration_init_error);
|
|
|
|
g_free(configuration_init_error);
|
2022-02-20 19:39:37 +00:00
|
|
|
}
|
|
|
|
|
2024-11-15 15:19:47 -06:00
|
|
|
/* Initialize the version information. */
|
|
|
|
ws_init_version_info("Mergecap", NULL, NULL);
|
|
|
|
|
2024-10-05 14:01:25 -07:00
|
|
|
init_report_failure_message("mergecap");
|
2022-02-20 19:39:37 +00:00
|
|
|
|
2024-07-07 08:44:20 -04:00
|
|
|
wtap_init(true);
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
/* Process the options first */
|
2025-04-28 13:30:46 +00:00
|
|
|
while ((opt = ws_getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
case 'a':
|
|
|
|
do_append = !do_append;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'F':
|
|
|
|
file_type = wtap_name_to_file_type_subtype(ws_optarg);
|
|
|
|
if (file_type < 0) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err("\"%s\" isn't a valid capture file type",
|
|
|
|
ws_optarg);
|
2022-02-20 19:39:37 +00:00
|
|
|
list_capture_types();
|
2024-07-01 10:27:37 -07:00
|
|
|
status = false;
|
2022-02-20 19:39:37 +00:00
|
|
|
goto clean_exit;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
show_help_header("Merge two or more capture files into one.");
|
|
|
|
print_usage(stdout);
|
|
|
|
goto clean_exit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
mode = merge_string_to_idb_merge_mode(ws_optarg);
|
|
|
|
if (mode == IDB_MERGE_MODE_MAX) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err("\"%s\" isn't a valid IDB merge mode",
|
|
|
|
ws_optarg);
|
2022-02-20 19:39:37 +00:00
|
|
|
list_idb_merge_modes();
|
2024-07-01 10:27:37 -07:00
|
|
|
status = false;
|
2022-02-20 19:39:37 +00:00
|
|
|
goto clean_exit;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
2025-04-18 13:10:42 -04:00
|
|
|
if (!get_nonzero_uint32(ws_optarg, "snapshot length", &snaplen)) {
|
|
|
|
status = false;
|
|
|
|
goto clean_exit;
|
|
|
|
}
|
2022-02-20 19:39:37 +00:00
|
|
|
break;
|
|
|
|
|
2022-06-14 21:05:10 -05:00
|
|
|
case 'V':
|
2024-07-07 08:44:20 -04:00
|
|
|
verbose = true;
|
2022-02-20 19:39:37 +00:00
|
|
|
break;
|
|
|
|
|
2022-06-14 21:05:10 -05:00
|
|
|
case 'v':
|
2022-02-20 19:39:37 +00:00
|
|
|
show_version();
|
|
|
|
goto clean_exit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
out_filename = ws_optarg;
|
|
|
|
break;
|
|
|
|
|
2024-07-31 10:17:15 +02:00
|
|
|
case LONGOPT_COMPRESS:
|
|
|
|
compression_type = wtap_name_to_compression_type(ws_optarg);
|
|
|
|
if (compression_type == WTAP_UNKNOWN_COMPRESSION) {
|
|
|
|
cmdarg_err("\"%s\" isn't a valid output compression mode",
|
|
|
|
ws_optarg);
|
|
|
|
list_output_compression_types();
|
|
|
|
goto clean_exit;
|
|
|
|
}
|
|
|
|
break;
|
2022-02-20 19:39:37 +00:00
|
|
|
case '?': /* Bad options if GNU getopt */
|
2025-04-29 14:00:41 -04:00
|
|
|
default:
|
|
|
|
/* wslog arguments are okay */
|
|
|
|
if (ws_log_is_wslog_arg(opt))
|
|
|
|
break;
|
|
|
|
|
2022-02-20 19:39:37 +00:00
|
|
|
switch(ws_optopt) {
|
|
|
|
case'F':
|
|
|
|
list_capture_types();
|
|
|
|
break;
|
|
|
|
case'I':
|
|
|
|
list_idb_merge_modes();
|
|
|
|
break;
|
2024-07-31 10:17:15 +02:00
|
|
|
case LONGOPT_COMPRESS:
|
|
|
|
list_output_compression_types();
|
|
|
|
break;
|
2022-02-20 19:39:37 +00:00
|
|
|
default:
|
|
|
|
print_usage(stderr);
|
|
|
|
}
|
2024-07-01 10:27:37 -07:00
|
|
|
status = false;
|
2022-02-20 19:39:37 +00:00
|
|
|
goto clean_exit;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default to pcapng when writing. */
|
|
|
|
if (file_type == WTAP_FILE_TYPE_SUBTYPE_UNKNOWN)
|
|
|
|
file_type = wtap_pcapng_file_type_subtype();
|
|
|
|
|
|
|
|
cb.callback_func = merge_callback;
|
|
|
|
cb.data = NULL;
|
|
|
|
|
|
|
|
/* check for proper args; at a minimum, must have an output
|
|
|
|
* filename and one input file
|
|
|
|
*/
|
|
|
|
in_file_count = argc - ws_optind;
|
|
|
|
if (!out_filename) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err("an output filename must be set with -w");
|
|
|
|
cmdarg_err_cont("run with -h for help");
|
|
|
|
status = false;
|
2017-02-04 16:26:34 +01:00
|
|
|
goto clean_exit;
|
2022-02-20 19:39:37 +00:00
|
|
|
}
|
|
|
|
if (in_file_count < 1) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err("No input files were specified");
|
2022-02-20 19:39:37 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-08-16 06:30:50 -04:00
|
|
|
if (compression_type == WTAP_UNKNOWN_COMPRESSION) {
|
2024-08-16 06:55:51 -04:00
|
|
|
/* An explicitly specified compression type overrides filename
|
|
|
|
* magic. (Should we allow specifying "no" compression with, e.g.
|
|
|
|
* a ".gz" extension?) */
|
2024-08-16 06:30:50 -04:00
|
|
|
const char *sfx = strrchr(out_filename, '.');
|
|
|
|
if (sfx) {
|
|
|
|
compression_type = wtap_extension_to_compression_type(sfx + 1);
|
2024-08-16 06:55:51 -04:00
|
|
|
}
|
2024-08-16 06:30:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (compression_type == WTAP_UNKNOWN_COMPRESSION) {
|
|
|
|
compression_type = WTAP_UNCOMPRESSED;
|
2024-08-16 06:55:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!wtap_can_write_compression_type(compression_type)) {
|
|
|
|
cmdarg_err("Output files can't be written as %s",
|
|
|
|
wtap_compression_type_description(compression_type));
|
|
|
|
status = false;
|
|
|
|
goto clean_exit;
|
|
|
|
}
|
|
|
|
|
2024-07-31 10:17:15 +02:00
|
|
|
if (compression_type != WTAP_UNCOMPRESSED && !wtap_dump_can_compress(file_type)) {
|
2024-08-16 06:55:51 -04:00
|
|
|
cmdarg_err("The file format %s can't be written to output compressed format",
|
|
|
|
wtap_file_type_subtype_name(file_type));
|
2024-07-31 10:17:15 +02:00
|
|
|
status = false;
|
|
|
|
goto clean_exit;
|
|
|
|
}
|
|
|
|
|
2022-02-20 19:39:37 +00:00
|
|
|
/*
|
|
|
|
* Setting IDB merge mode must use a file format that supports
|
|
|
|
* (and thus requires) interface ID and information blocks.
|
|
|
|
*/
|
|
|
|
if (mode != IDB_MERGE_MODE_MAX &&
|
|
|
|
wtap_file_type_subtype_supports_block(file_type, WTAP_BLOCK_IF_ID_AND_INFO) == BLOCK_NOT_SUPPORTED) {
|
2024-07-01 10:27:37 -07:00
|
|
|
cmdarg_err("The IDB merge mode can only be used with an output format that identifies interfaces");
|
|
|
|
status = false;
|
2017-02-04 16:26:34 +01:00
|
|
|
goto clean_exit;
|
2001-07-12 19:59:41 +00:00
|
|
|
}
|
2022-02-20 19:39:37 +00:00
|
|
|
|
|
|
|
/* if they didn't set IDB merge mode, set it to our default */
|
|
|
|
if (mode == IDB_MERGE_MODE_MAX) {
|
|
|
|
mode = IDB_MERGE_MODE_ALL_SAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open the outfile */
|
|
|
|
if (strcmp(out_filename, "-") == 0) {
|
|
|
|
/* merge the files to the standard output */
|
|
|
|
status = merge_files_to_stdout(file_type,
|
|
|
|
(const char *const *) &argv[ws_optind],
|
|
|
|
in_file_count, do_append, mode, snaplen,
|
|
|
|
get_appname_and_version(),
|
2024-08-16 06:55:51 -04:00
|
|
|
verbose ? &cb : NULL, compression_type);
|
2022-02-20 19:39:37 +00:00
|
|
|
} else {
|
|
|
|
/* merge the files to the outfile */
|
|
|
|
status = merge_files(out_filename, file_type,
|
|
|
|
(const char *const *) &argv[ws_optind], in_file_count,
|
|
|
|
do_append, mode, snaplen, get_appname_and_version(),
|
2024-07-31 10:17:15 +02:00
|
|
|
verbose ? &cb : NULL, compression_type);
|
2022-02-20 19:39:37 +00:00
|
|
|
}
|
2001-07-13 08:16:16 +00:00
|
|
|
|
2017-02-04 16:26:34 +01:00
|
|
|
clean_exit:
|
2022-02-20 19:39:37 +00:00
|
|
|
wtap_cleanup();
|
|
|
|
free_progdirs();
|
2024-07-01 10:27:37 -07:00
|
|
|
return status ? 0 : 2;
|
2001-07-12 19:59:41 +00:00
|
|
|
}
|