*
* 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
#ifdef HAVE_LIBPCAP
typedef enum {
CAPTURE_STOPPED,
CAPTURE_PREPARING,
CAPTURE_RUNNING
} 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;
int fork_child_status;
int pipe_input_id;
#ifdef _WIN32
int signal_pipe_write_fd;
#endif
capture_state state;
#ifndef _WIN32
uid_t owner;
gid_t group;
#endif
bool session_will_restart;
uint32_t count;
uint32_t count_pending;
capture_options *capture_opts;
capture_file *cf;
wtap_rec rec;
Buffer buf;
struct wtap *wtap;
struct _info_data *cap_data_info;
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
typedef struct _capture_session {int dummy;} capture_session;
#endif
#ifdef __cplusplus
}
#endif
#endif