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
27typedef 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 */
34 uint32_t flags;
36
37/* prototypes */
38void DetectFlowvarRegister (void);
39
41int DetectVarStoreMatch(DetectEngineThreadCtx *, uint32_t, uint8_t *, uint16_t, uint16_t);
43 DetectEngineThreadCtx *, uint8_t *, uint16_t, uint8_t *, uint16_t, uint16_t);
44
45/* For use only by DetectFlowvarProcessList() */
47static inline void DetectVarProcessList(DetectEngineThreadCtx *det_ctx, Flow *f, Packet *p)
48{
49 DetectVarList *fs = det_ctx->varlist;
50
51 SCLogDebug("flow %p det_ctx->varlist %p", f, fs);
52 if ((f || p) && fs != NULL) {
53 det_ctx->varlist = NULL;
55 }
56}
57
58#endif /* SURICATA_DETECT_FLOWVAR_H */
struct DetectFlowvarData_ DetectFlowvarData
void DetectFlowvarRegister(void)
void DetectVarProcessListInternal(DetectVarList *fs, Flow *f, Packet *p)
Handle flowvar candidate list in det_ctx: clean up the list.
int DetectVarStoreMatch(DetectEngineThreadCtx *, uint32_t, uint8_t *, uint16_t, uint16_t)
Store flowvar in det_ctx so we can exec it post-match.
int DetectFlowvarPostMatchSetup(DetectEngineCtx *de_ctx, Signature *s, uint32_t idx)
Setup a post-match for flowvar storage We're piggyback riding the DetectFlowvarData struct.
int DetectVarStoreMatchKeyValue(DetectEngineThreadCtx *, uint8_t *, uint16_t, uint8_t *, uint16_t, uint16_t)
Store flowvar in det_ctx so we can exec it post-match.
DetectEngineCtx * de_ctx
main detection engine ctx
Definition detect.h:932
DetectVarList * varlist
Definition detect.h:1354
Flow data structure.
Definition flow.h:356
Signature container.
Definition detect.h:668
#define SCLogDebug(...)
Definition util-debug.h:275