suricata
detect-file-data.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  *
23  */
24 
25 #include "suricata-common.h"
26 #include "threads.h"
27 #include "decode.h"
28 
29 #include "detect.h"
30 #include "detect-parse.h"
31 
32 #include "detect-engine.h"
33 #include "detect-engine-mpm.h"
34 #include "detect-engine-state.h"
37 #include "detect-engine-file.h"
38 #include "detect-file-data.h"
39 
40 #include "app-layer.h"
41 #include "app-layer-parser.h"
42 #include "app-layer-htp.h"
43 #include "app-layer-htp-libhtp.h"
44 #include "app-layer-smtp.h"
45 
46 #include "flow.h"
47 #include "flow-var.h"
48 #include "flow-util.h"
49 
50 #include "util-debug.h"
51 #include "util-spm-bm.h"
52 #include "util-unittest.h"
53 #include "util-unittest-helper.h"
55 #include "util-profiling.h"
56 
57 static int DetectFiledataSetup (DetectEngineCtx *, Signature *, const char *);
58 #ifdef UNITTESTS
59 static void DetectFiledataRegisterTests(void);
60 #endif
61 static void DetectFiledataSetupCallback(const DetectEngineCtx *de_ctx,
62  Signature *s);
63 static int g_file_data_buffer_id = 0;
64 
65 /* file API */
67  const DetectBufferMpmRegistry *mpm_reg, int list_id);
68 
69 /**
70  * \brief Registration function for keyword: file_data
71  */
73 {
74  sigmatch_table[DETECT_FILE_DATA].name = "file.data";
75  sigmatch_table[DETECT_FILE_DATA].alias = "file_data";
76  sigmatch_table[DETECT_FILE_DATA].desc = "make content keywords match on file data";
77  sigmatch_table[DETECT_FILE_DATA].url = "/rules/file-keywords.html#file-data";
78  sigmatch_table[DETECT_FILE_DATA].Setup = DetectFiledataSetup;
79 #ifdef UNITTESTS
81 #endif
83 
88 
89  DetectBufferTypeRegisterSetupCallback("file_data", DetectFiledataSetupCallback);
90 
91  DetectBufferTypeSetDescriptionByName("file_data", "data from tracked files");
93 
94  g_file_data_buffer_id = DetectBufferTypeGetByName("file_data");
95 }
96 
97 static void SetupDetectEngineConfig(DetectEngineCtx *de_ctx) {
99  return;
100 
102  if (unlikely(de_ctx->filedata_config == NULL))
103  return;
104  /* initialize default */
105  for (AppProto i = 0; i < g_alproto_max; i++) {
108  }
109 
110  /* add protocol specific settings here */
111 
112  /* SMTP */
116 }
117 
118 /**
119  * \brief this function is used to parse filedata options
120  * \brief into the current signature
121  *
122  * \param de_ctx pointer to the Detection Engine Context
123  * \param s pointer to the Current Signature
124  * \param str pointer to the user provided "filestore" option
125  *
126  * \retval 0 on Success
127  * \retval -1 on Failure
128  */
129 static int DetectFiledataSetup (DetectEngineCtx *de_ctx, Signature *s, const char *str)
130 {
131  SCEnter();
132 
133  if (!DetectProtoContainsProto(&s->proto, IPPROTO_TCP)) {
134  SCLogError("The 'file_data' keyword cannot be used with non-TCP protocols");
135  return -1;
136  }
137 
138  if (s->alproto != ALPROTO_UNKNOWN && !AppLayerParserSupportsFiles(IPPROTO_TCP, s->alproto)) {
139  SCLogError("The 'file_data' keyword cannot be used with TCP protocol %s",
141  return -1;
142  }
143 
145  !(s->flags & SIG_FLAG_TOSERVER) && (s->flags & SIG_FLAG_TOCLIENT)) {
146  SCLogError("The 'file-data' keyword cannot be used with SMTP flow:to_client or "
147  "flow:from_server.");
148  return -1;
149  }
150 
152  return -1;
153 
155  SetupDetectEngineConfig(de_ctx);
156  return 0;
157 }
158 
159 static void DetectFiledataSetupCallback(const DetectEngineCtx *de_ctx,
160  Signature *s)
161 {
162  if (s->alproto == ALPROTO_HTTP1 || s->alproto == ALPROTO_UNKNOWN ||
163  s->alproto == ALPROTO_HTTP) {
165  }
166 
167  /* server body needs to be inspected in sync with stream if possible */
169 
170  SCLogDebug("callback invoked by %u", s->id);
171 }
172 
173 /* common */
174 
175 static void PrefilterMpmFiledataFree(void *ptr)
176 {
177  SCFree(ptr);
178 }
179 
180 /* file API based inspection */
181 
182 static inline InspectionBuffer *FiledataWithXformsGetDataCallback(DetectEngineThreadCtx *det_ctx,
183  const DetectEngineTransforms *transforms, const int list_id, int local_file_id,
184  InspectionBuffer *base_buffer)
185 {
186  InspectionBuffer *buffer = InspectionBufferMultipleForListGet(det_ctx, list_id, local_file_id);
187  if (buffer == NULL) {
188  SCLogDebug("list_id: %d: no buffer", list_id);
189  return NULL;
190  }
191  if (buffer->initialized) {
192  SCLogDebug("list_id: %d: returning %p", list_id, buffer);
193  return buffer;
194  }
195 
196  InspectionBufferSetupMulti(buffer, transforms, base_buffer->inspect, base_buffer->inspect_len);
197  buffer->inspect_offset = base_buffer->inspect_offset;
198  SCLogDebug("xformed buffer %p size %u", buffer, buffer->inspect_len);
199  SCReturnPtr(buffer, "InspectionBuffer");
200 }
201 
202 static InspectionBuffer *FiledataGetDataCallback(DetectEngineThreadCtx *det_ctx,
203  const DetectEngineTransforms *transforms, Flow *f, uint8_t flow_flags, File *cur_file,
204  const int list_id, const int base_id, int local_file_id, void *txv)
205 {
206  SCEnter();
207  SCLogDebug("starting: list_id %d base_id %d", list_id, base_id);
208 
209  InspectionBuffer *buffer = InspectionBufferMultipleForListGet(det_ctx, base_id, local_file_id);
210  SCLogDebug("base: buffer %p", buffer);
211  if (buffer == NULL)
212  return NULL;
213  if (base_id != list_id && buffer->inspect != NULL) {
214  SCLogDebug("handle xform %s", (list_id != base_id) ? "true" : "false");
215  return FiledataWithXformsGetDataCallback(
216  det_ctx, transforms, list_id, local_file_id, buffer);
217  }
218  if (buffer->initialized) {
219  SCLogDebug("base_id: %d, not first: use %p", base_id, buffer);
220  return buffer;
221  }
222 
223  const uint64_t file_size = FileDataSize(cur_file);
224  const DetectEngineCtx *de_ctx = det_ctx->de_ctx;
225  uint32_t content_limit = FILEDATA_CONTENT_LIMIT;
226  uint32_t content_inspect_min_size = FILEDATA_CONTENT_INSPECT_MIN_SIZE;
227  if (de_ctx->filedata_config) {
228  content_limit = de_ctx->filedata_config[f->alproto].content_limit;
229  content_inspect_min_size = de_ctx->filedata_config[f->alproto].content_inspect_min_size;
230  }
231 
232  SCLogDebug("[list %d] content_limit %u, content_inspect_min_size %u", list_id, content_limit,
233  content_inspect_min_size);
234 
235  SCLogDebug("[list %d] file %p size %" PRIu64 ", state %d", list_id, cur_file, file_size,
236  cur_file->state);
237 
238  /* no new data */
239  if (cur_file->content_inspected == file_size) {
240  SCLogDebug("no new data");
241  goto empty_return;
242  }
243 
244  if (file_size == 0) {
245  SCLogDebug("no data to inspect for this transaction");
246  goto empty_return;
247  }
248 
249  SCLogDebug("offset %" PRIu64, StreamingBufferGetOffset(cur_file->sb));
250  SCLogDebug("size %" PRIu64, cur_file->size);
251  SCLogDebug("content_inspected %" PRIu64, cur_file->content_inspected);
252  SCLogDebug("inspect_window %" PRIu32, cur_file->inspect_window);
253  SCLogDebug("inspect_min_size %" PRIu32, cur_file->inspect_min_size);
254 
255  bool ips = false;
256  uint64_t offset = 0;
257  if (f->alproto == ALPROTO_HTTP1) {
258 
259  htp_tx_t *tx = txv;
260  HtpState *htp_state = f->alstate;
261  ips = htp_state->cfg->http_body_inline;
262 
263  const bool body_done = AppLayerParserGetStateProgress(IPPROTO_TCP, ALPROTO_HTTP1, tx,
264  flow_flags) > HTP_RESPONSE_PROGRESS_BODY;
265 
266  SCLogDebug("response.body_limit %u file_size %" PRIu64
267  ", cur_file->inspect_min_size %" PRIu32 ", EOF %s, progress > body? %s",
268  htp_state->cfg->response.body_limit, file_size, cur_file->inspect_min_size,
269  flow_flags & STREAM_EOF ? "true" : "false", BOOL2STR(body_done));
270 
271  if (!htp_state->cfg->http_body_inline) {
272  /* inspect the body if the transfer is complete or we have hit
273  * our body size limit */
274  if ((htp_state->cfg->response.body_limit == 0 ||
275  file_size < htp_state->cfg->response.body_limit) &&
276  file_size < cur_file->inspect_min_size && !body_done &&
277  !(flow_flags & STREAM_EOF)) {
278  SCLogDebug("we still haven't seen the entire response body. "
279  "Let's defer body inspection till we see the "
280  "entire body.");
281  goto empty_return;
282  }
283  SCLogDebug("inline and we're continuing");
284  }
285 
286  bool force = (flow_flags & STREAM_EOF) || (cur_file->state > FILE_STATE_OPENED) ||
287  body_done || htp_state->cfg->http_body_inline;
288  /* get the inspect buffer
289  *
290  * make sure that we have at least the configured inspect_win size.
291  * If we have more, take at least 1/4 of the inspect win size before
292  * the new data.
293  */
294  if (cur_file->content_inspected == 0) {
295  if (!force && file_size < cur_file->inspect_min_size) {
296  SCLogDebug("skip as file_size %" PRIu64 " < inspect_min_size %u", file_size,
297  cur_file->inspect_min_size);
298  goto empty_return;
299  }
300  } else {
301  uint64_t new_data = file_size - cur_file->content_inspected;
302  BUG_ON(new_data == 0);
303  if (new_data < cur_file->inspect_window) {
304  uint64_t inspect_short = cur_file->inspect_window - new_data;
305  if (cur_file->content_inspected < inspect_short) {
306  offset = 0;
307  SCLogDebug("offset %" PRIu64, offset);
308  } else {
309  offset = cur_file->content_inspected - inspect_short;
310  SCLogDebug("offset %" PRIu64, offset);
311  }
312  } else {
313  BUG_ON(cur_file->content_inspected == 0);
314  uint32_t margin = cur_file->inspect_window / 4;
315  if ((uint64_t)margin <= cur_file->content_inspected) {
316  offset = cur_file->content_inspected - (cur_file->inspect_window / 4);
317  } else {
318  offset = 0;
319  }
320  SCLogDebug("offset %" PRIu64 " (data from offset %" PRIu64 ")", offset,
321  file_size - offset);
322  }
323  }
324 
325  } else {
326  if ((content_limit == 0 || file_size < content_limit) &&
327  file_size < content_inspect_min_size && !(flow_flags & STREAM_EOF) &&
328  !(cur_file->state > FILE_STATE_OPENED)) {
329  SCLogDebug("we still haven't seen the entire content. "
330  "Let's defer content inspection till we see the "
331  "entire content. We've seen %ld and need at least %d",
332  file_size, content_inspect_min_size);
333  goto empty_return;
334  }
335  offset = cur_file->content_inspected;
336  }
337 
338  const uint8_t *data;
339  uint32_t data_len;
340 
341  SCLogDebug("Fetching data at offset: %ld", offset);
342  StreamingBufferGetDataAtOffset(cur_file->sb, &data, &data_len, offset);
343  SCLogDebug("data_len %u", data_len);
344  /* update inspected tracker */
345  buffer->inspect_offset = offset;
346 
347  if (ips && file_size < cur_file->inspect_min_size) {
348  // don't update content_inspected yet
349  } else {
350  SCLogDebug("content inspected: %" PRIu64, cur_file->content_inspected);
351  cur_file->content_inspected = MAX(cur_file->content_inspected, offset + data_len);
352  SCLogDebug("content inspected: %" PRIu64, cur_file->content_inspected);
353  }
354 
355  InspectionBufferSetupMulti(buffer, NULL, data, data_len);
356  SCLogDebug("[list %d] [before] buffer offset %" PRIu64 "; buffer len %" PRIu32
357  "; data_len %" PRIu32 "; file_size %" PRIu64,
358  list_id, buffer->inspect_offset, buffer->inspect_len, data_len, file_size);
359 
360  if (f->alproto == ALPROTO_HTTP1 && flow_flags & STREAM_TOCLIENT) {
361  HtpState *htp_state = f->alstate;
362  /* built-in 'transformation' */
363  if (htp_state->cfg->swf_decompression_enabled) {
364  int swf_file_type = FileIsSwfFile(data, data_len);
365  if (swf_file_type == FILE_SWF_ZLIB_COMPRESSION ||
366  swf_file_type == FILE_SWF_LZMA_COMPRESSION) {
367  SCLogDebug("decompressing ...");
368  (void)FileSwfDecompression(data, data_len, det_ctx, buffer,
369  htp_state->cfg->swf_compression_type, htp_state->cfg->swf_decompress_depth,
370  htp_state->cfg->swf_compress_depth);
371  SCLogDebug("uncompressed buffer %p size %u; buf: \"%s\"", buffer,
372  buffer->inspect_len, (char *)buffer->inspect);
373  }
374  }
375  }
376 
377  SCLogDebug("content inspected: %" PRIu64, cur_file->content_inspected);
378 
379  /* get buffer for the list id if it is different from the base id */
380  if (list_id != base_id) {
381  SCLogDebug("regular %d has been set up: now handle xforms id %d", base_id, list_id);
382  InspectionBuffer *tbuffer = FiledataWithXformsGetDataCallback(
383  det_ctx, transforms, list_id, local_file_id, buffer);
384  SCReturnPtr(tbuffer, "InspectionBuffer");
385  }
386  SCReturnPtr(buffer, "InspectionBuffer");
387 
388 empty_return:
390  return NULL;
391 }
392 
394  const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
395  void *alstate, void *txv, uint64_t tx_id)
396 {
397  const DetectEngineTransforms *transforms = NULL;
398  if (!engine->mpm) {
399  transforms = engine->v2.transforms;
400  }
401 
402  AppLayerGetFileState files = AppLayerParserGetTxFiles(f, txv, flags);
403  FileContainer *ffc = files.fc;
404  if (ffc == NULL) {
406  }
407  if (ffc->head == NULL) {
408  const bool eof = (AppLayerParserGetStateProgress(f->proto, f->alproto, txv, flags) >
409  engine->progress);
410  if (eof && engine->match_on_null) {
412  }
414  }
415 
416  int local_file_id = 0;
417  File *file = ffc->head;
418  for (; file != NULL; file = file->next) {
419  InspectionBuffer *buffer = FiledataGetDataCallback(det_ctx, transforms, f, flags, file,
420  engine->sm_list, engine->sm_list_base, local_file_id, txv);
421  if (buffer == NULL)
422  continue;
423 
424  bool eof = (file->state == FILE_STATE_CLOSED);
425  uint8_t ciflags = eof ? DETECT_CI_FLAGS_END : 0;
426  if (buffer->inspect_offset == 0)
427  ciflags |= DETECT_CI_FLAGS_START;
428 
429  const bool match = DetectEngineContentInspection(de_ctx, det_ctx, s, engine->smd, NULL, f,
430  buffer->inspect, buffer->inspect_len, buffer->inspect_offset, ciflags,
432  if (match) {
434  }
435  local_file_id++;
436  }
437 
439 }
440 
441 /** \brief Filedata Filedata Mpm prefilter callback
442  *
443  * \param det_ctx detection engine thread ctx
444  * \param pectx inspection context
445  * \param p packet to inspect
446  * \param f flow to inspect
447  * \param txv tx to inspect
448  * \param idx transaction id
449  * \param flags STREAM_* flags including direction
450  */
451 static void PrefilterTxFiledata(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p,
452  Flow *f, void *txv, const uint64_t idx, const AppLayerTxData *txd, const uint8_t flags)
453 {
454  SCEnter();
455 
456  if (!AppLayerParserHasFilesInDir(txd, flags))
457  return;
458 
459  const PrefilterMpmFiledata *ctx = (const PrefilterMpmFiledata *)pectx;
460  const MpmCtx *mpm_ctx = ctx->mpm_ctx;
461  const int list_id = ctx->list_id;
462 
463  AppLayerGetFileState files = AppLayerParserGetTxFiles(f, txv, flags);
464  FileContainer *ffc = files.fc;
465  if (ffc != NULL) {
466  int local_file_id = 0;
467  for (File *file = ffc->head; file != NULL; file = file->next) {
468  InspectionBuffer *buffer = FiledataGetDataCallback(det_ctx, ctx->transforms, f, flags,
469  file, list_id, ctx->base_list_id, local_file_id, txv);
470  if (buffer == NULL)
471  continue;
472  SCLogDebug("[%" PRIu64 "] buffer size %u", p->pcap_cnt, buffer->inspect_len);
473 
474  if (buffer->inspect_len >= mpm_ctx->minlen) {
475  uint32_t prev_rule_id_array_cnt = det_ctx->pmq.rule_id_array_cnt;
476  (void)mpm_table[mpm_ctx->mpm_type].Search(mpm_ctx, &det_ctx->mtc, &det_ctx->pmq,
477  buffer->inspect, buffer->inspect_len);
478  PREFILTER_PROFILING_ADD_BYTES(det_ctx, buffer->inspect_len);
479 
480  if (det_ctx->pmq.rule_id_array_cnt > prev_rule_id_array_cnt) {
481  SCLogDebug(
482  "%u matches", det_ctx->pmq.rule_id_array_cnt - prev_rule_id_array_cnt);
483  }
484  }
485  local_file_id++;
486  }
487  }
488 }
489 
491  const DetectBufferMpmRegistry *mpm_reg, int list_id)
492 {
493  PrefilterMpmFiledata *pectx = SCCalloc(1, sizeof(*pectx));
494  if (pectx == NULL)
495  return -1;
496  pectx->list_id = list_id;
497  pectx->base_list_id = mpm_reg->sm_list_base;
498  pectx->mpm_ctx = mpm_ctx;
499  pectx->transforms = &mpm_reg->transforms;
500 
501  return PrefilterAppendTxEngine(de_ctx, sgh, PrefilterTxFiledata,
502  mpm_reg->app_v2.alproto, mpm_reg->app_v2.tx_min_progress,
503  pectx, PrefilterMpmFiledataFree, mpm_reg->pname);
504 }
505 
506 #ifdef UNITTESTS
507 #include "tests/detect-file-data.c"
508 #endif
HtpState_::cfg
const struct HTPCfgRec_ * cfg
Definition: app-layer-htp.h:252
FILE_SWF_LZMA_COMPRESSION
@ FILE_SWF_LZMA_COMPRESSION
Definition: util-file-decompression.h:34
SMTPConfig::content_limit
uint32_t content_limit
Definition: app-layer-smtp.h:106
DetectEngineAppInspectionEngine_
Definition: detect.h:429
SigTableElmt_::url
const char * url
Definition: detect.h:1311
DetectEngineAppInspectionEngine_::mpm
bool mpm
Definition: detect.h:433
FileContainer_
Definition: util-file.h:113
MpmCtx_::mpm_type
uint8_t mpm_type
Definition: util-mpm.h:90
detect-engine.h
SigTableElmt_::desc
const char * desc
Definition: detect.h:1310
sigmatch_table
SigTableElmt * sigmatch_table
Definition: detect-parse.c:154
offset
uint64_t offset
Definition: util-streaming-buffer.h:0
DETECT_CI_FLAGS_START
#define DETECT_CI_FLAGS_START
Definition: detect-engine-content-inspection.h:40
flow-util.h
SigTableElmt_::name
const char * name
Definition: detect.h:1308
InspectionBuffer::initialized
bool initialized
Definition: detect.h:377
PrefilterRuleStore_::rule_id_array_cnt
uint32_t rule_id_array_cnt
Definition: util-prefilter.h:40
SigGroupHead_
Container for matching data for a signature group.
Definition: detect.h:1464
SIG_FLAG_INIT_FLOW
#define SIG_FLAG_INIT_FLOW
Definition: detect.h:288
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
DetectEngineTransforms
Definition: detect.h:408
DetectBufferMpmRegistry_::sm_list_base
int16_t sm_list_base
Definition: detect.h:692
HTPCfgRec_::response
HTPCfgDir response
Definition: app-layer-htp.h:171
File_::inspect_min_size
uint32_t inspect_min_size
Definition: util-file.h:104
SIG_FLAG_INIT_NEED_FLUSH
#define SIG_FLAG_INIT_NEED_FLUSH
Definition: detect.h:293
File_::size
uint64_t size
Definition: util-file.h:102
Signature_::alproto
AppProto alproto
Definition: detect.h:608
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
SIG_FLAG_INIT_FILEDATA
#define SIG_FLAG_INIT_FILEDATA
Definition: detect.h:296
Packet_::pcap_cnt
uint64_t pcap_cnt
Definition: decode.h:595
HTP_RESPONSE_PROGRESS_BODY
#define HTP_RESPONSE_PROGRESS_BODY
Definition: app-layer-htp-libhtp.h:95
DetectEngineCtx_::filedata_config
DetectFileDataCfg * filedata_config
Definition: detect.h:953
HTPCfgDir_::body_limit
uint32_t body_limit
Definition: app-layer-htp.h:150
Flow_::proto
uint8_t proto
Definition: flow.h:379
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:85
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1357
DetectFileDataCfg
Definition: detect.h:837
AppLayerParserGetStateProgress
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *alstate, uint8_t flags)
get the progress value for a tx/protocol
Definition: app-layer-parser.c:1070
FileSwfDecompression
int FileSwfDecompression(const uint8_t *buffer, uint32_t buffer_len, DetectEngineThreadCtx *det_ctx, InspectionBuffer *out_buffer, int swf_type, uint32_t decompress_depth, uint32_t compress_depth)
This function decompresses a buffer with zlib/lzma algorithm.
Definition: util-file-decompression.c:71
InspectionBuffer
Definition: detect.h:373
threads.h
FILE_STATE_OPENED
@ FILE_STATE_OPENED
Definition: util-file.h:70
Flow_
Flow data structure.
Definition: flow.h:357
File_::state
FileState state
Definition: util-file.h:82
DetectBufferTypeRegisterSetupCallback
void DetectBufferTypeRegisterSetupCallback(const char *name, void(*SetupCallback)(const DetectEngineCtx *, Signature *))
Definition: detect-engine.c:1288
DetectEngineThreadCtx_::pmq
PrefilterRuleStore pmq
Definition: detect.h:1204
DetectBufferMpmRegistry_::app_v2
struct DetectBufferMpmRegistry_::@84::@86 app_v2
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1302
ctx
struct Thresholds ctx
AppLayerParserSupportsFiles
bool AppLayerParserSupportsFiles(uint8_t ipproto, AppProto alproto)
Definition: app-layer-parser.c:1156
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:843
PrefilterMpmFiledataRegister
int PrefilterMpmFiledataRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-file-data.c:490
DetectBufferTypeSupportsMultiInstance
void DetectBufferTypeSupportsMultiInstance(const char *name)
Definition: detect-engine.c:1044
DetectEngineAppInspectionEngine_::v2
struct DetectEngineAppInspectionEngine_::@79 v2
DetectBufferMpmRegistry_
one time registration of keywords at start up
Definition: detect.h:687
detect-file-data.h
DetectEngineAppInspectionEngine_::sm_list_base
uint16_t sm_list_base
Definition: detect.h:438
FILEDATA_CONTENT_LIMIT
#define FILEDATA_CONTENT_LIMIT
Definition: app-layer-smtp.c:58
SignatureInitData_::init_flags
uint32_t init_flags
Definition: detect.h:555
HTPCfgRec_::swf_compress_depth
uint32_t swf_compress_depth
Definition: app-layer-htp.h:168
StreamingBufferGetDataAtOffset
int StreamingBufferGetDataAtOffset(const StreamingBuffer *sb, const uint8_t **data, uint32_t *data_len, uint64_t offset)
Definition: util-streaming-buffer.c:1808
SIG_FLAG_TOCLIENT
#define SIG_FLAG_TOCLIENT
Definition: detect.h:268
MAX
#define MAX(x, y)
Definition: suricata-common.h:395
filehandler_table
DetectFileHandlerTableElmt filehandler_table[DETECT_TBLSIZE_STATIC]
Definition: detect-parse.c:88
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1293
DetectBufferMpmRegistry_::transforms
DetectEngineTransforms transforms
Definition: detect.h:700
detect-engine-prefilter.h
util-unittest.h
HtpState_
Definition: app-layer-htp.h:238
SMTPConfig::content_inspect_min_size
uint32_t content_inspect_min_size
Definition: app-layer-smtp.h:107
util-unittest-helper.h
AppLayerParserGetTxFiles
AppLayerGetFileState AppLayerParserGetTxFiles(const Flow *f, void *tx, const uint8_t direction)
Definition: app-layer-parser.c:852
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1094
File_::sb
StreamingBuffer * sb
Definition: util-file.h:83
DetectEngineAppInspectionEngine_::sm_list
uint16_t sm_list
Definition: detect.h:437
DETECT_ENGINE_INSPECT_SIG_CANT_MATCH_FILES
#define DETECT_ENGINE_INSPECT_SIG_CANT_MATCH_FILES
Definition: detect-engine-state.h:43
PrefilterMpmFiledata::transforms
const DetectEngineTransforms * transforms
Definition: detect-file-data.h:34
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:267
app-layer-htp.h
InspectionBufferSetupMultiEmpty
void InspectionBufferSetupMultiEmpty(InspectionBuffer *buffer)
setup the buffer empty
Definition: detect-engine.c:1568
DetectFileDataCfg::content_inspect_min_size
uint32_t content_inspect_min_size
Definition: detect.h:839
decode.h
util-debug.h
HTPCfgRec_::http_body_inline
int http_body_inline
Definition: app-layer-htp.h:163
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:18
g_alproto_max
AppProto g_alproto_max
Definition: app-layer-protos.c:29
DetectEngineThreadCtx_
Definition: detect.h:1098
ALPROTO_SMTP
@ ALPROTO_SMTP
Definition: app-layer-protos.h:38
detect-engine-file.h
BOOL2STR
#define BOOL2STR(b)
Definition: util-debug.h:527
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect-engine-mpm.h
FileContainer_::head
File * head
Definition: util-file.h:114
detect.h
HTPCfgRec_::swf_decompress_depth
uint32_t swf_decompress_depth
Definition: app-layer-htp.h:167
DETECT_ENGINE_INSPECT_SIG_MATCH
#define DETECT_ENGINE_INSPECT_SIG_MATCH
Definition: detect-engine-state.h:38
PrefilterMpmFiledata::mpm_ctx
const MpmCtx * mpm_ctx
Definition: detect-file-data.h:33
DetectFiledataRegister
void DetectFiledataRegister(void)
Registration function for keyword: file_data.
Definition: detect-file-data.c:72
HTPCfgRec_::swf_decompression_enabled
int swf_decompression_enabled
Definition: app-layer-htp.h:165
FILEDATA_CONTENT_INSPECT_MIN_SIZE
#define FILEDATA_CONTENT_INSPECT_MIN_SIZE
Definition: app-layer-smtp.c:60
InspectionBuffer::inspect_offset
uint64_t inspect_offset
Definition: detect.h:375
DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
Definition: detect-engine-content-inspection.h:36
app-layer-parser.h
MpmCtx_::minlen
uint16_t minlen
Definition: util-mpm.h:99
BUG_ON
#define BUG_ON(x)
Definition: suricata-common.h:300
smtp_config
SMTPConfig smtp_config
Definition: app-layer-smtp.c:292
util-profiling.h
PrefilterMpmFiledata::base_list_id
int base_list_id
Definition: detect-file-data.h:32
Signature_::flags
uint32_t flags
Definition: detect.h:604
Packet_
Definition: decode.h:476
DETECT_CI_FLAGS_END
#define DETECT_CI_FLAGS_END
Definition: detect-engine-content-inspection.h:42
DetectEngineAppInspectionEngine_::match_on_null
bool match_on_null
Definition: detect.h:436
DetectFileDataCfg::content_limit
uint32_t content_limit
Definition: detect.h:838
Signature_::init_data
SignatureInitData * init_data
Definition: detect.h:672
SCReturnPtr
#define SCReturnPtr(x, type)
Definition: util-debug.h:287
FileIsSwfFile
int FileIsSwfFile(const uint8_t *buffer, uint32_t buffer_len)
Definition: util-file-decompression.c:41
detect-engine-state.h
Data structures and function prototypes for keeping state for the detection engine.
AppLayerHtpEnableResponseBodyCallback
void AppLayerHtpEnableResponseBodyCallback(void)
Sets a flag that informs the HTP app layer that some module in the engine needs the http request body...
Definition: app-layer-htp.c:485
DetectFileHandlerTableElmt_::priority
int priority
Definition: detect-parse.h:34
HTPCfgRec_::swf_compression_type
HtpSwfCompressType swf_compression_type
Definition: app-layer-htp.h:166
MpmTableElmt_::Search
uint32_t(* Search)(const struct MpmCtx_ *, struct MpmThreadCtx_ *, PrefilterRuleStore *, const uint8_t *, uint32_t)
Definition: util-mpm.h:167
DETECT_FILE_DATA
@ DETECT_FILE_DATA
Definition: detect-engine-register.h:203
DetectEngineThreadCtx_::mtc
MpmThreadCtx mtc
Definition: detect.h:1203
FileDataSize
uint64_t FileDataSize(const File *file)
get the size of the file data
Definition: util-file.c:326
detect-engine-content-inspection.h
DetectEngineAppInspectionEngine_::smd
SigMatchData * smd
Definition: detect.h:451
File_::content_inspected
uint64_t content_inspected
Definition: util-file.h:99
FILE_STATE_CLOSED
@ FILE_STATE_CLOSED
Definition: util-file.h:71
File_
Definition: util-file.h:79
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1371
PREFILTER_PROFILING_ADD_BYTES
#define PREFILTER_PROFILING_ADD_BYTES(det_ctx, bytes)
Definition: util-profiling.h:286
flags
uint8_t flags
Definition: decode-gre.h:0
Signature_::proto
DetectProto proto
Definition: detect.h:622
SigTableElmt_::alias
const char * alias
Definition: detect.h:1309
suricata-common.h
ALPROTO_HTTP1
@ ALPROTO_HTTP1
Definition: app-layer-protos.h:36
File_::next
struct File_ * next
Definition: util-file.h:92
DetectFileHandlerTableElmt_::PrefilterFn
PrefilterRegisterFunc PrefilterFn
Definition: detect-parse.h:35
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:1581
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:273
DETECT_ENGINE_INSPECT_SIG_NO_MATCH
#define DETECT_ENGINE_INSPECT_SIG_NO_MATCH
Definition: detect-engine-state.h:37
DetectEngineAppInspectionEngine_::progress
int16_t progress
Definition: detect.h:439
SCMalloc
#define SCMalloc(sz)
Definition: util-mem.h:47
InspectionBuffer::inspect_len
uint32_t inspect_len
Definition: detect.h:376
DetectFiledataRegisterTests
void DetectFiledataRegisterTests(void)
Definition: detect-file-data.c:64
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:374
str
#define str(s)
Definition: suricata-common.h:291
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
app-layer-htp-libhtp.h
SCFree
#define SCFree(p)
Definition: util-mem.h:61
Flow_::alstate
void * alstate
Definition: flow.h:477
Signature_::id
uint32_t id
Definition: detect.h:638
detect-parse.h
Signature_
Signature container.
Definition: detect.h:603
AppLayerGetProtoName
const char * AppLayerGetProtoName(AppProto alproto)
Given the internal protocol id, returns a string representation of the protocol.
Definition: app-layer.c:1006
DetectEngineAppInspectionEngine_::transforms
const DetectEngineTransforms * transforms
Definition: detect.h:448
util-file-decompression.h
ALPROTO_HTTP
@ ALPROTO_HTTP
Definition: app-layer-protos.h:76
ALPROTO_UNKNOWN
@ ALPROTO_UNKNOWN
Definition: app-layer-protos.h:29
File_::inspect_window
uint32_t inspect_window
Definition: util-file.h:103
mpm_table
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
Definition: util-mpm.c:47
DetectFileHandlerTableElmt_::Callback
InspectEngineFuncPtr Callback
Definition: detect-parse.h:36
DetectEngineThreadCtx_::de_ctx
DetectEngineCtx * de_ctx
Definition: detect.h:1219
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:1521
FILE_SWF_ZLIB_COMPRESSION
@ FILE_SWF_ZLIB_COMPRESSION
Definition: util-file-decompression.h:33
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1492
DetectFileHandlerTableElmt_::name
const char * name
Definition: detect-parse.h:33
app-layer-smtp.h
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1191
PrefilterMpmFiledata
Definition: detect-file-data.h:30
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
detect-file-data.c
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:451
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
PrefilterMpmFiledata::list_id
int list_id
Definition: detect-file-data.h:31
flow-var.h
DetectEngineInspectFiledata
uint8_t DetectEngineInspectFiledata(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Definition: detect-file-data.c:393
SigTableElmt_::RegisterTests
void(* RegisterTests)(void)
Definition: detect.h:1300
app-layer.h
DetectProtoContainsProto
int DetectProtoContainsProto(const DetectProto *dp, int proto)
see if a DetectProto contains a certain proto
Definition: detect-engine-proto.c:135
DetectBufferMpmRegistry_::pname
char pname[32]
Definition: detect.h:689