suricata
output-json-alert.c
Go to the documentation of this file.
1 /* Copyright (C) 2013-2026 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 Tom DeCanio <td@npulsetech.com>
22  *
23  * Logs alerts in JSON format.
24  *
25  */
26 
27 #include "suricata-common.h"
28 #include "packet.h"
29 #include "detect.h"
30 #include "flow.h"
31 #include "conf.h"
32 
33 #include "stream.h"
34 #include "threadvars.h"
35 #include "util-debug.h"
36 #include "stream-tcp.h"
37 
38 #include "util-logopenfile.h"
39 #include "util-misc.h"
40 #include "util-time.h"
41 
42 #include "detect-parse.h"
43 #include "detect-engine.h"
44 #include "detect-metadata.h"
45 #include "app-layer-parser.h"
46 #include "app-layer-htp-xff.h"
47 #include "app-layer-ftp.h"
48 #include "app-layer-frames.h"
49 #include "log-pcap.h"
50 
51 #include "output.h"
52 #include "output-json.h"
53 #include "output-json-alert.h"
54 #include "output-json-http.h"
55 #include "rust.h"
56 #include "output-json-smtp.h"
58 #include "output-json-nfs.h"
59 #include "output-json-smb.h"
60 #include "output-json-flow.h"
61 #include "output-json-ike.h"
62 #include "output-json-frame.h"
63 
64 #include "util-print.h"
65 #include "util-optimize.h"
66 #include "util-buffer.h"
67 #include "util-reference-config.h"
68 #include "util-validate.h"
69 
70 #include "action-globals.h"
71 
72 #define MODULE_NAME "JsonAlertLog"
73 
74 #define LOG_JSON_PAYLOAD BIT_U16(0)
75 #define LOG_JSON_PACKET BIT_U16(1)
76 #define LOG_JSON_PAYLOAD_BASE64 BIT_U16(2)
77 #define LOG_JSON_TAGGED_PACKETS BIT_U16(3)
78 #define LOG_JSON_APP_LAYER BIT_U16(4)
79 #define LOG_JSON_FLOW BIT_U16(5)
80 #define LOG_JSON_HTTP_BODY BIT_U16(6)
81 #define LOG_JSON_HTTP_BODY_BASE64 BIT_U16(7)
82 #define LOG_JSON_RULE_METADATA BIT_U16(8)
83 #define LOG_JSON_RULE BIT_U16(9)
84 #define LOG_JSON_VERDICT BIT_U16(10)
85 #define LOG_JSON_WEBSOCKET_PAYLOAD BIT_U16(11)
86 #define LOG_JSON_WEBSOCKET_PAYLOAD_BASE64 BIT_U16(12)
87 #define LOG_JSON_PAYLOAD_LENGTH BIT_U16(13)
88 #define LOG_JSON_REFERENCE BIT_U16(14)
89 
90 #define METADATA_DEFAULTS ( LOG_JSON_FLOW | \
91  LOG_JSON_APP_LAYER | \
92  LOG_JSON_RULE_METADATA)
93 
94 #define JSON_BODY_LOGGING \
95  (LOG_JSON_HTTP_BODY | LOG_JSON_HTTP_BODY_BASE64 | LOG_JSON_WEBSOCKET_PAYLOAD | \
96  LOG_JSON_WEBSOCKET_PAYLOAD_BASE64)
97 
98 #define JSON_STREAM_BUFFER_SIZE 4096
99 
100 typedef struct AlertJsonOutputCtx_ {
102  uint16_t flags;
108 
109 typedef struct JsonAlertLogThread_ {
114 
115 static void AlertJsonSourceTarget(
116  const Packet *p, const PacketAlert *pa, SCJsonBuilder *js, JsonAddrInfo *addr)
117 {
118  SCJbOpenObject(js, "source");
119  if (pa->s->flags & SIG_FLAG_DEST_IS_TARGET) {
120  SCJbSetString(js, "ip", addr->src_ip);
121  switch (p->proto) {
122  case IPPROTO_ICMP:
123  case IPPROTO_ICMPV6:
124  break;
125  case IPPROTO_UDP:
126  case IPPROTO_TCP:
127  case IPPROTO_SCTP:
128  SCJbSetUint(js, "port", addr->sp);
129  break;
130  }
131  } else if (pa->s->flags & SIG_FLAG_SRC_IS_TARGET) {
132  SCJbSetString(js, "ip", addr->dst_ip);
133  switch (p->proto) {
134  case IPPROTO_ICMP:
135  case IPPROTO_ICMPV6:
136  break;
137  case IPPROTO_UDP:
138  case IPPROTO_TCP:
139  case IPPROTO_SCTP:
140  SCJbSetUint(js, "port", addr->dp);
141  break;
142  }
143  }
144  SCJbClose(js);
145 
146  SCJbOpenObject(js, "target");
147  if (pa->s->flags & SIG_FLAG_DEST_IS_TARGET) {
148  SCJbSetString(js, "ip", addr->dst_ip);
149  switch (p->proto) {
150  case IPPROTO_ICMP:
151  case IPPROTO_ICMPV6:
152  break;
153  case IPPROTO_UDP:
154  case IPPROTO_TCP:
155  case IPPROTO_SCTP:
156  SCJbSetUint(js, "port", addr->dp);
157  break;
158  }
159  } else if (pa->s->flags & SIG_FLAG_SRC_IS_TARGET) {
160  SCJbSetString(js, "ip", addr->src_ip);
161  switch (p->proto) {
162  case IPPROTO_ICMP:
163  case IPPROTO_ICMPV6:
164  break;
165  case IPPROTO_UDP:
166  case IPPROTO_TCP:
167  case IPPROTO_SCTP:
168  SCJbSetUint(js, "port", addr->sp);
169  break;
170  }
171  }
172  SCJbClose(js);
173 }
174 
175 static void AlertJsonReference(const PacketAlert *pa, SCJsonBuilder *jb)
176 {
177  if (!pa->s->references) {
178  return;
179  }
180 
181  const DetectReference *kv = pa->s->references;
182  SCJbOpenArray(jb, "references");
183  while (kv) {
184  /* Note that the key and reference sizes have been bound
185  * checked during parsing
186  * add +2 to safisfy gcc 15 + -Wformat-truncation=2
187  */
188  const size_t size_needed = kv->key_len + kv->reference_len + 3;
190  /* DetectReferenceParse() is the only producer and sets both alongside
191  * their lengths. Trip a debug build if a future one does not, and keep
192  * a release build off the undefined behavior of "%s" with NULL. */
193  DEBUG_VALIDATE_BUG_ON(kv->key == NULL || kv->reference == NULL);
194  const char *key = kv->key ? kv->key : "";
195  const char *reference = kv->reference ? kv->reference : "";
196  char kv_store[size_needed];
197  snprintf(kv_store, size_needed, "%s%s", key, reference);
198  SCJbAppendString(jb, kv_store);
199  kv = kv->next;
200  }
201  SCJbClose(jb);
202 }
203 
204 static void AlertJsonMetadata(const PacketAlert *pa, SCJsonBuilder *js)
205 {
206  if (pa->s->metadata && pa->s->metadata->json_str) {
207  SCJbSetFormatted(js, pa->s->metadata->json_str);
208  }
209 }
210 
211 void AlertJsonHeader(const Packet *p, const PacketAlert *pa, SCJsonBuilder *js, uint16_t flags,
212  JsonAddrInfo *addr, char *xff_buffer)
213 {
214  const char *action = "allowed";
215  /* use packet action if rate_filter modified the action */
218  action = "blocked";
219  }
220  } else {
221  if (pa->action & ACTION_REJECT_ANY) {
222  action = "blocked";
223  } else if ((pa->action & ACTION_DROP) && EngineModeIsIPS()) {
224  action = "blocked";
225  }
226  }
227 
228  /* Add tx_id to root element for correlation with other events. */
229  /* json_object_del(js, "tx_id"); */
230  if (pa->flags & PACKET_ALERT_FLAG_TX) {
231  SCJbSetUint(js, "tx_id", pa->tx_id);
232  }
234  SCJbSetBool(js, "tx_guessed", true);
235  }
236 
237  SCJbOpenObject(js, "alert");
238 
239  SCJbSetString(js, "action", action);
240  if (EngineModeIsFirewall()) {
241  SCJbSetString(js, "engine", (pa->s->flags & SIG_FLAG_FIREWALL) ? "fw" : "td");
242  }
243  SCJbSetUint(js, "gid", pa->s->gid);
244  SCJbSetUint(js, "signature_id", pa->s->id);
245  SCJbSetUint(js, "rev", pa->s->rev);
246  /* TODO: SCJsonBuilder should handle unprintable characters like
247  * SCJsonString. */
248  SCJbSetString(js, "signature", pa->s->msg ? pa->s->msg : "");
249  SCJbSetString(js, "category", pa->s->class_msg ? pa->s->class_msg : "");
250  SCJbSetUint(js, "severity", pa->s->prio);
251 
252  if (p->tenant_id > 0) {
253  SCJbSetUint(js, "tenant_id", p->tenant_id);
254  }
255 
256  if (addr && pa->s->flags & SIG_FLAG_HAS_TARGET) {
257  AlertJsonSourceTarget(p, pa, js, addr);
258  }
259 
260  if ((flags & LOG_JSON_REFERENCE)) {
261  AlertJsonReference(pa, js);
262  }
263 
265  AlertJsonMetadata(pa, js);
266  }
267 
268  if (pa->json_info != NULL) {
269  SCJbOpenObject(js, "context");
270  const struct PacketContextData *json_info = pa->json_info;
271  while (json_info) {
272  SCLogDebug("JSON string '{%s}'", json_info->json_string);
273  /* The string is valid json as it is validated by JANSSON
274  during parsing and included later via a format string */
275  SCJbSetFormatted(js, json_info->json_string);
276  json_info = json_info->next;
277  }
278  SCJbClose(js);
279  }
280  if (flags & LOG_JSON_RULE) {
281  SCJbSetString(js, "rule", pa->s->sig_str);
282  }
283  if (xff_buffer && xff_buffer[0]) {
284  SCJbSetString(js, "xff", xff_buffer);
285  }
286 
287  SCJbClose(js);
288 }
289 
290 static void AlertJsonTunnel(const Packet *p, SCJsonBuilder *js, OutputJsonCommonSettings *cfg)
291 {
292  if (p->root == NULL) {
293  return;
294  }
295 
296  SCJbOpenObject(js, "tunnel");
297 
298  enum PktSrcEnum pkt_src;
300  JsonAddrInfoInit(p->root, 0, &addr, cfg);
301  pkt_src = p->root->pkt_src;
302 
303  SCJbSetString(js, "src_ip", addr.src_ip);
304  SCJbSetUint(js, "src_port", addr.sp);
305  SCJbSetString(js, "dest_ip", addr.dst_ip);
306  SCJbSetUint(js, "dest_port", addr.dp);
307  SCJbSetString(js, "proto", addr.proto);
308 
309  SCJbSetUint(js, "depth", p->recursion_level);
310  uint64_t pcap_cnt = PcapPacketCntGet(p->root);
311  if (pcap_cnt != 0) {
312  SCJbSetUint(js, "pcap_cnt", pcap_cnt);
313  }
314  SCJbSetString(js, "pkt_src", PktSrcToString(pkt_src));
315  SCJbClose(js);
316 }
317 
318 static void AlertAddPayload(AlertJsonOutputCtx *json_output_ctx, SCJsonBuilder *js, const Packet *p)
319 {
320  if (json_output_ctx->flags & LOG_JSON_PAYLOAD_BASE64) {
321  SCJbSetBase64(js, "payload", p->payload, p->payload_len);
322  }
323  if (json_output_ctx->flags & LOG_JSON_PAYLOAD_LENGTH) {
324  SCJbSetUint(js, "payload_length", p->payload_len);
325  }
326 
327  if (json_output_ctx->flags & LOG_JSON_PAYLOAD) {
328  SCJbSetPrintAsciiString(js, "payload_printable", p->payload, p->payload_len);
329  }
330 }
331 
332 static void AlertAddAppLayerStates(const Packet *p, const AppProto alproto, const uint8_t sub_state,
333  void *tx, SCJsonBuilder *jb)
334 {
335  const int ts = AppLayerParserGetStateProgress(p->flow->proto, alproto, tx, STREAM_TOSERVER);
336  const int tc = AppLayerParserGetStateProgress(p->flow->proto, alproto, tx, STREAM_TOCLIENT);
337  if (sub_state == 0) {
338  SCJbSetString(jb, "ts_progress",
339  AppLayerParserGetStateNameById(p->flow->proto, alproto, ts, STREAM_TOSERVER));
340  SCJbSetString(jb, "tc_progress",
341  AppLayerParserGetStateNameById(p->flow->proto, alproto, tc, STREAM_TOCLIENT));
342  } else {
343  const char *sname = AppLayerParserGetSubStateName(alproto, sub_state);
344  if (sname != NULL) {
345  SCJbSetString(jb, "sub_state", sname);
346  }
347  SCJbSetString(jb, "ts_progress",
349  alproto, sub_state, (uint8_t)ts, STREAM_TOSERVER));
350  SCJbSetString(jb, "tc_progress",
352  alproto, sub_state, (uint8_t)tc, STREAM_TOCLIENT));
353  }
354 }
355 
356 static void AlertAddAppLayer(const Packet *p, SCJsonBuilder *jb, const uint64_t tx_id,
357  const uint8_t sub_state, const uint16_t option_flags)
358 {
361  void *state = FlowGetAppState(p->flow);
362  void *tx = NULL;
363  if (state) {
364  tx = AppLayerParserGetTx(p->flow->proto, proto, state, tx_id);
365  }
366  if (tx == NULL)
367  return;
368 
369  AlertAddAppLayerStates(p, proto, sub_state, tx, jb);
370 
371  SCJsonBuilderMark mark = { 0, 0, 0 };
372  if (al && al->LogTx) {
373  SCJbGetMark(jb, &mark);
374  switch (proto) {
375  // first check some protocols need special options for alerts logging
376  case ALPROTO_WEBSOCKET:
377  if (option_flags &
379  const bool pp = (option_flags & LOG_JSON_WEBSOCKET_PAYLOAD) != 0;
380  const bool pb64 = (option_flags & LOG_JSON_WEBSOCKET_PAYLOAD_BASE64) != 0;
381  if (!SCWebSocketLogDetails(tx, jb, pp, pb64)) {
382  SCJbRestoreMark(jb, &mark);
383  }
384  // nothing more to log or do
385  return;
386  }
387  }
388  if (!al->LogTx(tx, jb)) {
389  SCJbRestoreMark(jb, &mark);
390  }
391  return;
392  }
393 
394  switch (proto) {
395  case ALPROTO_HTTP1:
396  // TODO: Could result in an empty http object being logged.
397  SCJbOpenObject(jb, "http");
398  if (EveHttpAddMetadata(p->flow, tx_id, jb)) {
399  if (option_flags & LOG_JSON_HTTP_BODY) {
400  EveHttpLogJSONBodyPrintable(jb, p->flow, tx_id);
401  }
402  if (option_flags & LOG_JSON_HTTP_BODY_BASE64) {
403  EveHttpLogJSONBodyBase64(jb, p->flow, tx_id);
404  }
405  }
406  SCJbClose(jb);
407  break;
408  case ALPROTO_SMTP:
409  SCJbGetMark(jb, &mark);
410  SCJbOpenObject(jb, "smtp");
411  if (EveSMTPAddMetadata(p->flow, tx_id, jb)) {
412  SCJbClose(jb);
413  } else {
414  SCJbRestoreMark(jb, &mark);
415  }
416  SCJbGetMark(jb, &mark);
417  SCJbOpenObject(jb, "email");
418  if (EveEmailAddMetadata(p->flow, tx_id, jb)) {
419  SCJbClose(jb);
420  } else {
421  SCJbRestoreMark(jb, &mark);
422  }
423  break;
424  case ALPROTO_NFS:
425  /* rpc */
426  SCJbGetMark(jb, &mark);
427  SCJbOpenObject(jb, "rpc");
428  if (EveNFSAddMetadataRPC(p->flow, tx_id, jb)) {
429  SCJbClose(jb);
430  } else {
431  SCJbRestoreMark(jb, &mark);
432  }
433  /* nfs */
434  SCJbGetMark(jb, &mark);
435  SCJbOpenObject(jb, "nfs");
436  if (EveNFSAddMetadata(p->flow, tx_id, jb)) {
437  SCJbClose(jb);
438  } else {
439  SCJbRestoreMark(jb, &mark);
440  }
441  break;
442  case ALPROTO_SMB:
443  SCJbGetMark(jb, &mark);
444  SCJbOpenObject(jb, "smb");
445  if (EveSMBAddMetadata(p->flow, tx_id, jb)) {
446  SCJbClose(jb);
447  } else {
448  SCJbRestoreMark(jb, &mark);
449  }
450  break;
451  case ALPROTO_IKE:
452  SCJbGetMark(jb, &mark);
453  if (!EveIKEAddMetadata(p->flow, tx_id, jb)) {
454  SCJbRestoreMark(jb, &mark);
455  }
456  break;
457  case ALPROTO_DCERPC:
458  SCJbGetMark(jb, &mark);
459  SCJbOpenObject(jb, "dcerpc");
460  if (p->proto == IPPROTO_TCP) {
461  if (!SCDcerpcLogJsonRecordTcp(state, tx, jb)) {
462  SCJbRestoreMark(jb, &mark);
463  }
464  } else {
465  if (!SCDcerpcLogJsonRecordUdp(state, tx, jb)) {
466  SCJbRestoreMark(jb, &mark);
467  }
468  }
469  SCJbClose(jb);
470  break;
471  default:
472  break;
473  }
474 }
475 
476 static void AlertAddFiles(const Packet *p, SCJsonBuilder *jb, const uint64_t tx_id)
477 {
478  const uint8_t direction =
479  (p->flowflags & FLOW_PKT_TOSERVER) ? STREAM_TOSERVER : STREAM_TOCLIENT;
480  FileContainer *ffc = NULL;
481  if (p->flow->alstate != NULL) {
482  void *tx = AppLayerParserGetTx(p->flow->proto, p->flow->alproto, p->flow->alstate, tx_id);
483  if (tx) {
484  AppLayerGetFileState files = AppLayerParserGetTxFiles(p->flow, tx, direction);
485  ffc = files.fc;
486  }
487  }
488  if (ffc != NULL) {
489  File *file = ffc->head;
490  bool isopen = false;
491  while (file) {
492  if (!isopen) {
493  isopen = true;
494  SCJbOpenArray(jb, "files");
495  }
496  SCJbStartObject(jb);
497  EveFileInfo(jb, file, tx_id, file->flags);
498  SCJbClose(jb);
499  file = file->next;
500  }
501  if (isopen) {
502  SCJbClose(jb);
503  }
504  }
505 }
506 
507 static void AlertAddFrame(
508  const Packet *p, const int64_t frame_id, SCJsonBuilder *jb, MemBuffer *buffer)
509 {
510  if (p->flow == NULL || (p->proto == IPPROTO_TCP && p->flow->protoctx == NULL))
511  return;
512 
513  FramesContainer *frames_container = AppLayerFramesGetContainer(p->flow);
514  if (frames_container == NULL)
515  return;
516 
517  Frames *frames = NULL;
518  TcpStream *stream = NULL;
519  if (p->proto == IPPROTO_TCP) {
520  TcpSession *ssn = p->flow->protoctx;
521  if (PKT_IS_TOSERVER(p)) {
522  stream = &ssn->client;
523  frames = &frames_container->toserver;
524  } else {
525  stream = &ssn->server;
526  frames = &frames_container->toclient;
527  }
528  Frame *frame = FrameGetById(frames, frame_id);
529  if (frame != NULL) {
530  FrameJsonLogOneFrame(IPPROTO_TCP, frame, p->flow, stream, p, jb, buffer);
531  }
532  } else if (p->proto == IPPROTO_UDP) {
533  if (PKT_IS_TOSERVER(p)) {
534  frames = &frames_container->toserver;
535  } else {
536  frames = &frames_container->toclient;
537  }
538  Frame *frame = FrameGetById(frames, frame_id);
539  if (frame != NULL) {
540  FrameJsonLogOneFrame(IPPROTO_UDP, frame, p->flow, NULL, p, jb, buffer);
541  }
542  }
543 }
544 
545 /**
546  * \brief Build verdict object
547  *
548  * \param p Pointer to Packet current being logged
549  * \param alert_action action bitfield from the alert: only used for ACTION_PASS
550  */
551 void EveAddVerdict(SCJsonBuilder *jb, const Packet *p, const uint8_t alert_action)
552 {
553  SCJbOpenObject(jb, "verdict");
554 
555  const uint8_t packet_action = PacketGetAction(p);
556  SCLogDebug("%" PRIu64 ": packet_action %02x alert_action %02x", PcapPacketCntGet(p),
557  packet_action, alert_action);
558  /* add verdict info */
559  if (packet_action & ACTION_REJECT_ANY) {
560  // check rule to define type of reject packet sent
561  if (EngineModeIsIPS()) {
562  JB_SET_STRING(jb, "action", "drop");
563  } else {
564  JB_SET_STRING(jb, "action", "alert");
565  }
566  if (packet_action & ACTION_REJECT) {
567  JB_SET_STRING(jb, "reject_target", "to_client");
568  } else if (packet_action & ACTION_REJECT_DST) {
569  JB_SET_STRING(jb, "reject_target", "to_server");
570  } else if (packet_action & ACTION_REJECT_BOTH) {
571  JB_SET_STRING(jb, "reject_target", "both");
572  }
573  SCJbOpenArray(jb, "reject");
574  switch (p->proto) {
575  case IPPROTO_UDP:
576  case IPPROTO_ICMP:
577  case IPPROTO_ICMPV6:
578  SCJbAppendString(jb, "icmp-prohib");
579  break;
580  case IPPROTO_TCP:
581  SCJbAppendString(jb, "tcp-reset");
582  break;
583  }
584  SCJbClose(jb);
585 
586  } else if ((packet_action & ACTION_DROP) && EngineModeIsIPS()) {
587  JB_SET_STRING(jb, "action", "drop");
588  } else if (packet_action & ACTION_ACCEPT) {
589  JB_SET_STRING(jb, "action", "accept");
590  } else if (alert_action & ACTION_PASS) {
591  JB_SET_STRING(jb, "action", "pass");
592  } else {
593  // TODO make sure we don't have a situation where this wouldn't work
594  JB_SET_STRING(jb, "action", "alert");
595  }
596 
597  /* Close verdict */
598  SCJbClose(jb);
599 }
600 
603  uint64_t last_re;
604 };
605 
606 static int AlertJsonStreamDataCallback(
607  void *cb_data, const uint8_t *input, const uint32_t input_len, const uint64_t input_offset)
608 {
609  struct AlertJsonStreamDataCallbackData *cbd = cb_data;
610  if (input_offset > cbd->last_re) {
612  cbd->payload, "[%" PRIu64 " bytes missing]", input_offset - cbd->last_re);
613  }
614 
615  int done = 0;
616  uint32_t written = MemBufferWriteRaw(cbd->payload, input, input_len);
617  if (written < input_len)
618  done = 1;
619  cbd->last_re = input_offset + input_len;
620  return done;
621 }
622 
623 /** \internal
624  * \brief try to log stream data into payload/payload_printable
625  * \retval true stream data logged
626  * \retval false stream data not logged
627  */
628 static bool AlertJsonStreamData(const AlertJsonOutputCtx *json_output_ctx, JsonAlertLogThread *aft,
629  Flow *f, const Packet *p, SCJsonBuilder *jb)
630 {
631  TcpSession *ssn = f->protoctx;
632  TcpStream *stream = (PKT_IS_TOSERVER(p)) ? &ssn->client : &ssn->server;
633 
634  MemBufferReset(aft->payload_buffer);
636  .last_re = STREAM_BASE_OFFSET(stream) };
637  uint64_t unused = 0;
638  StreamReassembleLog(ssn, stream, AlertJsonStreamDataCallback, &cbd, STREAM_BASE_OFFSET(stream),
639  &unused, false);
640  if (cbd.payload->offset) {
641  if (json_output_ctx->flags & LOG_JSON_PAYLOAD_BASE64) {
642  SCJbSetBase64(jb, "payload", cbd.payload->buffer, cbd.payload->offset);
643  }
644  if (json_output_ctx->flags & LOG_JSON_PAYLOAD_LENGTH) {
645  SCJbSetUint(jb, "payload_length", cbd.payload->offset);
646  }
647 
648  if (json_output_ctx->flags & LOG_JSON_PAYLOAD) {
649  SCJbSetPrintAsciiString(
650  jb, "payload_printable", cbd.payload->buffer, cbd.payload->offset);
651  }
652  return true;
653  }
654  return false;
655 }
656 
657 static void AlertJsonAddFirewall(SCJsonBuilder *jb, const Signature *s)
658 {
659  struct DetectFirewallPolicy pol = { .action = s->action, .action_scope = s->action_scope };
660 
661  SCJbOpenObject(jb, "firewall");
662  const char *hook = NULL;
663  char hook_string[256];
664  switch (s->detect_table) {
666  if (s->flags & SIG_FLAG_TOSERVER) {
668  IPPROTO_TCP, s->alproto, s->app_progress_hook, STREAM_TOSERVER);
669  } else {
671  IPPROTO_TCP, s->alproto, s->app_progress_hook, STREAM_TOCLIENT);
672  }
673  if (hook) {
674  snprintf(hook_string, sizeof(hook_string), "%s:%s", AppProtoToString(s->alproto),
675  hook);
676  hook = hook_string;
677  }
678  break;
680  hook = "packet:filter";
681  break;
683  hook = "packet:pre_flow";
684  break;
686  hook = "packet:pre_stream";
687  break;
688  }
689  if (hook) {
690  SCJbSetString(jb, "hook", hook);
691  }
692  char policy_string[64] = "";
693  DetectFirewallPolicyToString(&pol, policy_string, sizeof(policy_string));
694  if (strlen(policy_string) > 0) {
695  SCJbSetString(jb, "policy", policy_string);
696  }
697  SCJbClose(jb);
698 }
699 
700 static int AlertJson(ThreadVars *tv, JsonAlertLogThread *aft, const Packet *p)
701 {
702  AlertJsonOutputCtx *json_output_ctx = aft->json_output_ctx;
703 
704  if (p->alerts.cnt == 0 && !(p->flags & PKT_HAS_TAG))
705  return TM_ECODE_OK;
706 
707  const uint8_t final_action = p->alerts.cnt > 0 ? p->alerts.alerts[p->alerts.cnt - 1].action : 0;
708  for (int i = 0; i < p->alerts.cnt; i++) {
709  const PacketAlert *pa = &p->alerts.alerts[i];
710  if (unlikely(pa->s == NULL || (pa->action & ACTION_ALERT) == 0)) {
711  continue;
712  }
713 
714  /* First initialize the address info (5-tuple). */
716  JsonAddrInfoInit(p, LOG_DIR_PACKET, &addr, &json_output_ctx->eve_ctx->cfg);
717 
718  /* Check for XFF, overwriting address info if needed. */
719  HttpXFFCfg *xff_cfg = json_output_ctx->xff_cfg != NULL ? json_output_ctx->xff_cfg
720  : json_output_ctx->parent_xff_cfg;
721  int have_xff_ip = 0;
722  char xff_buffer[XFF_MAXLEN];
723  xff_buffer[0] = 0;
724  if ((xff_cfg != NULL) && !(xff_cfg->flags & XFF_DISABLED) && p->flow != NULL) {
726  if (pa->flags & PACKET_ALERT_FLAG_TX) {
727  have_xff_ip = HttpXFFGetIPFromTx(p->flow, pa->tx_id, xff_cfg,
728  xff_buffer, XFF_MAXLEN);
729  } else {
730  have_xff_ip = HttpXFFGetIP(p->flow, xff_cfg, xff_buffer,
731  XFF_MAXLEN);
732  }
733  }
734 
735  if (have_xff_ip && xff_cfg->flags & XFF_OVERWRITE) {
736  if (p->flowflags & FLOW_PKT_TOCLIENT) {
737  strlcpy(addr.dst_ip, xff_buffer, JSON_ADDR_LEN);
738  } else {
739  strlcpy(addr.src_ip, xff_buffer, JSON_ADDR_LEN);
740  }
741  /* Clear have_xff_ip so the xff field does not get
742  * logged below. */
743  have_xff_ip = false;
744  }
745  if (have_xff_ip && !(xff_cfg->flags & XFF_EXTRADATA)) {
746  // reset xff_buffer so as not to log it
747  xff_buffer[0] = 0;
748  }
749  }
750 
751  SCJsonBuilder *jb =
752  CreateEveHeader(p, LOG_DIR_PACKET, "alert", &addr, json_output_ctx->eve_ctx);
753  if (unlikely(jb == NULL))
754  return TM_ECODE_OK;
755 
756 
757  /* alert */
758  AlertJsonHeader(p, pa, jb, json_output_ctx->flags, &addr, xff_buffer);
759 
760  if (PacketIsTunnel(p)) {
761  AlertJsonTunnel(p, jb, &json_output_ctx->eve_ctx->cfg);
762  }
763 
764  if (pa->s->flags & SIG_FLAG_FIREWALL) {
765  AlertJsonAddFirewall(jb, pa->s);
766  }
767 
768  if (p->flow != NULL) {
769  if (pa->flags & PACKET_ALERT_FLAG_TX) {
770  if (json_output_ctx->flags & LOG_JSON_APP_LAYER) {
771  AlertAddAppLayer(p, jb, pa->tx_id, pa->sub_state, json_output_ctx->flags);
772  }
773  /* including fileinfo data is configured by the metadata setting */
774  if (json_output_ctx->flags & LOG_JSON_RULE_METADATA) {
775  AlertAddFiles(p, jb, pa->tx_id);
776  }
777  }
778 
779  EveAddAppProto(p->flow, jb);
780 
781  if (p->flowflags & FLOW_PKT_TOSERVER) {
782  SCJbSetString(jb, "direction", "to_server");
783  } else {
784  SCJbSetString(jb, "direction", "to_client");
785  }
786 
787  if (json_output_ctx->flags & LOG_JSON_FLOW) {
788  SCJbOpenObject(jb, "flow");
789  EveAddFlow(p->flow, jb);
790  if (p->flowflags & FLOW_PKT_TOCLIENT) {
791  SCJbSetString(jb, "src_ip", addr.dst_ip);
792  SCJbSetString(jb, "dest_ip", addr.src_ip);
793  if (addr.sp > 0) {
794  SCJbSetUint(jb, "src_port", addr.dp);
795  SCJbSetUint(jb, "dest_port", addr.sp);
796  }
797  } else {
798  SCJbSetString(jb, "src_ip", addr.src_ip);
799  SCJbSetString(jb, "dest_ip", addr.dst_ip);
800  if (addr.sp > 0) {
801  SCJbSetUint(jb, "src_port", addr.sp);
802  SCJbSetUint(jb, "dest_port", addr.dp);
803  }
804  }
805  SCJbClose(jb);
806  }
807  }
808 
809  /* payload */
810  if (json_output_ctx->flags &
812  int stream = (p->proto == IPPROTO_TCP) ?
814  1 : 0) : 0;
815  // should be impossible, as stream implies flow
816  DEBUG_VALIDATE_BUG_ON(stream && p->flow == NULL);
817 
818  /* Is this a stream? If so, pack part of it into the payload field */
819  if (stream && p->flow != NULL) {
820  const bool stream_data_logged =
821  AlertJsonStreamData(json_output_ctx, aft, p->flow, p, jb);
822  if (!stream_data_logged && p->payload_len) {
823  /* Fallback on packet payload */
824  AlertAddPayload(json_output_ctx, jb, p);
825  }
826  } else {
827  /* This is a single packet and not a stream */
828  AlertAddPayload(json_output_ctx, jb, p);
829  }
830 
831  SCJbSetUint(jb, "stream", stream);
832  }
833 
834  if (pa->flags & PACKET_ALERT_FLAG_FRAME) {
835  AlertAddFrame(p, pa->frame_id, jb, aft->payload_buffer);
836  }
837 
838  /* base64-encoded full packet */
839  if (json_output_ctx->flags & LOG_JSON_PACKET) {
840  EvePacket(p, jb, 0);
841  }
842 
844  if (pcap_filename != NULL) {
845  SCJbSetString(jb, "capture_file", pcap_filename);
846  }
847 
848  if (json_output_ctx->flags & LOG_JSON_VERDICT) {
849  EveAddVerdict(jb, p, final_action & ACTION_PASS);
850  }
851 
852  OutputJsonBuilderBuffer(tv, p, p->flow, jb, aft->ctx);
853  SCJbFree(jb);
854  }
855 
856  if ((p->flags & PKT_HAS_TAG) && (json_output_ctx->flags &
858  SCJsonBuilder *packetjs =
859  CreateEveHeader(p, LOG_DIR_PACKET, "packet", NULL, json_output_ctx->eve_ctx);
860  if (unlikely(packetjs != NULL)) {
861  EvePacket(p, packetjs, 0);
862  OutputJsonBuilderBuffer(tv, p, p->flow, packetjs, aft->ctx);
863  SCJbFree(packetjs);
864  }
865  }
866 
867  return TM_ECODE_OK;
868 }
869 
870 static int AlertJsonDecoderEvent(ThreadVars *tv, JsonAlertLogThread *aft, const Packet *p)
871 {
872  AlertJsonOutputCtx *json_output_ctx = aft->json_output_ctx;
873 
874  if (p->alerts.cnt == 0)
875  return TM_ECODE_OK;
876 
877  const uint8_t final_action = p->alerts.alerts[p->alerts.cnt - 1].action;
878  for (int i = 0; i < p->alerts.cnt; i++) {
879  const PacketAlert *pa = &p->alerts.alerts[i];
880  if (unlikely(pa->s == NULL || (pa->action & ACTION_ALERT) == 0)) {
881  continue;
882  }
883 
884  SCJsonBuilder *jb =
885  CreateEveHeader(p, LOG_DIR_PACKET, "alert", NULL, json_output_ctx->eve_ctx);
886  if (unlikely(jb == NULL))
887  return TM_ECODE_OK;
888 
889  AlertJsonHeader(p, pa, jb, json_output_ctx->flags, NULL, NULL);
890 
891  if (PacketIsTunnel(p)) {
892  AlertJsonTunnel(p, jb, &json_output_ctx->eve_ctx->cfg);
893  }
894 
895  /* base64-encoded full packet */
896  if (json_output_ctx->flags & LOG_JSON_PACKET) {
897  EvePacket(p, jb, 0);
898  }
899 
901  if (pcap_filename != NULL) {
902  SCJbSetString(jb, "capture_file", pcap_filename);
903  }
904 
905  if (json_output_ctx->flags & LOG_JSON_VERDICT) {
906  EveAddVerdict(jb, p, final_action & ACTION_PASS);
907  }
908 
909  OutputJsonBuilderBuffer(tv, p, p->flow, jb, aft->ctx);
910  SCJbFree(jb);
911  }
912 
913  return TM_ECODE_OK;
914 }
915 
916 static int JsonAlertLogger(ThreadVars *tv, void *thread_data, const Packet *p)
917 {
918  JsonAlertLogThread *aft = thread_data;
919 
920  if (PacketIsIPv4(p) || PacketIsIPv6(p)) {
921  return AlertJson(tv, aft, p);
922  } else if (p->alerts.cnt > 0) {
923  return AlertJsonDecoderEvent(tv, aft, p);
924  }
925  return 0;
926 }
927 
928 static bool JsonAlertLogCondition(ThreadVars *tv, void *thread_data, const Packet *p)
929 {
930  return (p->alerts.cnt || (p->flags & PKT_HAS_TAG));
931 }
932 
933 static TmEcode JsonAlertLogThreadInit(ThreadVars *t, const void *initdata, void **data)
934 {
936  if (unlikely(aft == NULL))
937  return TM_ECODE_FAILED;
938 
939  if (initdata == NULL)
940  {
941  SCLogDebug("Error getting context for EveLogAlert. \"initdata\" argument NULL");
942  goto error_exit;
943  }
944 
945  /** Use the Output Context (file pointer and mutex) */
946  AlertJsonOutputCtx *json_output_ctx = ((OutputCtx *)initdata)->data;
947 
948  aft->payload_buffer = MemBufferCreateNew(json_output_ctx->payload_buffer_size);
949  if (aft->payload_buffer == NULL) {
950  goto error_exit;
951  }
952  aft->ctx = CreateEveThreadCtx(t, json_output_ctx->eve_ctx);
953  if (!aft->ctx) {
954  goto error_exit;
955  }
956 
957  aft->json_output_ctx = json_output_ctx;
958 
959  *data = (void *)aft;
960  return TM_ECODE_OK;
961 
962 error_exit:
963  if (aft->payload_buffer != NULL) {
965  }
966  SCFree(aft);
967  return TM_ECODE_FAILED;
968 }
969 
970 static TmEcode JsonAlertLogThreadDeinit(ThreadVars *t, void *data)
971 {
972  JsonAlertLogThread *aft = (JsonAlertLogThread *)data;
973  if (aft == NULL) {
974  return TM_ECODE_OK;
975  }
976 
978  FreeEveThreadCtx(aft->ctx);
979 
980  /* clear memory */
981  memset(aft, 0, sizeof(JsonAlertLogThread));
982 
983  SCFree(aft);
984  return TM_ECODE_OK;
985 }
986 
987 static void JsonAlertLogDeInitCtxSub(OutputCtx *output_ctx)
988 {
989  SCLogDebug("cleaning up sub output_ctx %p", output_ctx);
990 
991  AlertJsonOutputCtx *json_output_ctx = (AlertJsonOutputCtx *) output_ctx->data;
992 
993  if (json_output_ctx != NULL) {
994  HttpXFFCfg *xff_cfg = json_output_ctx->xff_cfg;
995  if (xff_cfg != NULL) {
996  SCFree(xff_cfg);
997  }
998  SCFree(json_output_ctx);
999  }
1000  SCFree(output_ctx);
1001 }
1002 
1003 static void SetFlag(const SCConfNode *conf, const char *name, uint16_t flag, uint16_t *out_flags)
1004 {
1005  DEBUG_VALIDATE_BUG_ON(conf == NULL);
1006  const char *setting = SCConfNodeLookupChildValue(conf, name);
1007  if (setting != NULL) {
1008  if (SCConfValIsTrue(setting)) {
1009  *out_flags |= flag;
1010  } else {
1011  *out_flags &= ~flag;
1012  }
1013  }
1014 }
1015 
1016 static void JsonAlertLogSetupMetadata(AlertJsonOutputCtx *json_output_ctx, SCConfNode *conf)
1017 {
1018  static bool warn_no_meta = false;
1019  uint32_t payload_buffer_size = JSON_STREAM_BUFFER_SIZE;
1020  uint16_t flags = METADATA_DEFAULTS;
1021 
1022  if (conf != NULL) {
1023  /* Check for metadata to enable/disable. */
1024  SCConfNode *metadata = SCConfNodeLookupChild(conf, "metadata");
1025  if (metadata != NULL) {
1026  if (metadata->val != NULL && SCConfValIsFalse(metadata->val)) {
1028  } else if (SCConfNodeHasChildren(metadata)) {
1029  SCConfNode *rule_metadata = SCConfNodeLookupChild(metadata, "rule");
1030  if (rule_metadata) {
1031  SetFlag(rule_metadata, "raw", LOG_JSON_RULE, &flags);
1032  SetFlag(rule_metadata, "metadata", LOG_JSON_RULE_METADATA,
1033  &flags);
1034  SetFlag(rule_metadata, "reference", LOG_JSON_REFERENCE, &flags);
1035  }
1036  SetFlag(metadata, "flow", LOG_JSON_FLOW, &flags);
1037  SetFlag(metadata, "app-layer", LOG_JSON_APP_LAYER, &flags);
1038  }
1039  }
1040 
1041  /* Non-metadata toggles. */
1042  SetFlag(conf, "payload", LOG_JSON_PAYLOAD_BASE64, &flags);
1043  SetFlag(conf, "packet", LOG_JSON_PACKET, &flags);
1044  SetFlag(conf, "tagged-packets", LOG_JSON_TAGGED_PACKETS, &flags);
1045  SetFlag(conf, "payload-printable", LOG_JSON_PAYLOAD, &flags);
1046  SetFlag(conf, "http-body-printable", LOG_JSON_HTTP_BODY, &flags);
1047  SetFlag(conf, "http-body", LOG_JSON_HTTP_BODY_BASE64, &flags);
1048  SetFlag(conf, "websocket-payload-printable", LOG_JSON_WEBSOCKET_PAYLOAD, &flags);
1049  SetFlag(conf, "websocket-payload", LOG_JSON_WEBSOCKET_PAYLOAD_BASE64, &flags);
1050  SetFlag(conf, "verdict", LOG_JSON_VERDICT, &flags);
1051  SetFlag(conf, "payload-length", LOG_JSON_PAYLOAD_LENGTH, &flags);
1052 
1053  /* Check for obsolete flags and warn that they have no effect. */
1054  static const char *deprecated_flags[] = { "http", "tls", "ssh", "smtp", "dnp3", "app-layer",
1055  "flow", NULL };
1056  for (int i = 0; deprecated_flags[i] != NULL; i++) {
1057  if (SCConfNodeLookupChildValue(conf, deprecated_flags[i]) != NULL) {
1058  SCLogWarning("Found deprecated eve-log.alert flag \"%s\", this flag has no effect",
1059  deprecated_flags[i]);
1060  }
1061  }
1062 
1063  const char *payload_buffer_value = SCConfNodeLookupChildValue(conf, "payload-buffer-size");
1064 
1065  if (payload_buffer_value != NULL) {
1066  uint32_t value;
1067  if (ParseSizeStringU32(payload_buffer_value, &value) < 0) {
1068  SCLogError("Error parsing "
1069  "payload-buffer-size - %s. Killing engine",
1070  payload_buffer_value);
1071  exit(EXIT_FAILURE);
1072  } else if (value == 0) {
1073  // you should not ask for payload if you want 0 of it
1074  SCLogError("Error payload-buffer-size should not be 0");
1075  exit(EXIT_FAILURE);
1076  } else {
1077  payload_buffer_size = value;
1078  }
1079  }
1080 
1081  if (!warn_no_meta && flags & JSON_BODY_LOGGING) {
1082  if (((flags & LOG_JSON_APP_LAYER) == 0)) {
1083  SCLogWarning("HTTP body logging has been configured, however, "
1084  "metadata logging has not been enabled. HTTP body logging will be "
1085  "disabled.");
1087  warn_no_meta = true;
1088  }
1089  }
1090  }
1091 
1092  if (flags & LOG_JSON_RULE_METADATA) {
1094  }
1095 
1096  json_output_ctx->payload_buffer_size = payload_buffer_size;
1097  json_output_ctx->flags |= flags;
1098 }
1099 
1100 static HttpXFFCfg *JsonAlertLogGetXffCfg(SCConfNode *conf)
1101 {
1102  HttpXFFCfg *xff_cfg = NULL;
1103  if (conf != NULL && SCConfNodeLookupChild(conf, "xff") != NULL) {
1104  xff_cfg = SCCalloc(1, sizeof(HttpXFFCfg));
1105  if (likely(xff_cfg != NULL)) {
1106  HttpXFFGetCfg(conf, xff_cfg);
1107  }
1108  }
1109  return xff_cfg;
1110 }
1111 
1112 /**
1113  * \brief Create a new LogFileCtx for "fast" output style.
1114  * \param conf The configuration node for this output.
1115  * \return A LogFileCtx pointer on success, NULL on failure.
1116  */
1117 static OutputInitResult JsonAlertLogInitCtxSub(SCConfNode *conf, OutputCtx *parent_ctx)
1118 {
1119  OutputInitResult result = { NULL, false };
1120  OutputJsonCtx *ajt = parent_ctx->data;
1121  AlertJsonOutputCtx *json_output_ctx = NULL;
1122 
1123  OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
1124  if (unlikely(output_ctx == NULL))
1125  return result;
1126 
1127  json_output_ctx = SCCalloc(1, sizeof(AlertJsonOutputCtx));
1128  if (unlikely(json_output_ctx == NULL)) {
1129  goto error;
1130  }
1131 
1132  json_output_ctx->file_ctx = ajt->file_ctx;
1133  json_output_ctx->eve_ctx = ajt;
1134 
1135  JsonAlertLogSetupMetadata(json_output_ctx, conf);
1136  json_output_ctx->xff_cfg = JsonAlertLogGetXffCfg(conf);
1137  if (json_output_ctx->xff_cfg == NULL) {
1138  json_output_ctx->parent_xff_cfg = ajt->xff_cfg;
1139  }
1140 
1141  output_ctx->data = json_output_ctx;
1142  output_ctx->DeInit = JsonAlertLogDeInitCtxSub;
1143 
1144  result.ctx = output_ctx;
1145  result.ok = true;
1146  return result;
1147 
1148 error:
1149  if (json_output_ctx != NULL) {
1150  SCFree(json_output_ctx);
1151  }
1152  if (output_ctx != NULL) {
1153  SCFree(output_ctx);
1154  }
1155 
1156  return result;
1157 }
1158 
1160 {
1161  OutputPacketLoggerFunctions output_logger_functions = {
1162  .LogFunc = JsonAlertLogger,
1163  .ConditionFunc = JsonAlertLogCondition,
1164  .ThreadInitFunc = JsonAlertLogThreadInit,
1165  .ThreadDeinitFunc = JsonAlertLogThreadDeinit,
1166  .ThreadExitPrintStatsFunc = NULL,
1167  };
1168 
1169  OutputRegisterPacketSubModule(LOGGER_JSON_ALERT, "eve-log", MODULE_NAME, "eve-log.alert",
1170  JsonAlertLogInitCtxSub, &output_logger_functions);
1171 }
XFF_MAXLEN
#define XFF_MAXLEN
Definition: app-layer-htp-xff.h:39
PacketCheckAction
bool PacketCheckAction(const Packet *p, const uint8_t a)
Definition: packet.c:50
PACKET_ALERT_FLAG_TX_GUESSED
#define PACKET_ALERT_FLAG_TX_GUESSED
Definition: decode.h:280
Packet_::proto
uint8_t proto
Definition: decode.h:538
TcpStream_
Definition: stream-tcp-private.h:106
FileContainer_
Definition: util-file.h:37
ts
uint64_t ts
Definition: source-erf-file.c:68
DetectMetadataHead::json_str
char * json_str
Definition: detect-metadata.h:40
SCConfValIsTrue
int SCConfValIsTrue(const char *val)
Check if a value is true.
Definition: conf.c:578
detect-engine.h
PacketAlert_::s
const struct Signature_ * s
Definition: decode.h:254
ALPROTO_IKE
@ ALPROTO_IKE
Definition: app-layer-protos.h:55
OutputJsonCtx_::xff_cfg
HttpXFFCfg * xff_cfg
Definition: output-json.h:81
MemBuffer_::buffer
uint8_t buffer[]
Definition: util-buffer.h:30
Signature_::sig_str
char * sig_str
Definition: detect.h:765
ALPROTO_DCERPC
@ ALPROTO_DCERPC
Definition: app-layer-protos.h:44
AppLayerParserGetStateNameById
const char * AppLayerParserGetStateNameById(uint8_t ipproto, AppProto alproto, const int id, const uint8_t direction)
Definition: app-layer-parser.c:1873
DETECT_TABLE_APP_FILTER
@ DETECT_TABLE_APP_FILTER
Definition: detect.h:566
XFF_EXTRADATA
#define XFF_EXTRADATA
Definition: app-layer-htp-xff.h:31
EveAddFlow
void EveAddFlow(Flow *f, SCJsonBuilder *js)
Definition: output-json-flow.c:203
stream-tcp.h
OutputJsonCtx_::cfg
OutputJsonCommonSettings cfg
Definition: output-json.h:80
HttpXFFGetCfg
void HttpXFFGetCfg(SCConfNode *conf, HttpXFFCfg *result)
Function to return XFF configuration from a configuration node.
Definition: app-layer-htp-xff.c:216
PACKET_ALERT_FLAG_STATE_MATCH
#define PACKET_ALERT_FLAG_STATE_MATCH
Definition: decode.h:270
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
EveHttpLogJSONBodyPrintable
void EveHttpLogJSONBodyPrintable(SCJsonBuilder *js, Flow *f, uint64_t tx_id)
Definition: output-json-http.c:384
ACTION_PASS
#define ACTION_PASS
Definition: action-globals.h:34
ACTION_REJECT
#define ACTION_REJECT
Definition: action-globals.h:31
Signature_::app_progress_hook
uint8_t app_progress_hook
Definition: detect.h:725
AppLayerFramesGetContainer
FramesContainer * AppLayerFramesGetContainer(const Flow *f)
Definition: app-layer-parser.c:201
PcapPacketCntGet
uint64_t PcapPacketCntGet(const Packet *p)
Definition: decode.c:1193
LOG_JSON_RULE
#define LOG_JSON_RULE
Definition: output-json-alert.c:83
Signature_::alproto
AppProto alproto
Definition: detect.h:693
DETECT_TABLE_PACKET_PRE_STREAM
@ DETECT_TABLE_PACKET_PRE_STREAM
Definition: detect.h:563
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
AlertJsonOutputCtx_::file_ctx
LogFileCtx * file_ctx
Definition: output-json-alert.c:101
name
const char * name
Definition: detect-engine-proto.c:48
AlertJsonOutputCtx_::parent_xff_cfg
HttpXFFCfg * parent_xff_cfg
Definition: output-json-alert.c:105
FreeEveThreadCtx
void FreeEveThreadCtx(OutputJsonThreadCtx *ctx)
Definition: output-json-common.c:58
Flow_::proto
uint8_t proto
Definition: flow.h:377
EveAddAppProto
void EveAddAppProto(Flow *f, SCJsonBuilder *js)
Definition: output-json-flow.c:183
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:87
AlertJsonStreamDataCallbackData::last_re
uint64_t last_re
Definition: output-json-alert.c:603
Packet_::payload
uint8_t * payload
Definition: decode.h:620
PacketAlerts_::cnt
uint16_t cnt
Definition: decode.h:289
SIG_FLAG_DEST_IS_TARGET
#define SIG_FLAG_DEST_IS_TARGET
Definition: detect.h:287
SCFlowGetAppProtocol
AppProto SCFlowGetAppProtocol(const Flow *f)
Definition: flow.c:1278
action-globals.h
FramesContainer::toserver
Frames toserver
Definition: app-layer-frames.h:72
Packet_::flags
uint32_t flags
Definition: decode.h:562
CreateEveHeader
SCJsonBuilder * CreateEveHeader(const Packet *p, enum SCOutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, OutputJsonCtx *eve_ctx)
Definition: output-json.c:819
LOGGER_JSON_ALERT
@ LOGGER_JSON_ALERT
Definition: suricata-common.h:504
OutputJsonCtx_
Definition: output-json.h:77
Frame
Definition: app-layer-frames.h:43
Flow_
Flow data structure.
Definition: flow.h:355
OutputJsonCommonSettings_
Definition: output-json.h:62
JsonAddrInfoInit
void JsonAddrInfoInit(const Packet *p, enum SCOutputJsonLogDirection dir, JsonAddrInfo *addr, OutputJsonCommonSettings *cfg)
Definition: output-json.c:467
AppProtoToString
const char * AppProtoToString(AppProto alproto)
Maps the ALPROTO_*, to its normalized string equivalent.
Definition: app-layer-protos.c:51
LogFileCtx_
Definition: util-logopenfile.h:77
output-json-frame.h
AlertJsonHeader
void AlertJsonHeader(const Packet *p, const PacketAlert *pa, SCJsonBuilder *js, uint16_t flags, JsonAddrInfo *addr, char *xff_buffer)
Definition: output-json-alert.c:211
PacketAlerts_::alerts
PacketAlert * alerts
Definition: decode.h:293
CreateEveThreadCtx
OutputJsonThreadCtx * CreateEveThreadCtx(ThreadVars *t, OutputJsonCtx *ctx)
Definition: output-json-common.c:29
AlertJsonStreamDataCallbackData::payload
MemBuffer * payload
Definition: output-json-alert.c:602
json_addr_info_zero
const JsonAddrInfo json_addr_info_zero
Definition: output-json.c:81
FLOW_PKT_TOSERVER
#define FLOW_PKT_TOSERVER
Definition: flow.h:232
rust.h
Frames
Definition: app-layer-frames.h:58
ACTION_REJECT_ANY
#define ACTION_REJECT_ANY
Definition: action-globals.h:38
FramesContainer
Definition: app-layer-frames.h:71
SCConfValIsFalse
int SCConfValIsFalse(const char *val)
Check if a value is false.
Definition: conf.c:603
ACTION_DROP_REJECT
#define ACTION_DROP_REJECT
Definition: action-globals.h:40
OutputJsonBuilderBuffer
void OutputJsonBuilderBuffer(ThreadVars *tv, const Packet *p, Flow *f, SCJsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:1021
proto
uint8_t proto
Definition: decode-template.h:0
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
AlertJsonOutputCtx_::eve_ctx
OutputJsonCtx * eve_ctx
Definition: output-json-alert.c:106
app-layer-ftp.h
Packet_::flowflags
uint8_t flowflags
Definition: decode.h:547
EngineModeIsFirewall
bool EngineModeIsFirewall(void)
Definition: suricata.c:239
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:82
Flow_::protoctx
void * protoctx
Definition: flow.h:434
DetectFirewallPolicy::action
uint8_t action
Definition: detect.h:939
Packet_::payload_len
uint16_t payload_len
Definition: decode.h:621
SCConfNodeHasChildren
bool SCConfNodeHasChildren(const SCConfNode *node)
Check if a node has any children.
Definition: conf.c:834
Packet_::alerts
PacketAlerts alerts
Definition: decode.h:637
MemBuffer_::offset
uint32_t offset
Definition: util-buffer.h:29
EveHttpAddMetadata
bool EveHttpAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *js)
Definition: output-json-http.c:488
HttpXFFGetIP
int HttpXFFGetIP(const Flow *f, HttpXFFCfg *xff_cfg, char *dstbuf, int dstbuflen)
Function to return XFF IP if any. The caller needs to lock the flow.
Definition: app-layer-htp-xff.c:183
OutputCtx_::data
void * data
Definition: tm-modules.h:91
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:81
PcapLogGetFilename
char * PcapLogGetFilename(void)
Definition: log-pcap.c:1850
AppLayerParserGetTxFiles
AppLayerGetFileState AppLayerParserGetTxFiles(const Flow *f, void *tx, const uint8_t direction)
Definition: app-layer-parser.c:958
PacketAlert_::tx_id
uint64_t tx_id
Definition: decode.h:255
EveSMBAddMetadata
bool EveSMBAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *jb)
Definition: output-json-smb.c:34
OutputCtx_
Definition: tm-modules.h:88
app-layer-htp-xff.h
PacketAlert_::action
uint8_t action
Definition: decode.h:251
strlcpy
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: util-strlcpyu.c:43
JSON_BODY_LOGGING
#define JSON_BODY_LOGGING
Definition: output-json-alert.c:94
SIG_FLAG_FIREWALL
#define SIG_FLAG_FIREWALL
Definition: detect.h:248
OutputJsonThreadCtx_
Definition: output-json.h:85
Signature_::gid
uint32_t gid
Definition: detect.h:734
ACTION_REJECT_DST
#define ACTION_REJECT_DST
Definition: action-globals.h:32
EveIKEAddMetadata
bool EveIKEAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *js)
Definition: output-json-ike.c:65
JsonAddrInfo_::dp
Port dp
Definition: output-json.h:45
SIG_FLAG_TOSERVER
#define SIG_FLAG_TOSERVER
Definition: detect.h:273
FramesContainer::toclient
Frames toclient
Definition: app-layer-frames.h:73
JsonAlertLogThread_::ctx
OutputJsonThreadCtx * ctx
Definition: output-json-alert.c:112
PacketAlert_::json_info
struct PacketContextData * json_info
Definition: decode.h:257
EveSMTPAddMetadata
bool EveSMTPAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *js)
Definition: output-json-smtp.c:100
util-debug.h
JB_SET_STRING
#define JB_SET_STRING(jb, key, val)
Definition: rust.h:36
output-json-flow.h
MODULE_NAME
#define MODULE_NAME
Definition: output-json-alert.c:72
PKT_IS_TOSERVER
#define PKT_IS_TOSERVER(p)
Definition: decode.h:239
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
LOG_JSON_APP_LAYER
#define LOG_JSON_APP_LAYER
Definition: output-json-alert.c:78
LOG_JSON_WEBSOCKET_PAYLOAD
#define LOG_JSON_WEBSOCKET_PAYLOAD
Definition: output-json-alert.c:85
output-json.h
FrameGetById
Frame * FrameGetById(Frames *frames, const int64_t id)
Definition: app-layer-frames.c:125
DetectReference_::key_len
uint16_t key_len
Definition: detect-reference.h:40
ALPROTO_SMTP
@ ALPROTO_SMTP
Definition: app-layer-protos.h:38
LOG_JSON_PAYLOAD
#define LOG_JSON_PAYLOAD
Definition: output-json-alert.c:74
STREAM_BASE_OFFSET
#define STREAM_BASE_OFFSET(stream)
Definition: stream-tcp-private.h:144
PktSrcEnum
PktSrcEnum
Definition: decode.h:51
util-reference-config.h
AlertJsonOutputCtx_::flags
uint16_t flags
Definition: output-json-alert.c:102
util-print.h
EveNFSAddMetadata
bool EveNFSAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *jb)
Definition: output-json-nfs.c:62
Signature_::references
DetectReference * references
Definition: detect.h:761
FileContainer_::head
File * head
Definition: util-file.h:38
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
PacketContextData
Definition: decode.h:242
DETECT_TABLE_PACKET_PRE_FLOW
@ DETECT_TABLE_PACKET_PRE_FLOW
Definition: detect.h:562
EveNFSAddMetadataRPC
bool EveNFSAddMetadataRPC(const Flow *f, uint64_t tx_id, SCJsonBuilder *jb)
Definition: output-json-nfs.c:50
PktSrcToString
const char * PktSrcToString(enum PktSrcEnum pkt_src)
Definition: decode.c:894
DETECT_TABLE_PACKET_FILTER
@ DETECT_TABLE_PACKET_FILTER
Definition: detect.h:564
DetectFirewallPolicyToString
void DetectFirewallPolicyToString(const struct DetectFirewallPolicy *p, char *out, size_t out_size)
Definition: detect-parse.c:4097
JsonAlertLogThread
struct JsonAlertLogThread_ JsonAlertLogThread
output-json-email-common.h
util-time.h
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
JsonAlertLogThread_
Definition: output-json-alert.c:109
DetectReference_
Signature reference list.
Definition: detect-reference.h:30
AppLayerParserGetStateProgress
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *tx, uint8_t flags)
get the progress value for a tx/protocol
Definition: app-layer-parser.c:1225
Signature_::action
uint8_t action
Definition: detect.h:703
SCEveJsonSimpleGetLogger
EveJsonSimpleAppLayerLogger * SCEveJsonSimpleGetLogger(AppProto alproto)
Definition: output.c:923
Signature_::flags
uint32_t flags
Definition: detect.h:689
stream.h
DetectReference_::reference_len
uint16_t reference_len
Definition: detect-reference.h:41
JsonAddrInfo_
Definition: output-json.h:41
ACTION_ALERT
#define ACTION_ALERT
Definition: action-globals.h:29
Packet_
Definition: decode.h:516
EveFileInfo
void EveFileInfo(SCJsonBuilder *jb, const File *ff, const uint64_t tx_id, const uint16_t flags)
Definition: output-json.c:124
DetectReference_::reference
char * reference
Definition: detect-reference.h:34
JSON_STREAM_BUFFER_SIZE
#define JSON_STREAM_BUFFER_SIZE
Definition: output-json-alert.c:98
LOG_JSON_PAYLOAD_BASE64
#define LOG_JSON_PAYLOAD_BASE64
Definition: output-json-alert.c:76
conf.h
DETECT_MAX_RULE_SIZE
#define DETECT_MAX_RULE_SIZE
Definition: detect.h:46
SIG_FLAG_HAS_TARGET
#define SIG_FLAG_HAS_TARGET
Definition: detect.h:289
XFF_OVERWRITE
#define XFF_OVERWRITE
Definition: app-layer-htp-xff.h:33
LOG_JSON_PAYLOAD_LENGTH
#define LOG_JSON_PAYLOAD_LENGTH
Definition: output-json-alert.c:87
TmEcode
TmEcode
Definition: tm-threads-common.h:80
SIG_FLAG_SRC_IS_TARGET
#define SIG_FLAG_SRC_IS_TARGET
Definition: detect.h:285
HttpXFFCfg_
Definition: app-layer-htp-xff.h:41
AlertJsonOutputCtx_::payload_buffer_size
uint32_t payload_buffer_size
Definition: output-json-alert.c:103
EvePacket
void EvePacket(const Packet *p, SCJsonBuilder *js, uint32_t max_length)
Jsonify a packet.
Definition: output-json.c:422
MemBuffer_
Definition: util-buffer.h:27
FLOW_PKT_TOCLIENT
#define FLOW_PKT_TOCLIENT
Definition: flow.h:233
EveJsonSimpleAppLayerLogger
Definition: output-eve-bindgen.h:42
DetectReference_::next
struct DetectReference_ * next
Definition: detect-reference.h:43
LOG_JSON_TAGGED_PACKETS
#define LOG_JSON_TAGGED_PACKETS
Definition: output-json-alert.c:77
AppLayerParserGetTx
void * AppLayerParserGetTx(uint8_t ipproto, AppProto alproto, void *alstate, uint64_t tx_id)
Definition: app-layer-parser.c:1245
AlertJsonOutputCtx_::xff_cfg
HttpXFFCfg * xff_cfg
Definition: output-json-alert.c:104
PACKET_ALERT_FLAG_STREAM_MATCH
#define PACKET_ALERT_FLAG_STREAM_MATCH
Definition: decode.h:272
PACKET_ALERT_FLAG_FRAME
#define PACKET_ALERT_FLAG_FRAME
Definition: decode.h:278
log-pcap.h
PacketAlert_::frame_id
int64_t frame_id
Definition: decode.h:256
JsonAddrInfo_::proto
char proto[JSON_PROTO_LEN]
Definition: output-json.h:46
Signature_::class_msg
char * class_msg
Definition: detect.h:759
PacketAlert_::flags
uint8_t flags
Definition: decode.h:252
ACTION_REJECT_BOTH
#define ACTION_REJECT_BOTH
Definition: action-globals.h:33
File_::flags
uint16_t flags
Definition: util-file.h:147
SCConfNodeLookupChild
SCConfNode * SCConfNodeLookupChild(const SCConfNode *node, const char *name)
Lookup a child configuration node by name.
Definition: conf.c:850
File_
Definition: util-file.h:146
PacketAlert_::sub_state
uint8_t sub_state
Definition: decode.h:253
OutputInitResult_
Definition: output.h:46
app-layer-frames.h
Packet_::flow
struct Flow_ * flow
Definition: decode.h:564
Packet_::tenant_id
uint32_t tenant_id
Definition: decode.h:678
EveEmailAddMetadata
bool EveEmailAddMetadata(const Flow *f, uint64_t tx_id, SCJsonBuilder *js)
Definition: output-json-email-common.c:195
flags
uint8_t flags
Definition: decode-gre.h:0
AppLayerGetFileState
Definition: util-file.h:44
suricata-common.h
LOG_JSON_WEBSOCKET_PAYLOAD_BASE64
#define LOG_JSON_WEBSOCKET_PAYLOAD_BASE64
Definition: output-json-alert.c:86
JsonAddrInfo_::sp
Port sp
Definition: output-json.h:44
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:94
AppLayerGetFileState::fc
FileContainer * fc
Definition: util-file.h:45
pcap_filename
char pcap_filename[PATH_MAX]
Definition: source-pcap-file-helper.c:166
EveJsonSimpleAppLayerLogger::LogTx
EveJsonSimpleTxLogFunc LogTx
Definition: output-eve-bindgen.h:43
JSON_ADDR_LEN
#define JSON_ADDR_LEN
Definition: output-json.h:37
AlertJsonOutputCtx_
Definition: output-json-alert.c:100
detect-metadata.h
Signature_::action_scope
uint8_t action_scope
Definition: detect.h:710
JsonAlertLogThread_::json_output_ctx
AlertJsonOutputCtx * json_output_ctx
Definition: output-json-alert.c:111
output-json-nfs.h
packet.h
ALPROTO_HTTP1
@ ALPROTO_HTTP1
Definition: app-layer-protos.h:36
MemBufferFree
void MemBufferFree(MemBuffer *buffer)
Definition: util-buffer.c:86
LOG_JSON_VERDICT
#define LOG_JSON_VERDICT
Definition: output-json-alert.c:84
File_::next
struct File_ * next
Definition: util-file.h:159
ACTION_DROP
#define ACTION_DROP
Definition: action-globals.h:30
OutputPacketLoggerFunctions_::LogFunc
PacketLogger LogFunc
Definition: output.h:87
PacketGetAction
uint8_t PacketGetAction(const Packet *p)
Definition: packet.c:61
Signature_::rev
uint32_t rev
Definition: detect.h:735
AppLayerParserGetSubStateProgressName
const char * AppLayerParserGetSubStateProgressName(const AppProto alproto, const uint8_t sub_state, const uint8_t state, const uint8_t dir_flag)
Definition: app-layer-parser.c:1303
ALPROTO_WEBSOCKET
@ ALPROTO_WEBSOCKET
Definition: app-layer-protos.h:64
TcpSession_::client
TcpStream client
Definition: stream-tcp-private.h:297
PacketContextData::next
struct PacketContextData * next
Definition: decode.h:244
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:34
Signature_::prio
int prio
Definition: detect.h:736
ParseSizeStringU32
int ParseSizeStringU32(const char *size, uint32_t *res)
Definition: util-misc.c:174
output-json-alert.h
util-optimize.h
threadvars.h
util-validate.h
Packet_::root
struct Packet_ * root
Definition: decode.h:666
TcpSession_::server
TcpStream server
Definition: stream-tcp-private.h:296
JsonAddrInfo_::src_ip
char src_ip[JSON_ADDR_LEN]
Definition: output-json.h:42
EveAddVerdict
void EveAddVerdict(SCJsonBuilder *jb, const Packet *p, const uint8_t alert_action)
Build verdict object.
Definition: output-json-alert.c:551
PACKET_ALERT_FLAG_RATE_FILTER_MODIFIED
#define PACKET_ALERT_FLAG_RATE_FILTER_MODIFIED
Definition: decode.h:276
HttpXFFCfg_::flags
uint8_t flags
Definition: app-layer-htp-xff.h:42
Signature_::metadata
DetectMetadataHead * metadata
Definition: detect.h:763
DetectFirewallPolicy
Definition: detect.h:938
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:274
EveHttpLogJSONBodyBase64
void EveHttpLogJSONBodyBase64(SCJsonBuilder *js, Flow *f, uint64_t tx_id)
Definition: output-json-http.c:413
AlertJsonOutputCtx
struct AlertJsonOutputCtx_ AlertJsonOutputCtx
JsonAlertLogThread_::payload_buffer
MemBuffer * payload_buffer
Definition: output-json-alert.c:110
SCFree
#define SCFree(p)
Definition: util-mem.h:61
AppLayerParserGetSubStateName
const char * AppLayerParserGetSubStateName(const AppProto alproto, const uint8_t sub_state)
Definition: app-layer-parser.c:1352
Packet_::pkt_src
uint8_t pkt_src
Definition: decode.h:626
DetectReference_::key
char * key
Definition: detect-reference.h:32
util-logopenfile.h
Flow_::alstate
void * alstate
Definition: flow.h:480
Signature_::id
uint32_t id
Definition: detect.h:733
Packet_::recursion_level
uint8_t recursion_level
Definition: decode.h:541
LOG_JSON_HTTP_BODY_BASE64
#define LOG_JSON_HTTP_BODY_BASE64
Definition: output-json-alert.c:81
output-json-ike.h
detect-parse.h
FrameJsonLogOneFrame
void FrameJsonLogOneFrame(const uint8_t ipproto, const Frame *frame, Flow *f, const TcpStream *stream, const Packet *p, SCJsonBuilder *jb, MemBuffer *buffer)
log a single frame
Definition: output-json-frame.c:239
util-buffer.h
Signature_
Signature container.
Definition: detect.h:688
LOG_JSON_PACKET
#define LOG_JSON_PACKET
Definition: output-json-alert.c:75
PACKET_ALERT_FLAG_TX
#define PACKET_ALERT_FLAG_TX
Definition: decode.h:274
JsonAddrInfo_::dst_ip
char dst_ip[JSON_ADDR_LEN]
Definition: output-json.h:43
OutputJsonCtx_::file_ctx
LogFileCtx * file_ctx
Definition: output-json.h:78
LOG_JSON_HTTP_BODY
#define LOG_JSON_HTTP_BODY
Definition: output-json-alert.c:80
METADATA_DEFAULTS
#define METADATA_DEFAULTS
Definition: output-json-alert.c:90
ACTION_ACCEPT
#define ACTION_ACCEPT
Definition: action-globals.h:36
EngineModeIsIPS
int EngineModeIsIPS(void)
Definition: suricata.c:246
LOG_JSON_FLOW
#define LOG_JSON_FLOW
Definition: output-json-alert.c:79
MemBufferWriteRaw
uint32_t MemBufferWriteRaw(MemBuffer *dst, const uint8_t *raw, const uint32_t raw_len)
Write a raw buffer to the MemBuffer dst.
Definition: util-buffer.c:115
PacketAlert_
Definition: decode.h:249
MemBufferWriteString
void MemBufferWriteString(MemBuffer *dst, const char *fmt,...)
Definition: util-buffer.c:130
LOG_DIR_PACKET
@ LOG_DIR_PACKET
Definition: output-eve-bindgen.h:34
Signature_::detect_table
uint8_t detect_table
Definition: detect.h:722
output-json-smb.h
ALPROTO_SMB
@ ALPROTO_SMB
Definition: app-layer-protos.h:43
likely
#define likely(expr)
Definition: util-optimize.h:32
IPPROTO_SCTP
#define IPPROTO_SCTP
Definition: decode.h:1273
PacketContextData::json_string
char * json_string
Definition: decode.h:243
HttpXFFGetIPFromTx
int HttpXFFGetIPFromTx(const Flow *f, uint64_t tx_id, HttpXFFCfg *xff_cfg, char *dstbuf, int dstbuflen)
Function to return XFF IP if any in the selected transaction. The caller needs to lock the flow.
Definition: app-layer-htp-xff.c:152
output-json-smtp.h
TcpSession_
Definition: stream-tcp-private.h:283
output-json-http.h
util-misc.h
PKT_HAS_TAG
#define PKT_HAS_TAG
Definition: decode.h:1303
Signature_::msg
char * msg
Definition: detect.h:756
flow.h
DetectEngineSetParseMetadata
void DetectEngineSetParseMetadata(void)
Definition: detect-engine.c:5249
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:451
StreamReassembleLog
int StreamReassembleLog(const TcpSession *ssn, const TcpStream *stream, StreamReassembleRawFunc Callback, void *cb_data, const uint64_t progress_in, uint64_t *progress_out, const bool eof)
Definition: stream-tcp-reassemble.c:1968
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
SCConfNode_
Definition: conf.h:37
LOG_JSON_RULE_METADATA
#define LOG_JSON_RULE_METADATA
Definition: output-json-alert.c:82
OutputPacketLoggerFunctions_
Definition: output.h:86
SCConfNode_::val
char * val
Definition: conf.h:39
XFF_DISABLED
#define XFF_DISABLED
Definition: app-layer-htp-xff.h:29
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:109
LOG_JSON_REFERENCE
#define LOG_JSON_REFERENCE
Definition: output-json-alert.c:88
ALPROTO_NFS
@ ALPROTO_NFS
Definition: app-layer-protos.h:51
MemBufferCreateNew
MemBuffer * MemBufferCreateNew(uint32_t size)
Definition: util-buffer.c:32
output.h
JsonAlertLogRegister
void JsonAlertLogRegister(void)
Definition: output-json-alert.c:1159
AlertJsonStreamDataCallbackData
Definition: output-json-alert.c:601