suricata
source-pcap.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2019 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  */
23 
24 #ifndef SURICATA_SOURCE_PCAP_H
25 #define SURICATA_SOURCE_PCAP_H
26 
27 void TmModuleReceivePcapRegister (void);
28 void TmModuleDecodePcapRegister (void);
29 void PcapTranslateIPToDevice(char *pcap_dev, size_t len);
30 
31 #define LIBPCAP_COPYWAIT 500
32 #define LIBPCAP_PROMISC 1
33 
34 /* per packet Pcap vars */
35 typedef struct PcapPacketVars_
36 {
37  uint32_t tenant_id;
39 
40 /** needs to be able to contain Windows adapter id's, so
41  * must be quite long. */
42 #define PCAP_IFACE_NAME_LENGTH 128
43 
44 typedef struct PcapIfaceConfig_
45 {
47  /* number of threads */
48  int threads;
49  /* socket buffer size */
51  /* snapshot length */
52  int snaplen;
53  /* promiscuous value */
54  int promisc;
55  /* BPF filter */
56  const char *bpf_filter;
58  SC_ATOMIC_DECLARE(unsigned int, ref);
59  void (*DerefFunc)(void *);
61 
62 #endif /* SURICATA_SOURCE_PCAP_H */
len
uint8_t len
Definition: app-layer-dnp3.h:2
PcapIfaceConfig_::SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(unsigned int, ref)
PcapTranslateIPToDevice
void PcapTranslateIPToDevice(char *pcap_dev, size_t len)
Definition: source-pcap.c:656
PcapIfaceConfig_::promisc
int promisc
Definition: source-pcap.h:54
PcapIfaceConfig_::bpf_filter
const char * bpf_filter
Definition: source-pcap.h:56
PCAP_IFACE_NAME_LENGTH
#define PCAP_IFACE_NAME_LENGTH
Definition: source-pcap.h:42
PcapIfaceConfig_::snaplen
int snaplen
Definition: source-pcap.h:52
PcapIfaceConfig_::threads
int threads
Definition: source-pcap.h:48
PcapPacketVars
struct PcapPacketVars_ PcapPacketVars
PcapIfaceConfig_::buffer_size
int buffer_size
Definition: source-pcap.h:50
PcapIfaceConfig_::DerefFunc
void(* DerefFunc)(void *)
Definition: source-pcap.h:59
PcapPacketVars_::tenant_id
uint32_t tenant_id
Definition: source-pcap.h:37
PcapIfaceConfig_
Definition: source-pcap.h:45
PcapIfaceConfig
struct PcapIfaceConfig_ PcapIfaceConfig
ChecksumValidationMode
ChecksumValidationMode
Definition: decode.h:45
PcapIfaceConfig_::iface
char iface[PCAP_IFACE_NAME_LENGTH]
Definition: source-pcap.h:46
TmModuleReceivePcapRegister
void TmModuleReceivePcapRegister(void)
Registration Function for ReceivePcap.
Definition: source-pcap.c:135
TmModuleDecodePcapRegister
void TmModuleDecodePcapRegister(void)
Registration Function for DecodePcap.
Definition: source-pcap.c:153
PcapPacketVars_
Definition: source-pcap.h:36
PcapIfaceConfig_::checksum_mode
ChecksumValidationMode checksum_mode
Definition: source-pcap.h:57