suricata
output-json-anomaly.c
Go to the documentation of this file.
1 /* Copyright (C) 2019-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 Jeff Lucovsky <jeff@lucovsky.org>
22  *
23  * Logs anomalies in JSON format.
24  *
25  */
26 
27 #include "suricata-common.h"
28 #include "detect.h"
29 #include "flow.h"
30 #include "conf.h"
31 #include "app-layer.h"
32 #include "app-layer-events.h"
33 #include "app-layer-parser.h"
34 
35 #include "threads.h"
36 #include "tm-threads.h"
37 #include "threadvars.h"
38 #include "util-debug.h"
39 
40 #include "util-misc.h"
41 
42 #include "detect-parse.h"
43 #include "detect-engine.h"
44 #include "util-logopenfile.h"
45 
46 #include "output.h"
47 #include "output-json.h"
48 #include "output-json-anomaly.h"
49 
50 #include "util-byte.h"
51 #include "util-enum.h"
52 #include "util-privs.h"
53 #include "util-print.h"
54 #include "util-proto-name.h"
55 #include "util-optimize.h"
56 #include "util-buffer.h"
57 #include "util-validate.h"
58 
59 #define MODULE_NAME "JsonAnomalyLog"
60 
61 #define ANOMALY_EVENT_TYPE "anomaly"
62 #define LOG_JSON_DECODE_TYPE BIT_U16(0)
63 #define LOG_JSON_STREAM_TYPE BIT_U16(1)
64 #define LOG_JSON_APPLAYER_TYPE BIT_U16(2)
65 #define LOG_JSON_PACKETHDR BIT_U16(3)
66 
67 #define LOG_JSON_PACKET_TYPE (LOG_JSON_DECODE_TYPE | LOG_JSON_STREAM_TYPE)
68 #define ANOMALY_DEFAULTS LOG_JSON_APPLAYER_TYPE
69 
70 #define TX_ID_UNUSED UINT64_MAX
71 
72 typedef struct AnomalyJsonOutputCtx_ {
73  uint16_t flags;
76 
77 typedef struct JsonAnomalyLogThread_ {
81 
82 /*
83  * Restrict the anomaly logger count due to decoder state maintenance issues
84  */
85 
86 #define MAX_ANOMALY_LOGGERS 1
87 static int anomaly_loggers = 0;
88 static bool OutputAnomalyLoggerEnable(void)
89 {
90  if (anomaly_loggers < MAX_ANOMALY_LOGGERS) {
91  anomaly_loggers++;
92  return true;
93  }
94  return false;
95 }
96 
97 static void OutputAnomalyLoggerDisable(void)
98 {
99  if (anomaly_loggers)
100  anomaly_loggers--;
101 }
102 
103 static int AnomalyDecodeEventJson(ThreadVars *tv, JsonAnomalyLogThread *aft,
104  const Packet *p)
105 {
106  const uint16_t log_type = aft->json_output_ctx->flags;
107  const bool log_stream = log_type & LOG_JSON_STREAM_TYPE;
108  const bool log_decode = log_type & LOG_JSON_DECODE_TYPE;
109 
110  for (int i = 0; i < p->events.cnt; i++) {
111  uint8_t event_code = p->events.events[i];
112  bool is_decode = EVENT_IS_DECODER_PACKET_ERROR(event_code);
113  if (is_decode && !log_decode)
114  continue;
115  if (!is_decode && !log_stream)
116  continue;
117 
118  SCJsonBuilder *js = CreateEveHeader(
120  if (unlikely(js == NULL)) {
121  return TM_ECODE_OK;
122  }
123 
124  SCJbOpenObject(js, ANOMALY_EVENT_TYPE);
125 
126  if (event_code < DECODE_EVENT_MAX) {
127  const char *event = DEvents[event_code].event_name;
128  if (EVENT_IS_DECODER_PACKET_ERROR(event_code)) {
129  JB_SET_STRING(js, "type", "decode");
130  } else {
131  JB_SET_STRING(js, "type", "stream");
132  }
133  SCJbSetString(js, "event", event);
134  } else {
135  JB_SET_STRING(js, "type", "unknown");
136  SCJbSetUint(js, "code", event_code);
137  }
138 
139  /* Close anomaly object. */
140  SCJbClose(js);
141 
143  EvePacket(p, js, GET_PKT_LEN(p) < 32 ? GET_PKT_LEN(p) : 32);
144  }
145 
146  OutputJsonBuilderBuffer(tv, p, p->flow, js, aft->ctx);
147  SCJbFree(js);
148  }
149 
150  return TM_ECODE_OK;
151 }
152 
153 static int AnomalyAppLayerDecoderEventJson(ThreadVars *tv, JsonAnomalyLogThread *aft,
154  const Packet *p, AppLayerDecoderEvents *decoder_events, bool is_pktlayer, const char *layer,
155  uint64_t tx_id)
156 {
157  const char *alprotoname = AppLayerGetProtoName(p->flow->alproto);
158 
159  SCLogDebug("decoder_events %p event_count %d (last logged %d) %s",
160  decoder_events, decoder_events->cnt,
161  decoder_events->event_last_logged,
162  tx_id != TX_ID_UNUSED ? "tx" : "no-tx");
163 
164  for (int i = decoder_events->event_last_logged; i < decoder_events->cnt; i++) {
165  SCJsonBuilder *js;
166  if (tx_id != TX_ID_UNUSED) {
168  aft->json_output_ctx->eve_ctx);
169  } else {
170  js = CreateEveHeader(
172  }
173  if (unlikely(js == NULL)) {
174  return TM_ECODE_OK;
175  }
176 
177  SCJbOpenObject(js, ANOMALY_EVENT_TYPE);
178 
179  SCJbSetString(js, "app_proto", alprotoname);
180 
181  const char *event_name = NULL;
182  uint8_t event_code = decoder_events->events[i];
183  AppLayerEventType event_type;
184  int r;
185  if (is_pktlayer) {
186  r = AppLayerGetEventInfoById(event_code, &event_name, &event_type);
187  } else {
189  event_code, &event_name, &event_type);
190  }
191  if (r == 0) {
192  JB_SET_STRING(js, "type", "applayer");
193  SCJbSetString(js, "event", event_name);
194  } else {
195  JB_SET_STRING(js, "type", "unknown");
196  SCJbSetUint(js, "code", event_code);
197  }
198 
199  SCJbSetString(js, "layer", layer);
200 
201  /* anomaly */
202  SCJbClose(js);
203  OutputJsonBuilderBuffer(tv, p, p->flow, js, aft->ctx);
204  SCJbFree(js);
205 
206  /* Current implementation assumes a single owner for this value */
207  decoder_events->event_last_logged++;
208  }
209 
210  return TM_ECODE_OK;
211 }
212 
213 static int JsonAnomalyTxLogger(ThreadVars *tv, void *thread_data, const Packet *p,
214  Flow *f, void *state, void *tx, uint64_t tx_id)
215 {
216  JsonAnomalyLogThread *aft = thread_data;
218  return TM_ECODE_OK;
219  }
220 
221  AppLayerDecoderEvents *decoder_events;
222  decoder_events = AppLayerParserGetEventsByTx(f->proto, f->alproto, tx);
223  if (decoder_events && decoder_events->event_last_logged < decoder_events->cnt) {
224  SCLogDebug("state %p, tx: %p, tx_id: %"PRIu64, state, tx, tx_id);
225  AnomalyAppLayerDecoderEventJson(tv, aft, p, decoder_events, false, "proto_parser", tx_id);
226  }
227  return TM_ECODE_OK;
228 }
229 
230 static inline bool AnomalyHasParserEvents(const Packet *p)
231 {
233 }
234 
235 static inline bool AnomalyHasPacketAppLayerEvents(const Packet *p)
236 {
237  return p->app_layer_events && p->app_layer_events->cnt;
238 }
239 
240 static int AnomalyJson(ThreadVars *tv, JsonAnomalyLogThread *aft, const Packet *p)
241 {
242  int rc = TM_ECODE_OK;
243 
244  /* decode or stream */
246  if (p->events.cnt) {
247  rc = AnomalyDecodeEventJson(tv, aft, p);
248  }
249  }
250 
251  /* applayer */
253  /* app layer proto detect events */
254  if (rc == TM_ECODE_OK && AnomalyHasPacketAppLayerEvents(p)) {
255  rc = AnomalyAppLayerDecoderEventJson(
256  tv, aft, p, p->app_layer_events, true, "proto_detect", TX_ID_UNUSED);
257  }
258 
259  /* parser state events */
260  if (rc == TM_ECODE_OK && AnomalyHasParserEvents(p)) {
261  SCLogDebug("Checking for anomaly events; alproto %d", p->flow->alproto);
263  if (parser_events && (parser_events->event_last_logged < parser_events->cnt)) {
264  rc = AnomalyAppLayerDecoderEventJson(
265  tv, aft, p, parser_events, false, "parser", TX_ID_UNUSED);
266  }
267  }
268  }
269 
270  return rc;
271 }
272 
273 static int JsonAnomalyLogger(ThreadVars *tv, void *thread_data, const Packet *p)
274 {
275  JsonAnomalyLogThread *aft = thread_data;
276  return AnomalyJson(tv, aft, p);
277 }
278 
279 static bool JsonAnomalyLogCondition(ThreadVars *tv, void *thread_data, const Packet *p)
280 {
281  return p->events.cnt > 0 ||
282  (p->app_layer_events && p->app_layer_events->cnt > 0) ||
283  AnomalyHasParserEvents(p);
284 }
285 
286 static TmEcode JsonAnomalyLogThreadInit(ThreadVars *t, const void *initdata, void **data)
287 {
289  if (unlikely(aft == NULL)) {
290  return TM_ECODE_FAILED;
291  }
292 
293  if (initdata == NULL) {
294  SCLogDebug("Error getting context for EveLogAnomaly. \"initdata\" argument NULL");
295  goto error_exit;
296  }
297 
298  /** Use the Output Context (file pointer and mutex) */
299  AnomalyJsonOutputCtx *json_output_ctx = ((OutputCtx *)initdata)->data;
300 
301  aft->ctx = CreateEveThreadCtx(t, json_output_ctx->eve_ctx);
302  if (!aft->ctx) {
303  goto error_exit;
304  }
305  aft->json_output_ctx = json_output_ctx;
306 
307  *data = (void *)aft;
308  return TM_ECODE_OK;
309 
310 error_exit:
311  SCFree(aft);
312  return TM_ECODE_FAILED;
313 }
314 
315 static TmEcode JsonAnomalyLogThreadDeinit(ThreadVars *t, void *data)
316 {
318  if (aft == NULL) {
319  return TM_ECODE_OK;
320  }
321 
322  FreeEveThreadCtx(aft->ctx);
323 
324  /* clear memory */
325  memset(aft, 0, sizeof(JsonAnomalyLogThread));
326 
327  SCFree(aft);
328  return TM_ECODE_OK;
329 }
330 
331 static void JsonAnomalyLogDeInitCtxSubHelper(OutputCtx *output_ctx)
332 {
333  SCLogDebug("cleaning up sub output_ctx %p", output_ctx);
334 
335  AnomalyJsonOutputCtx *json_output_ctx = (AnomalyJsonOutputCtx *) output_ctx->data;
336 
337  if (json_output_ctx != NULL) {
338  SCFree(json_output_ctx);
339  }
340  SCFree(output_ctx);
341 }
342 
343 static void JsonAnomalyLogDeInitCtxSub(OutputCtx *output_ctx)
344 {
345  OutputAnomalyLoggerDisable();
346 
347  JsonAnomalyLogDeInitCtxSubHelper(output_ctx);
348 }
349 
350 static void SetFlag(const SCConfNode *conf, const char *name, uint16_t flag, uint16_t *out_flags)
351 {
352  DEBUG_VALIDATE_BUG_ON(conf == NULL);
353  const char *setting = SCConfNodeLookupChildValue(conf, name);
354  if (setting != NULL) {
355  if (SCConfValIsTrue(setting)) {
356  *out_flags |= flag;
357  } else {
358  *out_flags &= ~flag;
359  }
360  }
361 }
362 
363 static void JsonAnomalyLogConf(AnomalyJsonOutputCtx *json_output_ctx, SCConfNode *conf)
364 {
365  static bool warn_no_flags = false;
366  static bool warn_no_packet = false;
367  uint16_t flags = ANOMALY_DEFAULTS;
368  if (conf != NULL) {
369  /* Check for metadata to enable/disable. */
370  SCConfNode *typeconf = SCConfNodeLookupChild(conf, "types");
371  if (typeconf != NULL) {
372  SetFlag(typeconf, "applayer", LOG_JSON_APPLAYER_TYPE, &flags);
373  SetFlag(typeconf, "stream", LOG_JSON_STREAM_TYPE, &flags);
374  SetFlag(typeconf, "decode", LOG_JSON_DECODE_TYPE, &flags);
375  }
376  SetFlag(conf, "packethdr", LOG_JSON_PACKETHDR, &flags);
377  }
378  if (((flags & (LOG_JSON_DECODE_TYPE | LOG_JSON_PACKETHDR)) == LOG_JSON_PACKETHDR) && !warn_no_packet) {
379  SCLogWarning("Anomaly logging configured to include packet headers, however decode "
380  "type logging has not been selected. Packet headers will not be logged.");
381  warn_no_packet = true;
383  }
384 
385  if (flags == 0 && !warn_no_flags) {
386  SCLogWarning("Anomaly logging has been configured; however, no logging types "
387  "have been selected. Select one or more logging types.");
388  warn_no_flags = true;
389  }
390  json_output_ctx->flags |= flags;
391 }
392 
393 static OutputInitResult JsonAnomalyLogInitCtxHelper(SCConfNode *conf, OutputCtx *parent_ctx)
394 {
395  OutputInitResult result = { NULL, false };
396  OutputJsonCtx *ajt = parent_ctx->data;
397  AnomalyJsonOutputCtx *json_output_ctx = NULL;
398 
399  OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
400  if (unlikely(output_ctx == NULL))
401  return result;
402 
403  json_output_ctx = SCCalloc(1, sizeof(AnomalyJsonOutputCtx));
404  if (unlikely(json_output_ctx == NULL)) {
405  goto error;
406  }
407 
408  JsonAnomalyLogConf(json_output_ctx, conf);
409  json_output_ctx->eve_ctx = ajt;
410 
411  output_ctx->data = json_output_ctx;
412  output_ctx->DeInit = JsonAnomalyLogDeInitCtxSubHelper;
413 
414  result.ctx = output_ctx;
415  result.ok = true;
416  return result;
417 
418 error:
419  SCFree(output_ctx);
420 
421  return result;
422 }
423 
424 /**
425  * \brief Create a new LogFileCtx for "fast" output style.
426  * \param conf The configuration node for this output.
427  * \return A LogFileCtx pointer on success, NULL on failure.
428  */
429 static OutputInitResult JsonAnomalyLogInitCtxSub(SCConfNode *conf, OutputCtx *parent_ctx)
430 {
431 
432  if (!OutputAnomalyLoggerEnable()) {
433  OutputInitResult result = { NULL, false };
434  SCLogError("only one 'anomaly' logger "
435  "can be enabled");
436  return result;
437  }
438 
439  OutputInitResult result = JsonAnomalyLogInitCtxHelper(conf, parent_ctx);
440  if (result.ok) {
441  result.ctx->DeInit = JsonAnomalyLogDeInitCtxSub;
442  }
443 
444  return result;
445 }
446 
448 {
449  OutputPacketLoggerFunctions output_logger_functions = {
450  .LogFunc = JsonAnomalyLogger,
451  .ConditionFunc = JsonAnomalyLogCondition,
452  .ThreadInitFunc = JsonAnomalyLogThreadInit,
453  .ThreadDeinitFunc = JsonAnomalyLogThreadDeinit,
454  .ThreadExitPrintStatsFunc = NULL,
455  };
456 
457  OutputRegisterPacketSubModule(LOGGER_JSON_ANOMALY, "eve-log", MODULE_NAME, "eve-log.anomaly",
458  JsonAnomalyLogInitCtxSub, &output_logger_functions);
459 
460  OutputRegisterTxSubModule(LOGGER_JSON_ANOMALY, "eve-log", MODULE_NAME, "eve-log.anomaly",
461  JsonAnomalyLogInitCtxHelper, ALPROTO_UNKNOWN, JsonAnomalyTxLogger,
462  JsonAnomalyLogThreadInit, JsonAnomalyLogThreadDeinit);
463 }
util-byte.h
tm-threads.h
SCConfValIsTrue
int SCConfValIsTrue(const char *val)
Check if a value is true.
Definition: conf.c:578
detect-engine.h
TX_ID_UNUSED
#define TX_ID_UNUSED
Definition: output-json-anomaly.c:70
LOG_JSON_PACKET_TYPE
#define LOG_JSON_PACKET_TYPE
Definition: output-json-anomaly.c:67
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
PacketEngineEvents_::events
uint8_t events[PACKET_ENGINE_EVENT_MAX]
Definition: decode.h:310
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
AppLayerParserGetEventsByTx
AppLayerDecoderEvents * AppLayerParserGetEventsByTx(uint8_t ipproto, AppProto alproto, void *tx)
Definition: app-layer-parser.c:874
name
const char * name
Definition: detect-engine-proto.c:48
FreeEveThreadCtx
void FreeEveThreadCtx(OutputJsonThreadCtx *ctx)
Definition: output-json-common.c:58
Flow_::proto
uint8_t proto
Definition: flow.h:376
CreateEveHeader
SCJsonBuilder * CreateEveHeader(const Packet *p, enum SCOutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, OutputJsonCtx *eve_ctx)
Definition: output-json.c:819
threads.h
OutputJsonCtx_
Definition: output-json.h:77
MAX_ANOMALY_LOGGERS
#define MAX_ANOMALY_LOGGERS
Definition: output-json-anomaly.c:86
Flow_
Flow data structure.
Definition: flow.h:354
AnomalyJsonOutputCtx_::flags
uint16_t flags
Definition: output-json-anomaly.c:73
AppLayerDecoderEvents_::event_last_logged
uint8_t event_last_logged
Definition: app-layer-events.h:41
CreateEveThreadCtx
OutputJsonThreadCtx * CreateEveThreadCtx(ThreadVars *t, OutputJsonCtx *ctx)
Definition: output-json-common.c:29
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)
Definition: output.c:401
LOG_JSON_APPLAYER_TYPE
#define LOG_JSON_APPLAYER_TYPE
Definition: output-json-anomaly.c:64
util-privs.h
OutputJsonBuilderBuffer
void OutputJsonBuilderBuffer(ThreadVars *tv, const Packet *p, Flow *f, SCJsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:1021
JsonAnomalyLogThread_::ctx
OutputJsonThreadCtx * ctx
Definition: output-json-anomaly.c:79
p
Packet * p
Definition: fuzz_iprep.c:21
SCConfNodeLookupChildValue
const char * SCConfNodeLookupChildValue(const SCConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
Definition: conf.c:878
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:82
ANOMALY_DEFAULTS
#define ANOMALY_DEFAULTS
Definition: output-json-anomaly.c:68
AppLayerDecoderEvents_
Data structure to store app layer decoder events.
Definition: app-layer-events.h:33
Packet_::app_layer_events
AppLayerDecoderEvents * app_layer_events
Definition: decode.h:644
Packet_::events
PacketEngineEvents events
Definition: decode.h:642
OutputCtx_::data
void * data
Definition: tm-modules.h:91
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:81
ANOMALY_EVENT_TYPE
#define ANOMALY_EVENT_TYPE
Definition: output-json-anomaly.c:61
OutputCtx_
Definition: tm-modules.h:88
OutputJsonThreadCtx_
Definition: output-json.h:85
Flow_::alparser
AppLayerParserState * alparser
Definition: flow.h:478
AnomalyJsonOutputCtx_::eve_ctx
OutputJsonCtx * eve_ctx
Definition: output-json-anomaly.c:74
LOG_JSON_PACKETHDR
#define LOG_JSON_PACKETHDR
Definition: output-json-anomaly.c:65
JsonAnomalyLogRegister
void JsonAnomalyLogRegister(void)
Definition: output-json-anomaly.c:447
util-debug.h
JB_SET_STRING
#define JB_SET_STRING(jb, key, val)
Definition: rust.h:36
AppLayerParserGetEventInfoById
int AppLayerParserGetEventInfoById(uint8_t ipproto, AppProto alproto, uint8_t event_id, const char **event_name, AppLayerEventType *event_type)
Definition: app-layer-parser.c:1151
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
DEvents
const struct DecodeEvents_ DEvents[]
Definition: decode-events.c:29
output-json.h
AppLayerEventType
AppLayerEventType
Definition: app-layer-events.h:54
util-print.h
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
OutputInitResult_::ok
bool ok
Definition: output.h:48
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:262
app-layer-parser.h
AppLayerDecoderEvents_::cnt
uint8_t cnt
Definition: app-layer-events.h:37
JsonAnomalyLogThread
struct JsonAnomalyLogThread_ JsonAnomalyLogThread
output-json-anomaly.h
MODULE_NAME
#define MODULE_NAME
Definition: output-json-anomaly.c:59
Packet_
Definition: decode.h:515
GET_PKT_LEN
#define GET_PKT_LEN(p)
Definition: decode.h:209
conf.h
TmEcode
TmEcode
Definition: tm-threads-common.h:80
util-proto-name.h
EvePacket
void EvePacket(const Packet *p, SCJsonBuilder *js, uint32_t max_length)
Jsonify a packet.
Definition: output-json.c:422
LOG_JSON_STREAM_TYPE
#define LOG_JSON_STREAM_TYPE
Definition: output-json-anomaly.c:63
DecodeEvents_::event_name
const char * event_name
Definition: decode-events.h:344
SCConfNodeLookupChild
SCConfNode * SCConfNodeLookupChild(const SCConfNode *node, const char *name)
Lookup a child configuration node by name.
Definition: conf.c:850
cnt
uint32_t cnt
Definition: tmqh-packetpool.h:7
OutputInitResult_
Definition: output.h:46
Packet_::flow
struct Flow_ * flow
Definition: decode.h:563
flags
uint8_t flags
Definition: decode-gre.h:0
suricata-common.h
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:94
JsonAnomalyLogThread_::json_output_ctx
AnomalyJsonOutputCtx * json_output_ctx
Definition: output-json-anomaly.c:78
OutputPacketLoggerFunctions_::LogFunc
PacketLogger LogFunc
Definition: output.h:86
LOG_JSON_DECODE_TYPE
#define LOG_JSON_DECODE_TYPE
Definition: output-json-anomaly.c:62
JsonAnomalyLogThread_
Definition: output-json-anomaly.c:77
CreateEveHeaderWithTxId
SCJsonBuilder * CreateEveHeaderWithTxId(const Packet *p, enum SCOutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, uint64_t tx_id, OutputJsonCtx *eve_ctx)
Definition: output-json.c:965
DECODE_EVENT_MAX
@ DECODE_EVENT_MAX
Definition: decode-events.h:335
OutputRegisterPacketSubModule
void OutputRegisterPacketSubModule(LoggerId id, const char *parent_name, const char *name, const char *conf_name, OutputInitSubFunc InitFunc, OutputPacketLoggerFunctions *output_logger_functions)
Register a packet output sub-module.
Definition: output.c:230
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:33
util-optimize.h
app-layer-events.h
threadvars.h
util-validate.h
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:274
SCFree
#define SCFree(p)
Definition: util-mem.h:61
util-logopenfile.h
AppLayerParserGetDecoderEvents
AppLayerDecoderEvents * AppLayerParserGetDecoderEvents(AppLayerParserState *pstate)
Definition: app-layer-parser.c:866
detect-parse.h
util-buffer.h
AppLayerGetProtoName
const char * AppLayerGetProtoName(AppProto alproto)
Given the internal protocol id, returns a string representation of the protocol.
Definition: app-layer.c:1014
AppLayerGetEventInfoById
int AppLayerGetEventInfoById(uint8_t event_id, const char **event_name, AppLayerEventType *event_type)
Definition: app-layer-events.c:65
AnomalyJsonOutputCtx_
Definition: output-json-anomaly.c:72
ALPROTO_UNKNOWN
@ ALPROTO_UNKNOWN
Definition: app-layer-protos.h:29
LOG_DIR_PACKET
@ LOG_DIR_PACKET
Definition: output-eve-bindgen.h:34
util-misc.h
flow.h
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:450
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
util-enum.h
SCConfNode_
Definition: conf.h:37
OutputPacketLoggerFunctions_
Definition: output.h:85
AppLayerParserHasDecoderEvents
bool AppLayerParserHasDecoderEvents(AppLayerParserState *pstate)
Definition: app-layer-parser.c:1525
AppLayerDecoderEvents_::events
uint8_t * events
Definition: app-layer-events.h:35
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:109
output.h
AnomalyJsonOutputCtx
struct AnomalyJsonOutputCtx_ AnomalyJsonOutputCtx
app-layer.h
LOGGER_JSON_ANOMALY
@ LOGGER_JSON_ANOMALY
Definition: suricata-common.h:505
PacketEngineEvents_::cnt
uint8_t cnt
Definition: decode.h:309
EVENT_IS_DECODER_PACKET_ERROR
#define EVENT_IS_DECODER_PACKET_ERROR(e)
Definition: decode-events.h:338