suricata
detect-mqtt-connect-willmessage.c
Go to the documentation of this file.
1 /* Copyright (C) 2020 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  *
20  * \author Sascha Steinbiss <sascha@steinbiss.name>
21  *
22  * Implements the mqtt.connect.willmessage sticky buffer
23  */
24 
25 #include "suricata-common.h"
26 #include "detect.h"
27 #include "detect-parse.h"
28 #include "detect-engine.h"
29 #include "detect-engine-mpm.h"
32 #include "rust.h"
33 
34 #define KEYWORD_NAME "mqtt.connect.willmessage"
35 #define KEYWORD_DOC "mqtt-keywords.html#mqtt-connect-willmessage"
36 #define BUFFER_NAME "mqtt.connect.willmessage"
37 #define BUFFER_DESC "MQTT CONNECT will message"
38 static int g_buffer_id = 0;
39 
40 static int DetectMQTTConnectWillMessageSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg)
41 {
42  if (DetectBufferSetActiveList(de_ctx, s, g_buffer_id) < 0)
43  return -1;
44 
46  return -1;
47 
48  return 0;
49 }
50 
51 static InspectionBuffer *GetData(DetectEngineThreadCtx *det_ctx,
52  const DetectEngineTransforms *transforms,
53  Flow *_f, const uint8_t _flow_flags,
54  void *txv, const int list_id)
55 {
56  InspectionBuffer *buffer = InspectionBufferGet(det_ctx, list_id);
57  if (buffer->inspect == NULL) {
58  const uint8_t *b = NULL;
59  uint32_t b_len = 0;
60 
61  if (rs_mqtt_tx_get_connect_willmessage(txv, &b, &b_len) != 1)
62  return NULL;
63  if (b == NULL || b_len == 0)
64  return NULL;
65 
66  InspectionBufferSetup(det_ctx, list_id, buffer, b, b_len);
67  InspectionBufferApplyTransforms(buffer, transforms);
68  }
69  return buffer;
70 }
71 
73 {
74  /* mqtt.connect.willmessage sticky buffer */
76  sigmatch_table[DETECT_AL_MQTT_CONNECT_WILLMESSAGE].desc = "sticky buffer to match on the MQTT CONNECT will message";
78  sigmatch_table[DETECT_AL_MQTT_CONNECT_WILLMESSAGE].Setup = DetectMQTTConnectWillMessageSetup;
80 
83 
85  GetData, ALPROTO_MQTT, 1);
86 
88 
90 
91  SCLogDebug("registering " BUFFER_NAME " rule option");
92 }
SigTableElmt_::url
const char * url
Definition: detect.h:1296
DetectSignatureSetAppProto
int DetectSignatureSetAppProto(Signature *s, AppProto alproto)
Definition: detect-parse.c:1753
detect-engine.h
SigTableElmt_::desc
const char * desc
Definition: detect.h:1295
DetectEngineInspectBufferGeneric
uint8_t DetectEngineInspectBufferGeneric(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags, void *alstate, void *txv, uint64_t tx_id)
Do the content inspection & validation for a signature.
Definition: detect-engine.c:2169
SigTableElmt_::name
const char * name
Definition: detect.h:1293
DetectEngineTransforms
Definition: detect.h:406
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
DetectBufferSetActiveList
int DetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
Definition: detect-engine.c:1382
InspectionBuffer
Definition: detect.h:371
Flow_
Flow data structure.
Definition: flow.h:350
SigTableElmt_::flags
uint16_t flags
Definition: detect.h:1287
KEYWORD_NAME
#define KEYWORD_NAME
Definition: detect-mqtt-connect-willmessage.c:34
DetectEngineCtx_
main detection engine ctx
Definition: detect.h:836
rust.h
SigTableElmt_::Setup
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition: detect.h:1278
BUFFER_NAME
#define BUFFER_NAME
Definition: detect-mqtt-connect-willmessage.c:36
detect-engine-prefilter.h
InspectionBufferGet
InspectionBuffer * InspectionBufferGet(DetectEngineThreadCtx *det_ctx, const int list_id)
Definition: detect-engine.c:1526
DetectMQTTConnectWillMessageRegister
void DetectMQTTConnectWillMessageRegister(void)
Definition: detect-mqtt-connect-willmessage.c:72
DetectBufferTypeGetByName
int DetectBufferTypeGetByName(const char *name)
Definition: detect-engine.c:1119
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:263
de_ctx
DetectEngineCtx * de_ctx
Definition: fuzz_siginit.c:17
DETECT_AL_MQTT_CONNECT_WILLMESSAGE
@ DETECT_AL_MQTT_CONNECT_WILLMESSAGE
Definition: detect-engine-register.h:311
DetectEngineThreadCtx_
Definition: detect.h:1092
detect-engine-mpm.h
detect.h
PrefilterGenericMpmRegister
int PrefilterGenericMpmRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh, MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
Definition: detect-engine-prefilter.c:745
DetectAppLayerMpmRegister
void DetectAppLayerMpmRegister(const char *name, int direction, int priority, PrefilterRegisterFunc PrefilterRegister, InspectionBufferGetDataPtr GetData, AppProto alproto, int tx_min_progress)
register a MPM engine
Definition: detect-engine-mpm.c:89
detect-mqtt-connect-willmessage.h
BUFFER_DESC
#define BUFFER_DESC
Definition: detect-mqtt-connect-willmessage.c:37
suricata-common.h
KEYWORD_DOC
#define KEYWORD_DOC
Definition: detect-mqtt-connect-willmessage.c:35
InspectionBufferApplyTransforms
void InspectionBufferApplyTransforms(InspectionBuffer *buffer, const DetectEngineTransforms *transforms)
Definition: detect-engine.c:1725
sigmatch_table
SigTableElmt sigmatch_table[DETECT_TBLSIZE]
Definition: detect-parse.c:127
InspectionBuffer::inspect
const uint8_t * inspect
Definition: detect.h:372
InspectionBufferSetup
void InspectionBufferSetup(DetectEngineThreadCtx *det_ctx, const int list_id, InspectionBuffer *buffer, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
Definition: detect-engine.c:1621
detect-parse.h
Signature_
Signature container.
Definition: detect.h:593
ALPROTO_MQTT
@ ALPROTO_MQTT
Definition: app-layer-protos.h:56
SIGMATCH_NOOPT
#define SIGMATCH_NOOPT
Definition: detect.h:1473
DetectAppLayerInspectEngineRegister
void DetectAppLayerInspectEngineRegister(const char *name, AppProto alproto, uint32_t dir, int progress, InspectEngineFuncPtr Callback, InspectionBufferGetDataPtr GetData)
register inspect engine at start up time
Definition: detect-engine.c:216
DetectBufferTypeSetDescriptionByName
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
Definition: detect-engine.c:1216