Skip to content

Commit

Permalink
dhcp: adds leasetime keyword
Browse files Browse the repository at this point in the history
Ticket: OISF#5435
  • Loading branch information
catenacyber committed Jul 4, 2022
1 parent a2f857e commit 072fb56
Show file tree
Hide file tree
Showing 9 changed files with 195 additions and 0 deletions.
21 changes: 21 additions & 0 deletions doc/userguide/rules/dhcp-keywords.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
DHCP keywords
=============

dhcp.leasetime
--------------

DHCP lease time (integer).

Syntax::

dhcp.leasetime:[op]<number>

The version can be matched exactly, or compared using the _op_ setting::

dhcp.leasetime:3 # exactly 3
dhcp.leasetime:<3 # smaller than 3
dhcp.leasetime:>=2 # greater or equal than 2

Signature example::

alert dhcp any any -> any any (msg:"small DHCP lease time (<3)"; dhcp.leasetime:<3; sid:1; rev:1;)
1 change: 1 addition & 0 deletions doc/userguide/rules/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Suricata Rules
ja3-keywords
modbus-keyword
dcerpc-keywords
dhcp-keywords
dnp3-keywords
enip-keyword
ftp-keywords
Expand Down
1 change: 1 addition & 0 deletions doc/userguide/rules/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ you can pick from. These are:
* smb
* dns
* dcerpc
* dhcp
* ssh
* smtp
* imap
Expand Down
1 change: 1 addition & 0 deletions rust/src/dhcp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@
pub mod dhcp;
pub mod parser;
pub mod logger;
pub mod detect;
2 changes: 2 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ noinst_HEADERS = \
detect-snmp-pdu_type.h \
detect-snmp-usm.h \
detect-snmp-version.h \
detect-dhcp-leasetime.h \
detect-ssh-hassh.h \
detect-ssh-hassh-server.h \
detect-ssh-hassh-server-string.h \
Expand Down Expand Up @@ -893,6 +894,7 @@ libsuricata_c_a_SOURCES = \
detect-snmp-pdu_type.c \
detect-snmp-usm.c \
detect-snmp-version.c \
detect-dhcp-leasetime.c \
detect-ssh-hassh.c \
detect-ssh-hassh-server.c \
detect-ssh-hassh-server-string.c \
Expand Down
143 changes: 143 additions & 0 deletions src/detect-dhcp-leasetime.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
/* Copyright (C) 2022 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License leasetime 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
* leasetime 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 "rust.h"
#include "detect-dhcp-leasetime.h"
#include "detect-engine.h"
#include "detect-engine-mpm.h"
#include "detect-engine-prefilter.h"
#include "detect-engine-uint.h"
#include "detect-parse.h"

static int g_buffer_id = 0;

static uint8_t DetectEngineInspectDHCPRequestGeneric(DetectEngineCtx *de_ctx,
DetectEngineThreadCtx *det_ctx, const struct DetectEngineAppInspectionEngine_ *engine,
const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
{
return DetectEngineInspectGenericList(
de_ctx, det_ctx, s, engine->smd, f, flags, alstate, txv, tx_id);
}

/**
* \internal
* \brief Function to match leasetime of a TX
*
* \param t Pointer to thread vars.
* \param det_ctx Pointer to the pattern matcher thread.
* \param f Pointer to the current flow.
* \param flags Flags.
* \param state App layer state.
* \param s Pointer to the Signature.
* \param m Pointer to the sigmatch that we will cast into
* DetectU64Data.
*
* \retval 0 no match.
* \retval 1 match.
*/
static int DetectDHCPLeaseTimeMatch(DetectEngineThreadCtx *det_ctx, Flow *f, uint8_t flags,
void *state, void *txv, const Signature *s, const SigMatchCtx *ctx)
{
SCEnter();

uint64_t leasetime;
if (rs_dhcp_tx_get_leasetime(txv, &leasetime)) {
const DetectU64Data *dd = (const DetectU64Data *)ctx;
SCLogDebug("leasetime %u mode %u ref_leasetime %d", leasetime, dd->mode, dd->arg1);
if (DetectU64Match(leasetime, dd)) {
SCReturnInt(1);
}
}
SCReturnInt(0);
}

/**
* \internal
* \brief Function to free memory associated with DetectU64Data.
*
* \param de_ptr Pointer to DetectU64Data.
*/
static void DetectDHCPLeaseTimeFree(DetectEngineCtx *de_ctx, void *ptr)
{
rs_detect_u64_free(ptr);
}

