You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/detect-engine-event.c

349 lines
8.6 KiB
C

/* Copyright (C) 2007-2010 Open Information Security Foundation
16 years ago
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
* \file
*
* \author Breno Silva <breno.silva@gmail.com>
*
* Implements the decode-event keyword
16 years ago
*/
#include "suricata-common.h"
#include "suricata.h"
16 years ago
#include "decode.h"
#include "detect.h"
#include "detect-parse.h"
16 years ago
#include "flow-var.h"
#include "decode-events.h"
#include "util-debug.h"
/* Need to get the DEvents[] array */
#define DETECT_EVENTS
#include "detect-engine-event.h"
16 years ago
#include "util-unittest.h"
#define PARSE_REGEX "\\S[0-9A-z_]+[.][A-z0-9_+]+$"
16 years ago
static pcre *parse_regex;
static pcre_extra *parse_regex_study;
16 years ago
int DetectDecodeEventMatch (ThreadVars *, DetectEngineThreadCtx *, Packet *, Signature *, SigMatch *);
static int DetectDecodeEventSetup (DetectEngineCtx *, Signature *, char *);
16 years ago
void DecodeEventRegisterTests(void);
/**
* \brief Registration function for decode-event: keyword
*/
void DetectDecodeEventRegister (void) {
sigmatch_table[DETECT_DECODE_EVENT].name = "decode-event";
sigmatch_table[DETECT_DECODE_EVENT].Match = DetectDecodeEventMatch;
sigmatch_table[DETECT_DECODE_EVENT].Setup = DetectDecodeEventSetup;
sigmatch_table[DETECT_DECODE_EVENT].Free = NULL;
sigmatch_table[DETECT_DECODE_EVENT].RegisterTests = DecodeEventRegisterTests;
sigmatch_table[DETECT_DECODE_EVENT].flags |= SIGMATCH_DEONLY_COMPAT;
16 years ago
const char *eb;
int eo;
int opts = 0;
parse_regex = pcre_compile(PARSE_REGEX, opts, &eb, &eo, NULL);
if(parse_regex == NULL)
{
SCLogError(SC_ERR_PCRE_COMPILE, "pcre compile of \"%s\" failed at offset %" PRId32 ": %s\n", PARSE_REGEX, eo, eb);
16 years ago
goto error;
}
parse_regex_study = pcre_study(parse_regex, 0, &eb);
if(eb != NULL)
{
SCLogError(SC_ERR_PCRE_STUDY, "pcre study failed: %s\n", eb);
16 years ago
goto error;
}
return;
error:
return;
}
/**
* \brief This function is used to match decoder event flags set on a packet with those passed via decode-event:
*
* \param t pointer to thread vars
* \param det_ctx pointer to the pattern matcher thread
16 years ago
* \param p pointer to the current packet
* \param s pointer to the Signature
* \param m pointer to the sigmatch
*
* \retval 0 no match
* \retval 1 match
*/
int DetectDecodeEventMatch (ThreadVars *t, DetectEngineThreadCtx *det_ctx, Packet *p, Signature *s, SigMatch *m)
16 years ago
{
SCEnter();
16 years ago
DetectDecodeEventData *de = (DetectDecodeEventData *)m->ctx;
if (DECODER_ISSET_EVENT(p, de->event)) {
SCReturnInt(1);
}
16 years ago
SCReturnInt(0);
16 years ago
}
/**
* \brief This function is used to parse decoder events options passed via decode-event: keyword
*
* \param rawstr Pointer to the user provided decode-event options
*
* \retval de pointer to DetectFlowData on success
* \retval NULL on failure
*/
DetectDecodeEventData *DetectDecodeEventParse (char *rawstr)
{
int i;
DetectDecodeEventData *de = NULL;
#define MAX_SUBSTRINGS 30
int ret = 0, res = 0, found = 0;
int ov[MAX_SUBSTRINGS];
ret = pcre_exec(parse_regex, parse_regex_study, rawstr, strlen(rawstr), 0, 0, ov, MAX_SUBSTRINGS);
if (ret < 1) {
SCLogError(SC_ERR_PCRE_MATCH, "pcre_exec parse error, ret %" PRId32
", string %s", ret, rawstr);
16 years ago
goto error;
}
const char *str_ptr;
res = pcre_get_substring((char *)rawstr, ov, MAX_SUBSTRINGS, 0, &str_ptr);
if (res < 0) {
SCLogError(SC_ERR_PCRE_GET_SUBSTRING, "pcre_get_substring failed");
16 years ago
goto error;
}
for (i = 0; DEvents[i].event_name != NULL; i++) {
if (strcasecmp(DEvents[i].event_name,str_ptr) == 0) {
16 years ago
found = 1;
break;
}
}
if (found == 0) {
SCLogError(SC_ERR_UNKNOWN_DECODE_EVENT, "unknown decode event \"%s\"",
str_ptr);
16 years ago
goto error;
}
16 years ago
de = SCMalloc(sizeof(DetectDecodeEventData));
if (de == NULL)
16 years ago
goto error;
de->event = DEvents[i].code;
return de;
error:
if (de) SCFree(de);
16 years ago
return NULL;
}
/**
* \brief this function is used to add the parsed decode-event into the current signature
*
* \param de_ctx pointer to the Detection Engine Context
* \param s pointer to the Current Signature
* \param rawstr pointer to the user provided decode-event options
*
* \retval 0 on Success
* \retval -1 on Failure
*/
static int DetectDecodeEventSetup (DetectEngineCtx *de_ctx, Signature *s, char *rawstr)
16 years ago
{
DetectDecodeEventData *de = NULL;
SigMatch *sm = NULL;
de = DetectDecodeEventParse(rawstr);
if (de == NULL)
goto error;
sm = SigMatchAlloc();
if (sm == NULL)
goto error;
sm->type = DETECT_DECODE_EVENT;
sm->ctx = (void *)de;
SigMatchAppendPacket(s, sm);
16 years ago
return 0;
error:
if (de) SCFree(de);
if (sm) SCFree(sm);
16 years ago
return -1;
}
/**
* \brief this function will free memory associated with DetectDecodeEventData
*
* \param de pointer to DetectDecodeEventData
*/
void DetectDecodeEventFree(DetectDecodeEventData *de) {
if(de) SCFree(de);
16 years ago
}
/*
* ONLY TESTS BELOW THIS COMMENT
*/
#ifdef UNITTESTS
16 years ago
/**
* \test DecodeEventTestParse01 is a test for a valid decode-event value
*/
int DecodeEventTestParse01 (void) {
DetectDecodeEventData *de = NULL;
de = DetectDecodeEventParse("ipv4.pkt_too_small");
if (de) {
DetectDecodeEventFree(de);
return 1;
}
return 0;
}
/**
* \test DecodeEventTestParse02 is a test for a valid upper + lower case decode-event value
*/
int DecodeEventTestParse02 (void) {
DetectDecodeEventData *de = NULL;
de = DetectDecodeEventParse("PPP.pkt_too_small");
if (de) {
DetectDecodeEventFree(de);
return 1;
}
return 0;
}
/**
* \test DecodeEventTestParse03 is a test for a valid upper case decode-event value
*/
int DecodeEventTestParse03 (void) {
DetectDecodeEventData *de = NULL;
de = DetectDecodeEventParse("IPV6.PKT_TOO_SMALL");
if (de) {
DetectDecodeEventFree(de);
return 1;
}
return 0;
}
/**
* \test DecodeEventTestParse04 is a test for an invalid upper case decode-event value
*/
int DecodeEventTestParse04 (void) {
DetectDecodeEventData *de = NULL;
de = DetectDecodeEventParse("IPV6.INVALID_EVENT");
if (de) {
DetectDecodeEventFree(de);
return 1;
}
return 0;
}
/**
* \test DecodeEventTestParse05 is a test for an invalid char into the decode-event value
*/
int DecodeEventTestParse05 (void) {
DetectDecodeEventData *de = NULL;
de = DetectDecodeEventParse("IPV-6,INVALID_CHAR");
if (de) {
DetectDecodeEventFree(de);
return 1;
}
return 0;
}
/**
* \test DecodeEventTestParse06 is a test for match function with valid decode-event value
*/
int DecodeEventTestParse06 (void) {
Packet *p = SCMalloc(SIZE_OF_PACKET);
if (p == NULL)
return 0;
16 years ago
ThreadVars tv;
int ret = 0;
DetectDecodeEventData *de = NULL;
SigMatch *sm = NULL;
memset(&tv, 0, sizeof(ThreadVars));
memset(p, 0, SIZE_OF_PACKET);
p->pkt = (uint8_t *)(p + 1);
16 years ago
DECODER_SET_EVENT(p,PPP_PKT_TOO_SMALL);
16 years ago
de = DetectDecodeEventParse("ppp.pkt_too_small");
if (de == NULL)
goto error;
de->event = PPP_PKT_TOO_SMALL;
sm = SigMatchAlloc();
if (sm == NULL)
goto error;
sm->type = DETECT_DECODE_EVENT;
sm->ctx = (void *)de;
ret = DetectDecodeEventMatch(&tv,NULL,p,NULL,sm);
16 years ago
if(ret) {
SCFree(p);
16 years ago
return 1;
}
16 years ago
error:
if (de) SCFree(de);
if (sm) SCFree(sm);
SCFree(p);
16 years ago
return 0;
}
#endif /* UNITTESTS */
16 years ago
/**
* \brief this function registers unit tests for DecodeEvent
*/
void DecodeEventRegisterTests(void) {
#ifdef UNITTESTS
16 years ago
UtRegisterTest("DecodeEventTestParse01", DecodeEventTestParse01, 1);
UtRegisterTest("DecodeEventTestParse02", DecodeEventTestParse02, 1);
UtRegisterTest("DecodeEventTestParse03", DecodeEventTestParse03, 1);
UtRegisterTest("DecodeEventTestParse04", DecodeEventTestParse04, 0);
UtRegisterTest("DecodeEventTestParse05", DecodeEventTestParse05, 0);
UtRegisterTest("DecodeEventTestParse06", DecodeEventTestParse06, 1);
#endif /* UNITTESTS */
16 years ago
}