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
28int IPOnlySigParseAddress(const DetectEngineCtx *, Signature *, const char *, char);
30 const DetectEngineIPOnlyCtx *, Packet *);
37void IPOnlyRegisterTests(void);
38
39#endif /* SURICATA_DETECT_ENGINE_IPONLY_H */
void IPOnlyAddSignature(DetectEngineCtx *, DetectEngineIPOnlyCtx *, Signature *)
Add a signature to the lists of Addresses in CIDR format (sorted) this step is necessary to build the...
void IPOnlyMatchPacket(ThreadVars *tv, const DetectEngineCtx *, DetectEngineThreadCtx *, const DetectEngineIPOnlyCtx *, Packet *)
Match a packet against the IP Only detection engine contexts.
void IPOnlyRegisterTests(void)
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...
SigIntId IPOnlyTrackSigNum(DetectEngineIPOnlyCtx *, SigIntId)
void IPOnlyCIDRListFree(IPOnlyCIDRItem *tmphead)
This function free a IPOnlyCIDRItem list.
void IPOnlyDeinit(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Deinitialize the IP Only detection engine context.
void IPOnlyPrint(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Print stats of the IP Only engine.
void IPOnlyInit(DetectEngineCtx *, DetectEngineIPOnlyCtx *)
Setup the IP Only detection engine context.
void IPOnlyPrepare(DetectEngineCtx *)
Build the radix trees from the lists of parsed addresses in CIDR format the result should be 4 radix ...
ThreadVars * tv
main detection engine ctx
Definition detect.h:932
IP only rules matching ctx.
Definition detect.h:846
Signature container.
Definition detect.h:668
Per thread variable structure.
Definition threadvars.h:58
#define SigIntId