suricata
output-flow.c File Reference
#include "suricata-common.h"
#include "output.h"
#include "output-flow.h"
#include "util-profiling.h"
#include "util-validate.h"
Include dependency graph for output-flow.c:

Go to the source code of this file.

Data Structures

struct  OutputFlowLoggerThreadData_
 
struct  OutputFlowLogger_
 

Typedefs

typedef struct OutputFlowLoggerThreadData_ OutputFlowLoggerThreadData
 
typedef struct OutputFlowLogger_ OutputFlowLogger
 

Functions

int OutputRegisterFlowLogger (const char *name, FlowLogger LogFunc, OutputCtx *output_ctx, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
 
TmEcode OutputFlowLog (ThreadVars *tv, void *thread_data, Flow *f)
 Run flow logger(s) More...
 
TmEcode OutputFlowLogThreadInit (ThreadVars *tv, void *initdata, void **data)
 thread init for the flow logger This will run the thread init functions for the individual registered loggers More...
 
TmEcode OutputFlowLogThreadDeinit (ThreadVars *tv, void *thread_data)
 
void OutputFlowLogExitPrintStats (ThreadVars *tv, void *thread_data)
 
void OutputFlowShutdown (void)
 

Detailed Description

Author
Victor Julien victo.nosp@m.r@in.nosp@m.linia.nosp@m.c.ne.nosp@m.t

Flow Logger Output registration functions

Definition in file output-flow.c.

Typedef Documentation

◆ OutputFlowLogger

◆ OutputFlowLoggerThreadData

per thread data for this module, contains a list of per thread data for the packet loggers.

Function Documentation

◆ OutputFlowLog()

TmEcode OutputFlowLog ( ThreadVars tv,
void *  thread_data,
Flow f 
)

Run flow logger(s)

Note
flow is already write locked

Definition at line 85 of file output-flow.c.

References DEBUG_VALIDATE_BUG_ON.

◆ OutputFlowLogExitPrintStats()

void OutputFlowLogExitPrintStats ( ThreadVars tv,
void *  thread_data 
)

Definition at line 187 of file output-flow.c.

References OutputFlowLoggerThreadData_::store.

◆ OutputFlowLogThreadDeinit()

TmEcode OutputFlowLogThreadDeinit ( ThreadVars tv,
void *  thread_data 
)

Definition at line 163 of file output-flow.c.

References OutputFlowLoggerThreadData_::store, and TM_ECODE_OK.

Referenced by DecodeThreadVarsFree().

Here is the caller graph for this function:

◆ OutputFlowLogThreadInit()

TmEcode OutputFlowLogThreadInit ( ThreadVars tv,
void *  initdata,
void **  data 
)

thread init for the flow logger This will run the thread init functions for the individual registered loggers

Definition at line 123 of file output-flow.c.

References SCCalloc, SCLogDebug, and TM_ECODE_FAILED.

Referenced by DecodeThreadVarsAlloc().

Here is the caller graph for this function:

◆ OutputFlowShutdown()

void OutputFlowShutdown ( void  )

Definition at line 203 of file output-flow.c.

◆ OutputRegisterFlowLogger()

int OutputRegisterFlowLogger ( const char *  name,
FlowLogger  LogFunc,
OutputCtx output_ctx,
ThreadInitFunc  ThreadInit,
ThreadDeinitFunc  ThreadDeinit,
ThreadExitPrintStatsFunc  ThreadExitPrintStats 
)