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 (JsonDropLogThread *aft, const Packet *p)
89 {
90  JsonDropOutputCtx *drop_ctx = aft->drop_ctx;
91 
94 
95  JsonBuilder *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  jb_set_string(js, "direction", "to_server");
102  } else {
103  jb_set_string(js, "direction", "to_client");
104  }
105  }
106 
107  jb_open_object(js, "drop");
108 
109  uint16_t proto = 0;
110  if (PKT_IS_IPV4(p)) {
111  jb_set_uint(js, "len", IPV4_GET_IPLEN(p));
112  jb_set_uint(js, "tos", IPV4_GET_IPTOS(p));
113  jb_set_uint(js, "ttl", IPV4_GET_IPTTL(p));
114  jb_set_uint(js, "ipid", IPV4_GET_IPID(p));
115  proto = IPV4_GET_IPPROTO(p);
116  } else if (PKT_IS_IPV6(p)) {
117  jb_set_uint(js, "len", IPV6_GET_PLEN(p));
118  jb_set_uint(js, "tc", IPV6_GET_CLASS(p));
119  jb_set_uint(js, "hoplimit", IPV6_GET_HLIM(p));
120  jb_set_uint(js, "flowlbl", IPV6_GET_FLOW(p));
121  proto = IPV6_GET_L4PROTO(p);
122  }
123  switch (proto) {
124  case IPPROTO_TCP:
125  if (PKT_IS_TCP(p)) {
126  jb_set_uint(js, "tcpseq", TCP_GET_SEQ(p));
127  jb_set_uint(js, "tcpack", TCP_GET_ACK(p));
128  jb_set_uint(js, "tcpwin", TCP_GET_WINDOW(p));
129  jb_set_bool(js, "syn", TCP_ISSET_FLAG_SYN(p) ? true : false);
130  jb_set_bool(js, "ack", TCP_ISSET_FLAG_ACK(p) ? true : false);
131  jb_set_bool(js, "psh", TCP_ISSET_FLAG_PUSH(p) ? true : false);
132  jb_set_bool(js, "rst", TCP_ISSET_FLAG_RST(p) ? true : false);
133  jb_set_bool(js, "urg", TCP_ISSET_FLAG_URG(p) ? true : false);
134  jb_set_bool(js, "fin", TCP_ISSET_FLAG_FIN(p) ? true : false);
135  jb_set_uint(js, "tcpres", TCP_GET_RAW_X2(p->tcph));
136  jb_set_uint(js, "tcpurgp", TCP_GET_URG_POINTER(p));
137  }
138  break;
139  case IPPROTO_UDP:
140  if (PKT_IS_UDP(p)) {
141  jb_set_uint(js, "udplen", UDP_GET_LEN(p));
142  }
143  break;
144  case IPPROTO_ICMP:
145  if (PKT_IS_ICMPV4(p)) {
146  jb_set_uint(js, "icmp_id", ICMPV4_GET_ID(p));
147  jb_set_uint(js, "icmp_seq", ICMPV4_GET_SEQ(p));
148  } else if(PKT_IS_ICMPV6(p)) {
149  jb_set_uint(js, "icmp_id", ICMPV6_GET_ID(p));
150  jb_set_uint(js, "icmp_seq", ICMPV6_GET_SEQ(p));
151  }
152  break;
153  }
154  if (p->drop_reason != 0) {
155  const char *str = PacketDropReasonToString(p->drop_reason);
156  jb_set_string(js, "reason", str);
157  }
158 
159  /* Close drop. */
160  jb_close(js);
161 
162  if (aft->drop_ctx->flags & LOG_DROP_VERDICT) {
163  EveAddVerdict(js, p);
164  }
165 
166  if (aft->drop_ctx->flags & LOG_DROP_ALERTS) {
167  int logged = 0;
168  int i;
169  for (i = 0; i < p->alerts.cnt; i++) {
170  const PacketAlert *pa = &p->alerts.alerts[i];
171  if (unlikely(pa->s == NULL)) {
172  continue;
173  }
175  ((pa->action & ACTION_DROP) && EngineModeIsIPS()))
176  {
177  AlertJsonHeader(NULL, p, pa, js, 0, &addr, NULL);
178  logged = 1;
179  break;
180  }
181  }
182  if (logged == 0) {
183  if (p->alerts.drop.action != 0) {
184  const PacketAlert *pa = &p->alerts.drop;
185  AlertJsonHeader(NULL, p, pa, js, 0, &addr, NULL);
186  }
187  }
188  }
189 
190  OutputJsonBuilderBuffer(js, aft->ctx);
191  jb_free(js);
192 
193  return TM_ECODE_OK;
194 }
195 
196 static TmEcode JsonDropLogThreadInit(ThreadVars *t, const void *initdata, void **data)
197 {
198  JsonDropLogThread *aft = SCCalloc(1, sizeof(JsonDropLogThread));
199  if (unlikely(aft == NULL))
200  return TM_ECODE_FAILED;
201 
202  if(initdata == NULL)
203  {
204  SCLogDebug("Error getting context for EveLogDrop. \"initdata\" argument NULL");
205  goto error_exit;
206  }
207 
208  /** Use the Output Context (file pointer and mutex) */
209  aft->drop_ctx = ((OutputCtx *)initdata)->data;
210  aft->ctx = CreateEveThreadCtx(t, aft->drop_ctx->eve_ctx);
211  if (!aft->ctx) {
212  goto error_exit;
213  }
214 
215  *data = (void *)aft;
216  return TM_ECODE_OK;
217 
218 error_exit:
219  SCFree(aft);
220  return TM_ECODE_FAILED;
221 }
222 
223 static TmEcode JsonDropLogThreadDeinit(ThreadVars *t, void *data)
224 {
225  JsonDropLogThread *aft = (JsonDropLogThread *)data;
226  if (aft == NULL) {
227  return TM_ECODE_OK;
228  }
229 
230  FreeEveThreadCtx(aft->ctx);
231 
232  /* clear memory */
233  memset(aft, 0, sizeof(*aft));
234 
235  SCFree(aft);
236  return TM_ECODE_OK;
237 }
238 
239 static void JsonDropOutputCtxFree(JsonDropOutputCtx *drop_ctx)
240 {
241  if (drop_ctx != NULL) {
242  SCFree(drop_ctx);
243  }
244 }
245 
246 static void JsonDropLogDeInitCtxSub(OutputCtx *output_ctx)
247 {
249 
250  JsonDropOutputCtx *drop_ctx = output_ctx->data;
251  SCFree(drop_ctx);
252  SCLogDebug("cleaning up sub output_ctx %p", output_ctx);
253  SCFree(output_ctx);
254 }
255 
256 static OutputInitResult JsonDropLogInitCtxSub(ConfNode *conf, OutputCtx *parent_ctx)
257 {
258  OutputInitResult result = { NULL, false };
259  if (OutputDropLoggerEnable() != 0) {
260  SCLogError("only one 'drop' logger "
261  "can be enabled");
262  return result;
263  }
264 
265  OutputJsonCtx *ajt = parent_ctx->data;
266 
267  JsonDropOutputCtx *drop_ctx = SCCalloc(1, sizeof(*drop_ctx));
268  if (drop_ctx == NULL)
269  return result;
270 
271  OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
272  if (unlikely(output_ctx == NULL)) {
273  JsonDropOutputCtxFree(drop_ctx);
274  return result;
275  }
276 
277  if (conf) {
278  const char *extended = ConfNodeLookupChildValue(conf, "alerts");
279  if (extended != NULL) {
280  if (ConfValIsTrue(extended)) {
281  drop_ctx->flags |= LOG_DROP_ALERTS;
282  }
283  }
284  extended = ConfNodeLookupChildValue(conf, "flows");
285  if (extended != NULL) {
286  if (strcasecmp(extended, "start") == 0) {
287  g_droplog_flows_start = 1;
288  } else if (strcasecmp(extended, "all") == 0) {
289  g_droplog_flows_start = 0;
290  } else {
291  SCLogWarning("valid options for "
292  "'flow' are 'start' and 'all'");
293  }
294  }
295  extended = ConfNodeLookupChildValue(conf, "verdict");
296  if (extended != NULL) {
297  if (ConfValIsTrue(extended)) {
298  drop_ctx->flags |= LOG_DROP_VERDICT;
299  }
300  }
301  }
302 
303  drop_ctx->eve_ctx = ajt;
304 
305  output_ctx->data = drop_ctx;
306  output_ctx->DeInit = JsonDropLogDeInitCtxSub;
307 
308  result.ctx = output_ctx;
309  result.ok = true;
310  return result;
311 }
312 
313 /**
314  * \brief Log the dropped packets when engine is running in inline mode
315  *
316  * \param tv Pointer the current thread variables
317  * \param data Pointer to the droplog struct
318  * \param p Pointer the packet which is being logged
319  *
320  * \retval 0 on success
321  */
322 static int JsonDropLogger(ThreadVars *tv, void *thread_data, const Packet *p)
323 {
324  JsonDropLogThread *td = thread_data;
325  int r = DropLogJSON(td, p);
326  if (r < 0)
327  return -1;
328 
329  if (!g_droplog_flows_start)
330  return 0;
331 
332  if (p->flow) {
333  if (p->flow->flags & FLOW_ACTION_DROP) {
336  else if (PKT_IS_TOCLIENT(p) && !(p->flow->flags & FLOW_TOCLIENT_DROP_LOGGED))
338  }
339  }
340  return 0;
341 }
342 
343 /**
344  * \brief Check if we need to drop-log this packet
345  *
346  * \param tv Pointer the current thread variables
347  * \param p Pointer the packet which is tested
348  *
349  * \retval bool true or false
350  */
351 static bool JsonDropLogCondition(ThreadVars *tv, void *data, const Packet *p)
352 {
353  if (!EngineModeIsIPS()) {
354  SCLogDebug("engine is not running in inline mode, so returning");
355  return false;
356  }
357  if (PKT_IS_PSEUDOPKT(p)) {
358  SCLogDebug("drop log doesn't log pseudo packets");
359  return false;
360  }
361 
362  if (!(PacketCheckAction(p, ACTION_DROP))) {
363  return false;
364  }
365 
366  if (g_droplog_flows_start && p->flow != NULL) {
367  bool ret = false;
368 
369  /* for a flow that will be dropped fully, log just once per direction */
370  if (p->flow->flags & FLOW_ACTION_DROP) {
372  ret = true;
373  else if (PKT_IS_TOCLIENT(p) && !(p->flow->flags & FLOW_TOCLIENT_DROP_LOGGED))
374  ret = true;
375  }
376 
377  /* if drop is caused by signature, log anyway */
378  if (p->alerts.drop.action != 0)
379  ret = true;
380 
381  return ret;
382  }
383 
384  return true;
385 }
386 
388 {
390  "eve-log.drop", JsonDropLogInitCtxSub, JsonDropLogger,
391  JsonDropLogCondition, JsonDropLogThreadInit, JsonDropLogThreadDeinit,
392  NULL);
393 }
PKT_IS_TOCLIENT
#define PKT_IS_TOCLIENT(p)
Definition: decode.h:253
PacketCheckAction
bool PacketCheckAction(const Packet *p, const uint8_t a)
Definition: packet.c:48
PKT_IS_UDP
#define PKT_IS_UDP(p)
Definition: decode.h:249
tm-threads.h
TCP_GET_RAW_X2
#define TCP_GET_RAW_X2(tcph)
Definition: decode-tcp.h:72
detect-engine.h
OutputDropLoggerEnable
int OutputDropLoggerEnable(void)
Definition: output.c:686
PacketAlert_::s
const struct Signature_ * s
Definition: decode.h:268
JsonDropLogThread_::drop_ctx
JsonDropOutputCtx * drop_ctx
Definition: output-json-drop.c:72
PKT_IS_PSEUDOPKT
#define PKT_IS_PSEUDOPKT(p)
return 1 if the packet is a pseudo packet
Definition: decode.h:1075
PKT_IS_IPV6
#define PKT_IS_IPV6(p)
Definition: decode.h:247
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:868
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
FreeEveThreadCtx
void FreeEveThreadCtx(OutputJsonThreadCtx *ctx)
Definition: output-json-common.c:58
PacketAlerts_::cnt
uint16_t cnt
Definition: decode.h:290
action-globals.h
threads.h
OutputJsonCtx_
Definition: output-json.h:79
ICMPV6_GET_SEQ
#define ICMPV6_GET_SEQ(p)
Definition: decode-icmpv6.h:112
logged
int logged
Definition: app-layer-htp.h:1
JsonDropOutputCtx
struct JsonDropOutputCtx_ JsonDropOutputCtx
OutputJsonBuilderBuffer
int OutputJsonBuilderBuffer(JsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:928
PacketAlerts_::alerts
PacketAlert * alerts
Definition: decode.h:293
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:89
FLOW_PKT_TOSERVER
#define FLOW_PKT_TOSERVER
Definition: flow.h:223
IPV6_GET_L4PROTO
#define IPV6_GET_L4PROTO(p)
Definition: decode-ipv6.h:93
ICMPV6_GET_ID
#define ICMPV6_GET_ID(p)
Definition: decode-icmpv6.h:110
PacketAlerts_::drop
PacketAlert drop
Definition: decode.h:296
util-privs.h
FLOW_ACTION_DROP
#define FLOW_ACTION_DROP
Definition: flow.h:67
FLOW_TOSERVER_DROP_LOGGED
#define FLOW_TOSERVER_DROP_LOGGED
Definition: flow.h:75
proto
uint8_t proto
Definition: decode-template.h:0
Packet_::flowflags
uint8_t flowflags
Definition: decode.h:468
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:85
Packet_::alerts
PacketAlerts alerts
Definition: decode.h:601
util-unittest.h
ConfValIsTrue
int ConfValIsTrue(const char *val)
Check if a value is true.
Definition: conf.c:537
util-unittest-helper.h
OutputCtx_::data
void * data
Definition: tm-modules.h:88
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:84
OutputCtx_
Definition: tm-modules.h:85
IPV6_GET_PLEN
#define IPV6_GET_PLEN(p)
Definition: decode-ipv6.h:88
TCP_GET_WINDOW
#define TCP_GET_WINDOW(p)
Definition: decode-tcp.h:116
PacketAlert_::action
uint8_t action
Definition: decode.h:266
OutputJsonThreadCtx_
Definition: output-json.h:87
detect-reference.h
TCP_ISSET_FLAG_SYN
#define TCP_ISSET_FLAG_SYN(p)
Definition: decode-tcp.h:122
ICMPV4_GET_SEQ
#define ICMPV4_GET_SEQ(p)
Definition: decode-icmpv4.h:245
ACTION_REJECT_DST
#define ACTION_REJECT_DST
Definition: action-globals.h:32
PKT_IS_TCP
#define PKT_IS_TCP(p)
Definition: decode.h:248
IPV4_GET_IPPROTO
#define IPV4_GET_IPPROTO(p)
Definition: decode-ipv4.h:148
util-debug.h
LOG_DROP_ALERTS
#define LOG_DROP_ALERTS
Definition: output-json-drop.c:63
PKT_IS_TOSERVER
#define PKT_IS_TOSERVER(p)
Definition: decode.h:252
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
output-json.h
JsonDropLogThread_::ctx
OutputJsonThreadCtx * ctx
Definition: output-json-drop.c:73
CreateEveHeader
JsonBuilder * CreateEveHeader(const Packet *p, enum OutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, OutputJsonCtx *eve_ctx)
Definition: output-json.c:787
util-print.h
detect-engine-mpm.h
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
IPV4_GET_IPLEN
#define IPV4_GET_IPLEN(p)
Definition: decode-ipv4.h:127
TCP_ISSET_FLAG_URG
#define TCP_ISSET_FLAG_URG(p)
Definition: decode-tcp.h:126
util-time.h
OutputInitResult_::ok
bool ok
Definition: output.h:48
SCLogWarning
#define SCLogWarning(...)
Macro used to log WARNING messages.
Definition: util-debug.h:249
IPV4_GET_IPID
#define IPV4_GET_IPID(p)
Definition: decode-ipv4.h:129
PKT_IS_ICMPV6
#define PKT_IS_ICMPV6(p)
Definition: decode.h:251
TCP_GET_SEQ
#define TCP_GET_SEQ(p)
Definition: decode-tcp.h:114
LOG_DROP_VERDICT
#define LOG_DROP_VERDICT
Definition: output-json-drop.c:64
JsonAddrInfo_
Definition: output-json.h:47
Packet_
Definition: decode.h:437
conf.h
TmEcode
TmEcode
Definition: tm-threads-common.h:83
AlertJsonHeader
void AlertJsonHeader(void *ctx, const Packet *p, const PacketAlert *pa, JsonBuilder *js, uint16_t flags, JsonAddrInfo *addr, char *xff_buffer)
Definition: output-json-alert.c:184
util-proto-name.h
JsonDropOutputCtx_::flags
uint8_t flags
Definition: output-json-drop.c:67
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:243
IPV6_GET_FLOW
#define IPV6_GET_FLOW(p)
Definition: decode-ipv6.h:84
OutputInitResult_
Definition: output.h:46
Packet_::flow
struct Flow_ * flow
Definition: decode.h:476
UDP_GET_LEN
#define UDP_GET_LEN(p)
Definition: decode-udp.h:35
LOG_DIR_PACKET
@ LOG_DIR_PACKET
Definition: output-json.h:37
IPV6_GET_CLASS
#define IPV6_GET_CLASS(p)
Definition: decode-ipv6.h:82
suricata-common.h
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:91
OutputRegisterPacketSubModule
void OutputRegisterPacketSubModule(LoggerId id, const char *parent_name, const char *name, const char *conf_name, OutputInitSubFunc InitFunc, PacketLogger PacketLogFunc, PacketLogCondition PacketConditionFunc, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
Register a packet output sub-module.
Definition: output.c:209
Packet_::tcph
TCPHdr * tcph
Definition: decode.h:567
MODULE_NAME
#define MODULE_NAME
Definition: output-json-drop.c:61
packet.h
EveAddVerdict
void EveAddVerdict(JsonBuilder *jb, const Packet *p)
Build verdict object.
Definition: output-json-alert.c:465
ACTION_DROP
#define ACTION_DROP
Definition: action-globals.h:30
LOGGER_JSON_DROP
@ LOGGER_JSON_DROP
Definition: suricata-common.h:481
TCP_ISSET_FLAG_ACK
#define TCP_ISSET_FLAG_ACK(p)
Definition: decode-tcp.h:125
util-classification-config.h
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
output-json-alert.h
PKT_IS_ICMPV4
#define PKT_IS_ICMPV4(p)
Definition: decode.h:250
threadvars.h
TCP_ISSET_FLAG_RST
#define TCP_ISSET_FLAG_RST(p)
Definition: decode-tcp.h:123
str
#define str(s)
Definition: suricata-common.h:291
IPV4_GET_IPTOS
#define IPV4_GET_IPTOS(p)
Definition: decode-ipv4.h:125
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
JsonDropLogThread
struct JsonDropLogThread_ JsonDropLogThread
SCFree
#define SCFree(p)
Definition: util-mem.h:61
ConfNode_
Definition: conf.h:32
util-logopenfile.h
JsonDropOutputCtx_
Definition: output-json-drop.c:66
TCP_ISSET_FLAG_FIN
#define TCP_ISSET_FLAG_FIN(p)
Definition: decode-tcp.h:121
Flow_::flags
uint32_t flags
Definition: flow.h:421
JsonDropLogRegister
void JsonDropLogRegister(void)
Definition: output-json-drop.c:387
detect-parse.h
util-buffer.h
FLOW_TOCLIENT_DROP_LOGGED
#define FLOW_TOCLIENT_DROP_LOGGED
Definition: flow.h:77
IPV6_GET_HLIM
#define IPV6_GET_HLIM(p)
Definition: decode-ipv6.h:90
EngineModeIsIPS
int EngineModeIsIPS(void)
Definition: suricata.c:234
Packet_::drop_reason
uint8_t drop_reason
Definition: decode.h:628
TCP_GET_URG_POINTER
#define TCP_GET_URG_POINTER(p)
Definition: decode-tcp.h:117
PacketAlert_
Definition: decode.h:264
JsonAddrInfoInit
void JsonAddrInfoInit(const Packet *p, enum OutputJsonLogDirection dir, JsonAddrInfo *addr)
Definition: output-json.c:477
TCP_GET_ACK
#define TCP_GET_ACK(p)
Definition: decode-tcp.h:115
flow.h
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
PKT_IS_IPV4
#define PKT_IS_IPV4(p)
Definition: decode.h:246
JsonDropOutputCtx_::eve_ctx
OutputJsonCtx * eve_ctx
Definition: output-json-drop.c:68
output.h
IPV4_GET_IPTTL
#define IPV4_GET_IPTTL(p)
Definition: decode-ipv4.h:146
OutputDropLoggerDisable
void OutputDropLoggerDisable(void)
Definition: output.c:694
TCP_ISSET_FLAG_PUSH
#define TCP_ISSET_FLAG_PUSH(p)
Definition: decode-tcp.h:124
output-json-drop.h
ConfNodeLookupChildValue
const char * ConfNodeLookupChildValue(const ConfNode *node, const char *name)
Lookup the value of a child configuration node by name.
Definition: conf.c:814