suricata
detect-engine-iponly.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2022 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_DETECT_ENGINE_IPONLY_H
25 #define SURICATA_DETECT_ENGINE_IPONLY_H
26 
27 void IPOnlyCIDRListFree(IPOnlyCIDRItem *tmphead);
28 int IPOnlySigParseAddress(const DetectEngineCtx *, Signature *, const char *, char);
30  const DetectEngineIPOnlyCtx *, Packet *);
37 void IPOnlyRegisterTests(void);
38 
39 #endif /* SURICATA_DETECT_ENGINE_IPONLY_H */
IPOnlyAddSignature
void IPOnlyAddSignature(DetectEngineCtx *, DetectEngineIPOnlyCtx *, Signature *)
Add a signature to the lists of Addresses in CIDR format (sorted) this step is necessary to build the...
Definition: detect-engine-iponly.c:1556
IPOnlyCIDRItem_
Definition: detect.h:326
IPOnlyInit
void IPOnlyInit(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Setup the IP Only detection engine context.
Definition: detect-engine-iponly.c:909
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
IPOnlyMatchPacket
void IPOnlyMatchPacket(ThreadVars *tv, const DetectEngineCtx *, DetectEngineThreadCtx *, const DetectEngineIPOnlyCtx *, Packet *)
Match a packet against the IP Only detection engine contexts.
Definition: detect-engine-iponly.c:1004
IPOnlyPrint
void IPOnlyPrint(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Print stats of the IP Only engine.
Definition: detect-engine-iponly.c:937
DetectEngineThreadCtx_
Definition: detect.h:1095
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
IPOnlyCIDRListFree
void IPOnlyCIDRListFree(IPOnlyCIDRItem *tmphead)
This function free a IPOnlyCIDRItem list.
Definition: detect-engine-iponly.c:481
Packet_
Definition: decode.h:437
IPOnlyRegisterTests
void IPOnlyRegisterTests(void)
Definition: detect-engine-iponly.c:2496
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
IPOnlyDeinit
void IPOnlyDeinit(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Deinitialize the IP Only detection engine context.
Definition: detect-engine-iponly.c:948
Signature_
Signature container.
Definition: detect.h:596
IPOnlyPrepare
void IPOnlyPrepare(DetectEngineCtx *)
Build the radix trees from the lists of parsed addresses in CIDR format the result should be 4 radix ...
Definition: detect-engine-iponly.c:1133
DetectEngineIPOnlyCtx_
IP only rules matching ctx.
Definition: detect.h:759
SigIntId
#define SigIntId
Definition: suricata-common.h:315
IPOnlyTrackSigNum
SigIntId IPOnlyTrackSigNum(DetectEngineIPOnlyCtx *, SigIntId)
Definition: detect-engine-iponly.c:923
IPOnlySigParseAddress
int IPOnlySigParseAddress(const DetectEngineCtx *, Signature *, const char *, char)
Parses an address group sent as a character string and updates the IPOnlyCIDRItem lists src and dst o...
Definition: detect-engine-iponly.c:866