suricata
detect-flowvar.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2014 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_FLOWVAR_H
25 #define SURICATA_DETECT_FLOWVAR_H
26 
27 typedef struct DetectFlowvarData_ {
28  char *name;
29  uint32_t idx;
30  uint8_t *content;
31  uint16_t content_len;
32  /** set to true if used in a post-match */
33  bool post_match;
34  uint32_t flags;
36 
37 /* prototypes */
38 void DetectFlowvarRegister (void);
39 
42  uint32_t, uint8_t *, uint16_t, int);
44  uint8_t *, uint16_t, uint8_t *, uint16_t, int);
45 
46 /* For use only by DetectFlowvarProcessList() */
48 static inline void DetectVarProcessList(DetectEngineThreadCtx *det_ctx, Flow *f, Packet *p)
49 {
50  DetectVarList *fs = det_ctx->varlist;
51 
52  SCLogDebug("flow %p det_ctx->varlist %p", f, fs);
53  if ((f || p) && fs != NULL) {
54  det_ctx->varlist = NULL;
56  }
57 }
58 
59 #endif /* SURICATA_DETECT_FLOWVAR_H */
DetectVarStoreMatch
int DetectVarStoreMatch(DetectEngineThreadCtx *, uint32_t, uint8_t *, uint16_t, int)
Store flowvar in det_ctx so we can exec it post-match.
Definition: detect-flowvar.c:223
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
DetectFlowvarRegister
void DetectFlowvarRegister(void)
Definition: detect-flowvar.c:54
Flow_
Flow data structure.
Definition: flow.h:351
DetectVarList_
Definition: detect.h:738
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:836
DetectFlowvarPostMatchSetup
int DetectFlowvarPostMatchSetup(DetectEngineCtx *de_ctx, Signature *s, uint32_t idx)
Setup a post-match for flowvar storage We're piggyback riding the DetectFlowvarData struct.
Definition: detect-flowvar.c:259
DetectEngineThreadCtx_::varlist
DetectVarList * varlist
Definition: detect.h:1206
DetectFlowvarData
struct DetectFlowvarData_ DetectFlowvarData
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectFlowvarData_::flags
uint32_t flags
Definition: detect-flowvar.h:34
DetectEngineThreadCtx_
Definition: detect.h:1092
DetectFlowvarData_
Definition: detect-flowvar.h:27
DetectVarProcessListInternal
void DetectVarProcessListInternal(DetectVarList *fs, Flow *f, Packet *p)
Handle flowvar candidate list in det_ctx: clean up the list.
Definition: detect-flowvar.c:347
DetectVarStoreMatchKeyValue
int DetectVarStoreMatchKeyValue(DetectEngineThreadCtx *, uint8_t *, uint16_t, uint8_t *, uint16_t, int)
Store flowvar in det_ctx so we can exec it post-match.
Definition: detect-flowvar.c:203
Packet_
Definition: decode.h:437
DetectFlowvarData_::name
char * name
Definition: detect-flowvar.h:28
DetectFlowvarData_::post_match
bool post_match
Definition: detect-flowvar.h:33
DetectFlowvarData_::content
uint8_t * content
Definition: detect-flowvar.h:30
DetectFlowvarData_::idx
uint32_t idx
Definition: detect-flowvar.h:29
Signature_
Signature container.
Definition: detect.h:593
DetectFlowvarData_::content_len
uint16_t content_len
Definition: detect-flowvar.h:31