suricata
runmode-nfq.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2011 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 Anoop Saldanha <anoopsaldanha@gmail.com>
22  * \author Eric Leblond <eric@regit.org>
23  *
24  * Handling of NFQ runmodes.
25  */
26 
27 
28 #include "suricata-common.h"
29 #include "tm-threads.h"
30 #include "conf.h"
31 #include "runmodes.h"
32 #include "runmode-nfq.h"
33 #include "output.h"
34 
35 #include "util-debug.h"
36 #include "util-time.h"
37 #include "util-cpu.h"
38 #include "util-affinity.h"
39 #include "util-runmodes.h"
40 #include "util-device.h"
41 
42 const char *RunModeIpsNFQGetDefaultMode(void)
43 {
44  return "autofp";
45 }
46 
48 {
50  "Multi threaded NFQ IPS mode with respect to flow", RunModeIpsNFQAutoFp, NULL);
51 
53  "Multi queue NFQ IPS mode with one thread per queue", RunModeIpsNFQWorker, NULL);
54  return;
55 }
56 
58 {
59  SCEnter();
60  int ret = 0;
61 #ifdef NFQ
62 
64 
66 
68  "ReceiveNFQ",
69  "VerdictNFQ",
70  "DecodeNFQ");
71 #endif /* NFQ */
72  return ret;
73 }
74 
76 {
77  SCEnter();
78  int ret = 0;
79 #ifdef NFQ
80 
82 
84 
86  "ReceiveNFQ",
87  "VerdictNFQ",
88  "DecodeNFQ");
89 #endif /* NFQ */
90  return ret;
91 }
tm-threads.h
NFQGetThread
void * NFQGetThread(int number)
Get a pointer to the NFQ thread at index.
Definition: source-nfq.c:962
RunModeSetIPSAutoFp
int RunModeSetIPSAutoFp(ConfigIPSParserFunc ConfigParser, const char *recv_mod_name, const char *verdict_mod_name, const char *decode_mod_name)
Definition: util-runmodes.c:385
RunModeSetIPSWorker
int RunModeSetIPSWorker(ConfigIPSParserFunc ConfigParser, const char *recv_mod_name, const char *verdict_mod_name, const char *decode_mod_name)
Definition: util-runmodes.c:508
RunModeIpsNFQAutoFp
int RunModeIpsNFQAutoFp(void)
Definition: runmode-nfq.c:57
util-runmodes.h
RunModeRegisterNewRunMode
void RunModeRegisterNewRunMode(enum RunModes runmode, const char *name, const char *description, int(*RunModeFunc)(void), void(*RunModeIsIPSEnabled)(void))
Registers a new runmode.
Definition: runmodes.c:491
LiveDeviceHasNoStats
void LiveDeviceHasNoStats(void)
Definition: util-device.c:309
RunModeIpsNFQRegister
void RunModeIpsNFQRegister(void)
Definition: runmode-nfq.c:47
util-device.h
util-debug.h
RunModeIpsNFQWorker
int RunModeIpsNFQWorker(void)
Definition: runmode-nfq.c:75
util-cpu.h
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
util-affinity.h
util-time.h
conf.h
runmodes.h
TimeModeSetLive
void TimeModeSetLive(void)
Definition: util-time.c:99
runmode-nfq.h
suricata-common.h
RUNMODE_NFQ
@ RUNMODE_NFQ
Definition: runmodes.h:32
RunModeIpsNFQGetDefaultMode
const char * RunModeIpsNFQGetDefaultMode(void)
Definition: runmode-nfq.c:42
output.h