--- /dev/null
+/* Copyright (C) 2015 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.
+ */
+
+#include "suricata-common.h"
+
+#include "detect.h"
+#include "detect-parse.h"
+#include "detect-dnp3.h"
+#include "detect-engine.h"
+#include "detect-engine-content-inspection.h"
+
+/**
+ * The detection struct.
+ */
+typedef struct DetectDNP3_ {
+ union {
+ struct {
+ /* Function code for function code detection. */
+ uint8_t function_code;
+ };
+ struct {
+ /* Internal indicator flags for IIN detection. */
+ uint16_t ind_flags;
+ };
+ struct {
+ /* Object info for object detection. */
+ uint8_t obj_group;
+ uint8_t obj_variation;
+ };
+ };
+} DetectDNP3;
+
+/**
+ * Indicator names to value mappings (Snort compatible).
+ */
+DNP3Mapping DNP3IndicatorsMap[] = {
+ {"device_restart", 0x8000},
+ {"device_trouble", 0x4000},
+ {"local_control", 0x2000},
+ {"need_time", 0x1000},
+ {"class_3_events", 0x0800},
+ {"class_2_events", 0x0400},
+ {"class_1_events", 0x0200},
+ {"all_stations", 0x0100},
+
+ {"reserved_1", 0x0080},
+ {"reserved_2", 0x0040},
+ {"config_corrupt", 0x0020},
+ {"already_executing", 0x0010},
+ {"event_buffer_overflow", 0x0008},
+ {"parameter_error", 0x0004},
+ {"object_unknown", 0x0002},
+ {"no_func_code_support", 0x0001},
+
+ {NULL, 0},
+};
+
+/**
+ * Application function code name to code mappings (Snort compatible).
+ */
+DNP3Mapping DNP3FunctionNameMap[] = {
+ {"confirm", 0},
+ {"read", 1},
+ {"write", 2},
+ {"select", 3},
+ {"operate", 4},
+ {"direct_operate", 5},
+ {"direct_operate_nr", 6},
+ {"immed_freeze", 7},
+ {"immed_freeze_nr", 8},
+ {"freeze_clear", 9},
+ {"freeze_clear_nr", 10},
+ {"freeze_at_time", 11},
+ {"freeze_at_time_nr", 12},
+ {"cold_restart", 13},
+ {"warm_restart", 14},
+ {"initialize_data", 15},
+ {"initialize_appl", 16},
+ {"start_appl", 17},
+ {"stop_appl", 18},
+ {"save_config", 19},
+ {"enable_unsolicited", 20},
+ {"disable_unsolicited", 21},
+ {"assign_class", 22},
+ {"delay_measure", 23},
+ {"record_current_time", 24},
+ {"open_file", 25},
+ {"close_file", 26},
+ {"delete_file", 27},
+ {"get_file_info", 28},
+ {"authenticate_file", 29},
+ {"abort_file", 30},
+ {"activate_config", 31},
+ {"authenticate_req", 32},
+ {"authenticate_err", 33},
+ {"response", 129},
+ {"unsolicited_response", 130},
+ {"authenticate_resp", 131}
+};
+
+static void DetectDNP3FuncRegisterTests(void);
+static void DetectDNP3IndRegisterTests(void);
+static void DetectDNP3ObjRegisterTests(void);
+static void DetectDNP3DataRegisterTests(void);
+
+/**
+ * \brief Utility function to trim leading and trailing whitespace
+ * from a string.
+ */
+static char *TrimString(char *str)
+{
+ char *end = str + strlen(str) - 1;
+ while (isspace(*str)) {
+ str++;
+ }
+ while (end > str && isspace(*end)) {
+ end--;
+ }
+ *(end + 1) = '\0';
+ return str;
+}
+
+static int DetectEngineInspectDNP3Data(ThreadVars *tv, DetectEngineCtx *de_ctx,
+ DetectEngineThreadCtx *det_ctx, Signature *s, Flow *f, uint8_t flags,
+ void *alstate, void *txv, uint64_t tx_id)
+{
+ SCEnter();
+ DNP3Transaction *tx = (DNP3Transaction *)txv;
+
+ int r = 0;
+
+ /* Content match - should probably be put into its own file. */
+ if (flags & STREAM_TOSERVER && tx->request_buffer != NULL) {
+ r = DetectEngineContentInspection(de_ctx, det_ctx, s,
+ s->sm_lists[DETECT_SM_LIST_DNP3_DATA_MATCH], f, tx->request_buffer,
+ tx->request_buffer_len, 0, 0, NULL);
+ }
+ else if (flags & STREAM_TOCLIENT && tx->response_buffer != NULL) {
+ r = DetectEngineContentInspection(de_ctx, det_ctx, s,
+ s->sm_lists[DETECT_SM_LIST_DNP3_DATA_MATCH], f, tx->response_buffer,
+ tx->response_buffer_len, 0, 0, NULL);
+ }
+
+ SCReturnInt(r);
+}
+
+static int DetectEngineInspectDNP3(ThreadVars *tv, DetectEngineCtx *de_ctx,
+ DetectEngineThreadCtx *det_ctx, Signature *s, Flow *f, uint8_t flags,
+ void *alstate, void *txv, uint64_t tx_id)
+{
+ return DetectEngineInspectGenericList(tv, de_ctx, det_ctx, s, f, flags,
+ alstate, txv, tx_id, DETECT_SM_LIST_DNP3_MATCH);
+}
+
+/**
+ * \brief Parse the provided function name or code to its integer
+ * value.
+ *
+ * If the value passed is a number, it will be checked that it falls
+ * within the range of valid function codes. If function name is
+ * passed it will be resolved to its function code.
+ *
+ * \retval The function code as an integer if successul, -1 on
+ * failure.
+ */
+static int DetectDNP3FuncParseFunctionCode(char *str, uint8_t *fc)
+{
+ if (ByteExtractStringUint8(fc, 10, strlen(str), str) >= 0) {
+ return 1;
+ }
+ else {
+ /* Lookup by name. */
+ for (size_t i = 0;
+ i < sizeof(DNP3FunctionNameMap) / sizeof(DNP3Mapping); i++) {
+ if (strcasecmp(str, DNP3FunctionNameMap[i].name) == 0) {
+ *fc = DNP3FunctionNameMap[i].value;
+ return 1;
+ }
+ }
+ }
+
+ return 0;
+}
+
+static int DetectDNP3FuncSetup(DetectEngineCtx *de_ctx, Signature *s, char *str)
+{
+ SCEnter();
+ DetectDNP3 *dnp3 = NULL;
+ SigMatch *sm = NULL;
+ uint8_t function_code;
+
+ if (!DetectDNP3FuncParseFunctionCode(str, &function_code)) {
+ SCLogError(SC_ERR_INVALID_SIGNATURE,
+ "Invalid argument \"%s\" supplied to dnp3_func keyword.", str);
+ return -1;
+ }
+
+ dnp3 = SCCalloc(1, sizeof(DetectDNP3));
+ if (unlikely(dnp3 == NULL)) {
+ goto error;
+ }
+ dnp3->detect_type = DNP3_DETECT_TYPE_FC;
+ dnp3->function_code = function_code;
+
+ sm = SigMatchAlloc();
+ if (sm == NULL) {
+ goto error;
+ }
+ sm->type = DETECT_AL_DNP3FUNC;
+ sm->ctx = (void *)dnp3;
+ s->alproto = ALPROTO_DNP3;
+ s->flags |= SIG_FLAG_STATE_MATCH;
+
+ SigMatchAppendSMToList(s, sm, DETECT_SM_LIST_DNP3_MATCH);
+
+ SCReturnInt(0);
+error:
+ if (dnp3 != NULL) {
+ SCFree(dnp3);
+ }
+ if (sm != NULL) {
+ SCFree(sm);
+ }
+ SCReturnInt(-1);
+}
+
+static int DetectDNP3IndParseByName(char *str, uint16_t *flags)
+{
+ char tmp[strlen(str) + 1];
+ char *p, *last = NULL;
+
+ strlcpy(tmp, str, sizeof(tmp));
+
+ for ((p = strtok_r(tmp, ",", &last)); p; (p = strtok_r(NULL, ",", &last))) {
+ p = TrimString(p);
+ int found = 0;
+ int i = 0;
+ while (DNP3IndicatorsMap[i].name != NULL) {
+ if (strcasecmp(p, DNP3IndicatorsMap[i].name) == 0) {
+ *flags |= DNP3IndicatorsMap[i].value;
+ found = 1;
+ break;
+ }
+ i++;
+ }
+
+ if (!found) {
+ SCLogError(SC_ERR_INVALID_SIGNATURE,
+ "Bad argument \"%s\" supplied to dnp3.ind keyword.", p);
+ return 0;
+ }
+ }
+
+ return 1;
+}
+
+static int DetectDNP3IndParse(char *str, uint16_t *flags)
+{
+ *flags = 0;
+
+ if (ByteExtractStringUint16(flags, 0, strlen(str), str) > 0) {
+ return 1;
+ }
+
+ /* Parse by name - will log a more specific error message on error. */
+ if (DetectDNP3IndParseByName(str, flags)) {
+ return 1;
+ }
+
+ return 0;
+}
+
+static int DetectDNP3IndSetup(DetectEngineCtx *de_ctx, Signature *s, char *str)
+{
+ SCEnter();
+ DetectDNP3 *detect = NULL;
+ SigMatch *sm = NULL;
+ uint16_t flags;
+
+ if (!DetectDNP3IndParse(str, &flags)) {
+ SCLogError(SC_ERR_INVALID_SIGNATURE,
+ "Invalid argument \"%s\" supplied to dnp3.ind keyword.", str);
+ return -1;
+ }
+
+ detect = SCCalloc(1, sizeof(DetectDNP3));
+ if (unlikely(detect == NULL)) {
+ goto error;
+ }
+ detect->detect_type = DNP3_DETECT_TYPE_IND;
+ detect->ind_flags = flags;
+
+ sm = SigMatchAlloc();
+ if (sm == NULL) {
+ goto error;
+ }
+ sm->type = DETECT_AL_DNP3IND;
+ sm->ctx = (void *)detect;
+ s->alproto = ALPROTO_DNP3;
+ s->flags |= SIG_FLAG_STATE_MATCH;
+
+ SigMatchAppendSMToList(s, sm, DETECT_SM_LIST_DNP3_MATCH);
+
+ SCReturnInt(0);
+error:
+ if (detect != NULL) {
+ SCFree(detect);
+ }
+ if (sm != NULL) {
+ SCFree(sm);
+ }
+ SCReturnInt(-1);
+}
+
+/**
+ * \brief Parse the value of string of the dnp3_obj keyword.
+ *
+ * \param str the input string
+ * \param gout pointer to variable to store the parsed group integer
+ * \param vout pointer to variable to store the parsed variation integer
+ *
+ * \retval 1 if parsing successful otherwise 0.
+ */
+static int DetectDNP3ObjParse(const char *str, uint8_t *group, uint8_t *var)
+{
+ char *groupstr = NULL, *varstr, *sep;
+ int result = 0;
+
+ groupstr = SCStrdup(str);
+ if (unlikely(groupstr == NULL)) {
+ return 0;
+ }
+
+ sep = strchr(groupstr, ',');
+ if (sep == NULL) {
+ goto fail;
+ }
+ *sep = '\0';
+ varstr = sep + 1;
+
+ if (ByteExtractStringUint8(group, 0, strlen(groupstr), groupstr) < 0) {
+ goto fail;
+ }
+
+ if (ByteExtractStringUint8(var, 0, strlen(varstr), varstr) < 0) {
+ goto fail;
+ }
+
+ result = 1;
+fail:
+ if (groupstr == NULL) {
+ SCFree(groupstr);
+ }
+ return result;
+}
+
+static int DetectDNP3ObjSetup(DetectEngineCtx *de_ctx, Signature *s, char *str)
+{
+ SCEnter();
+ uint8_t group;
+ uint8_t variation;
+ DetectDNP3 *detect = NULL;
+ SigMatch *sm = NULL;
+
+ if (!DetectDNP3ObjParse(str, &group, &variation)) {
+ goto fail;
+ }
+
+ detect = SCCalloc(1, sizeof(*detect));
+ if (unlikely(detect == NULL)) {
+ goto fail;
+ }
+ detect->detect_type = DNP3_DETECT_TYPE_OBJ;
+ detect->obj_group = group;
+ detect->obj_variation = variation;
+
+ sm = SigMatchAlloc();
+ if (unlikely(sm == NULL)) {
+ goto fail;
+ }
+ sm->type = DETECT_AL_DNP3OBJ;
+ sm->ctx = (void *)detect;
+ s->alproto = ALPROTO_DNP3;
+ s->flags |= SIG_FLAG_STATE_MATCH;
+ SigMatchAppendSMToList(s, sm, DETECT_SM_LIST_DNP3_MATCH);
+
+ SCReturnInt(1);
+fail:
+ if (detect != NULL) {
+ SCFree(detect);
+ }
+ if (sm != NULL) {
+ SCFree(sm);
+ }
+ SCReturnInt(0);
+}
+
+static void DetectDNP3Free(void *ptr)
+{
+ SCEnter();
+ if (ptr != NULL) {
+ SCFree(ptr);
+ }
+ SCReturn;
+}
+
+static int DetectDNP3FuncMatch(ThreadVars *t, DetectEngineThreadCtx *det_ctx,
+ Flow *f, uint8_t flags, void *state, void *txv, const Signature *s,
+ const SigMatchCtx *ctx)
+{
+ DNP3Transaction *tx = (DNP3Transaction *)txv;
+ DetectDNP3 *detect = (DetectDNP3 *)ctx;
+ int match = 0;
+
+ if (flags & STREAM_TOSERVER) {
+ match = detect->function_code == tx->request_ah.function_code;
+ }
+ else if (flags & STREAM_TOCLIENT) {
+ match = detect->function_code == tx->response_ah.function_code;
+ }
+
+ return match;
+}
+
+static int DetectDNP3ObjMatch(ThreadVars *t, DetectEngineThreadCtx *det_ctx,
+ Flow *f, uint8_t flags, void *state, void *txv, const Signature *s,
+ const SigMatchCtx *ctx)
+{
+ DNP3Transaction *tx = (DNP3Transaction *)txv;
+ DetectDNP3 *detect = (DetectDNP3 *)ctx;
+ DNP3ObjectList *objects = NULL;
+
+ if (flags & STREAM_TOSERVER) {
+ objects = &tx->request_objects;
+ }
+ else if (flags & STREAM_TOCLIENT) {
+ objects = &tx->response_objects;
+ }
+
+ if (objects != NULL) {
+ DNP3Object *object;
+ TAILQ_FOREACH(object, objects, next) {
+ if (object->group == detect->obj_group &&
+ object->variation == detect->obj_variation) {
+ return 1;
+ }
+ }
+ }
+
+ return 0;
+}
+
+static int DetectDNP3IndMatch(ThreadVars *t, DetectEngineThreadCtx *det_ctx,
+ Flow *f, uint8_t flags, void *state, void *txv, const Signature *s,
+ const SigMatchCtx *ctx)
+{
+ DNP3Transaction *tx = (DNP3Transaction *)txv;
+ DetectDNP3 *detect = (DetectDNP3 *)ctx;
+
+ if (flags & STREAM_TOCLIENT) {
+ if ((tx->response_iin.iin1 & (detect->ind_flags >> 8)) ||
+ (tx->response_iin.iin2 & (detect->ind_flags & 0xf))) {
+ return 1;
+ }
+ }
+
+ return 0;
+}
+
+static void DetectDNP3FuncRegister(void)
+{
+ SCEnter();
+
+ sigmatch_table[DETECT_AL_DNP3FUNC].name = "dnp3.func";
+ sigmatch_table[DETECT_AL_DNP3FUNC].alias = "dnp3_func";
+ sigmatch_table[DETECT_AL_DNP3FUNC].Match = NULL;
+ sigmatch_table[DETECT_AL_DNP3FUNC].AppLayerMatch = NULL;
+ sigmatch_table[DETECT_AL_DNP3FUNC].Setup = DetectDNP3FuncSetup;
+ sigmatch_table[DETECT_AL_DNP3FUNC].Free = DetectDNP3Free;
+ sigmatch_table[DETECT_AL_DNP3FUNC].RegisterTests =
+ DetectDNP3FuncRegisterTests;
+
+ SCReturn;
+}
+
+static void DetectDNP3IndRegister(void)
+{
+ SCEnter();
+
+ sigmatch_table[DETECT_AL_DNP3IND].name = "dnp3.ind";
+ sigmatch_table[DETECT_AL_DNP3IND].alias = "dnp3_ind";
+ sigmatch_table[DETECT_AL_DNP3IND].Match = NULL;
+ sigmatch_table[DETECT_AL_DNP3IND].AppLayerMatch = NULL;
+ sigmatch_table[DETECT_AL_DNP3IND].Setup = DetectDNP3IndSetup;
+ sigmatch_table[DETECT_AL_DNP3IND].Free = DetectDNP3Free;
+ sigmatch_table[DETECT_AL_DNP3IND].RegisterTests =
+ DetectDNP3IndRegisterTests;
+
+ SCReturn;
+}
+
+static void DetectDNP3ObjRegister(void)
+{
+ SCEnter();
+
+ sigmatch_table[DETECT_AL_DNP3OBJ].name = "dnp3.obj";
+ sigmatch_table[DETECT_AL_DNP3OBJ].alias = "dnp3_obj";
+ sigmatch_table[DETECT_AL_DNP3OBJ].Match = NULL;
+ sigmatch_table[DETECT_AL_DNP3OBJ].AppLayerMatch = NULL;
+ sigmatch_table[DETECT_AL_DNP3OBJ].Setup = DetectDNP3ObjSetup;
+ sigmatch_table[DETECT_AL_DNP3OBJ].Free = DetectDNP3Free;
+ sigmatch_table[DETECT_AL_DNP3OBJ].RegisterTests =
+ DetectDNP3ObjRegisterTests;
+
+ SCReturn;
+}
+
+static int DetectDNP3DataSetup(DetectEngineCtx *de_ctx, Signature *s, char *str)
+{
+ SCEnter();
+ s->list = DETECT_SM_LIST_DNP3_DATA_MATCH;
+ s->alproto = ALPROTO_DNP3;
+ SCReturnInt(0);
+}
+
+static void DetectDNP3DataRegister(void)
+{
+ SCEnter();
+
+ sigmatch_table[DETECT_AL_DNP3DATA].name = "dnp3_data";
+ sigmatch_table[DETECT_AL_DNP3DATA].Match = NULL;
+ sigmatch_table[DETECT_AL_DNP3DATA].AppLayerMatch = NULL;
+ sigmatch_table[DETECT_AL_DNP3DATA].Setup = DetectDNP3DataSetup;
+ sigmatch_table[DETECT_AL_DNP3DATA].Free = NULL;
+ sigmatch_table[DETECT_AL_DNP3DATA].RegisterTests =
+ DetectDNP3DataRegisterTests;
+
+ sigmatch_table[DETECT_AL_DNP3DATA].flags |= SIGMATCH_NOOPT;
+ sigmatch_table[DETECT_AL_DNP3DATA].flags |= SIGMATCH_PAYLOAD;
+
+ DetectAppLayerInspectEngineRegister(ALPROTO_DNP3, SIG_FLAG_TOSERVER,
+ DETECT_SM_LIST_DNP3_DATA_MATCH, DetectEngineInspectDNP3Data);
+ DetectAppLayerInspectEngineRegister(ALPROTO_DNP3, SIG_FLAG_TOCLIENT,
+ DETECT_SM_LIST_DNP3_DATA_MATCH, DetectEngineInspectDNP3Data);
+
+ SCReturn;
+}
+
+void DetectDNP3Register(void)
+{
+ DetectDNP3DataRegister();
+
+ DetectDNP3FuncRegister();
+ DetectDNP3IndRegister();
+ DetectDNP3ObjRegister();
+
+ /* Register the list of func, ind and obj. */
+ DetectAppLayerInspectEngineRegister(ALPROTO_DNP3, SIG_FLAG_TOSERVER,
+ DETECT_SM_LIST_DNP3_MATCH, DetectEngineInspectDNP3);
+ DetectAppLayerInspectEngineRegister(ALPROTO_DNP3, SIG_FLAG_TOCLIENT,
+ DETECT_SM_LIST_DNP3_MATCH, DetectEngineInspectDNP3);
+}
+
+#ifdef UNITTESTS
+
+#include "util-unittest.h"
+#include "util-unittest-helper.h"
+#include "app-layer-parser.h"
+#include "detect-engine.h"
+#include "flow-util.h"
+#include "stream-tcp.h"
+
+static int DetectDNP3FuncParseFunctionCodeTest(void)
+{
+ uint8_t fc;
+
+ /* Valid. */
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("0", &fc));
+ FAIL_IF(fc != 0);
+
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("1", &fc));
+ FAIL_IF(fc != 1);
+
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("254", &fc));
+ FAIL_IF(fc != 254);
+
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("255", &fc));
+ FAIL_IF(fc != 255);
+
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("confirm", &fc));
+ FAIL_IF(fc != 0);
+
+ FAIL_IF_NOT(DetectDNP3FuncParseFunctionCode("CONFIRM", &fc));
+ FAIL_IF(fc != 0);
+
+ /* Invalid. */
+ FAIL_IF(DetectDNP3FuncParseFunctionCode("", &fc));
+ FAIL_IF(DetectDNP3FuncParseFunctionCode("-1", &fc));
+ FAIL_IF(DetectDNP3FuncParseFunctionCode("-2", &fc));
+ FAIL_IF(DetectDNP3FuncParseFunctionCode("256", &fc));
+ FAIL_IF(DetectDNP3FuncParseFunctionCode("unknown_function_code", &fc));
+
+ PASS;
+}
+
+static int DetectDNP3FuncTest01(void)
+{
+ DetectEngineCtx *de_ctx = NULL;
+ DetectDNP3 *dnp3func = NULL;
+
+ de_ctx = DetectEngineCtxInit();
+ FAIL_IF_NULL(de_ctx);
+
+ de_ctx->sig_list = SigInit(de_ctx,
+ "alert dnp3 any any -> any any "
+ "(msg:\"SURICATA DNP3 Write request\"; "
+ "dnp3_func:2; sid:5000009; rev:1;)");
+ FAIL_IF_NULL(de_ctx->sig_list);
+
+ FAIL_IF_NULL(de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH]);
+ FAIL_IF_NULL(de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH]->ctx);
+
+ dnp3func = (DetectDNP3 *)de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH]->ctx;
+ FAIL_IF(dnp3func->function_code != 2);
+
+ if (de_ctx != NULL) {
+ DetectEngineCtxFree(de_ctx);
+ }
+ PASS;
+}
+
+static int DetectDNP3IndTestParseAsInteger(void)
+{
+ uint16_t flags = 0;
+
+ FAIL_IF(!DetectDNP3IndParse("0", &flags));
+ FAIL_IF(flags != 0);
+ FAIL_IF(!DetectDNP3IndParse("1", &flags));
+ FAIL_IF(flags != 0x0001);
+
+ FAIL_IF(!DetectDNP3IndParse("0x0", &flags));
+ FAIL_IF(flags != 0);
+ FAIL_IF(!DetectDNP3IndParse("0x0000", &flags));
+ FAIL_IF(flags != 0);
+ FAIL_IF(!DetectDNP3IndParse("0x0001", &flags));
+ FAIL_IF(flags != 0x0001);
+
+ FAIL_IF(!DetectDNP3IndParse("0x8421", &flags));
+ FAIL_IF(flags != 0x8421);
+
+ FAIL_IF(DetectDNP3IndParse("a", &flags));
+
+ PASS;
+}
+
+static int DetectDNP3IndTestParseByName(void)
+{
+ uint16_t flags = 0;
+
+ FAIL_IF(!DetectDNP3IndParse("all_stations", &flags));
+ FAIL_IF(!(flags & 0x0100));
+ FAIL_IF(!DetectDNP3IndParse("class_1_events , class_2_events", &flags));
+ FAIL_IF(!(flags & 0x0200));
+ FAIL_IF(!(flags & 0x0400));
+ FAIL_IF((flags & 0xf9ff));
+
+ FAIL_IF(DetectDNP3IndParse("something", &flags));
+
+ PASS;
+}
+
+static int DetectDNP3ObjSetupTest(void)
+{
+ DetectEngineCtx *de_ctx = NULL;
+ DetectDNP3 *detect = NULL;
+
+ de_ctx = DetectEngineCtxInit();
+ FAIL_IF(de_ctx == NULL);
+
+ de_ctx->sig_list = SigInit(de_ctx,
+ "alert dnp3 any any -> any any "
+ "(msg:\"SURICATA DNP3 Object Test\"; "
+ "dnp3_obj:99,99; sid:1; rev:1;)");
+ FAIL_IF(de_ctx->sig_list == NULL);
+
+ FAIL_IF(de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH] == NULL);
+ FAIL_IF(de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH]->ctx == NULL);
+
+ detect = (DetectDNP3 *)de_ctx->sig_list->sm_lists_tail[DETECT_SM_LIST_DNP3_MATCH]->ctx;
+ FAIL_IF(detect->obj_group != 99);
+ FAIL_IF(detect->obj_variation != 99);
+
+ if (de_ctx != NULL) {
+ DetectEngineCtxFree(de_ctx);
+ }
+ PASS;
+}
+
+static int DetectDNP3ObjParseTest(void)
+{
+ uint8_t group, var;
+
+ FAIL_IF(!DetectDNP3ObjParse("0,0", &group, &var));
+ FAIL_IF(group != 0 || var != 0);
+
+ FAIL_IF(!DetectDNP3ObjParse("255,255", &group, &var));
+ FAIL_IF(group != 255 || var != 255);
+
+ FAIL_IF(DetectDNP3ObjParse("-1,-1", &group, &var));
+ FAIL_IF(DetectDNP3ObjParse("256,256", &group, &var));
+ FAIL_IF(DetectDNP3ObjParse("a,1", &group, &var));
+ FAIL_IF(DetectDNP3ObjParse("1,a", &group, &var));
+
+ PASS;
+}
+
+/**
+ * Test request (to server) content match.
+ */
+static int DetectDNP3DataTest01(void)
+{
+ AppLayerParserThreadCtx *alp_tctx = AppLayerParserThreadCtxAlloc();
+ DetectEngineThreadCtx *det_ctx = NULL;
+ DetectEngineCtx *de_ctx = NULL;
+ Flow f;
+ Packet *p;
+ TcpSession tcp;
+ ThreadVars tv;
+
+ uint8_t request[] = {
+ 0x05, 0x64, 0x1a, 0xc4, 0x02, 0x00, 0x01, 0x00,
+ 0xa5, 0xe9,
+
+ 0xff, 0xc9, 0x05, 0x0c, 0x01, 0x28, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00,
+
+ /* CRC. */
+ 0x72, 0xef,
+
+ 0x00, 0x00, 0x00, 0x00, 0x00,
+
+ /* CRC. */
+ 0xff, 0xff,
+ };
+
+ /* Setup flow. */
+ memset(&f, 0, sizeof(Flow));
+ memset(&tcp, 0, sizeof(TcpSession));
+ memset(&tv, 0, sizeof(ThreadVars));
+ p = UTHBuildPacket(request, sizeof(request), IPPROTO_TCP);
+ FLOW_INITIALIZE(&f);
+ f.alproto = ALPROTO_DNP3;
+ f.protoctx = (void *)&tcp;
+ f.proto = IPPROTO_TCP;
+ f.flags |= FLOW_IPV4;
+ p->flow = &f;
+ p->flags |= PKT_HAS_FLOW | PKT_STREAM_EST;
+ p->flowflags |= FLOW_PKT_TOSERVER | FLOW_PKT_ESTABLISHED;
+ StreamTcpInitConfig(TRUE);
+
+ de_ctx = DetectEngineCtxInit();
+ FAIL_IF(de_ctx == NULL);
+
+ /* Either direction - should match. */
+ Signature *s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00 00 00 00|\"; "
+ "sid:1; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* To server - should match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "flow:established,to_server; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00 00 00 00|\"; "
+ "sid:2; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* To client - should not match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "flow:established,to_client; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00 00 00 00|\"; "
+ "sid:3; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* The content of a CRC - should not match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "dnp3_data; "
+ "content:\"|72 ef|\"; "
+ "sid:4; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ SigGroupBuild(de_ctx);
+ DetectEngineThreadCtxInit(&tv, (void *)de_ctx, (void *)&det_ctx);
+
+ SCMutexLock(&f.m);
+ int r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_DNP3,
+ STREAM_TOSERVER, request, sizeof(request));
+ SCMutexUnlock(&f.m);
+ FAIL_IF(r);
+
+ FAIL_IF(f.alstate == NULL);
+
+ SigMatchSignatures(&tv, de_ctx, det_ctx, p);
+ FAIL_IF(!PacketAlertCheck(p, 1));
+ FAIL_IF(!PacketAlertCheck(p, 2));
+ FAIL_IF(PacketAlertCheck(p, 3));
+ FAIL_IF(PacketAlertCheck(p, 4));
+
+ if (alp_tctx != NULL)
+ AppLayerParserThreadCtxFree(alp_tctx);
+ if (det_ctx != NULL)
+ DetectEngineThreadCtxDeinit(&tv, det_ctx);
+ if (de_ctx != NULL)
+ SigGroupCleanup(de_ctx);
+ if (de_ctx != NULL)
+ DetectEngineCtxFree(de_ctx);
+ StreamTcpFreeConfig(TRUE);
+ FLOW_DESTROY(&f);
+ UTHFreePacket(p);
+ PASS;
+}
+
+/**
+ * Test response (to client) content match.
+ */
+static int DetectDNP3DataTest02(void)
+{
+ AppLayerParserThreadCtx *alp_tctx = AppLayerParserThreadCtxAlloc();
+ DetectEngineThreadCtx *det_ctx = NULL;
+ DetectEngineCtx *de_ctx = NULL;
+ Flow f;
+ Packet *p;
+ TcpSession tcp;
+ ThreadVars tv;
+
+ uint8_t request[] = {
+ /* Link header. */
+ 0x05, 0x64, 0x1a, 0xc4, 0x02, 0x00, 0x01, 0x00,
+
+ /* CRC. */
+ 0xa5, 0xe9,
+
+ /* Transport header. */
+ 0xff,
+
+ /* Application layer. */
+ 0xc9, 0x05, 0x0c, 0x01, 0x28, 0x01, 0x00, 0x00,
+ 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00,
+
+ /* CRC. */
+ 0x72, 0xef,
+
+ /* Application layer. */
+ 0x00, 0x00, 0x00, 0x00, 0x00,
+
+ /* CRC. */
+ 0xff, 0xff,
+ };
+
+ uint8_t response[] = {
+ /* Link header. */
+ 0x05, 0x64, 0x1c, 0x44, 0x01, 0x00, 0x02, 0x00,
+
+ /* CRC. */
+ 0xe2, 0x59,
+
+ /* Transport header. */
+ 0xc3,
+
+ /* Application layyer. */
+ 0xc9, 0x81, 0x00, 0x00, 0x0c, 0x01, 0x28, 0x01,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00,
+
+ /* CRC. */
+ 0x7a, 0x65,
+
+ /* Application layer. */
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
+ /* CRC. */
+ 0xff, 0xff
+ };
+
+ /* Setup flow. */
+ memset(&f, 0, sizeof(Flow));
+ memset(&tcp, 0, sizeof(TcpSession));
+ memset(&tv, 0, sizeof(ThreadVars));
+ p = UTHBuildPacket(response, sizeof(response), IPPROTO_TCP);
+ FLOW_INITIALIZE(&f);
+ f.alproto = ALPROTO_DNP3;
+ f.protoctx = (void *)&tcp;
+ f.proto = IPPROTO_TCP;
+ f.flags |= FLOW_IPV4;
+ p->flow = &f;
+ p->flags |= PKT_HAS_FLOW | PKT_STREAM_EST;
+ p->flowflags |= FLOW_PKT_TOCLIENT | FLOW_PKT_ESTABLISHED;
+ StreamTcpInitConfig(TRUE);
+
+ de_ctx = DetectEngineCtxInit();
+ FAIL_IF(de_ctx == NULL);
+
+ /* Either direction - should match. */
+ Signature *s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00|\"; "
+ "sid:1; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* To server - should not match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "flow:established,to_server; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00|\"; "
+ "sid:2; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* To client - should match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "flow:established,to_client; "
+ "dnp3_data; "
+ "content:\"|01 01 01 00 00 00 00|\"; "
+ "sid:3; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ /* The content of a CRC - should not match. */
+ s = DetectEngineAppendSig(de_ctx,
+ "alert dnp3 any any -> any any ("
+ "msg:\"DetectDNP3DataTest01\"; "
+ "dnp3_data; "
+ "content:\"|7a 65|\"; "
+ "sid:4; rev:1;)");
+ FAIL_IF(s == NULL);
+
+ SigGroupBuild(de_ctx);
+ DetectEngineThreadCtxInit(&tv, (void *)de_ctx, (void *)&det_ctx);
+
+ /* Send through the request, then response. */
+ SCMutexLock(&f.m);
+ int r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_DNP3,
+ STREAM_TOSERVER, request, sizeof(request));
+ SCMutexUnlock(&f.m);
+ FAIL_IF(r);
+ FAIL_IF(f.alstate == NULL);
+
+ SCMutexLock(&f.m);
+ r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_DNP3, STREAM_TOCLIENT,
+ response, sizeof(response));
+ SCMutexUnlock(&f.m);
+ FAIL_IF(r);
+
+ SigMatchSignatures(&tv, de_ctx, det_ctx, p);
+ FAIL_IF(!PacketAlertCheck(p, 1));
+ FAIL_IF(PacketAlertCheck(p, 2));
+ FAIL_IF(!PacketAlertCheck(p, 3));
+ FAIL_IF(PacketAlertCheck(p, 4));
+
+ if (alp_tctx != NULL)
+ AppLayerParserThreadCtxFree(alp_tctx);
+ if (det_ctx != NULL)
+ DetectEngineThreadCtxDeinit(&tv, det_ctx);
+ if (de_ctx != NULL)
+ SigGroupCleanup(de_ctx);
+ if (de_ctx != NULL)
+ DetectEngineCtxFree(de_ctx);
+ StreamTcpFreeConfig(TRUE);
+ FLOW_DESTROY(&f);
+ UTHFreePacket(p);
+ PASS;
+}
+
+#endif
+
+static void DetectDNP3FuncRegisterTests(void)
+{
+#ifdef UNITTESTS
+ UtRegisterTest("DetectDNP3FuncParseFunctionCodeTest",
+ DetectDNP3FuncParseFunctionCodeTest);
+ UtRegisterTest("DetectDNP3FuncTest01", DetectDNP3FuncTest01);
+#endif
+}
+
+static void DetectDNP3IndRegisterTests(void)
+{
+#ifdef UNITTESTS
+ UtRegisterTest("DetectDNP3IndTestParseAsInteger",
+ DetectDNP3IndTestParseAsInteger);
+ UtRegisterTest("DetectDNP3IndTestParseByName",
+ DetectDNP3IndTestParseByName);
+#endif
+}
+
+static void DetectDNP3ObjRegisterTests(void)
+{
+#ifdef UNITTESTS
+ UtRegisterTest("DetectDNP3ObjParseTest", DetectDNP3ObjParseTest);
+ UtRegisterTest("DetectDNP3ObjSetupTest", DetectDNP3ObjSetupTest);
+#endif
+}
+
+void DetectDNP3DataRegisterTests(void)
+{
+#ifdef UNITTESTS
+ UtRegisterTest("DetectDNP3DataTest01", DetectDNP3DataTest01);
+ UtRegisterTest("DetectDNP3DataTest02", DetectDNP3DataTest02);
+#endif
+}