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-private.h"
41
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}
55
57{
58 SCEnter();
59 int ret = 0;
60#ifdef NFQ
61
63
65
67 "ReceiveNFQ",
68 "VerdictNFQ",
69 "DecodeNFQ");
70#endif /* NFQ */
71 return ret;
72}
73
75{
76 SCEnter();
77 int ret = 0;
78#ifdef NFQ
79
81
83
85 "ReceiveNFQ",
86 "VerdictNFQ",
87 "DecodeNFQ");
88#endif /* NFQ */
89 return ret;
90}
const char * RunModeIpsNFQGetDefaultMode(void)
Definition runmode-nfq.c:42
int RunModeIpsNFQAutoFp(void)
Definition runmode-nfq.c:56
void RunModeIpsNFQRegister(void)
Definition runmode-nfq.c:47
int RunModeIpsNFQWorker(void)
Definition runmode-nfq.c:74
void RunModeRegisterNewRunMode(enum SCRunModes runmode, const char *name, const char *description, int(*RunModeFunc)(void), int(*RunModeIsIPSEnabled)(void))
Registers a new runmode.
Definition runmodes.c:486
@ RUNMODE_NFQ
Definition runmodes.h:31
void * NFQGetThread(int number)
Get a pointer to the NFQ thread at index.
Definition source-nfq.c:964
#define SCEnter(...)
Definition util-debug.h:277
void LiveDeviceHasNoStats(void)
int RunModeSetIPSWorker(ConfigIPSParserFunc ConfigParser, const char *recv_mod_name, const char *verdict_mod_name, const char *decode_mod_name)
int RunModeSetIPSAutoFp(ConfigIPSParserFunc ConfigParser, const char *recv_mod_name, const char *verdict_mod_name, const char *decode_mod_name)
void TimeModeSetLive(void)
Definition util-time.c:99