suricata
detect-tag.h
Go to the documentation of this file.
1
/* Copyright (C) 2007-2013 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 Pablo Rincon <pablo.rincon.crespo@gmail.com>
22
* \author Victor Julien <victor@inliniac.net>
23
*/
24
25
#ifndef __DETECT_TAG_H__
26
#define __DETECT_TAG_H__
27
28
#include "
suricata-common.h
"
29
30
/* Limit the number of times a session can be tagged by the
31
* same rule without finishing older tags */
32
#define DETECT_TAG_MATCH_LIMIT 10
33
34
/* Limit the number of tags that a session can have */
35
#define DETECT_TAG_MAX_TAGS 50
36
37
/* Limit the number of pkts to capture. Change this to
38
* zero to make it unlimited
39
* TODO: load it from config (var tagged_packet_limit) */
40
#define DETECT_TAG_MAX_PKTS 256
41
42
/* Type of tag: session or host */
43
enum
{
44
DETECT_TAG_TYPE_SESSION
,
45
DETECT_TAG_TYPE_HOST
,
46
DETECT_TAG_TYPE_MAX
47
};
48
49
enum
{
50
DETECT_TAG_DIR_SRC
,
51
DETECT_TAG_DIR_DST
,
52
DETECT_TAG_DIR_MAX
53
};
54
55
enum
{
56
DETECT_TAG_METRIC_PACKET
,
57
DETECT_TAG_METRIC_SECONDS
,
58
DETECT_TAG_METRIC_BYTES
,
59
DETECT_TAG_METRIC_MAX
60
};
61
62
/** This will be the rule options/parameters */
63
typedef
struct
DetectTagData_
{
64
uint8_t
type
;
/**< tag type */
65
uint8_t
direction
;
/**< host direction */
66
uint32_t
count
;
/**< count */
67
uint8_t
metric
;
/**< metric */
68
}
DetectTagData
;
69
70
/** This is the installed data at the session/global or host table */
71
typedef
struct
DetectTagDataEntry_
{
72
uint8_t
flags
:3;
73
uint8_t
metric
:5;
74
uint8_t
pad0
;
75
uint16_t
cnt_match
;
/**< number of times this tag was reset/updated */
76
77
uint32_t
count
;
/**< count setting from rule */
78
uint32_t
sid
;
/**< sid originating the tag */
79
uint32_t
gid
;
/**< gid originating the tag */
80
union
{
81
uint32_t
packets
;
/**< number of packets (metric packets) */
82
uint32_t
bytes
;
/**< number of bytes (metric bytes) */
83
};
84
uint32_t
first_ts
;
/**< First time seen (for metric = seconds) */
85
uint32_t
last_ts
;
/**< Last time seen (to prune old sessions) */
86
#if __WORDSIZE == 64
87
uint32_t
pad1
;
88
#endif
89
struct
DetectTagDataEntry_
*
next
;
/**< Pointer to the next tag of this
90
* session/src_host/dst_host (if any from other rule) */
91
}
DetectTagDataEntry
;
92
93
#define TAG_ENTRY_FLAG_DIR_SRC 0x01
94
#define TAG_ENTRY_FLAG_DIR_DST 0x02
95
#define TAG_ENTRY_FLAG_SKIPPED_FIRST 0x04
96
97
/* prototypes */
98
struct
DetectEngineCtx_
;
99
void
DetectTagRegister
(
void
);
100
void
DetectTagDataFree
(
struct
DetectEngineCtx_
*,
void
*ptr);
101
void
DetectTagDataListFree
(
void
*ptr);
102
103
#endif
/* __DETECT_TAG_H__ */
104
DetectTagDataEntry_::bytes
uint32_t bytes
Definition:
detect-tag.h:82
DETECT_TAG_METRIC_PACKET
@ DETECT_TAG_METRIC_PACKET
Definition:
detect-tag.h:56
DETECT_TAG_DIR_MAX
@ DETECT_TAG_DIR_MAX
Definition:
detect-tag.h:52
DetectTagDataEntry_::last_ts
uint32_t last_ts
Definition:
detect-tag.h:85
DetectTagDataEntry_
Definition:
detect-tag.h:71
DetectTagDataEntry_::cnt_match
uint16_t cnt_match
Definition:
detect-tag.h:75
DETECT_TAG_TYPE_SESSION
@ DETECT_TAG_TYPE_SESSION
Definition:
detect-tag.h:44
DETECT_TAG_METRIC_BYTES
@ DETECT_TAG_METRIC_BYTES
Definition:
detect-tag.h:58
DetectTagDataEntry_::sid
uint32_t sid
Definition:
detect-tag.h:78
DetectEngineCtx_
main detection engine ctx
Definition:
detect.h:787
DETECT_TAG_METRIC_SECONDS
@ DETECT_TAG_METRIC_SECONDS
Definition:
detect-tag.h:57
DETECT_TAG_TYPE_HOST
@ DETECT_TAG_TYPE_HOST
Definition:
detect-tag.h:45
DetectTagDataEntry_::pad0
uint8_t pad0
Definition:
detect-tag.h:74
DetectTagDataEntry_::metric
uint8_t metric
Definition:
detect-tag.h:73
DetectTagData_::direction
uint8_t direction
Definition:
detect-tag.h:65
DetectTagDataEntry_::flags
uint8_t flags
Definition:
detect-tag.h:72
DetectTagDataEntry_::gid
uint32_t gid
Definition:
detect-tag.h:79
DetectTagDataEntry_::count
uint32_t count
Definition:
detect-tag.h:77
DetectTagDataEntry_::first_ts
uint32_t first_ts
Definition:
detect-tag.h:84
DetectTagDataFree
void DetectTagDataFree(struct DetectEngineCtx_ *, void *ptr)
this function will free memory associated with DetectTagData
Definition:
detect-tag.c:359
DETECT_TAG_DIR_DST
@ DETECT_TAG_DIR_DST
Definition:
detect-tag.h:51
DETECT_TAG_DIR_SRC
@ DETECT_TAG_DIR_SRC
Definition:
detect-tag.h:50
pad1
uint16_t pad1
Definition:
decode-template.h:2
DetectTagDataListFree
void DetectTagDataListFree(void *ptr)
this function will free all the entries of a list DetectTagDataEntry
Definition:
detect-tag.c:340
DetectTagData
struct DetectTagData_ DetectTagData
DetectTagDataEntry_::packets
uint32_t packets
Definition:
detect-tag.h:81
suricata-common.h
DetectTagData_::count
uint32_t count
Definition:
detect-tag.h:66
DETECT_TAG_TYPE_MAX
@ DETECT_TAG_TYPE_MAX
Definition:
detect-tag.h:46
DetectTagDataEntry
struct DetectTagDataEntry_ DetectTagDataEntry
DETECT_TAG_METRIC_MAX
@ DETECT_TAG_METRIC_MAX
Definition:
detect-tag.h:59
DetectTagDataEntry_::next
struct DetectTagDataEntry_ * next
Definition:
detect-tag.h:89
DetectTagData_
Definition:
detect-tag.h:63
DetectTagRegister
void DetectTagRegister(void)
Registration function for keyword tag.
Definition:
detect-tag.c:69
DetectTagData_::type
uint8_t type
Definition:
detect-tag.h:64
DetectTagData_::metric
uint8_t metric
Definition:
detect-tag.h:67
src
detect-tag.h
Generated on Sat Mar 25 2023 23:30:36 for suricata by
1.8.18