suricata
output-json-mqtt.c
Go to the documentation of this file.
1 /* Copyright (C) 2020-2021 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  * \file
20  *
21  * \author Sascha Steinbiss <sascha@steinbiss.name>
22  */
23 
24 #include "suricata-common.h"
25 #include "detect.h"
26 #include "pkt-var.h"
27 #include "conf.h"
28 
29 #include "threads.h"
30 #include "threadvars.h"
31 #include "tm-threads.h"
32 
33 #include "util-unittest.h"
34 #include "util-buffer.h"
35 #include "util-debug.h"
36 #include "util-byte.h"
37 #include "util-misc.h"
38 
39 #include "output.h"
40 #include "output-json.h"
41 
42 #include "app-layer.h"
43 #include "app-layer-parser.h"
44 
45 #include "output-json-mqtt.h"
46 #include "rust.h"
47 
48 #define MQTT_LOG_PASSWORDS BIT_U32(0)
49 #define MQTT_DEFAULT_FLAGS (MQTT_LOG_PASSWORDS)
50 #define MQTT_DEFAULT_MAXLOGLEN 1024
51 
52 typedef struct LogMQTTFileCtx_ {
53  uint32_t flags, max_log_len;
56 
57 typedef struct LogMQTTLogThread_ {
59  uint32_t count;
62 
63 bool JsonMQTTAddMetadata(void *vtx, JsonBuilder *js)
64 {
65  return rs_mqtt_logger_log(vtx, MQTT_DEFAULT_FLAGS, MQTT_DEFAULT_MAXLOGLEN, js);
66 }
67 
68 static int JsonMQTTLogger(ThreadVars *tv, void *thread_data,
69  const Packet *p, Flow *f, void *state, void *tx, uint64_t tx_id)
70 {
71  LogMQTTLogThread *thread = thread_data;
72  enum OutputJsonLogDirection dir;
73 
74  if (rs_mqtt_tx_is_toclient((MQTTTransaction*) tx)) {
76  } else {
78  }
79 
80  JsonBuilder *js = CreateEveHeader(p, dir, "mqtt", NULL, thread->mqttlog_ctx->eve_ctx);
81  if (unlikely(js == NULL)) {
82  return TM_ECODE_FAILED;
83  }
84 
85  if (!rs_mqtt_logger_log(tx, thread->mqttlog_ctx->flags, thread->mqttlog_ctx->max_log_len, js))
86  goto error;
87 
88  OutputJsonBuilderBuffer(js, thread->ctx);
89  jb_free(js);
90 
91  return TM_ECODE_OK;
92 
93 error:
94  jb_free(js);
95  return TM_ECODE_FAILED;
96 }
97 
98 static void OutputMQTTLogDeInitCtxSub(OutputCtx *output_ctx)
99 {
100  LogMQTTFileCtx *mqttlog_ctx = (LogMQTTFileCtx *)output_ctx->data;
101  SCFree(mqttlog_ctx);
102  SCFree(output_ctx);
103 }
104 
105 static void JsonMQTTLogParseConfig(ConfNode *conf, LogMQTTFileCtx *mqttlog_ctx)
106 {
107  const char *query = ConfNodeLookupChildValue(conf, "passwords");
108  if (query != NULL) {
109  if (ConfValIsTrue(query)) {
110  mqttlog_ctx->flags |= MQTT_LOG_PASSWORDS;
111  } else {
112  mqttlog_ctx->flags &= ~MQTT_LOG_PASSWORDS;
113  }
114  } else {
115  mqttlog_ctx->flags |= MQTT_LOG_PASSWORDS;
116  }
117  uint32_t max_log_len = MQTT_DEFAULT_MAXLOGLEN;
118  query = ConfNodeLookupChildValue(conf, "string-log-limit");
119  if (query != NULL) {
120  if (ParseSizeStringU32(query, &max_log_len) < 0) {
121  SCLogError("Error parsing string-log-limit from config - %s, ", query);
122  exit(EXIT_FAILURE);
123  }
124  }
125  mqttlog_ctx->max_log_len = max_log_len;
126 }
127 
128 static OutputInitResult OutputMQTTLogInitSub(ConfNode *conf,
129  OutputCtx *parent_ctx)
130 {
131  OutputInitResult result = { NULL, false };
132  OutputJsonCtx *ajt = parent_ctx->data;
133 
134  LogMQTTFileCtx *mqttlog_ctx = SCCalloc(1, sizeof(*mqttlog_ctx));
135  if (unlikely(mqttlog_ctx == NULL)) {
136  return result;
137  }
138  mqttlog_ctx->eve_ctx = ajt;
139 
140  OutputCtx *output_ctx = SCCalloc(1, sizeof(*output_ctx));
141  if (unlikely(output_ctx == NULL)) {
142  SCFree(mqttlog_ctx);
143  return result;
144  }
145  output_ctx->data = mqttlog_ctx;
146  output_ctx->DeInit = OutputMQTTLogDeInitCtxSub;
147 
148  JsonMQTTLogParseConfig(conf, mqttlog_ctx);
149 
151 
152  result.ctx = output_ctx;
153  result.ok = true;
154  return result;
155 }
156 
157 static TmEcode JsonMQTTLogThreadInit(ThreadVars *t, const void *initdata, void **data)
158 {
159  LogMQTTLogThread *thread = SCCalloc(1, sizeof(*thread));
160  if (unlikely(thread == NULL)) {
161  return TM_ECODE_FAILED;
162  }
163 
164  if (initdata == NULL) {
165  SCLogDebug("Error getting context for EveLogMQTT. \"initdata\" is NULL.");
166  SCFree(thread);
167  return TM_ECODE_FAILED;
168  }
169 
170  thread->mqttlog_ctx = ((OutputCtx *)initdata)->data;
171  thread->ctx = CreateEveThreadCtx(t, thread->mqttlog_ctx->eve_ctx);
172  if (unlikely(thread->ctx == NULL)) {
173  SCFree(thread);
174  return TM_ECODE_FAILED;
175  }
176 
177  *data = (void *)thread;
178 
179  return TM_ECODE_OK;
180 }
181 
182 static TmEcode JsonMQTTLogThreadDeinit(ThreadVars *t, void *data)
183 {
184  LogMQTTLogThread *thread = (LogMQTTLogThread *)data;
185  if (thread == NULL) {
186  return TM_ECODE_OK;
187  }
188  FreeEveThreadCtx(thread->ctx);
189  SCFree(thread);
190  return TM_ECODE_OK;
191 }
192 
194 {
195  OutputRegisterTxSubModule(LOGGER_JSON_TX, "eve-log", "JsonMQTTLog", "eve-log.mqtt",
196  OutputMQTTLogInitSub, ALPROTO_MQTT, JsonMQTTLogger, JsonMQTTLogThreadInit,
197  JsonMQTTLogThreadDeinit, NULL);
198 }
util-byte.h
tm-threads.h
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
output-json-mqtt.h
LogMQTTLogThread_
Definition: output-json-mqtt.c:57
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
FreeEveThreadCtx
void FreeEveThreadCtx(OutputJsonThreadCtx *ctx)
Definition: output-json-common.c:58
threads.h
OutputJsonCtx_
Definition: output-json.h:81
Flow_
Flow data structure.
Definition: flow.h:360
OutputJsonBuilderBuffer
int OutputJsonBuilderBuffer(JsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:967
CreateEveThreadCtx
OutputJsonThreadCtx * CreateEveThreadCtx(ThreadVars *t, OutputJsonCtx *ctx)
Definition: output-json-common.c:29
rust.h
LogMQTTLogThread_::ctx
OutputJsonThreadCtx * ctx
Definition: output-json-mqtt.c:60
MQTT_LOG_PASSWORDS
#define MQTT_LOG_PASSWORDS
Definition: output-json-mqtt.c:48
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:83
util-unittest.h
ConfValIsTrue
int ConfValIsTrue(const char *val)
Check if a value is true.
Definition: conf.c:536
OutputCtx_::data
void * data
Definition: tm-modules.h:88
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:82
OutputCtx_
Definition: tm-modules.h:85
OutputJsonThreadCtx_
Definition: output-json.h:89
LogMQTTFileCtx_::flags
uint32_t flags
Definition: output-json-mqtt.c:53
util-debug.h
LogMQTTFileCtx_::max_log_len
uint32_t max_log_len
Definition: output-json-mqtt.c:53
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
output-json.h
AppLayerParserRegisterLogger
void AppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
Definition: app-layer-parser.c:458
CreateEveHeader
JsonBuilder * CreateEveHeader(const Packet *p, enum OutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, OutputJsonCtx *eve_ctx)
Definition: output-json.c:816
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
pkt-var.h
OutputInitResult_::ok
bool ok
Definition: output.h:48
app-layer-parser.h
JsonMQTTLogRegister
void JsonMQTTLogRegister(void)
Definition: output-json-mqtt.c:193
Packet_
Definition: decode.h:479
conf.h
TmEcode
TmEcode
Definition: tm-threads-common.h:81
LOG_DIR_FLOW_TOCLIENT
@ LOG_DIR_FLOW_TOCLIENT
Definition: output-json.h:39
LogMQTTLogThread_::mqttlog_ctx
LogMQTTFileCtx * mqttlog_ctx
Definition: output-json-mqtt.c:58
OutputInitResult_
Definition: output.h:46
MQTT_DEFAULT_FLAGS
#define MQTT_DEFAULT_FLAGS
Definition: output-json-mqtt.c:49
suricata-common.h
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:91
LogMQTTFileCtx_::eve_ctx
OutputJsonCtx * eve_ctx
Definition: output-json-mqtt.c:54
LogMQTTFileCtx_
Definition: output-json-mqtt.c:52
OutputJsonLogDirection
OutputJsonLogDirection
Definition: output-json.h:36
OutputRegisterTxSubModule
void OutputRegisterTxSubModule(LoggerId id, const char *parent_name, const char *name, const char *conf_name, OutputInitSubFunc InitFunc, AppProto alproto, TxLogger TxLogFunc, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
Definition: output.c:405
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
ParseSizeStringU32
int ParseSizeStringU32(const char *size, uint32_t *res)
Definition: util-misc.c:173
threadvars.h
LOGGER_JSON_TX
@ LOGGER_JSON_TX
Definition: suricata-common.h:468
LOG_DIR_FLOW_TOSERVER
@ LOG_DIR_FLOW_TOSERVER
Definition: output-json.h:40
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
SCFree
#define SCFree(p)
Definition: util-mem.h:61
ConfNode_
Definition: conf.h:32
JsonMQTTAddMetadata
bool JsonMQTTAddMetadata(void *vtx, JsonBuilder *js)
Definition: output-json-mqtt.c:63
LogMQTTLogThread
struct LogMQTTLogThread_ LogMQTTLogThread
util-buffer.h
ALPROTO_MQTT
@ ALPROTO_MQTT
Definition: app-layer-protos.h:56
LogMQTTLogThread_::count
uint32_t count
Definition: output-json-mqtt.c:59
util-misc.h
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
output.h
MQTT_DEFAULT_MAXLOGLEN
#define MQTT_DEFAULT_MAXLOGLEN
Definition: output-json-mqtt.c:50
app-layer.h
ConfNodeLookupChildValue
const char * ConfNodeLookupChildValue(const ConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
Definition: conf.c:809
LogMQTTFileCtx
struct LogMQTTFileCtx_ LogMQTTFileCtx