suricata
output-flow.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2024 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  * Flow Logger Output registration functions
24  */
25 
26 #ifndef SURICATA_OUTPUT_FLOW_H
27 #define SURICATA_OUTPUT_FLOW_H
28 
29 #include "decode.h"
30 #include "tm-modules.h"
31 #include "flow.h"
32 
33 /**
34  * \brief Flow logger function pointer type.
35  */
36 typedef int (*FlowLogger)(ThreadVars *, void *thread_data, Flow *f);
37 
38 /** \brief Register a flow logger.
39  *
40  * \param name An informational name for this logger. Used only for
41  * debugging.
42  * \param LogFunc A function that will be called to log each flow.
43  * \param initdata A pointer to initialization data that will be
44  * passed the ThreadInit.
45  * \param ThreadInit Thread initialization callback.
46  * \param ThreadDeinit Thread de-initialization callback.
47  *
48  * \retval 0 on success, -1 on failure.
49  */
52 
53 /** Internal function: private API. */
54 void OutputFlowShutdown(void);
55 
56 /** Internal function: private API. */
57 TmEcode OutputFlowLog(ThreadVars *tv, void *thread_data, Flow *f);
58 
59 /** Internal function: private API. */
61 
62 /** Internal function: private API. */
63 TmEcode OutputFlowLogThreadDeinit(ThreadVars *tv, void *thread_data);
64 
65 #endif /* SURICATA_OUTPUT_FLOW_H */
OutputFlowLogThreadDeinit
TmEcode OutputFlowLogThreadDeinit(ThreadVars *tv, void *thread_data)
Definition: output-flow.c:163
SCOutputRegisterFlowLogger
int SCOutputRegisterFlowLogger(const char *name, FlowLogger LogFunc, void *initdata, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit)
Register a flow logger.
Definition: output-flow.c:58
OutputFlowLogger_::initdata
void * initdata
Definition: output-flow.c:45
Flow_
Flow data structure.
Definition: flow.h:356
tm-modules.h
FlowLogger
int(* FlowLogger)(ThreadVars *, void *thread_data, Flow *f)
Flow logger function pointer type.
Definition: output-flow.h:36
decode.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:58
ThreadInitFunc
TmEcode(* ThreadInitFunc)(ThreadVars *, const void *, void **)
Definition: tm-modules.h:39
OutputFlowLogger_::ThreadInit
TmEcode(* ThreadInit)(ThreadVars *, const void *, void **)
Definition: output-flow.c:52
TmEcode
TmEcode
Definition: tm-threads-common.h:79
OutputFlowLogger_::name
const char * name
Definition: output-flow.c:50
OutputFlowLogger_::LogFunc
FlowLogger LogFunc
Definition: output-flow.c:42
OutputFlowLogThreadInit
TmEcode OutputFlowLogThreadInit(ThreadVars *tv, void **data)
thread init for the flow logger This will run the thread init functions for the individual registered...
Definition: output-flow.c:123
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
OutputFlowLog
TmEcode OutputFlowLog(ThreadVars *tv, void *thread_data, Flow *f)
Run flow logger(s)
Definition: output-flow.c:87
flow.h
OutputFlowShutdown
void OutputFlowShutdown(void)
Definition: output-flow.c:187
OutputFlowLogger_::ThreadDeinit
TmEcode(* ThreadDeinit)(ThreadVars *, void *)
Definition: output-flow.c:53
ThreadDeinitFunc
TmEcode(* ThreadDeinitFunc)(ThreadVars *, void *)
Definition: tm-modules.h:40