aboutsummaryrefslogtreecommitdiffstats
path: root/ringbuffer.c
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2020-07-29 09:36:19 -0400
committerAnders Broman <a.broman58@gmail.com>2020-08-08 08:04:13 +0000
commite4379f0ea1ae75045cd7969b18bd40c9f3fefa6c (patch)
treeea24bdac5d74a6897e6c842e0ae32f4e6f7fa656 /ringbuffer.c
parenta9f39a29fe57fd7b1531f243fa278fd8c0fdab3e (diff)
Dumpcap: print closed ring-buffer file names
This proposal adds a new option '-b printname:<filename>' to dumpcap. If used, dumpcap will print the name of each ring buffer file it creates after it is closed. Allows the use of '-'/'stdout' and 'stderr'. Use case: Since the file name is printed after the file is closed for writing, an automated capture process can do something like the following with the guarantee that the file in question will not be changed. dumpcap -i eth0 -b files:2 -b printname:stdout [-b ...] | \ while read cap_file_name ; do # Do something with $cap_file_name done This sort of scripting is difficult in dumpcap's current form. Dumpcap prints the names of new files to stderr as it *opens* them, so a script attempting to use this must sleep for "-b duration:value" seconds plus some fudge time to be sure it's getting a closed, unchanging file. Change-Id: Idb288cc7c8c30443256d35c8cd4460a2e3f0861c Reviewed-on: https://code.wireshark.org/review/37994 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ringbuffer.c')
-rw-r--r--ringbuffer.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/ringbuffer.c b/ringbuffer.c
index 2069f4de98..f674643635 100644
--- a/ringbuffer.c
+++ b/ringbuffer.c
@@ -63,6 +63,7 @@ typedef struct _ringbuf_data {
FILE *pdh;
char *io_buffer; /**< The IO buffer used to write to the file */
gboolean group_read_access; /**< TRUE if files need to be opened with group read access */
+ FILE *name_h; /**< write names of completed files to this handle */
} ringbuf_data;
static ringbuf_data rb_data;
@@ -135,6 +136,7 @@ ringbuf_init(const char *capfile_name, guint num_files, gboolean group_read_acce
rb_data.pdh = NULL;
rb_data.io_buffer = NULL;
rb_data.group_read_access = group_read_access;
+ rb_data.name_h = NULL;
/* just to be sure ... */
if (num_files <= RINGBUFFER_MAX_NUM_FILES) {
@@ -204,6 +206,34 @@ ringbuf_init(const char *capfile_name, guint num_files, gboolean group_read_acce
return rb_data.fd;
}
+/*
+ * Set name of file to which to print ringbuffer file names.
+ */
+gboolean
+ringbuf_set_print_name(gchar *name, int *err)
+{
+ if (rb_data.name_h != NULL) {
+ if (EOF == fclose(rb_data.name_h)) {
+ if (err != NULL) {
+ *err = errno;
+ }
+ return FALSE;
+ }
+ }
+ if (!strcmp(name, "-") || !strcmp(name, "stdout")) {
+ rb_data.name_h = stdout;
+ } else if (!strcmp(name, "stderr")) {
+ rb_data.name_h = stderr;
+ } else {
+ if (NULL == (rb_data.name_h = ws_fopen(name, "wt"))) {
+ if (err != NULL) {
+ *err = errno;
+ }
+ return FALSE;
+ }
+ }
+ return TRUE;
+}
/*
* Whether the ringbuf filenames are ready.
@@ -276,6 +306,11 @@ ringbuf_switch_file(FILE **pdh, gchar **save_file, int *save_file_fd, int *err)
rb_data.pdh = NULL;
rb_data.fd = -1;
+ if (rb_data.name_h != NULL) {
+ fprintf(rb_data.name_h, "%s\n", ringbuf_current_filename());
+ fflush(rb_data.name_h);
+ }
+
/* get the next file number and open it */
rb_data.curr_file_num++ /* = next_file_num*/;
@@ -322,6 +357,15 @@ ringbuf_libpcap_dump_close(gchar **save_file, int *err)
}
+ if (rb_data.name_h != NULL) {
+ fprintf(rb_data.name_h, "%s\n", ringbuf_current_filename());
+ fflush(rb_data.name_h);
+
+ if (EOF == fclose(rb_data.name_h)) {
+ /* Can't really do much about this, can we? */
+ }
+ }
+
/* set the save file name to the current file */
*save_file = rb_data.files[rb_data.curr_file_num % rb_data.num_files].name;
return ret_val;
@@ -387,6 +431,12 @@ ringbuf_error_cleanup(void)
g_free(rb_data.io_buffer);
rb_data.io_buffer = NULL;
+ if (rb_data.name_h != NULL) {
+ if (EOF == fclose(rb_data.name_h)) {
+ /* Can't really do much about this, can we? */
+ }
+ }
+
/* free the memory */
ringbuf_free();
}