summaryrefslogtreecommitdiffstats
path: root/capture/capture_session.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /capture/capture_session.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'capture/capture_session.h')
-rw-r--r--capture/capture_session.h145
1 files changed, 145 insertions, 0 deletions
diff --git a/capture/capture_session.h b/capture/capture_session.h
new file mode 100644
index 00000000..f7876723
--- /dev/null
+++ b/capture/capture_session.h
@@ -0,0 +1,145 @@
+/** @file
+ *
+ * State of a capture session
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __CAPCHILD_CAPTURE_SESSION_H__
+#define __CAPCHILD_CAPTURE_SESSION_H__
+
+#ifndef _WIN32
+#include <sys/types.h>
+#include <stdint.h>
+#endif
+
+#include "capture_opts.h"
+
+#include <epan/fifo_string_cache.h>
+#include <wsutil/processes.h>
+
+#include "cfile.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#ifdef HAVE_LIBPCAP
+/* Current state of capture engine. XXX - differentiate states */
+typedef enum {
+ CAPTURE_STOPPED, /**< stopped */
+ CAPTURE_PREPARING, /**< preparing, but still no response from capture child */
+ CAPTURE_RUNNING /**< capture child signalled ok, capture is running now */
+} capture_state;
+
+struct _info_data;
+
+/*
+ * State of a capture session.
+ */
+typedef struct _capture_session capture_session;
+
+/*
+ * Types of callbacks.
+ */
+
+/**
+ * Capture child told us we have a new (or the first) capture file.
+ */
+typedef bool (*new_file_fn)(capture_session *cap_session, char *new_file);
+
+/**
+ * Capture child told us we have new packets to read.
+ */
+typedef void (*new_packets_fn)(capture_session *cap_session, int to_read);
+
+/**
+ * Capture child told us how many dropped packets it counted.
+ */
+typedef void (*drops_fn)(capture_session *cap_session, uint32_t dropped,
+ const char *interface_name);
+
+/**
+ * Capture child told us that an error has occurred while starting
+ * the capture.
+ */
+typedef void (*error_fn)(capture_session *cap_session, char *error_msg,
+ char *secondary_error_msg);
+
+/**
+ * Capture child told us that an error has occurred while parsing a
+ * capture filter when starting/running the capture.
+ */
+typedef void (*cfilter_error_fn)(capture_session *cap_session, unsigned i,
+ const char *error_message);
+
+/**
+ * Capture child closed its side of the pipe, report any error and
+ * do the required cleanup.
+ */
+typedef void (*closed_fn)(capture_session *cap_session, char *msg);
+
+/*
+ * The structure for the session.
+ */
+struct _capture_session {
+ ws_process_id fork_child; /**< If not WS_INVALID_PID, in parent, process ID of child */
+ int fork_child_status; /**< Child exit status */
+ int pipe_input_id; /**< GLib input pipe source ID */
+#ifdef _WIN32
+ int signal_pipe_write_fd; /**< the pipe to signal the child */
+#endif
+ capture_state state; /**< current state of the capture engine */
+#ifndef _WIN32
+ uid_t owner; /**< owner of the cfile */
+ gid_t group; /**< group of the cfile */
+#endif
+ bool session_will_restart; /**< Set when session will restart */
+ uint32_t count; /**< Total number of frames captured */
+ uint32_t count_pending; /**< Number of frames captured but not yet read */
+ capture_options *capture_opts; /**< options for this capture */
+ capture_file *cf; /**< handle to cfile */
+ wtap_rec rec; /**< record we're reading packet metadata into */
+ Buffer buf; /**< Buffer we're reading packet data into */
+ struct wtap *wtap; /**< current wtap file */
+ struct _info_data *cap_data_info; /**< stats for this capture */
+
+ // If the user wants to ignore duplicate frames, we need these.
+ fifo_string_cache_t frame_dup_cache;
+ GChecksum *frame_cksum;
+
+ /*
+ * Routines supplied by our caller; we call them back to notify them
+ * of various events.
+ */
+ new_file_fn new_file;
+ new_packets_fn new_packets;
+ drops_fn drops;
+ error_fn error;
+ cfilter_error_fn cfilter_error;
+ closed_fn closed;
+};
+
+extern void
+capture_session_init(capture_session *cap_session, capture_file *cf,
+ new_file_fn new_file, new_packets_fn new_packets,
+ drops_fn drops, error_fn error,
+ cfilter_error_fn cfilter_error, closed_fn closed);
+
+void capture_process_finished(capture_session *cap_session);
+#else
+
+/* dummy is needed because clang throws the error: empty struct has size 0 in C, size 1 in C++ */
+typedef struct _capture_session {int dummy;} capture_session;
+
+#endif /* HAVE_LIBPCAP */
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __CAPCHILD_CAPTURE_SESSION_H__ */