/**
* \brief Function to add the parsed dhcp leasetime field 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 flags options.
* \param type Defines if this is notBefore or notAfter.
*
* \retval 0 on Success.
* \retval -1 on Failure.
*/
static int DetectDHCPLeaseTimeSetup(DetectEngineCtx *de_ctx, Signature *s, const char *rawstr)
{
DetectU64Data *dd = NULL;
SigMatch *sm = NULL;

if (DetectSignatureSetAppProto(s, ALPROTO_DHCP) != 0)
return -1;

dd = DetectU64Parse(rawstr);
if (dd == NULL) {
SCLogError(SC_ERR_INVALID_ARGUMENT, "Parsing \'%s\' failed", rawstr);
goto error;
}

/* okay so far so good, lets get this into a SigMatch
* and put it in the Signature. */
sm = SigMatchAlloc();
if (sm == NULL)
goto error;

sm->type = DETECT_AL_DHCP_LEASETIME;
sm->ctx = (void *)dd;

SCLogDebug("dhcp.leasetime %d", dd->arg1);
SigMatchAppendSMToList(s, sm, g_buffer_id);
return 0;

error:
DetectDHCPLeaseTimeFree(de_ctx, dd);
return -1;
}

/**
* \brief Registration function for dhcp.procedure keyword.
*/
void DetectDHCPLeaseTimeRegister(void)
{
sigmatch_table[DETECT_AL_DHCP_LEASETIME].name = "dhcp.leasetime";
sigmatch_table[DETECT_AL_DHCP_LEASETIME].desc = "match DHCP leasetime";
sigmatch_table[DETECT_AL_DHCP_LEASETIME].url = "/rules/dhcp-keywords.html#dhcp-leasetime";
sigmatch_table[DETECT_AL_DHCP_LEASETIME].Match = NULL;
sigmatch_table[DETECT_AL_DHCP_LEASETIME].AppLayerTxMatch = DetectDHCPLeaseTimeMatch;
sigmatch_table[DETECT_AL_DHCP_LEASETIME].Setup = DetectDHCPLeaseTimeSetup;
sigmatch_table[DETECT_AL_DHCP_LEASETIME].Free = DetectDHCPLeaseTimeFree;

DetectAppLayerInspectEngineRegister2("dhcp.leasetime", ALPROTO_DHCP, SIG_FLAG_TOSERVER, 0,
DetectEngineInspectDHCPRequestGeneric, NULL);

DetectAppLayerInspectEngineRegister2("dhcp.leasetime", ALPROTO_DHCP, SIG_FLAG_TOCLIENT, 0,
DetectEngineInspectDHCPRequestGeneric, NULL);

g_buffer_id = DetectBufferTypeGetByName("dhcp.leasetime");
}
23 changes: 23 additions & 0 deletions src/detect-dhcp-leasetime.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* Copyright (C) 2022 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.
*/

#ifndef __DETECT_DHCP_LEASETIME_H__
#define __DETECT_DHCP_LEASETIME_H__

void DetectDHCPLeaseTimeRegister(void);

#endif /* __DETECT_DHCP_LEASETIME_H__ */
2 changes: 2 additions & 0 deletions src/detect-engine-register.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
#include "detect-rfb-name.h"
#include "detect-target.h"
#include "detect-template-rust-buffer.h"
#include "detect-dhcp-leasetime.h"
#include "detect-snmp-usm.h"
#include "detect-snmp-version.h"
#include "detect-snmp-community.h"
Expand Down Expand Up @@ -634,6 +635,7 @@ void SigTableSetup(void)
DetectRfbNameRegister();
DetectTargetRegister();
DetectTemplateRustBufferRegister();
DetectDHCPLeaseTimeRegister();
DetectSNMPUsmRegister();
DetectSNMPVersionRegister();
DetectSNMPCommunityRegister();
Expand Down
1 change: 1 addition & 0 deletions src/detect-engine-register.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ enum DetectKeywordId {
DETECT_FTPDATA,
DETECT_TARGET,
DETECT_AL_TEMPLATE_RUST_BUFFER,
DETECT_AL_DHCP_LEASETIME,
DETECT_AL_SNMP_USM,
DETECT_AL_SNMP_VERSION,
DETECT_AL_SNMP_COMMUNITY,
Expand Down

0 comments on commit 072fb56

Please sign in to comment.