suricata
alert-debuglog.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2014 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 Victor Julien <victor@inliniac.net>
22  */
23 
24 #include "suricata-common.h"
25 #include "suricata.h"
26 
27 #include "action-globals.h"
28 #include "detect.h"
29 #include "flow.h"
30 #include "conf.h"
31 #include "stream.h"
32 #include "app-layer-protos.h"
33 
34 #include "threads.h"
35 #include "threadvars.h"
36 #include "tm-threads.h"
37 
38 #include "util-print.h"
39 
40 #include "pkt-var.h"
41 
42 #include "util-unittest.h"
43 
44 #include "util-debug.h"
45 #include "util-validate.h"
46 #include "util-buffer.h"
47 
48 #include "output.h"
49 #include "alert-debuglog.h"
50 #include "util-privs.h"
51 #include "flow-var.h"
52 #include "flow-bit.h"
53 #include "util-var-name.h"
54 #include "util-optimize.h"
55 #include "util-logopenfile.h"
56 #include "util-time.h"
57 
58 #include "stream-tcp-reassemble.h"
59 
60 #define DEFAULT_LOG_FILENAME "alert-debug.log"
61 
62 #define MODULE_NAME "AlertDebugLog"
63 
64 typedef struct AlertDebugLogThread_ {
66  /** LogFileCtx has the pointer to the file and a mutex to allow multithreading */
69 
70 /**
71  * \brief Function to log the FlowVars into alert-debug.log
72  *
73  * \param aft Pointer to AlertDebugLog Thread
74  * \param p Pointer to the packet
75  *
76  */
77 static void AlertDebugLogFlowVars(AlertDebugLogThread *aft, const Packet *p)
78 {
79  const GenericVar *gv = p->flow->flowvar;
80  uint16_t i;
81  while (gv != NULL) {
82  if (gv->type == DETECT_FLOWBITS) {
83  FlowBit *fb = (FlowBit *)gv;
84  const char *fbname = VarNameStoreLookupById(fb->idx, VAR_TYPE_FLOW_BIT);
85  if (fbname) {
86  MemBufferWriteString(aft->buffer, "FLOWBIT: %s\n",
87  fbname);
88  }
89  } else if (gv->type == DETECT_FLOWVAR || gv->type == DETECT_FLOWINT) {
90  FlowVar *fv = (FlowVar *) gv;
91 
92  if (fv->datatype == FLOWVAR_TYPE_STR) {
93  const char *fvname = VarNameStoreLookupById(fv->idx,
95  MemBufferWriteString(aft->buffer, "FLOWVAR: \"%s\" => \"",
96  fvname);
97  for (i = 0; i < fv->data.fv_str.value_len; i++) {
98  if (isprint(fv->data.fv_str.value[i])) {
99  MemBufferWriteString(aft->buffer, "%c",
100  fv->data.fv_str.value[i]);
101  } else {
102  MemBufferWriteString(aft->buffer, "\\%02X",
103  fv->data.fv_str.value[i]);
104  }
105  }
106  MemBufferWriteString(aft->buffer, "\"\n");
107  } else if (fv->datatype == FLOWVAR_TYPE_INT) {
108  const char *fvname = VarNameStoreLookupById(fv->idx,
110  MemBufferWriteString(aft->buffer, "FLOWINT: \"%s\" =>"
111  " %"PRIu32"\n", fvname, fv->data.fv_int.value);
112  }
113  }
114  gv = gv->next;
115  }
116 }
117 
118 /**
119  * \brief Function to log the PktVars into alert-debug.log
120  *
121  * \param aft Pointer to AlertDebugLog Thread
122  * \param p Pointer to the packet
123  *
124  */
125 static void AlertDebugLogPktVars(AlertDebugLogThread *aft, const Packet *p)
126 {
127  const PktVar *pv = p->pktvar;
128 
129  while (pv != NULL) {
130  const char *varname = VarNameStoreLookupById(pv->id, VAR_TYPE_PKT_VAR);
131  MemBufferWriteString(aft->buffer, "PKTVAR: %s\n", varname);
133  pv->value, pv->value_len);
134  pv = pv->next;
135  }
136 }
137 
138 /** \todo doc
139  * assume we have aft lock */
140 static int AlertDebugPrintStreamSegmentCallback(
141  const Packet *p, TcpSegment *seg, void *data, const uint8_t *buf, uint32_t buflen)
142 {
144 
145  MemBufferWriteString(aft->buffer, "STREAM DATA LEN: %"PRIu32"\n", buflen);
146  MemBufferWriteString(aft->buffer, "STREAM DATA:\n");
147 
149  buf, buflen);
150 
151  return 1;
152 }
153 
154 static TmEcode AlertDebugLogger(ThreadVars *tv, const Packet *p, void *thread_data)
155 {
156  AlertDebugLogThread *aft = (AlertDebugLogThread *)thread_data;
157  int i;
158  char timebuf[64];
159  const char *pkt_src_str = NULL;
160 
161  if (p->alerts.cnt == 0)
162  return TM_ECODE_OK;
163 
164  MemBufferReset(aft->buffer);
165 
166  CreateTimeString(p->ts, timebuf, sizeof(timebuf));
167 
168  MemBufferWriteString(aft->buffer, "+================\n"
169  "TIME: %s\n", timebuf);
170  uint64_t pcap_cnt = PcapPacketCntGet(p);
171  if (pcap_cnt > 0) {
172  MemBufferWriteString(aft->buffer, "PCAP PKT NUM: %" PRIu64 "\n", pcap_cnt);
173  }
174  pkt_src_str = PktSrcToString(p->pkt_src);
175  MemBufferWriteString(aft->buffer, "PKT SRC: %s\n", pkt_src_str);
176 
177  char srcip[46], dstip[46];
178  if (PacketIsIPv4(p)) {
179  PrintInet(AF_INET, (const void *)GET_IPV4_SRC_ADDR_PTR(p), srcip, sizeof(srcip));
180  PrintInet(AF_INET, (const void *)GET_IPV4_DST_ADDR_PTR(p), dstip, sizeof(dstip));
181  } else {
182  DEBUG_VALIDATE_BUG_ON(!(PacketIsIPv6(p)));
183  PrintInetIPv6((const void *)GET_IPV6_SRC_ADDR(p), srcip, sizeof(srcip),
184  aft->file_ctx->compress_ipv6);
185  PrintInetIPv6((const void *)GET_IPV6_DST_ADDR(p), dstip, sizeof(dstip),
186  aft->file_ctx->compress_ipv6);
187  }
188 
189  MemBufferWriteString(aft->buffer, "SRC IP: %s\n"
190  "DST IP: %s\n"
191  "PROTO: %" PRIu32 "\n",
192  srcip, dstip, p->proto);
193  if (PacketIsTCP(p) || PacketIsUDP(p)) {
194  MemBufferWriteString(aft->buffer, "SRC PORT: %" PRIu32 "\n"
195  "DST PORT: %" PRIu32 "\n",
196  p->sp, p->dp);
197  if (PacketIsTCP(p)) {
198  const TCPHdr *tcph = PacketGetTCP(p);
200  "TCP SEQ: %" PRIu32 "\n"
201  "TCP ACK: %" PRIu32 "\n",
202  TCP_GET_RAW_SEQ(tcph), TCP_GET_RAW_ACK(tcph));
203  }
204  }
205 
206  /* flow stuff */
207  MemBufferWriteString(aft->buffer, "FLOW: to_server: %s, "
208  "to_client: %s\n",
209  p->flowflags & FLOW_PKT_TOSERVER ? "TRUE" : "FALSE",
210  p->flowflags & FLOW_PKT_TOCLIENT ? "TRUE" : "FALSE");
211 
212  if (p->flow != NULL) {
213  int applayer = 0;
214  applayer = StreamTcpAppLayerIsDisabled(p->flow);
215  CreateTimeString(p->flow->startts, timebuf, sizeof(timebuf));
216  MemBufferWriteString(aft->buffer, "FLOW Start TS: %s\n", timebuf);
217  MemBufferWriteString(aft->buffer, "FLOW PKTS TODST: %"PRIu32"\n"
218  "FLOW PKTS TOSRC: %"PRIu32"\n"
219  "FLOW Total Bytes: %"PRIu64"\n",
220  p->flow->todstpktcnt, p->flow->tosrcpktcnt,
221  p->flow->todstbytecnt + p->flow->tosrcbytecnt);
223  "FLOW ACTION: DROP: %s\n"
224  "FLOW PAYLOAD: %s, APP_LAYER: %s\n"
225  "FLOW APP_LAYER: DETECTED: %s, PROTO %" PRIu16 "\n",
226  p->flow->flags & FLOW_ACTION_DROP ? "TRUE" : "FALSE",
227  p->flow->flags & FLOW_NOPAYLOAD_INSPECTION ? "TRUE" : "FALSE",
228  applayer ? "TRUE" : "FALSE",
229  (p->flow->alproto != ALPROTO_UNKNOWN) ? "TRUE" : "FALSE", p->flow->alproto);
230  AlertDebugLogFlowVars(aft, p);
231  }
232 
233  AlertDebugLogPktVars(aft, p);
234 
235 /* any stuff */
236 /* Sig details? */
237 
239  "PACKET LEN: %" PRIu32 "\n"
240  "PACKET:\n",
241  GET_PKT_LEN(p));
243  GET_PKT_DATA(p), GET_PKT_LEN(p));
244 
245  MemBufferWriteString(aft->buffer, "ALERT CNT: %" PRIu32 "\n",
246  p->alerts.cnt);
247 
248  for (i = 0; i < p->alerts.cnt; i++) {
249  const PacketAlert *pa = &p->alerts.alerts[i];
250  if (unlikely(pa->s == NULL || (pa->action & ACTION_ALERT) == 0)) {
251  continue;
252  }
253 
255  "ALERT MSG [%02d]: %s\n"
256  "ALERT GID [%02d]: %" PRIu32 "\n"
257  "ALERT SID [%02d]: %" PRIu32 "\n"
258  "ALERT REV [%02d]: %" PRIu32 "\n"
259  "ALERT CLASS [%02d]: %s\n"
260  "ALERT PRIO [%02d]: %" PRIu32 "\n"
261  "ALERT FOUND IN [%02d]: %s\n",
262  i, pa->s->msg,
263  i, pa->s->gid,
264  i, pa->s->id,
265  i, pa->s->rev,
266  i, pa->s->class_msg ? pa->s->class_msg : "<none>",
267  i, pa->s->prio,
268  i,
269  pa->flags & PACKET_ALERT_FLAG_STREAM_MATCH ? "STREAM" :
270  (pa->flags & PACKET_ALERT_FLAG_STATE_MATCH ? "STATE" : "PACKET"));
271  if (pa->flags & PACKET_ALERT_FLAG_TX) {
273  "ALERT IN TX [%02d]: %"PRIu64"\n", i, pa->tx_id);
274  } else {
276  "ALERT IN TX [%02d]: N/A\n", i);
277  }
278  if (p->payload_len > 0) {
280  "PAYLOAD LEN: %" PRIu32 "\n"
281  "PAYLOAD:\n",
282  p->payload_len);
284  p->payload, p->payload_len);
285  }
286  if ((pa->flags & PACKET_ALERT_FLAG_STATE_MATCH) ||
288  /* This is an app layer or stream alert */
289  int ret;
290  uint8_t flag;
291  if (!(PacketIsTCP(p)) || p->flow == NULL || p->flow->protoctx == NULL) {
292  continue;
293  }
294  /* IDS mode reverse the data */
295  /** \todo improve the order selection policy */
296  if (p->flowflags & FLOW_PKT_TOSERVER) {
297  flag = STREAM_DUMP_TOCLIENT;
298  } else {
299  flag = STREAM_DUMP_TOSERVER;
300  }
301  ret = StreamSegmentForEach((const Packet *)p, flag,
302  AlertDebugPrintStreamSegmentCallback,
303  (void *)aft);
304  if (ret < 0) {
305  return TM_ECODE_FAILED;
306  }
307  }
308  }
309 
310  aft->file_ctx->Write((const char *)MEMBUFFER_BUFFER(aft->buffer),
311  MEMBUFFER_OFFSET(aft->buffer), aft->file_ctx);
312 
313  return TM_ECODE_OK;
314 }
315 
316 static TmEcode AlertDebugLogDecoderEvent(ThreadVars *tv, const Packet *p, void *thread_data)
317 {
318  AlertDebugLogThread *aft = (AlertDebugLogThread *)thread_data;
319  int i;
320  char timebuf[64];
321  const char *pkt_src_str = NULL;
322 
323  if (p->alerts.cnt == 0)
324  return TM_ECODE_OK;
325 
326  MemBufferReset(aft->buffer);
327 
328  CreateTimeString(p->ts, timebuf, sizeof(timebuf));
329 
331  "+================\n"
332  "TIME: %s\n", timebuf);
333  uint64_t pcap_cnt = PcapPacketCntGet(p);
334  if (pcap_cnt > 0) {
335  MemBufferWriteString(aft->buffer, "PCAP PKT NUM: %" PRIu64 "\n", pcap_cnt);
336  }
337  pkt_src_str = PktSrcToString(p->pkt_src);
338  MemBufferWriteString(aft->buffer, "PKT SRC: %s\n", pkt_src_str);
340  "ALERT CNT: %" PRIu32 "\n", p->alerts.cnt);
341 
342  for (i = 0; i < p->alerts.cnt; i++) {
343  const PacketAlert *pa = &p->alerts.alerts[i];
344  if (unlikely(pa->s == NULL || (pa->action & ACTION_ALERT) == 0)) {
345  continue;
346  }
347 
349  "ALERT MSG [%02d]: %s\n"
350  "ALERT GID [%02d]: %" PRIu32 "\n"
351  "ALERT SID [%02d]: %" PRIu32 "\n"
352  "ALERT REV [%02d]: %" PRIu32 "\n"
353  "ALERT CLASS [%02d]: %s\n"
354  "ALERT PRIO [%02d]: %" PRIu32 "\n",
355  i, pa->s->msg,
356  i, pa->s->gid,
357  i, pa->s->id,
358  i, pa->s->rev,
359  i, pa->s->class_msg,
360  i, pa->s->prio);
361  }
362 
364  "PACKET LEN: %" PRIu32 "\n"
365  "PACKET:\n",
366  GET_PKT_LEN(p));
368  GET_PKT_DATA(p), GET_PKT_LEN(p));
369 
370  aft->file_ctx->Write((const char *)MEMBUFFER_BUFFER(aft->buffer),
371  MEMBUFFER_OFFSET(aft->buffer), aft->file_ctx);
372 
373  return TM_ECODE_OK;
374 }
375 
376 static TmEcode AlertDebugLogThreadInit(ThreadVars *t, const void *initdata, void **data)
377 {
379  if (unlikely(aft == NULL))
380  return TM_ECODE_FAILED;
381 
382  if(initdata == NULL)
383  {
384  SCLogDebug("Error getting context for AlertDebugLog. \"initdata\" argument NULL");
385  SCFree(aft);
386  return TM_ECODE_FAILED;
387  }
388  /** Use the Output Context (file pointer and mutex) */
389  aft->file_ctx = ((OutputCtx *)initdata)->data;
390 
391  /* 1 mb seems sufficient enough */
392  aft->buffer = MemBufferCreateNew(1 * 1024 * 1024);
393  if (aft->buffer == NULL) {
394  SCFree(aft);
395  return TM_ECODE_FAILED;
396  }
397 
398  *data = (void *)aft;
399  return TM_ECODE_OK;
400 }
401 
402 static TmEcode AlertDebugLogThreadDeinit(ThreadVars *t, void *data)
403 {
405  if (aft == NULL) {
406  return TM_ECODE_OK;
407  }
408 
409  MemBufferFree(aft->buffer);
410  /* clear memory */
411  memset(aft, 0, sizeof(AlertDebugLogThread));
412 
413  SCFree(aft);
414  return TM_ECODE_OK;
415 }
416 
417 static void AlertDebugLogDeInitCtx(OutputCtx *output_ctx)
418 {
419  if (output_ctx != NULL) {
420  LogFileCtx *logfile_ctx = (LogFileCtx *)output_ctx->data;
421  if (logfile_ctx != NULL) {
422  LogFileFreeCtx(logfile_ctx);
423  }
424  SCFree(output_ctx);
425  }
426 }
427 
428 /**
429  * \brief Create a new LogFileCtx for alert debug logging.
430  *
431  * \param SCConfNode containing configuration for this logger.
432  *
433  * \return output_ctx if succesful, NULL otherwise
434  */
435 static OutputInitResult AlertDebugLogInitCtx(SCConfNode *conf)
436 {
437  OutputInitResult result = { NULL, false };
438  LogFileCtx *file_ctx = NULL;
439 
440  file_ctx = LogFileNewCtx();
441  if (file_ctx == NULL) {
442  SCLogDebug("couldn't create new file_ctx");
443  goto error;
444  }
445 
446  if (SCConfLogOpenGeneric(conf, file_ctx, DEFAULT_LOG_FILENAME, 1) < 0) {
447  goto error;
448  }
449 
450  OutputCtx *output_ctx = SCCalloc(1, sizeof(OutputCtx));
451  if (unlikely(output_ctx == NULL))
452  goto error;
453 
454  output_ctx->data = file_ctx;
455  output_ctx->DeInit = AlertDebugLogDeInitCtx;
456 
457  SCLogDebug("Alert debug log output initialized");
458  result.ctx = output_ctx;
459  result.ok = true;
460  return result;
461 
462 error:
463  if (file_ctx != NULL) {
464  LogFileFreeCtx(file_ctx);
465  }
466 
467  return result;
468 }
469 
470 static bool AlertDebugLogCondition(ThreadVars *tv, void *thread_data, const Packet *p)
471 {
472  return (p->alerts.cnt > 0);
473 }
474 
475 static int AlertDebugLogLogger(ThreadVars *tv, void *thread_data, const Packet *p)
476 {
477  if (PacketIsIPv4(p) || PacketIsIPv6(p)) {
478  return AlertDebugLogger(tv, p, thread_data);
479  } else if (p->events.cnt > 0) {
480  return AlertDebugLogDecoderEvent(tv, p, thread_data);
481  }
482  return TM_ECODE_OK;
483 }
484 
486 {
487  OutputPacketLoggerFunctions output_logger_functions = {
488  .LogFunc = AlertDebugLogLogger,
489  .FlushFunc = NULL,
490  .ConditionFunc = AlertDebugLogCondition,
491  .ThreadInitFunc = AlertDebugLogThreadInit,
492  .ThreadDeinitFunc = AlertDebugLogThreadDeinit,
493  .ThreadExitPrintStatsFunc = NULL,
494  };
495 
496  OutputRegisterPacketModule(LOGGER_ALERT_DEBUG, MODULE_NAME, "alert-debug", AlertDebugLogInitCtx,
497  &output_logger_functions);
498 }
TCP_GET_RAW_SEQ
#define TCP_GET_RAW_SEQ(tcph)
Definition: decode-tcp.h:80
tm-threads.h
Packet_::proto
uint8_t proto
Definition: decode.h:527
PacketAlert_::s
const struct Signature_ * s
Definition: decode.h:253
AlertDebugLogThread_::buffer
MemBuffer * buffer
Definition: alert-debuglog.c:67
MemBuffer_::buffer
uint8_t buffer[]
Definition: util-buffer.h:30
Flow_::flags
uint64_t flags
Definition: flow.h:396
STREAM_DUMP_TOSERVER
#define STREAM_DUMP_TOSERVER
Definition: stream.h:33
alert-debuglog.h
AlertDebugLogThread_
Definition: alert-debuglog.c:64
Flow_::startts
SCTime_t startts
Definition: flow.h:486
PACKET_ALERT_FLAG_STATE_MATCH
#define PACKET_ALERT_FLAG_STATE_MATCH
Definition: decode.h:269
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
LogFileNewCtx
LogFileCtx * LogFileNewCtx(void)
LogFileNewCtx() Get a new LogFileCtx.
Definition: util-logopenfile.c:712
PcapPacketCntGet
uint64_t PcapPacketCntGet(const Packet *p)
Definition: decode.c:1107
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:282
StreamSegmentForEach
int StreamSegmentForEach(const Packet *p, uint8_t flag, StreamSegmentCallback CallbackFunc, void *data)
Definition: stream.c:40
Packet_::payload
uint8_t * payload
Definition: decode.h:609
PacketAlerts_::cnt
uint16_t cnt
Definition: decode.h:288
FlowVarTypeStr::value_len
uint16_t value_len
Definition: flow-var.h:41
FLOWVAR_TYPE_STR
#define FLOWVAR_TYPE_STR
Definition: flow-var.h:33
action-globals.h
threads.h
PrintInetIPv6
const char * PrintInetIPv6(const void *src, char *dst, socklen_t size, bool compress_ipv6)
Definition: util-print.c:209
LogFileCtx_
Definition: util-logopenfile.h:72
PktVar_::next
struct PktVar_ * next
Definition: decode.h:314
FlowVar_::fv_str
FlowVarTypeStr fv_str
Definition: flow-var.h:64
FLOW_NOPAYLOAD_INSPECTION
#define FLOW_NOPAYLOAD_INSPECTION
Definition: flow.h:66
PacketAlerts_::alerts
PacketAlert * alerts
Definition: decode.h:291
flow-bit.h
FLOW_PKT_TOSERVER
#define FLOW_PKT_TOSERVER
Definition: flow.h:224
util-var-name.h
util-privs.h
LogFileCtx_::Write
int(* Write)(const char *buffer, int buffer_len, struct LogFileCtx_ *fp)
Definition: util-logopenfile.h:87
stream-tcp-reassemble.h
FLOW_ACTION_DROP
#define FLOW_ACTION_DROP
Definition: flow.h:69
FLOWVAR_TYPE_INT
#define FLOWVAR_TYPE_INT
Definition: flow-var.h:34
Packet_::flowflags
uint8_t flowflags
Definition: decode.h:536
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:82
Flow_::protoctx
void * protoctx
Definition: flow.h:426
Packet_::payload_len
uint16_t payload_len
Definition: decode.h:610
GET_IPV6_DST_ADDR
#define GET_IPV6_DST_ADDR(p)
Definition: decode.h:205
Packet_::alerts
PacketAlerts alerts
Definition: decode.h:624
Packet_::events
PacketEngineEvents events
Definition: decode.h:630
util-unittest.h
MemBuffer_::offset
uint32_t offset
Definition: util-buffer.h:29
OutputCtx_::data
void * data
Definition: tm-modules.h:91
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:81
PacketAlert_::tx_id
uint64_t tx_id
Definition: decode.h:254
OutputCtx_
Definition: tm-modules.h:88
PacketAlert_::action
uint8_t action
Definition: decode.h:251
Signature_::gid
uint32_t gid
Definition: detect.h:714
FlowVar_::fv_int
FlowVarTypeInt fv_int
Definition: flow-var.h:65
MODULE_NAME
#define MODULE_NAME
Definition: alert-debuglog.c:62
Flow_::tosrcbytecnt
uint64_t tosrcbytecnt
Definition: flow.h:491
util-debug.h
StreamTcpAppLayerIsDisabled
int StreamTcpAppLayerIsDisabled(Flow *f)
Definition: stream-tcp-reassemble.c:464
Packet_::pktvar
PktVar * pktvar
Definition: decode.h:601
GenericVar_::next
struct GenericVar_ * next
Definition: util-var.h:57
PrintRawDataToBuffer
void PrintRawDataToBuffer(uint8_t *dst_buf, uint32_t *dst_buf_offset_ptr, uint32_t dst_buf_size, const uint8_t *src_buf, uint32_t src_buf_len)
Definition: util-print.c:149
GET_IPV4_DST_ADDR_PTR
#define GET_IPV4_DST_ADDR_PTR(p)
Definition: decode.h:200
DETECT_FLOWINT
@ DETECT_FLOWINT
Definition: detect-engine-register.h:64
OutputInitResult_::ctx
OutputCtx * ctx
Definition: output.h:47
DETECT_FLOWVAR
@ DETECT_FLOWVAR
Definition: detect-engine-register.h:62
Flow_::todstpktcnt
uint32_t todstpktcnt
Definition: flow.h:488
Packet_::ts
SCTime_t ts
Definition: decode.h:559
FlowVar_::idx
uint32_t idx
Definition: flow-var.h:59
PktVar_::value
uint8_t * value
Definition: decode.h:320
util-print.h
GET_PKT_DATA
#define GET_PKT_DATA(p)
Definition: decode.h:210
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
PrintInet
const char * PrintInet(int af, const void *src, char *dst, socklen_t size)
Definition: util-print.c:238
pkt-var.h
Packet_::sp
Port sp
Definition: decode.h:512
PktSrcToString
const char * PktSrcToString(enum PktSrcEnum pkt_src)
Definition: decode.c:876
util-time.h
OutputInitResult_::ok
bool ok
Definition: output.h:48
Flow_::todstbytecnt
uint64_t todstbytecnt
Definition: flow.h:490
stream.h
TcpSegment
Definition: stream-tcp-private.h:72
ACTION_ALERT
#define ACTION_ALERT
Definition: action-globals.h:29
Packet_
Definition: decode.h:505
GET_PKT_LEN
#define GET_PKT_LEN(p)
Definition: decode.h:209
conf.h
TmEcode
TmEcode
Definition: tm-threads-common.h:80
LogFileCtx_::compress_ipv6
bool compress_ipv6
Definition: util-logopenfile.h:150
MemBuffer_
Definition: util-buffer.h:27
FLOW_PKT_TOCLIENT
#define FLOW_PKT_TOCLIENT
Definition: flow.h:225
DEFAULT_LOG_FILENAME
#define DEFAULT_LOG_FILENAME
Definition: alert-debuglog.c:60
FlowVarTypeInt_::value
uint32_t value
Definition: flow-var.h:46
PACKET_ALERT_FLAG_STREAM_MATCH
#define PACKET_ALERT_FLAG_STREAM_MATCH
Definition: decode.h:271
Flow_::flowvar
GenericVar * flowvar
Definition: flow.h:482
Signature_::class_msg
char * class_msg
Definition: detect.h:739
PacketAlert_::flags
uint8_t flags
Definition: decode.h:252
OutputInitResult_
Definition: output.h:46
FlowVarTypeStr::value
uint8_t * value
Definition: flow-var.h:40
Packet_::flow
struct Flow_ * flow
Definition: decode.h:553
VAR_TYPE_FLOW_BIT
@ VAR_TYPE_FLOW_BIT
Definition: util-var.h:36
GET_IPV4_SRC_ADDR_PTR
#define GET_IPV4_SRC_ADDR_PTR(p)
Definition: decode.h:199
suricata-common.h
OutputCtx_::DeInit
void(* DeInit)(struct OutputCtx_ *)
Definition: tm-modules.h:94
VarNameStoreLookupById
const char * VarNameStoreLookupById(const uint32_t id, const enum VarTypes type)
find name for id+type at packet time. As the active store won't be modified, we don't need locks.
Definition: util-var-name.c:306
GenericVar_
Definition: util-var.h:53
MemBufferFree
void MemBufferFree(MemBuffer *buffer)
Definition: util-buffer.c:86
OutputPacketLoggerFunctions_::LogFunc
PacketLogger LogFunc
Definition: output.h:88
OutputRegisterPacketModule
void OutputRegisterPacketModule(LoggerId id, const char *name, const char *conf_name, OutputInitFunc InitFunc, OutputPacketLoggerFunctions *output_module_functions)
Register a packet output module.
Definition: output.c:195
Signature_::rev
uint32_t rev
Definition: detect.h:715
LogFileFreeCtx
int LogFileFreeCtx(LogFileCtx *lf_ctx)
LogFileFreeCtx() Destroy a LogFileCtx (Close the file and free memory)
Definition: util-logopenfile.c:926
LOGGER_ALERT_DEBUG
@ LOGGER_ALERT_DEBUG
Definition: suricata-common.h:494
FlowBit_::idx
uint32_t idx
Definition: flow-bit.h:33
AlertDebugLogThread_::file_ctx
LogFileCtx * file_ctx
Definition: alert-debuglog.c:65
DETECT_FLOWBITS
@ DETECT_FLOWBITS
Definition: detect-engine-register.h:61
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:33
Signature_::prio
int prio
Definition: detect.h:716
util-optimize.h
threadvars.h
util-validate.h
FlowVar_::data
union FlowVar_::@116 data
FlowBit_
Definition: flow-bit.h:30
SCConfLogOpenGeneric
int SCConfLogOpenGeneric(SCConfNode *conf, LogFileCtx *log_ctx, const char *default_filename, int rotate)
open a generic output "log file", which may be a regular file or a socket
Definition: util-logopenfile.c:480
GET_IPV6_SRC_ADDR
#define GET_IPV6_SRC_ADDR(p)
Definition: decode.h:204
SCFree
#define SCFree(p)
Definition: util-mem.h:61
Packet_::pkt_src
uint8_t pkt_src
Definition: decode.h:615
util-logopenfile.h
Signature_::id
uint32_t id
Definition: detect.h:713
STREAM_DUMP_TOCLIENT
#define STREAM_DUMP_TOCLIENT
Definition: stream.h:32
util-buffer.h
VAR_TYPE_FLOW_VAR
@ VAR_TYPE_FLOW_VAR
Definition: util-var.h:39
PACKET_ALERT_FLAG_TX
#define PACKET_ALERT_FLAG_TX
Definition: decode.h:273
VAR_TYPE_FLOW_INT
@ VAR_TYPE_FLOW_INT
Definition: util-var.h:37
ALPROTO_UNKNOWN
@ ALPROTO_UNKNOWN
Definition: app-layer-protos.h:29
GenericVar_::type
uint16_t type
Definition: util-var.h:54
PktVar_::value_len
uint16_t value_len
Definition: decode.h:318
AlertDebugLogThread
struct AlertDebugLogThread_ AlertDebugLogThread
app-layer-protos.h
suricata.h
PacketAlert_
Definition: decode.h:249
MemBufferWriteString
void MemBufferWriteString(MemBuffer *dst, const char *fmt,...)
Definition: util-buffer.c:130
PktVar_
Definition: decode.h:312
MemBuffer_::size
uint32_t size
Definition: util-buffer.h:28
MEMBUFFER_BUFFER
#define MEMBUFFER_BUFFER(mem_buffer)
Get the MemBuffers underlying buffer.
Definition: util-buffer.h:51
Signature_::msg
char * msg
Definition: detect.h:736
flow.h
AlertDebugLogRegister
void AlertDebugLogRegister(void)
Definition: alert-debuglog.c:485
MEMBUFFER_OFFSET
#define MEMBUFFER_OFFSET(mem_buffer)
Get the MemBuffers current offset.
Definition: util-buffer.h:56
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:443
Packet_::dp
Port dp
Definition: decode.h:520
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:87
flow-var.h
FlowVar_
Definition: flow-var.h:55
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:102
TCPHdr_
Definition: decode-tcp.h:149
VAR_TYPE_PKT_VAR
@ VAR_TYPE_PKT_VAR
Definition: util-var.h:33
Flow_::tosrcpktcnt
uint32_t tosrcpktcnt
Definition: flow.h:489
CreateTimeString
void CreateTimeString(const SCTime_t ts, char *str, size_t size)
Definition: util-time.c:272
MemBufferCreateNew
MemBuffer * MemBufferCreateNew(uint32_t size)
Definition: util-buffer.c:32
FlowVar_::datatype
uint8_t datatype
Definition: flow-var.h:57
output.h
PktVar_::id
uint32_t id
Definition: decode.h:313
PacketEngineEvents_::cnt
uint8_t cnt
Definition: decode.h:308