suricata
detect-filename.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2022 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  * \author Pablo Rincon <pablo.rincon.crespo@gmail.com>
23  *
24  */
25 
26 #include "suricata-common.h"
27 #include "threads.h"
28 #include "decode.h"
29 
30 #include "detect.h"
31 
32 #include "detect-engine.h"
33 #include "detect-engine-mpm.h"
34 #include "detect-engine-state.h"
35 #include "detect-engine-file.h"
38 
39 #include "detect-parse.h"
40 #include "detect-content.h"
41 #include "detect-file-data.h"
42 
43 #include "flow.h"
44 #include "flow-var.h"
45 #include "flow-util.h"
46 
47 #include "util-debug.h"
48 #include "util-spm-bm.h"
49 #include "util-unittest.h"
50 #include "util-unittest-helper.h"
51 #include "util-profiling.h"
52 
53 #include "app-layer.h"
54 #include "app-layer-htp.h"
55 
56 #include "stream-tcp.h"
57 
58 #include "detect-filename.h"
59 #include "app-layer-parser.h"
60 
61 static int DetectFileextSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str);
62 static int DetectFilenameSetup (DetectEngineCtx *, Signature *, const char *);
63 static int DetectFilenameSetupSticky(DetectEngineCtx *de_ctx, Signature *s, const char *str);
64 #ifdef UNITTESTS
65 static void DetectFilenameRegisterTests(void);
66 #endif
67 static int g_file_match_list_id = 0;
68 static int g_file_name_buffer_id = 0;
69 
70 static int PrefilterMpmFilenameRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx,
71  const DetectBufferMpmRegistry *mpm_reg, int list_id);
72 static uint8_t DetectEngineInspectFilename(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx,
73  const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
74  void *alstate, void *txv, uint64_t tx_id);
75 
76 /**
77  * \brief Registration function for keyword: filename
78  */
80 {
81  sigmatch_table[DETECT_FILENAME].name = "filename";
82  sigmatch_table[DETECT_FILENAME].desc = "match on the file name";
83  sigmatch_table[DETECT_FILENAME].url = "/rules/file-keywords.html#filename";
84  sigmatch_table[DETECT_FILENAME].Setup = DetectFilenameSetup;
85 #ifdef UNITTESTS
86  sigmatch_table[DETECT_FILENAME].RegisterTests = DetectFilenameRegisterTests;
87 #endif
90 
91  sigmatch_table[DETECT_FILEEXT].name = "fileext";
92  sigmatch_table[DETECT_FILEEXT].desc = "match on the extension of a file name";
93  sigmatch_table[DETECT_FILEEXT].url = "/rules/file-keywords.html#fileext";
94  sigmatch_table[DETECT_FILEEXT].Setup = DetectFileextSetup;
97 
98  sigmatch_table[DETECT_FILE_NAME].name = "file.name";
99  sigmatch_table[DETECT_FILE_NAME].desc = "sticky buffer to match on the file name";
100  sigmatch_table[DETECT_FILE_NAME].url = "/rules/file-keywords.html#filename";
101  sigmatch_table[DETECT_FILE_NAME].Setup = DetectFilenameSetupSticky;
103 
104  DetectBufferTypeSetDescriptionByName("file.name", "file name");
105 
106  g_file_match_list_id = DetectBufferTypeRegister("files");
107  g_file_name_buffer_id = DetectBufferTypeRegister("file.name");
108 
109  SCLogDebug("registering filename rule option");
114 
115  filehandler_table[DETECT_FILE_NAME].name = "file.name";
117  filehandler_table[DETECT_FILE_NAME].PrefilterFn = PrefilterMpmFilenameRegister;
118  filehandler_table[DETECT_FILE_NAME].Callback = DetectEngineInspectFilename;
119 
121  return;
122 }
123 
124 static int DetectFileextSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str)
125 {
126  if (s->init_data->transforms.cnt) {
127  SCLogError("previous transforms not consumed before 'fileext'");
128  SCReturnInt(-1);
129  }
132 
133  size_t dotstr_len = strlen(str) + 2;
134  char *dotstr = SCCalloc(1, dotstr_len);
135  if (dotstr == NULL)
136  return -1;
137  dotstr[0] = '.';
138  strlcat(dotstr, str, dotstr_len);
139 
140  if (DetectContentSetup(de_ctx, s, dotstr) < 0) {
141  SCFree(dotstr);
142  return -1;
143  }
144  SCFree(dotstr);
145 
147  if (sm == NULL)
148  return -1;
149 
152  if (DetectContentConvertToNocase(de_ctx, cd) != 0)
153  return -1;
155  de_ctx, s, NULL, DETECT_FILE_NAME, g_file_name_buffer_id, s->alproto) < 0)
156  return -1;
157 
158  return 0;
159 }
160 /**
161  * \brief this function is used to parse filename options
162  * \brief into the current signature
163  *
164  * \param de_ctx pointer to the Detection Engine Context
165  * \param s pointer to the Current Signature
166  * \param str pointer to the user provided "filename" option
167  *
168  * \retval 0 on Success
169  * \retval -1 on Failure
170  */
171 static int DetectFilenameSetup (DetectEngineCtx *de_ctx, Signature *s, const char *str)
172 {
173  if (s->init_data->transforms.cnt) {
174  SCLogError("previous transforms not consumed before 'filename'");
175  SCReturnInt(-1);
176  }
179 
180  if (DetectContentSetup(de_ctx, s, str) < 0) {
181  return -1;
182  }
183 
185  if (sm == NULL)
186  return -1;
187 
189  if (DetectContentConvertToNocase(de_ctx, cd) != 0)
190  return -1;
192  de_ctx, s, NULL, DETECT_FILE_NAME, g_file_name_buffer_id, s->alproto) < 0)
193  return -1;
194 
195  return 0;
196 }
197 
198 /* file.name implementation */
199 
200 /**
201  * \brief this function setup the file.data keyword used in the rule
202  *
203  * \param de_ctx Pointer to the Detection Engine Context
204  * \param s Pointer to the Signature to which the current keyword belongs
205  * \param str Should hold an empty string always
206  *
207  * \retval 0 On success
208  */
209 static int DetectFilenameSetupSticky(DetectEngineCtx *de_ctx, Signature *s, const char *str)
210 {
211  if (DetectBufferSetActiveList(de_ctx, s, g_file_name_buffer_id) < 0)
212  return -1;
214  return 0;
215 }
216 
217 static InspectionBuffer *FilenameGetDataCallback(DetectEngineThreadCtx *det_ctx,
218  const DetectEngineTransforms *transforms, Flow *f, uint8_t flow_flags, File *cur_file,
219  int list_id, int local_file_id)
220 {
221  SCEnter();
222 
223  InspectionBuffer *buffer = InspectionBufferMultipleForListGet(det_ctx, list_id, local_file_id);
224  if (buffer == NULL)
225  return NULL;
226  if (buffer->initialized)
227  return buffer;
228 
229  const uint8_t *data = cur_file->name;
230  uint32_t data_len = cur_file->name_len;
231 
232  InspectionBufferSetupMulti(buffer, transforms, data, data_len);
233 
234  SCReturnPtr(buffer, "InspectionBuffer");
235 }
236 
237 static uint8_t DetectEngineInspectFilename(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx,
238  const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
239  void *alstate, void *txv, uint64_t tx_id)
240 {
241  const DetectEngineTransforms *transforms = NULL;
242  if (!engine->mpm) {
243  transforms = engine->v2.transforms;
244  }
245 
246  AppLayerGetFileState files = AppLayerParserGetTxFiles(f, alstate, txv, flags);
247  FileContainer *ffc = files.fc;
248  if (ffc == NULL) {
250  }
251 
253  int local_file_id = 0;
254  for (File *file = ffc->head; file != NULL; file = file->next) {
255  InspectionBuffer *buffer = FilenameGetDataCallback(
256  det_ctx, transforms, f, flags, file, engine->sm_list, local_file_id);
257  if (buffer == NULL)
258  continue;
259 
260  const bool match = DetectEngineContentInspection(de_ctx, det_ctx, s, engine->smd, NULL, f,
261  buffer->inspect, buffer->inspect_len, buffer->inspect_offset,
263  if (match) {
265  } else {
267  }
268  local_file_id++;
269  }
270  return r;
271 }
272 
273 typedef struct PrefilterMpmFilename {
274  int list_id;
275  const MpmCtx *mpm_ctx;
278 
279 /** \brief Filedata Filedata Mpm prefilter callback
280  *
281  * \param det_ctx detection engine thread ctx
282  * \param p packet to inspect
283  * \param f flow to inspect
284  * \param txv tx to inspect
285  * \param pectx inspection context
286  */
287 static void PrefilterTxFilename(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p,
288  Flow *f, void *txv, const uint64_t idx, const AppLayerTxData *txd, const uint8_t flags)
289 {
290  SCEnter();
291 
292  if (!AppLayerParserHasFilesInDir(txd, flags))
293  return;
294 
295  const PrefilterMpmFilename *ctx = (const PrefilterMpmFilename *)pectx;
296  const MpmCtx *mpm_ctx = ctx->mpm_ctx;
297  const int list_id = ctx->list_id;
298 
299  AppLayerGetFileState files = AppLayerParserGetTxFiles(f, f->alstate, txv, flags);
300  FileContainer *ffc = files.fc;
301  if (ffc != NULL) {
302  int local_file_id = 0;
303  for (File *file = ffc->head; file != NULL; file = file->next) {
304  InspectionBuffer *buffer = FilenameGetDataCallback(
305  det_ctx, ctx->transforms, f, flags, file, list_id, local_file_id);
306  if (buffer == NULL)
307  continue;
308 
309  if (buffer->inspect_len >= mpm_ctx->minlen) {
310  (void)mpm_table[mpm_ctx->mpm_type].Search(mpm_ctx, &det_ctx->mtc, &det_ctx->pmq,
311  buffer->inspect, buffer->inspect_len);
312  PREFILTER_PROFILING_ADD_BYTES(det_ctx, buffer->inspect_len);
313  }
314  local_file_id++;
315  }
316  }
317 }
318 
319 static void PrefilterMpmFilenameFree(void *ptr)
320 {
321  SCFree(ptr);
322 }
323 
324 static int PrefilterMpmFilenameRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx,
325  const DetectBufferMpmRegistry *mpm_reg, int list_id)
326 {
327  PrefilterMpmFilename *pectx = SCCalloc(1, sizeof(*pectx));
328  if (pectx == NULL)
329  return -1;
330  pectx->list_id = list_id;
331  pectx->mpm_ctx = mpm_ctx;
332  pectx->transforms = &mpm_reg->transforms;
333 
334  return PrefilterAppendTxEngine(de_ctx, sgh, PrefilterTxFilename,
335  mpm_reg->app_v2.alproto, mpm_reg->app_v2.tx_min_progress,
336  pectx, PrefilterMpmFilenameFree, mpm_reg->pname);
337 }
338 
339 #ifdef UNITTESTS /* UNITTESTS */
340 
341 /**
342  * \test Test parser accepting valid rules and rejecting invalid rules
343  */
344 static int DetectFilenameSignatureParseTest01(void)
345 {
346  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; sid:1;)", true));
347  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; nocase; sid:1;)", true));
348  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; endswith; sid:1;)", true));
349  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; startswith; sid:1;)", true));
350  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; startswith; endswith; sid:1;)", true));
351  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; bsize:10; sid:1;)", true));
352 
353  FAIL_IF_NOT(UTHParseSignature("alert http any any -> any any (flow:to_client; file.name; content:\"abc\"; rawbytes; sid:1;)", false));
354  FAIL_IF_NOT(UTHParseSignature("alert tcp any any -> any any (flow:to_client; file.name; sid:1;)", false));
355  //FAIL_IF_NOT(UTHParseSignature("alert tls any any -> any any (flow:to_client; file.name; content:\"abc\"; sid:1;)", false));
356  PASS;
357 }
358 /**
359  * \brief this function registers unit tests for DetectFilename
360  */
361 void DetectFilenameRegisterTests(void)
362 {
363  UtRegisterTest("DetectFilenameSignatureParseTest01", DetectFilenameSignatureParseTest01);
364 }
365 #endif /* UNITTESTS */
DetectEngineAppInspectionEngine_
Definition: detect.h:427
SigTableElmt_::url
const char * url
Definition: detect.h:1299
UTHParseSignature
int UTHParseSignature(const char *str, bool expect)
parser a sig and see if the expected result is correct
Definition: util-unittest-helper.c:871
DetectEngineAppInspectionEngine_::mpm
bool mpm
Definition: detect.h:431
detect-content.h
FileContainer_
Definition: util-file.h:113
MpmCtx_::mpm_type
uint8_t mpm_type
Definition: util-mpm.h:90
detect-engine.h
SIGMATCH_INFO_STICKY_BUFFER
#define SIGMATCH_INFO_STICKY_BUFFER
Definition: detect.h:1500
SigTableElmt_::desc
const char * desc
Definition: detect.h:1298
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1296
InspectionBuffer::initialized
bool initialized
Definition: detect.h:378
stream-tcp.h
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1448
DetectEngineTransforms
Definition: detect.h:409
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
DETECT_CONTENT
@ DETECT_CONTENT
Definition: detect-engine-register.h:62
Signature_::alproto
AppProto alproto
Definition: detect.h:601
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
SIGMATCH_QUOTES_OPTIONAL
#define SIGMATCH_QUOTES_OPTIONAL
Definition: detect.h:1488
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1335
InspectionBuffer
Definition: detect.h:374
threads.h
Flow_
Flow data structure.
Definition: flow.h:351
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1204
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1290
PrefilterMpmFilename::transforms
const DetectEngineTransforms * transforms
Definition: detect-filename.c:276
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:839
DetectBufferTypeSupportsMultiInstance
void DetectBufferTypeSupportsMultiInstance(const char *name)
Definition: detect-engine.c:1022
DetectContentConvertToNocase
int DetectContentConvertToNocase(DetectEngineCtx *de_ctx, DetectContentData *cd)
Definition: detect-content.c:765
DetectBufferMpmRegistry_
one time registration of keywords at start up
Definition: detect.h:680
detect-file-data.h
FILE_SIG_NEED_FILENAME
#define FILE_SIG_NEED_FILENAME
Definition: detect.h:315
DetectBufferMpmRegistry_::app_v2
struct DetectBufferMpmRegistry_::@88::@90 app_v2
DetectContentData_
Definition: detect-content.h:93
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1281
DetectBufferMpmRegistry_::transforms
DetectEngineTransforms transforms
Definition: detect.h:693
detect-engine-prefilter.h
util-unittest.h
detect-filename.h
util-unittest-helper.h
FAIL_IF_NOT
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
Definition: util-unittest.h:82
File_::name_len
uint16_t name_len
Definition: util-file.h:81
DetectEngineAppInspectionEngine_::sm_list
uint16_t sm_list
Definition: detect.h:433
DETECT_ENGINE_INSPECT_SIG_CANT_MATCH_FILES
#define DETECT_ENGINE_INSPECT_SIG_CANT_MATCH_FILES
Definition: detect-engine-state.h:43
PrefilterMpmFilename::list_id
int list_id
Definition: detect-filename.c:274
app-layer-htp.h
decode.h
util-debug.h
PASS
#define PASS
Pass the test.
Definition: util-unittest.h:105
DETECT_CONTENT_ENDS_WITH
#define DETECT_CONTENT_ENDS_WITH
Definition: detect-content.h:42
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DetectContentSetup
int DetectContentSetup(DetectEngineCtx *de_ctx, Signature *s, const char *contentstr)
Function to setup a content pattern.
Definition: detect-content.c:328
DetectEngineThreadCtx_
Definition: detect.h:1095
strlcat
size_t strlcat(char *, const char *src, size_t siz)
Definition: util-strlcatu.c:45
detect-engine-file.h
SignatureInitData_::list
int list
Definition: detect.h:565
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
FileContainer_::head
File * head
Definition: util-file.h:114
detect.h
DETECT_ENGINE_INSPECT_SIG_MATCH
#define DETECT_ENGINE_INSPECT_SIG_MATCH
Definition: detect-engine-state.h:38
InspectionBuffer::inspect_offset
uint64_t inspect_offset
Definition: detect.h:376
DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
Definition: detect-engine-content-inspection.h:36
DETECT_FILENAME
@ DETECT_FILENAME
Definition: detect-engine-register.h:215
SigTableElmt_::alternative
uint16_t alternative
Definition: detect.h:1294
app-layer-parser.h
MpmCtx_::minlen
uint16_t minlen
Definition: util-mpm.h:99
SigMatch_::ctx
SigMatchCtx * ctx
Definition: detect.h:353
util-profiling.h
DetectEngineContentModifierBufferSetup
int DetectEngineContentModifierBufferSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg, int sm_type, int sm_list, AppProto alproto)
Definition: detect-parse.c:205
Packet_
Definition: decode.h:437
DetectContentData_::flags
uint32_t flags
Definition: detect-content.h:104
SIGMATCH_HANDLE_NEGATION
#define SIGMATCH_HANDLE_NEGATION
Definition: detect.h:1496
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:665
SCReturnPtr
#define SCReturnPtr(x, type)
Definition: util-debug.h:287
File_::name
uint8_t * name
Definition: util-file.h:88
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
DetectFileHandlerTableElmt_::priority
int priority
Definition: detect-parse.h:34
MpmTableElmt_::Search
uint32_t(* Search)(const struct MpmCtx_ *, struct MpmThreadCtx_ *, PrefilterRuleStore *, const uint8_t *, uint32_t)
Definition: util-mpm.h:168
DetectEngineAppInspectionEngine_::v2
struct DetectEngineAppInspectionEngine_::@85 v2
DetectEngineThreadCtx_::mtc
MpmThreadCtx mtc
Definition: detect.h:1203
PrefilterMpmFilename::mpm_ctx
const MpmCtx * mpm_ctx
Definition: detect-filename.c:275
detect-engine-content-inspection.h
DETECT_SM_LIST_NOTSET
#define DETECT_SM_LIST_NOTSET
Definition: detect.h:141
DetectEngineAppInspectionEngine_::smd
SigMatchData * smd
Definition: detect.h:444
File_
Definition: util-file.h:79
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1358
PREFILTER_PROFILING_ADD_BYTES
#define PREFILTER_PROFILING_ADD_BYTES(det_ctx, bytes)
Definition: util-profiling.h:287
DETECT_FILE_NAME
@ DETECT_FILE_NAME
Definition: detect-engine-register.h:216
DETECT_CI_FLAGS_SINGLE
#define DETECT_CI_FLAGS_SINGLE
Definition: detect-engine-content-inspection.h:49
DetectBufferTypeRegister
int DetectBufferTypeRegister(const char *name)
Definition: detect-engine.c:1008
flags
uint8_t flags
Definition: decode-gre.h:0
suricata-common.h
PrefilterMpmFilename
struct PrefilterMpmFilename PrefilterMpmFilename
Signature_::file_flags
uint8_t file_flags
Definition: detect.h:612
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
File_::next
struct File_ * next
Definition: util-file.h:92
DetectFileHandlerTableElmt_::PrefilterFn
PrefilterRegisterFunc PrefilterFn
Definition: detect-parse.h:35
PrefilterMpmFilename
Definition: detect-filename.c:273
util-spm-bm.h
InspectionBufferSetupMulti
void InspectionBufferSetupMulti(InspectionBuffer *buffer, const DetectEngineTransforms *transforms, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1559
PrefilterAppendTxEngine
int PrefilterAppendTxEngine(DetectEngineCtx *de_ctx, SigGroupHead *sgh, PrefilterTxFn PrefilterTxFunc, AppProto alproto, int tx_min_progress, void *pectx, void(*FreeFunc)(void *pectx), const char *name)
Definition: detect-engine-prefilter.c:270
DETECT_ENGINE_INSPECT_SIG_NO_MATCH
#define DETECT_ENGINE_INSPECT_SIG_NO_MATCH
Definition: detect-engine-state.h:37
InspectionBuffer::inspect_len
uint32_t inspect_len
Definition: detect.h:377
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:375
str
#define str(s)
Definition: suricata-common.h:291
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
SCFree
#define SCFree(p)
Definition: util-mem.h:61
Flow_::alstate
void * alstate
Definition: flow.h:476
DetectFileInspectGeneric
uint8_t DetectFileInspectGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *tx, uint64_t tx_id)
Inspect the file inspecting keywords against the state.
Definition: detect-engine-file.c:182
detect-parse.h
Signature_
Signature container.
Definition: detect.h:596
SigMatch_
a single match condition for a signature
Definition: detect.h:350
DetectEngineAppInspectionEngine_::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:441
mpm_table
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
Definition: util-mpm.c:47
DetectEngineTransforms::cnt
int cnt
Definition: detect.h:411
DetectFileHandlerTableElmt_::Callback
InspectEngineFuncPtr Callback
Definition: detect-parse.h:36
InspectionBufferMultipleForListGet
InspectionBuffer * InspectionBufferMultipleForListGet(DetectEngineThreadCtx *det_ctx, const int list_id, const uint32_t local_id)
for a InspectionBufferMultipleForList get a InspectionBuffer
Definition: detect-engine.c:1499
FILE_SIG_NEED_FILE
#define FILE_SIG_NEED_FILE
Definition: detect.h:314
DETECT_FILEEXT
@ DETECT_FILEEXT
Definition: detect-engine-register.h:217
filehandler_table
DetectFileHandlerTableElmt filehandler_table[DETECT_TBLSIZE]
Definition: detect-parse.c:77
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1476
DetectGetLastSMFromLists
SigMatch * DetectGetLastSMFromLists(const Signature *s,...)
Returns the sm with the largest index (added latest) from the lists passed to us.
Definition: detect-parse.c:619
AppLayerParserGetTxFiles
AppLayerGetFileState AppLayerParserGetTxFiles(const Flow *f, void *state, void *tx, const uint8_t direction)
Definition: app-layer-parser.c:877
DetectFileHandlerTableElmt_::name
const char * name
Definition: detect-parse.h:33
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1169
SignatureInitData_::transforms
DetectEngineTransforms transforms
Definition: detect.h:568
MpmCtx_
Definition: util-mpm.h:88
flow.h
DetectEngineContentInspection
bool DetectEngineContentInspection(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, const SigMatchData *smd, Packet *p, Flow *f, const uint8_t *buffer, const uint32_t buffer_len, const uint32_t stream_start_offset, const uint8_t flags, const enum DetectContentInspectionType inspection_mode)
wrapper around DetectEngineContentInspectionInternal to return true/false only
Definition: detect-engine-content-inspection.c:723
DetectFilenameRegister
void DetectFilenameRegister(void)
Registration function for keyword: filename.
Definition: detect-filename.c:79
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275
flow-var.h
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1288
app-layer.h
DetectBufferMpmRegistry_::pname
char pname[32]
Definition: detect.h:682