suricata
output-file.h File Reference
#include "rust.h"
Include dependency graph for output-file.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  OutputFileLoggerThreadData_
 

Typedefs

typedef struct OutputFileLoggerThreadData_ OutputFileLoggerThreadData
 
typedef int(* FileLogger) (ThreadVars *, void *thread_data, const Packet *, const File *, void *tx, const uint64_t tx_id, uint8_t direction)
 

Functions

TmEcode OutputFileLogThreadInit (ThreadVars *tv, OutputFileLoggerThreadData **data)
 thread init for the file logger This will run the thread init functions for the individual registered loggers More...
 
TmEcode OutputFileLogThreadDeinit (ThreadVars *tv, OutputFileLoggerThreadData *thread_data)
 
void OutputFileLogFfc (ThreadVars *tv, OutputFileLoggerThreadData *op_thread_data, Packet *p, FileContainer *ffc, void *txv, const uint64_t tx_id, AppLayerTxData *txd, const bool file_close, const bool file_trunc, uint8_t dir)
 
int OutputRegisterFileLogger (LoggerId id, const char *name, FileLogger LogFunc, OutputCtx *, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
 
void OutputFileLoggerRegister (void)
 
void OutputFileShutdown (void)
 

Detailed Description

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

AppLayer File Logger Output registration functions

Definition in file output-file.h.

Typedef Documentation

◆ FileLogger

typedef int(* FileLogger) (ThreadVars *, void *thread_data, const Packet *, const File *, void *tx, const uint64_t tx_id, uint8_t direction)

file logger function pointer type

Definition at line 48 of file output-file.h.

◆ OutputFileLoggerThreadData

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

Function Documentation

◆ OutputFileLogFfc()

void OutputFileLogFfc ( ThreadVars tv,
OutputFileLoggerThreadData op_thread_data,
Packet p,
FileContainer ffc,
void *  txv,
const uint64_t  tx_id,
AppLayerTxData txd,
const bool  file_close,
const bool  file_trunc,
uint8_t  dir 
)

◆ OutputFileLoggerRegister()

void OutputFileLoggerRegister ( void  )

Definition at line 239 of file output-file.c.

Referenced by OutputRegisterRootLoggers().

Here is the caller graph for this function:

◆ OutputFileLogThreadDeinit()

TmEcode OutputFileLogThreadDeinit ( ThreadVars tv,
OutputFileLoggerThreadData thread_data 
)

Definition at line 215 of file output-file.c.

References OutputFileLoggerThreadData_::store.

◆ OutputFileLogThreadInit()

TmEcode OutputFileLogThreadInit ( ThreadVars tv,
OutputFileLoggerThreadData **  data 
)

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

Definition at line 168 of file output-file.c.

References SCCalloc, SCFree, SCLogDebug, and TM_ECODE_FAILED.

◆ OutputFileShutdown()

void OutputFileShutdown ( void  )

Definition at line 243 of file output-file.c.

◆ OutputRegisterFileLogger()