From 19d701ddf07d855128ded0cf2b573ce468e3bdd6 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Wed, 20 Jan 2016 01:10:01 +0000 Subject: Removing Suricata and Audit from source repo, and updated build.sh to avoid building suricata. Will re-address this in C release via tar balls. Change-Id: I3710076f8b7f3313cb3cb5260c4eb0a6834d4f6e Signed-off-by: Ashlee Young --- framework/src/suricata/src/detect-sid.c | 165 -------------------------------- 1 file changed, 165 deletions(-) delete mode 100644 framework/src/suricata/src/detect-sid.c (limited to 'framework/src/suricata/src/detect-sid.c') diff --git a/framework/src/suricata/src/detect-sid.c b/framework/src/suricata/src/detect-sid.c deleted file mode 100644 index a3ed3403..00000000 --- a/framework/src/suricata/src/detect-sid.c +++ /dev/null @@ -1,165 +0,0 @@ -/* Copyright (C) 2007-2010 Open Information Security Foundation - * - * 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 Victor Julien - * - * Implements the sid keyword - */ - -#include "suricata-common.h" -#include "detect.h" -#include "detect-engine.h" -#include "detect-parse.h" -#include "util-debug.h" -#include "util-error.h" -#include "util-unittest.h" - -static int DetectSidSetup (DetectEngineCtx *, Signature *, char *); -static void DetectSidRegisterTests(void); - -void DetectSidRegister (void) -{ - sigmatch_table[DETECT_SID].name = "sid"; - sigmatch_table[DETECT_SID].desc = "set rule id"; - sigmatch_table[DETECT_SID].url = "https://redmine.openinfosecfoundation.org/projects/suricata/wiki/Meta-settings#Sid-signature-id"; - sigmatch_table[DETECT_SID].Match = NULL; - sigmatch_table[DETECT_SID].Setup = DetectSidSetup; - sigmatch_table[DETECT_SID].Free = NULL; - sigmatch_table[DETECT_SID].RegisterTests = DetectSidRegisterTests; -} - -static int DetectSidSetup (DetectEngineCtx *de_ctx, Signature *s, char *sidstr) -{ - char *str = sidstr; - char duped = 0; - - /* Strip leading and trailing "s. */ - if (sidstr[0] == '\"') { - str = SCStrdup(sidstr + 1); - if (unlikely(str == NULL)) { - return -1; - } - if (strlen(str) && str[strlen(str) - 1] == '\"') { - str[strlen(str) - 1] = '\0'; - } - duped = 1; - } - - unsigned long id = 0; - char *endptr = NULL; - id = strtoul(sidstr, &endptr, 10); - if (endptr == NULL || *endptr != '\0') { - SCLogError(SC_ERR_INVALID_SIGNATURE, "invalid character as arg " - "to sid keyword"); - goto error; - } - if (id >= UINT_MAX) { - SCLogError(SC_ERR_INVALID_NUMERIC_VALUE, "sid value to high, max %u", UINT_MAX); - goto error; - } - - s->id = (uint32_t)id; - - if (duped) - SCFree(str); - return 0; - - error: - if (duped) - SCFree(str); - return -1; -} - -#ifdef UNITTESTS - -static int SidTestParse01(void) -{ - int result = 0; - Signature *s = NULL; - - DetectEngineCtx *de_ctx = DetectEngineCtxInit(); - if (de_ctx == NULL) - goto end; - - s = DetectEngineAppendSig(de_ctx, - "alert tcp 1.2.3.4 any -> any any (sid:1; gid:1;)"); - if (s == NULL || s->id != 1) - goto end; - - result = 1; - -end: - if (de_ctx != NULL) - DetectEngineCtxFree(de_ctx); - return result; -} - -static int SidTestParse02(void) -{ - int result = 0; - - DetectEngineCtx *de_ctx = DetectEngineCtxInit(); - if (de_ctx == NULL) - goto end; - - if (DetectEngineAppendSig(de_ctx, - "alert tcp 1.2.3.4 any -> any any (sid:a; gid:1;)") != NULL) - goto end; - - result = 1; - -end: - if (de_ctx != NULL) - DetectEngineCtxFree(de_ctx); - return result; -} - -static int SidTestParse03(void) -{ - int result = 0; - - DetectEngineCtx *de_ctx = DetectEngineCtxInit(); - if (de_ctx == NULL) - goto end; - - if (DetectEngineAppendSig(de_ctx, - "alert tcp any any -> any any (content:\"ABC\"; sid:\";)") != NULL) - goto end; - - result = 1; -end: - if (de_ctx != NULL) - DetectEngineCtxFree(de_ctx); - return result; -} - -#endif - -/** - * \brief Register DetectSid unit tests. - */ -static void DetectSidRegisterTests(void) -{ -#ifdef UNITTESTS - UtRegisterTest("SidTestParse01", SidTestParse01, 1); - UtRegisterTest("SidTestParse02", SidTestParse02, 1); - UtRegisterTest("SidTestParse03", SidTestParse03, 1); -#endif /* UNITTESTS */ -} -- cgit 1.2.3-korg