suricata
util-running-modes.c
Go to the documentation of this file.
1
/* Copyright (C) 2013 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
/** \file
19
*
20
* \author Eric Leblond <eric@regit.org>
21
*/
22
23
#include "
suricata-common.h
"
24
#include "
app-layer-detect-proto.h
"
25
#include "
app-layer.h
"
26
#include "
app-layer-parser.h
"
27
#include "
util-unittest.h
"
28
#include "
util-debug.h
"
29
#include "
conf-yaml-loader.h
"
30
#include "
util-running-modes.h
"
31
32
int
ListKeywords
(
const
char
*keyword_info)
33
{
34
SCLogLoadConfig
(0, 0);
35
MpmTableSetup
();
36
SpmTableSetup
();
37
AppLayerSetup
();
38
SigTableSetup
();
/* load the rule keywords */
39
SigTableList
(keyword_info);
40
exit(EXIT_SUCCESS);
41
}
42
43
int
ListAppLayerProtocols
(
const
char
*conf_filename)
44
{
45
if
(
ConfYamlLoadFile
(conf_filename) != -1)
46
SCLogLoadConfig
(0, 0);
47
MpmTableSetup
();
48
SpmTableSetup
();
49
AppLayerSetup
();
50
AppLayerListSupportedProtocols
();
51
52
exit(EXIT_SUCCESS);
53
}
54
SCLogLoadConfig
void SCLogLoadConfig(int daemon, int verbose)
Definition:
util-debug.c:1337
SigTableSetup
void SigTableSetup(void)
Definition:
detect-engine-register.c:427
AppLayerListSupportedProtocols
void AppLayerListSupportedProtocols(void)
Definition:
app-layer.c:819
util-unittest.h
AppLayerSetup
int AppLayerSetup(void)
Setup the app layer.
Definition:
app-layer.c:839
app-layer-detect-proto.h
util-debug.h
ConfYamlLoadFile
int ConfYamlLoadFile(const char *filename)
Load configuration from a YAML file.
Definition:
conf-yaml-loader.c:416
SpmTableSetup
void SpmTableSetup(void)
Definition:
util-spm.c:123
app-layer-parser.h
ListAppLayerProtocols
int ListAppLayerProtocols(const char *conf_filename)
Definition:
util-running-modes.c:43
conf-yaml-loader.h
MpmTableSetup
void MpmTableSetup(void)
Definition:
util-mpm.c:276
suricata-common.h
util-running-modes.h
ListKeywords
int ListKeywords(const char *keyword_info)
Definition:
util-running-modes.c:32
SigTableList
void SigTableList(const char *keyword)
Definition:
detect-engine-register.c:354
app-layer.h
src
util-running-modes.c
Generated on Wed Jan 20 2021 23:30:44 for suricata by
1.8.18