|
suricata
|
#include "suricata-common.h"#include "detect.h"#include "flow.h"#include "conf.h"#include "threads.h"#include "tm-threads.h"#include "threadvars.h"#include "util-debug.h"#include "util-unittest.h"#include "util-unittest-helper.h"#include "detect-parse.h"#include "detect-engine.h"#include "detect-engine-build.h"#include "detect-engine-mpm.h"#include "detect-reference.h"#include "util-classification-config.h"#include "output.h"#include "alert-fastlog.h"#include "util-privs.h"#include "util-print.h"#include "util-proto-name.h"#include "util-optimize.h"#include "util-logopenfile.h"#include "util-time.h"#include "action-globals.h"
Go to the source code of this file.
Data Structures | |
| struct | AlertFastLogThread_ |
Macros | |
| #define | DEFAULT_LOG_FILENAME "fast.log" |
| #define | MODULE_NAME "AlertFastLog" |
| #define | MAX_FASTLOG_ALERT_SIZE 2048 |
| #define | MAX_FASTLOG_BUFFER_SIZE (2 * MAX_FASTLOG_ALERT_SIZE) |
Typedefs | |
| typedef struct AlertFastLogThread_ | AlertFastLogThread |
Functions | |
| TmEcode | AlertFastLogThreadInit (ThreadVars *, const void *, void **) |
| TmEcode | AlertFastLogThreadDeinit (ThreadVars *, void *) |
| void | AlertFastLogRegisterTests (void) |
| This function registers unit tests for AlertFastLog API. More... | |
| int | AlertFastLogger (ThreadVars *tv, void *data, const Packet *p) |
| void | AlertFastLogRegister (void) |
| OutputInitResult | AlertFastLogInitCtx (SCConfNode *conf) |
| Create a new LogFileCtx for "fast" output style. More... | |
Logs alerts in a line based text format compatible to Snort's alert_fast format.
Definition in file alert-fastlog.c.
| #define DEFAULT_LOG_FILENAME "fast.log" |
Definition at line 60 of file alert-fastlog.c.
| #define MAX_FASTLOG_ALERT_SIZE 2048 |
Definition at line 65 of file alert-fastlog.c.
| #define MAX_FASTLOG_BUFFER_SIZE (2 * MAX_FASTLOG_ALERT_SIZE) |
Definition at line 68 of file alert-fastlog.c.
| #define MODULE_NAME "AlertFastLog" |
Definition at line 62 of file alert-fastlog.c.
| typedef struct AlertFastLogThread_ AlertFastLogThread |
| int AlertFastLogger | ( | ThreadVars * | tv, |
| void * | data, | ||
| const Packet * | p | ||
| ) |
Definition at line 110 of file alert-fastlog.c.
References CreateTimeString(), and Packet_::ts.
Referenced by AlertFastLogRegister().


| OutputInitResult AlertFastLogInitCtx | ( | SCConfNode * | conf | ) |
Create a new LogFileCtx for "fast" output style.
| conf | The configuration node for this output. |
Definition at line 234 of file alert-fastlog.c.
References OutputCtx_::data, DEFAULT_LOG_FILENAME, OutputCtx_::DeInit, LogFileFreeCtx(), LogFileNewCtx(), SCCalloc, SCConfLogOpenGeneric(), SCLogDebug, and unlikely.

| void AlertFastLogRegister | ( | void | ) |
Definition at line 77 of file alert-fastlog.c.
References AlertFastLogger(), and OutputPacketLoggerFunctions_::LogFunc.
Referenced by OutputRegisterLoggers().


| void AlertFastLogRegisterTests | ( | void | ) |
This function registers unit tests for AlertFastLog API.
Definition at line 356 of file alert-fastlog.c.
References UtRegisterTest().

| TmEcode AlertFastLogThreadDeinit | ( | ThreadVars * | t, |
| void * | data | ||
| ) |
Definition at line 215 of file alert-fastlog.c.
References SCFree, and TM_ECODE_OK.
| TmEcode AlertFastLogThreadInit | ( | ThreadVars * | t, |
| const void * | initdata, | ||
| void ** | data | ||
| ) |
Use the Output Context (file pointer and mutex)
Definition at line 197 of file alert-fastlog.c.
References AlertFastLogThread_::file_ctx, SCCalloc, SCFree, SCLogDebug, TM_ECODE_FAILED, TM_ECODE_OK, and unlikely.