suricata
output-json-drop.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2023 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  * JSON Drop log module to log the dropped packet information
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 "threads.h"
34 #include "tm-threads.h"
35 #include "threadvars.h"
36 #include "util-debug.h"
37 
38 #include "decode-ipv4.h"
39 #include "detect-parse.h"
40 #include "detect-engine.h"
41 #include "detect-engine-mpm.h"
42 #include "detect-reference.h"
43 
44 #include "output.h"
45 #include "output-json.h"
46 #include "output-json-alert.h"
47 #include "output-json-drop.h"
48 
49 #include "util-unittest.h"
50 #include "util-unittest-helper.h"
52 #include "util-privs.h"
53 #include "util-print.h"
54 #include "util-proto-name.h"
55 #include "util-logopenfile.h"
56 #include "util-time.h"
57 #include "util-buffer.h"
58 
59 #include "action-globals.h"
60 
61 #define MODULE_NAME "JsonDropLog"
62 
63 #define LOG_DROP_ALERTS BIT_U8(1)
64 #define LOG_DROP_VERDICT BIT_U8(2)
65 
66 typedef struct JsonDropOutputCtx_ {
67  uint8_t flags;
70 
71 typedef struct JsonDropLogThread_ {
75 
76 /* default to true as this has been the default behavior for a long time */
77 static int g_droplog_flows_start = 1;
78 
79 /**
80  * \brief Log the dropped packets in netfilter format when engine is running
81  * in inline mode
82  *
83  * \param tv Pointer the current thread variables
84  * \param p Pointer the packet which is being logged
85  *
86  * \return return TM_ECODE_OK on success
87  */
88 static int DropLogJSON(ThreadVars *tv, JsonDropLogThread *aft, const Packet *p)
89 {
90  JsonDropOutputCtx *drop_ctx = aft->drop_ctx;
91 
93  JsonAddrInfoInit(p, LOG_DIR_PACKET, &addr, &drop_ctx->eve_ctx->cfg);
94 
95  SCJsonBuilder *js = CreateEveHeader(p, LOG_DIR_PACKET, "drop", &addr, drop_ctx->eve_ctx);
96  if (unlikely(js == NULL))
97  return TM_ECODE_OK;
98 
99  if (p->flow != NULL) {
100  if (p->flowflags & FLOW_PKT_TOSERVER) {
101  SCJbSetString(js, "direction", "to_server");
102  } else {
103  SCJbSetString(js, "direction", "to_client");
104  }
105  }
106 
107  SCJbOpenObject(js, "drop");
108 
109  uint16_t proto = 0;
110  if (PacketIsIPv4(p)) {
111  const IPV4Hdr *ip4h = PacketGetIPv4(p);
112  SCJbSetUint(js, "len", IPV4_GET_RAW_IPLEN(ip4h));
113  SCJbSetUint(js, "tos", IPV4_GET_RAW_IPTOS(ip4h));
114  SCJbSetUint(js, "ttl", IPV4_GET_RAW_IPTTL(ip4h));
115  SCJbSetUint(js, "ipid", IPV4_GET_RAW_IPID(ip4h));
116  proto = IPV4_GET_RAW_IPPROTO(ip4h);
117  } else if (PacketIsIPv6(p)) {
118  const IPV6Hdr *ip6h = PacketGetIPv6(p);
119  SCJbSetUint(js, "len", IPV6_GET_RAW_PLEN(ip6h));
120  SCJbSetUint(js, "tc", IPV6_GET_RAW_CLASS(ip6h));
121  SCJbSetUint(js, "hoplimit", IPV6_GET_RAW_HLIM(ip6h));
122  SCJbSetUint(js, "flowlbl", IPV6_GET_RAW_FLOW(ip6h));
123  proto = IPV6_GET_L4PROTO(p);
124  }
125  switch (proto) {
126  case IPPROTO_TCP:
127  if (PacketIsTCP(p)) {
128  const TCPHdr *tcph = PacketGetTCP(p);
129  SCJbSetUint(js, "tcpseq", TCP_GET_RAW_SEQ(tcph));
130  SCJbSetUint(js, "tcpack", TCP_GET_RAW_ACK(tcph));
131  SCJbSetUint(js, "tcpwin", TCP_GET_RAW_WINDOW(tcph));
132  SCJbSetBool(js, "syn", TCP_ISSET_FLAG_RAW_SYN(tcph));
133  SCJbSetBool(js, "ack", TCP_ISSET_FLAG_RAW_ACK(tcph));
134  SCJbSetBool(js, "psh", TCP_ISSET_FLAG_RAW_PUSH(tcph));
135  SCJbSetBool(js, "rst", TCP_ISSET_FLAG_RAW_RST(tcph));
136  SCJbSetBool(js, "urg", TCP_ISSET_FLAG_RAW_URG(tcph));
137  SCJbSetBool(js, "fin", TCP_ISSET_FLAG_RAW_FIN(tcph));
138  SCJbSetUint(js, "tcpres", TCP_GET_RAW_X2(tcph));
139  SCJbSetUint(js, "tcpurgp", TCP_GET_RAW_URG_POINTER(tcph));
140  }
141  break;
142  case IPPROTO_UDP:
143  if (PacketIsUDP(p)) {
144  const UDPHdr *udph = PacketGetUDP(p);
145  SCJbSetUint(js, "udplen", UDP_GET_RAW_LEN(udph));
146  }
147  break;
148  case IPPROTO_ICMP:
149  if (PacketIsICMPv4(p)) {
150  SCJbSetUint(js, "icmp_id", ICMPV4_GET_ID(p));
151  SCJbSetUint(js, "icmp_seq", ICMPV4_GET_SEQ(p));
152  } else if (PacketIsICMPv6(p)) {
153  SCJbSetUint(js, "icmp_id", ICMPV6_GET_ID(p));
154  SCJbSetUint(js, "icmp_seq", ICMPV6_GET_SEQ(p));
155  }
156  break;
157  }
158  if (p->drop_reason != 0) {
159  const char *str = PacketDropReasonToString(p->drop_reason);
160  SCJbSetString(js, "reason", str);
161  }
162 
163  /* Close drop. */
164  SCJbClose(js);
165 
166  if (aft->drop_ctx->flags & LOG_DROP_VERDICT) {
167  EveAddVerdict(js, p, 0);
168  }
169 
170  if (aft->drop_ctx->flags & LOG_DROP_ALERTS) {
171  bool logged = false;
172  for (int i = 0; i < p->alerts.cnt; i++) {
173  const PacketAlert *pa = &p->alerts.alerts[i];
174  if (unlikely(pa->s == NULL)) {
175  continue;
176  }
178  ((pa->action & ACTION_DROP) && EngineModeIsIPS()))
179  {
180  AlertJsonHeader(p, pa, js, 0, &addr, NULL);
181  logged = true;
182  break;
183  }
184  }
185  if (!logged && p->alerts.drop.action != 0) {
186  const PacketAlert *pa = &p->alerts.drop;
187  AlertJsonHeader(p, pa, js, 0, &addr, NULL);
188  }
189  }
190 
191  OutputJsonBuilderBuffer(tv, p, p->flow, js, aft->ctx);
192  SCJbFree(js);
193 
194  return TM_ECODE_OK;
195 }
196 
197 static TmEcode JsonDropLogThreadInit(ThreadVars *t, const void *initdata, void **data)
198 {
199  JsonDropLogThread *aft = SCCalloc(1, sizeof(JsonDropLogThread));
200  if (unlikely(aft == NULL))
201  return TM_ECODE_FAILED;
202 
203  if(initdata == NULL)
204  {
205  SCLogDebug("Error getting context for EveLogDrop. \"initdata\" argument NULL");
206  goto error_exit;
207  }
208 
209  /** Use the Output Context (file pointer and mutex) */
210  aft->drop_ctx = ((OutputCtx *)initdata)->data;
211  aft->ctx = CreateEveThreadCtx(t, aft->drop_ctx->eve_ctx);
212  if (!aft->ctx) {
213  goto error_exit;
214  }
215 
216  *data = (void *)aft;
217  return TM_ECODE_OK;
218 
219 error_exit:
220  SCFree(aft);
221  return TM_ECODE_FAILED;
222 }
223 
224 static TmEcode JsonDropLogThreadDeinit(ThreadVars *t, void *data)
225 {
226  JsonDropLogThread *aft = (JsonDropLogThread *)data;
227  if (aft == NULL) {
228  return TM_ECODE_OK;
229  }
230 
231  FreeEveThreadCtx(aft->ctx);
232 
233  /* clear memory */
234  memset(aft, 0, sizeof(*aft));
235 
236  SCFree(aft);
237  return TM_ECODE_OK;
238 }
239 
240 static void JsonDropOutputCtxFree(JsonDropOutputCtx *drop_ctx)
241 {
242  if (drop_ctx != NULL) {
243  SCFree(drop_ctx);
244  }
245 }
246 
247 static void JsonDropLogDeInitCtxSub(OutputCtx *output_ctx)
248 {
250 
251  JsonDropOutputCtx *drop_ctx = output_ctx->data;
252  SCFree(drop_ctx);
253  SCLogDebug("cleaning up sub output_ctx %p", output_ctx);
254  SCFree(output_ctx);
255 }
256 
257 static OutputInitResult JsonDropLogInitCtxSub(SCConfNode *conf, OutputCtx *parent_ctx)
258 {
259  OutputInitResult result = { NULL, false };
260  if (OutputDropLoggerEnable() != 0) {
261  SCLogError("only one 'drop' logger "
262  "can be enabled");
263  return result;
264  }
265 
266  OutputJsonCtx *ajt = parent_ctx->data;
267 
268  JsonDropOutputCtx *drop_ctx = SCCalloc(1, sizeof(*drop_ctx));
269  if (drop_ctx == NULL)
270  return result;
271 
272  OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
273  if (unlikely(output_ctx == NULL)) {
274  JsonDropOutputCtxFree(drop_ctx);
275  return result;
276  }
277 
278  if (conf) {
279  const char *extended = SCConfNodeLookupChildValue(conf, "alerts");
280  if (extended != NULL) {
281  if (SCConfValIsTrue(extended)) {
282  drop_ctx->flags |= LOG_DROP_ALERTS;
283  }
284  }
285  extended = SCConfNodeLookupChildValue(conf, "flows");
286  if (extended != NULL) {
287  if (strcasecmp(extended, "start") == 0) {
288  g_droplog_flows_start = 1;
289  } else if (strcasecmp(extended, "all") == 0) {
290  g_droplog_flows_start = 0;
291  } else {
292  SCLogWarning("valid options for "
293  "'flow' are 'start' and 'all'");
294  }
295  }
296 
297  extended = SCConfNodeLookupChildValue(conf, "verdict");
298 
299  if (EngineModeIsFirewall()) {
300  drop_ctx->flags |= LOG_DROP_VERDICT;
301  } else if (extended != NULL) {
302  if (SCConfValIsTrue(extended)) {
303  drop_ctx->flags |= LOG_DROP_VERDICT;
304  }
305  }
306  }
307 
308  drop_ctx->eve_ctx = ajt;
309 
310  output_ctx->data = drop_ctx;
311  output_ctx->DeInit = JsonDropLogDeInitCtxSub;
312 
313  result.ctx = output_ctx;
314  result.ok = true;
315  return result;
316 }
317 
318 /**
319  * \brief Log the dropped packets when engine is running in inline mode
320  *
321  * \param tv Pointer the current thread variables
322  * \param data Pointer to the droplog struct
323  * \param p Pointer the packet which is being logged
324  *
325  * \retval 0 on success
326  */
327 static int JsonDropLogger(ThreadVars *tv, void *thread_data, const Packet *p)
328 {
329  JsonDropLogThread *td = thread_data;
330  int r = DropLogJSON(tv, td, p);
331  if (r < 0)
332  return -1;
333 
334  if (!g_droplog_flows_start)
335  return 0;
336 
337  if (p->flow) {
338  if (p->flow->flags & FLOW_ACTION_DROP) {
341  else if (PKT_IS_TOCLIENT(p) && !(p->flow->flags & FLOW_TOCLIENT_DROP_LOGGED))
343  }
344  }
345  return 0;
346 }
347 
348 /**
349  * \brief Check if we need to drop-log this packet
350  *
351  * \param tv Pointer the current thread variables
352  * \param p Pointer the packet which is tested
353  *
354  * \retval bool true or false
355  */
356 static bool JsonDropLogCondition(ThreadVars *tv, void *data, const Packet *p)
357 {
358  if (!EngineModeIsIPS()) {
359  SCLogDebug("engine is not running in inline mode, so returning");
360  return false;
361  }
362  if (PKT_IS_PSEUDOPKT(p)) {
363  SCLogDebug("drop log doesn't log pseudo packets");
364  return false;
365  }
366 
367  if (!(PacketCheckAction(p, ACTION_DROP))) {
368  return false;
369  }
370 
371  if (g_droplog_flows_start && p->flow != NULL) {
372  bool ret = false;
373 
374  /* for a flow that will be dropped fully, log just once per direction */
375  if (p->flow->flags & FLOW_ACTION_DROP) {
377  ret = true;
378  else if (PKT_IS_TOCLIENT(p) && !(p->flow->flags & FLOW_TOCLIENT_DROP_LOGGED))
379  ret = true;
380  }
381 
382  /* if drop is caused by signature, log anyway */
383  if (p->alerts.drop.action != 0)
384  ret = true;
385 
386  return ret;
387  }
388 
389  return true;
390 }
391 
393 {
394  OutputPacketLoggerFunctions output_logger_functions = {
395  .LogFunc = JsonDropLogger,
396  .ConditionFunc = JsonDropLogCondition,
397  .ThreadInitFunc = JsonDropLogThreadInit,
398  .ThreadDeinitFunc = JsonDropLogThreadDeinit,
399  .ThreadExitPrintStatsFunc = NULL,
400  };
401 
402  OutputRegisterPacketSubModule(LOGGER_JSON_DROP, "eve-log", MODULE_NAME, "eve-log.drop",
403  JsonDropLogInitCtxSub, &output_logger_functions);
404 }
PKT_IS_TOCLIENT
#define PKT_IS_TOCLIENT(p)
Definition: decode.h:240
TCP_GET_RAW_SEQ
#define TCP_GET_RAW_SEQ(tcph)
Definition: decode-tcp.h:80
PacketCheckAction
bool PacketCheckAction(const Packet *p, const uint8_t a)
Definition: packet.c:50
tm-threads.h
IPV4_GET_RAW_IPID
#define IPV4_GET_RAW_IPID(ip4h)
Definition: decode-ipv4.h:99
SCConfValIsTrue
int SCConfValIsTrue(const char *val)
Check if a value is true.
Definition: conf.c:552
TCP_GET_RAW_X2
#define TCP_GET_RAW_X2(tcph)
Definition: decode-tcp.h:73
detect-engine.h
OutputDropLoggerEnable
int OutputDropLoggerEnable(void)
Definition: output.c:668
IPV6_GET_RAW_PLEN
#define IPV6_GET_RAW_PLEN(ip6h)
Definition: decode-ipv6.h:66
PacketAlert_::s
const struct Signature_ * s
Definition: decode.h:253
Flow_::flags
uint64_t flags
Definition: flow.h:396
JsonDropLogThread_::drop_ctx
JsonDropOutputCtx * drop_ctx
Definition: output-json-drop.c:72
IPV6_GET_RAW_HLIM
#define IPV6_GET_RAW_HLIM(ip6h)
Definition: decode-ipv6.h:67
IPV4_GET_RAW_IPPROTO
#define IPV4_GET_RAW_IPPROTO(ip4h)
Definition: decode-ipv4.h:103
PKT_IS_PSEUDOPKT
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Definition: decode.h:1346
OutputJsonCtx_::cfg
OutputJsonCommonSettings cfg
Definition: output-json.h:80
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
ACTION_REJECT
#define ACTION_REJECT
Definition: action-globals.h:31
JsonDropLogThread_
Definition: output-json-drop.c:71
PacketDropReasonToString
const char * PacketDropReasonToString(enum PacketDropReason r)
Definition: decode.c:924
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
FreeEveThreadCtx
void FreeEveThreadCtx(OutputJsonThreadCtx *ctx)
Definition: output-json-common.c:58
PacketAlerts_::cnt
uint16_t cnt
Definition: decode.h:288
action-globals.h
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
ICMPV6_GET_SEQ
#define ICMPV6_GET_SEQ(p)
Definition: decode-icmpv6.h:109
IPV6_GET_RAW_CLASS
#define IPV6_GET_RAW_CLASS(ip6h)
Definition: decode-ipv6.h:63
JsonAddrInfoInit
void JsonAddrInfoInit(const Packet *p, enum SCOutputJsonLogDirection dir, JsonAddrInfo *addr, OutputJsonCommonSettings *cfg)
Definition: output-json.c:467
logged
int logged
Definition: app-layer-htp.h:1
JsonDropOutputCtx
struct JsonDropOutputCtx_ JsonDropOutputCtx
AlertJsonHeader
void AlertJsonHeader(const Packet *p, const PacketAlert *pa, SCJsonBuilder *js, uint16_t flags, JsonAddrInfo *addr, char *xff_buffer)
Definition: output-json-alert.c:205
PacketAlerts_::alerts
PacketAlert * alerts
Definition: decode.h:291
CreateEveThreadCtx
OutputJsonThreadCtx * CreateEveThreadCtx(ThreadVars *t, OutputJsonCtx *ctx)
Definition: output-json-common.c:29
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:224
IPV6_GET_L4PROTO
#define IPV6_GET_L4PROTO(p)
Definition: decode-ipv6.h:75
ICMPV6_GET_ID
#define ICMPV6_GET_ID(p)
Definition: decode-icmpv6.h:107
PacketAlerts_::drop
PacketAlert drop
Definition: decode.h:294
util-privs.h
FLOW_ACTION_DROP
#define FLOW_ACTION_DROP
Definition: flow.h:69
OutputJsonBuilderBuffer
void OutputJsonBuilderBuffer(ThreadVars *tv, const Packet *p, Flow *f, SCJsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:994
FLOW_TOSERVER_DROP_LOGGED
#define FLOW_TOSERVER_DROP_LOGGED
Definition: flow.h:77
proto
uint8_t proto
Definition: decode-template.h:0
SCConfNodeLookupChildValue
const char * SCConfNodeLookupChildValue(const SCConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
Definition: conf.c:852
Packet_::flowflags
uint8_t flowflags
Definition: decode.h:536
EngineModeIsFirewall
bool EngineModeIsFirewall(void)
Definition: suricata.c:239
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:82
TCP_GET_RAW_WINDOW
#define TCP_GET_RAW_WINDOW(tcph)
Definition: decode-tcp.h:83
Packet_::alerts
PacketAlerts alerts
Definition: decode.h:624
util-unittest.h
util-unittest-helper.h
OutputCtx_::data
void * data
Definition: tm-modules.h:91
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:81
OutputCtx_
Definition: tm-modules.h:88
PacketAlert_::action
uint8_t action
Definition: decode.h:251
OutputJsonThreadCtx_
Definition: output-json.h:85
detect-reference.h
ICMPV4_GET_SEQ
#define ICMPV4_GET_SEQ(p)
Definition: decode-icmpv4.h:238
ACTION_REJECT_DST
#define ACTION_REJECT_DST
Definition: action-globals.h:32
util-debug.h
UDP_GET_RAW_LEN
#define UDP_GET_RAW_LEN(udph)
Definition: decode-udp.h:30
LOG_DROP_ALERTS
#define LOG_DROP_ALERTS
Definition: output-json-drop.c:63
IPV4_GET_RAW_IPTOS
#define IPV4_GET_RAW_IPTOS(ip4h)
Definition: decode-ipv4.h:97
PKT_IS_TOSERVER
#define PKT_IS_TOSERVER(p)
Definition: decode.h:239
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
output-json.h
TCP_ISSET_FLAG_RAW_ACK
#define TCP_ISSET_FLAG_RAW_ACK(tcph)
Definition: decode-tcp.h:123
JsonDropLogThread_::ctx
OutputJsonThreadCtx * ctx
Definition: output-json-drop.c:73
TCP_ISSET_FLAG_RAW_RST
#define TCP_ISSET_FLAG_RAW_RST(tcph)
Definition: decode-tcp.h:121
util-print.h
detect-engine-mpm.h
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
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
LOG_DROP_VERDICT
#define LOG_DROP_VERDICT
Definition: output-json-drop.c:64
JsonAddrInfo_
Definition: output-json.h:41
IPV6Hdr_
Definition: decode-ipv6.h:32
Packet_
Definition: decode.h:505
IPV4_GET_RAW_IPTTL
#define IPV4_GET_RAW_IPTTL(ip4h)
Definition: decode-ipv4.h:102
conf.h
TCP_ISSET_FLAG_RAW_FIN
#define TCP_ISSET_FLAG_RAW_FIN(tcph)
Definition: decode-tcp.h:119
TmEcode
TmEcode
Definition: tm-threads-common.h:80
util-proto-name.h
JsonDropOutputCtx_::flags
uint8_t flags
Definition: output-json-drop.c:67
IPV4Hdr_
Definition: decode-ipv4.h:72
ACTION_REJECT_BOTH
#define ACTION_REJECT_BOTH
Definition: action-globals.h:33
decode-ipv4.h
ICMPV4_GET_ID
#define ICMPV4_GET_ID(p)
Definition: decode-icmpv4.h:236
OutputInitResult_
Definition: output.h:46
Packet_::flow
struct Flow_ * flow
Definition: decode.h:553
suricata-common.h
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:94
MODULE_NAME
#define MODULE_NAME
Definition: output-json-drop.c:61
packet.h
ACTION_DROP
#define ACTION_DROP
Definition: action-globals.h:30
LOGGER_JSON_DROP
@ LOGGER_JSON_DROP
Definition: suricata-common.h:499
OutputPacketLoggerFunctions_::LogFunc
PacketLogger LogFunc
Definition: output.h:86
IPV6_GET_RAW_FLOW
#define IPV6_GET_RAW_FLOW(ip6h)
Definition: decode-ipv6.h:64
util-classification-config.h
UDPHdr_
Definition: decode-udp.h:42
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:231
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:33
output-json-alert.h
threadvars.h
EveAddVerdict
void EveAddVerdict(SCJsonBuilder *jb, const Packet *p, const uint8_t alert_action)
Build verdict object.
Definition: output-json-alert.c:541
str
#define str(s)
Definition: suricata-common.h:308
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:274
JsonDropLogThread
struct JsonDropLogThread_ JsonDropLogThread
SCFree
#define SCFree(p)
Definition: util-mem.h:61
util-logopenfile.h
JsonDropOutputCtx_
Definition: output-json-drop.c:66
JsonDropLogRegister
void JsonDropLogRegister(void)
Definition: output-json-drop.c:392
detect-parse.h
util-buffer.h
FLOW_TOCLIENT_DROP_LOGGED
#define FLOW_TOCLIENT_DROP_LOGGED
Definition: flow.h:79
EngineModeIsIPS
int EngineModeIsIPS(void)
Definition: suricata.c:246
Packet_::drop_reason
uint8_t drop_reason
Definition: decode.h:647
PacketAlert_
Definition: decode.h:249
LOG_DIR_PACKET
@ LOG_DIR_PACKET
Definition: output-eve-bindgen.h:34
IPV4_GET_RAW_IPLEN
#define IPV4_GET_RAW_IPLEN(ip4h)
Definition: decode-ipv4.h:98
TCP_ISSET_FLAG_RAW_SYN
#define TCP_ISSET_FLAG_RAW_SYN(tcph)
Definition: decode-tcp.h:120
TCP_GET_RAW_URG_POINTER
#define TCP_GET_RAW_URG_POINTER(tcph)
Definition: decode-tcp.h:84
flow.h
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
TCP_GET_RAW_ACK
#define TCP_GET_RAW_ACK(tcph)
Definition: decode-tcp.h:81
SCConfNode_
Definition: conf.h:37
OutputPacketLoggerFunctions_
Definition: output.h:85
TCP_ISSET_FLAG_RAW_URG
#define TCP_ISSET_FLAG_RAW_URG(tcph)
Definition: decode-tcp.h:124
TCPHdr_
Definition: decode-tcp.h:149
JsonDropOutputCtx_::eve_ctx
OutputJsonCtx * eve_ctx
Definition: output-json-drop.c:68
output.h
OutputDropLoggerDisable
void OutputDropLoggerDisable(void)
Definition: output.c:676
TCP_ISSET_FLAG_RAW_PUSH
#define TCP_ISSET_FLAG_RAW_PUSH(tcph)
Definition: decode-tcp.h:122
output-json-drop.h