Go to the documentation of this file.
51 static void DsizeRegisterTests(
void);
56 static bool PrefilterDsizeIsPrefilterable(
const Signature *s);
124 "the same sig. Invalidating signature.");
145 SCLogDebug(
"dd->arg1 %" PRIu16
", dd->arg2 %" PRIu16
", dd->mode %" PRIu8
"", dd->arg1,
166 SCDetectU16Free(de_ptr);
175 if (!PrefilterPacketHeaderExtraMatch(
ctx, p))
180 du16.mode =
ctx->v1.u8[0];
181 du16.arg1 =
ctx->v1.u16[1];
182 du16.arg2 =
ctx->v1.u16[2];
186 PrefilterAddSids(&det_ctx->
pmq,
ctx->sigs_array,
ctx->sigs_cnt);
196 static bool PrefilterDsizeIsPrefilterable(
const Signature *s)
236 uint16_t high = 65535;
269 SCLogDebug(
"low %u, high %u, mode %u", low, high, dd->mode);
303 if (total_length > dsize) {
304 SCLogDebug(
"required_dsize: %d exceeds dsize: %d", total_length, dsize);
308 if ((total_length +
offset) > dsize) {
309 SCLogDebug(
"length + offset: %d exceeds dsize: %d", total_length +
offset, dsize);
310 return total_length +
offset;
334 for ( ; sm != NULL; sm = sm->
next) {
346 cd->
depth = (uint16_t)dsize;
347 SCLogDebug(
"updated %u, content %u to have depth %u "
348 "because of dsize.", s->
id, cd->
id, cd->
depth);
368 static int DsizeTestParse01(
void)
375 DetectDsizeFree(NULL, dd);
383 static int DsizeTestParse02(
void)
389 DetectDsizeFree(NULL, dd);
397 static int DsizeTestParse03(
void)
404 DetectDsizeFree(NULL, dd);
412 static int DsizeTestParse04(
void)
420 DetectDsizeFree(NULL, dd);
428 static int DsizeTestParse05(
void)
436 DetectDsizeFree(NULL, dd);
444 static int DsizeTestParse06(
void)
451 DetectDsizeFree(NULL, dd);
459 static int DsizeTestParse07(
void)
466 DetectDsizeFree(NULL, dd);
474 static int DsizeTestParse08(
void)
481 DetectDsizeFree(NULL, dd);
489 static int DsizeTestParse09(
void)
493 DetectDsizeFree(NULL, dd);
501 static int DsizeTestParse10(
void)
505 DetectDsizeFree(NULL, dd);
514 static int DsizeTestParse11(
void)
516 const char *strings[] = {
"A",
">10<>10",
"<>10",
"1<>",
"",
" ",
"2<>1",
"1!", NULL };
517 for (
int i = 0; strings[i]; i++) {
529 static int DsizeTestMatch01(
void)
532 uint16_t dsizelow = 2;
533 uint16_t dsizehigh = 0;
536 du16.arg1 = dsizelow;
537 du16.arg2 = dsizehigh;
547 static int DsizeTestMatch02(
void)
550 uint16_t dsizelow = 1;
551 uint16_t dsizehigh = 0;
554 du16.arg1 = dsizelow;
555 du16.arg2 = dsizehigh;
566 static int DetectDsizeIcmpv6Test01(
void)
568 static uint8_t raw_icmpv6[] = {
569 0x60, 0x00, 0x00, 0x00, 0x00, 0x30, 0x3a, 0xff,
570 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
571 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
572 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
573 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
574 0x01, 0x00, 0x7b, 0x85, 0x00, 0x00, 0x00, 0x00,
575 0x60, 0x4b, 0xe8, 0xbd, 0x00, 0x00, 0x3b, 0xff,
576 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
577 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
578 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
579 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 };
604 "alert icmp any any -> any any "
605 "(msg:\"ICMP Large ICMP Packet\"; dsize:>8; sid:1; rev:4;)");
609 "alert icmp any any -> any any "
610 "(msg:\"ICMP Large ICMP Packet\"; dsize:>800; sid:2; rev:4;)");
632 static void DsizeRegisterTests(
void)
648 UtRegisterTest(
"DetectDsizeIcmpv6Test01", DetectDsizeIcmpv6Test01);
#define SIGMATCH_INFO_UINT16
void DetectDsizeRegister(void)
Registration function for dsize: keyword.
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
#define SIG_MASK_REQUIRE_REAL_PKT
struct SigMatch_ * smlists[DETECT_SM_LIST_MAX]
void PrefilterPacketU16Set(PrefilterPacketHeaderValue *v, void *smctx)
SigTableElmt * sigmatch_table
void(* Free)(DetectEngineCtx *, void *)
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Container for matching data for a signature group.
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
int PacketAlertCheck(Packet *p, uint32_t sid)
Check if a certain sid alerted, this is used in the test functions.
main detection engine ctx
int SigParseGetMaxDsize(const Signature *s, uint16_t *dsize)
get max dsize "depth"
void DetectEngineCtxFree(DetectEngineCtx *)
Free a DetectEngineCtx::
void SigMatchSignatures(ThreadVars *tv, DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, Packet *p)
wrapper for old tests
#define SIGMATCH_SUPPORT_FIREWALL
Signature * DetectEngineAppendSig(DetectEngineCtx *, const char *)
Parse and append a Signature into the Detection Engine Context signature list.
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
#define FAIL_IF_NOT(expr)
Fail a test if expression evaluates to false.
int(* SetupPrefilter)(DetectEngineCtx *de_ctx, struct SigGroupHead_ *sgh)
void FlowInitConfig(bool quiet)
initialize the configuration
#define FAIL_IF_NOT_NULL(expr)
Fail a test if expression evaluates to non-NULL.
#define PASS
Pass the test.
#define DETECT_CONTENT_DEPTH
SigMatch * SCSigMatchAppendSMToList(DetectEngineCtx *de_ctx, Signature *s, uint16_t type, SigMatchCtx *ctx, const int list)
Append a SigMatch to the list type.
Per thread variable structure.
TmEcode DetectEngineThreadCtxInit(ThreadVars *tv, void *initdata, void **data)
initialize thread specific detection engine context
void PacketFree(Packet *p)
Return a malloced packet.
void SigParseSetDsizePair(Signature *s)
set prefilter dsize pair
void SigParseRequiredContentSize(const Signature *s, const uint64_t max_size, const SigMatch *sm, int *len, int *offset)
Determine the size needed to accommodate the content elements of a signature.
int DecodeIPV6(ThreadVars *tv, DecodeThreadVars *dtv, Packet *p, const uint8_t *pkt, uint16_t len)
SignatureInitData * init_data
int PrefilterSetupPacketHeader(DetectEngineCtx *de_ctx, SigGroupHead *sgh, int sm_type, SignatureMask mask, void(*Set)(PrefilterPacketHeaderValue *v, void *), bool(*Compare)(PrefilterPacketHeaderValue v, void *), void(*Match)(DetectEngineThreadCtx *det_ctx, Packet *p, const void *pectx))
int(* Match)(DetectEngineThreadCtx *, Packet *, const Signature *, const SigMatchCtx *)
int SigGroupBuild(DetectEngineCtx *de_ctx)
Convert the signature list into the runtime match structure.
void StatsThreadInit(StatsThreadContext *stats)
Used to start a pointer to SigMatch context Should never be dereferenced without casting to something...
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
int DetectU16Match(const uint16_t parg, const DetectUintData_u16 *du16)
DetectUintData_u16 * DetectU16Parse(const char *u16str)
This function is used to parse u16 options passed via some u16 keyword.
bool PrefilterPacketU16Compare(PrefilterPacketHeaderValue v, void *smctx)
void FlowShutdown(void)
shutdown the flow engine
TmEcode DetectEngineThreadCtxDeinit(ThreadVars *tv, void *data)
Packet * PacketGetFromAlloc(void)
Get a malloced packet.
#define SCLogError(...)
Macro used to log ERROR messages.
Structure to hold thread specific data for all decode modules.
bool(* SupportsPrefilter)(const Signature *s)
a single match condition for a signature
DetectEngineCtx * DetectEngineCtxInit(void)
void SigParseApplyDsizeToContent(Signature *s)
Apply dsize as depth to content matches in the rule.
SigMatch * DetectGetLastSMFromLists(const Signature *s,...)
Returns the sm with the largest index (added latest) from the lists passed to us.
DetectUintData_u16 DetectU16Data
int SigParseMaxRequiredDsize(const Signature *s)
Determine the required dsize for the signature.
void StatsThreadCleanup(StatsThreadContext *stats)
#define DEBUG_VALIDATE_BUG_ON(exp)
void(* RegisterTests)(void)
#define SIG_FLAG_REQUIRE_PACKET