suricata
detect-pcre.h
Go to the documentation of this file.
1/* Copyright (C) 2007-2020 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_PCRE_H
25#define SURICATA_DETECT_PCRE_H
26
27#include "detect-parse.h"
28
29#define DETECT_PCRE_RELATIVE 0x00001
30/* no-op other than in parsing */
31#define DETECT_PCRE_RAWBYTES 0x00002
32#define DETECT_PCRE_CASELESS 0x00004
33
34#define DETECT_PCRE_RELATIVE_NEXT 0x00040
35#define DETECT_PCRE_NEGATE 0x00080
36
37#define DETECT_PCRE_CAPTURE_MAX 8
38
39#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
40#define SC_MATCH_LIMIT_DEFAULT 350
41#define SC_MATCH_LIMIT_RECURSION_DEFAULT 150
42#else
43#define SC_MATCH_LIMIT_DEFAULT 3500
44#define SC_MATCH_LIMIT_RECURSION_DEFAULT 1500
45#endif
46
56
57/* prototypes */
58
60 const Signature *, const SigMatchData *,
61 Packet *, Flow *, const uint8_t *, uint32_t);
62
63void DetectPcreRegister (void);
64
65#endif /* SURICATA_DETECT_PCRE_H */
void DetectPcreRegister(void)
Definition detect-pcre.c:97
int DetectPcrePayloadMatch(DetectEngineThreadCtx *, const Signature *, const SigMatchData *, Packet *, Flow *, const uint8_t *, uint32_t)
Match a regex on a single payload.
struct DetectPcreData_ DetectPcreData
#define DETECT_PCRE_CAPTURE_MAX
Definition detect-pcre.h:37
uint32_t capids[DETECT_PCRE_CAPTURE_MAX]
Definition detect-pcre.h:54
DetectParseRegex parse_regex
Definition detect-pcre.h:48
uint8_t captypes[DETECT_PCRE_CAPTURE_MAX]
Definition detect-pcre.h:53
Flow data structure.
Definition flow.h:356
Data needed for Match()
Definition detect.h:365
Signature container.
Definition detect.h:668