aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2019-01-25 17:04:33 +0100
committerAnders Broman <a.broman58@gmail.com>2019-01-26 07:42:17 +0000
commit0b632861e21222513fac38487a56e442a4aac2fb (patch)
tree26b76a0bec4ab15dd7f34c0ae222ae0faf8e9853 /dumpcap.c
parent728183c27e778ada5a329a55353b09a83d11ceac (diff)
dumpcap: fix memory leak in ringbuffer mode
'save_file' is used both for holding the -w command-line argument as well as the current filename that is being written. In ringbuffer mode, the former is already freed while the latter changes after rotation. Be sure to free all ringbuffer filenames on exit. Fixes test failures due to ASAN reporting memory leaks for: test_dumpcap_ringbuffer_filesize test_dumpcap_pcapng_single_in_multi_out test_dumpcap_pcapng_multi_in_multi_out test_dumpcap_ringbuffer_packets Change-Id: Ib817d8340275d7afa7e149dcfbbc59ed78293c34 Reviewed-on: https://code.wireshark.org/review/31739 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c27
1 files changed, 20 insertions, 7 deletions
diff --git a/dumpcap.c b/dumpcap.c
index 78a475ab4e..7629d209dd 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -1148,6 +1148,13 @@ exit_main(int status)
#endif /* _WIN32 */
+ if (ringbuf_is_initialized()) {
+ /* save_file is managed by ringbuffer, be sure to release the memory and
+ * avoid capture_opts_cleanup from double-freeing 'save_file'. */
+ ringbuf_free();
+ global_capture_opts.save_file = NULL;
+ }
+
capture_opts_cleanup(&global_capture_opts);
exit(status);
}
@@ -3548,10 +3555,10 @@ capture_loop_open_output(capture_options *capture_opts, int *save_file_fd,
(capture_opts->has_ring_num_files) ? capture_opts->ring_num_files : 0,
capture_opts->group_read_access);
- /* we need the ringbuf name */
+ /* capfile_name is unused as the ringbuffer provides its own filename. */
if (*save_file_fd != -1) {
g_free(capfile_name);
- capfile_name = g_strdup(ringbuf_current_filename());
+ capfile_name = NULL;
}
} else {
/* Try to open/create the specified file for use as a capture buffer. */
@@ -3645,6 +3652,9 @@ capture_loop_open_output(capture_options *capture_opts, int *save_file_fd,
"could not be opened: %s.", capfile_name, g_strerror(errno));
} else {
if (capture_opts->multi_files_on) {
+ /* Ensures that the ringbuffer is not used. This ensures that
+ * !ringbuf_is_initialized() is equivalent to
+ * capture_opts->save_file not being part of ringbuffer. */
ringbuf_error_cleanup();
}
@@ -3657,12 +3667,15 @@ capture_loop_open_output(capture_options *capture_opts, int *save_file_fd,
return FALSE;
}
- if (capture_opts->save_file != NULL) {
- g_free(capture_opts->save_file);
+ g_free(capture_opts->save_file);
+ if (!is_tempfile && capture_opts->multi_files_on) {
+ /* In ringbuffer mode, save_file points to a filename from ringbuffer.c.
+ * capfile_name was already freed before. */
+ capture_opts->save_file = (char *)ringbuf_current_filename();
+ } else {
+ /* capture_opts_cleanup will g_free(capture_opts->save_file). */
+ capture_opts->save_file = capfile_name;
}
- capture_opts->save_file = capfile_name;
- /* capture_opts.save_file is "g_free"ed later, which is equivalent to
- "g_free(capfile_name)". */
return TRUE;
}