suricata
suricata-plugin.h
Go to the documentation of this file.
1 /* Copyright (C) 2020-2021 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 #ifndef SURICATA_SURICATA_PLUGIN_H
19 #define SURICATA_SURICATA_PLUGIN_H
20 
21 #include <stdint.h>
22 #include <stdbool.h>
23 
24 #include "queue.h"
25 
26 /**
27  * The size of the data chunk inside each packet structure a plugin
28  * has for private data (Packet->plugin_v).
29  */
30 #define PLUGIN_VAR_SIZE 64
31 
32 /**
33  * Structure to define a Suricata plugin.
34  */
35 typedef struct SCPlugin_ {
36  const char *name;
37  const char *license;
38  const char *author;
39  void (*Init)(void);
41 
42 typedef SCPlugin *(*SCPluginRegisterFunc)(void);
43 
44 typedef struct SCCapturePlugin_ {
45  char *name;
46  void (*Init)(const char *args, int plugin_slot, int receive_slot, int decode_slot);
47  int (*ThreadInit)(void *ctx, int thread_id, void **thread_ctx);
48  int (*ThreadDeinit)(void *ctx, void *thread_ctx);
49  const char *(*GetDefaultMode)(void);
52 
54 
55 #endif /* __SURICATA_PLUGIN_H */
SCPluginRegisterCapture
int SCPluginRegisterCapture(SCCapturePlugin *)
SCCapturePlugin_::Init
void(* Init)(const char *args, int plugin_slot, int receive_slot, int decode_slot)
Definition: suricata-plugin.h:46
SCCapturePlugin_::ThreadInit
int(* ThreadInit)(void *ctx, int thread_id, void **thread_ctx)
Definition: suricata-plugin.h:47
SCCapturePlugin_::name
char * name
Definition: suricata-plugin.h:45
SCCapturePlugin_
Definition: suricata-plugin.h:44
SCPlugin_::license
const char * license
Definition: suricata-plugin.h:37
SCCapturePlugin_::TAILQ_ENTRY
TAILQ_ENTRY(SCCapturePlugin_) entries
SCPlugin_::author
const char * author
Definition: suricata-plugin.h:38
SCPlugin_
Definition: suricata-plugin.h:35
queue.h
SCCapturePlugin
struct SCCapturePlugin_ SCCapturePlugin
SCPlugin_::Init
void(* Init)(void)
Definition: suricata-plugin.h:39
SCPlugin
struct SCPlugin_ SCPlugin
SCPlugin_::name
const char * name
Definition: suricata-plugin.h:36
SCCapturePlugin_::ThreadDeinit
int(* ThreadDeinit)(void *ctx, void *thread_ctx)
Definition: suricata-plugin.h:48