suricata
detect-engine-threshold.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2021 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 Breno Silva <breno.silva@gmail.com>
22  * \author Victor Julien <victor@inliniac.net>
23  */
24 
25 #ifndef SURICATA_DETECT_ENGINE_THRESHOLD_H
26 #define SURICATA_DETECT_ENGINE_THRESHOLD_H
27 
28 #include "detect.h"
29 #include "host.h"
30 #include "ippair.h"
31 #include "host-storage.h"
32 
33 void ThresholdInit(void);
34 
37 
39 
41  const Signature *, const SigMatchData **, int list);
43  const DetectThresholdData *, Packet *,
44  const Signature *, PacketAlert *);
45 
49 
52 void ThresholdListFree(void *ptr);
53 
54 #endif /* SURICATA_DETECT_ENGINE_THRESHOLD_H */
host.h
ippair.h
host-storage.h
ThresholdHostTimeoutCheck
int ThresholdHostTimeoutCheck(Host *, SCTime_t)
Definition: detect-engine-threshold.c:192
ThresholdHashAllocate
void ThresholdHashAllocate(DetectEngineCtx *)
Allocate threshold context hash tables.
Definition: detect-engine-threshold.c:659
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:836
ThresholdIPPairTimeoutCheck
int ThresholdIPPairTimeoutCheck(IPPair *, SCTime_t)
Definition: detect-engine-threshold.c:202
SigMatchData_
Data needed for Match()
Definition: detect.h:356
ThresholdHostHasThreshold
int ThresholdHostHasThreshold(Host *)
Definition: detect-engine-threshold.c:93
ThresholdHashInit
void ThresholdHashInit(DetectEngineCtx *)
Init threshold context hash tables.
Definition: detect-engine-threshold.c:647
ThresholdIPPairHasThreshold
int ThresholdIPPairHasThreshold(IPPair *pair)
Definition: detect-engine-threshold.c:98
DetectEngineThreadCtx_
Definition: detect.h:1092
detect.h
ThresholdHostStorageId
HostStorageId ThresholdHostStorageId(void)
Definition: detect-engine-threshold.c:76
Packet_
Definition: decode.h:437
SCTime_t
Definition: util-time.h:40
ThresholdListFree
void ThresholdListFree(void *ptr)
this function will free all the entries of a list DetectTagDataEntry
Definition: detect-engine-threshold.c:747
PacketAlertThreshold
int PacketAlertThreshold(DetectEngineCtx *, DetectEngineThreadCtx *, const DetectThresholdData *, Packet *, const Signature *, PacketAlert *)
Make the threshold logic for signatures.
Definition: detect-engine-threshold.c:602
DetectThresholdData_
Definition: detect-threshold.h:53
IPPair_
Definition: ippair.h:58
SigGetThresholdTypeIter
const DetectThresholdData * SigGetThresholdTypeIter(const Signature *, const SigMatchData **, int list)
Return next DetectThresholdData for signature.
Definition: detect-engine-threshold.c:112
HostStorageId_
Definition: host-storage.h:31
Signature_
Signature container.
Definition: detect.h:593
PacketAlert_
Definition: decode.h:264
ThresholdContextDestroy
void ThresholdContextDestroy(DetectEngineCtx *)
Destroy threshold context hash tables.
Definition: detect-engine-threshold.c:728
Host_
Definition: host.h:58
ThresholdInit
void ThresholdInit(void)
Definition: detect-engine-threshold.c:81