mirror of https://github.com/OISF/suricata
Add factorisation function for runmode.
This patch adds a function which will be used to factorise the Auto runmode between the different IDS mode.remotes/origin/master-1.1.x
parent
de635b5866
commit
8bf0897b3c
@ -0,0 +1,568 @@
|
||||
/* Copyright (C) 2011 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file
|
||||
*
|
||||
* \author Eric Leblond <eric@regit.org>
|
||||
*
|
||||
* Helper function for runmode.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "suricata-common.h"
|
||||
#include "config.h"
|
||||
#include "tm-threads.h"
|
||||
#include "conf.h"
|
||||
#include "runmodes.h"
|
||||
#include "runmode-af-packet.h"
|
||||
#include "log-httplog.h"
|
||||
#include "output.h"
|
||||
#include "cuda-packet-batcher.h"
|
||||
#include "detect-engine-mpm.h"
|
||||
|
||||
#include "alert-fastlog.h"
|
||||
#include "alert-prelude.h"
|
||||
#include "alert-unified-log.h"
|
||||
#include "alert-unified-alert.h"
|
||||
#include "alert-unified2-alert.h"
|
||||
#include "alert-debuglog.h"
|
||||
|
||||
#include "util-debug.h"
|
||||
#include "util-time.h"
|
||||
#include "util-cpu.h"
|
||||
#include "util-affinity.h"
|
||||
#include "util-device.h"
|
||||
|
||||
|
||||
#include "util-runmodes.h"
|
||||
|
||||
int RunModeSetLiveCaptureAuto(DetectEngineCtx *de_ctx,
|
||||
ConfigIfaceParserFunc configparser, char *recv_mod_name,
|
||||
char *decode_mod_name, char *thread_name,
|
||||
const char *live_dev)
|
||||
{
|
||||
/* Available cpus */
|
||||
uint16_t ncpus = UtilCpuGetNumProcessorsOnline();
|
||||
int nlive = LiveGetDeviceCount();
|
||||
TmModule *tm_module;
|
||||
char tname[16];
|
||||
int thread;
|
||||
|
||||
if ((nlive <= 1) && (live_dev != NULL)) {
|
||||
void *aconf;
|
||||
if (live_dev == NULL) {
|
||||
printf("Failed to lookup live dev\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
SCLogDebug("live_dev %s", live_dev);
|
||||
|
||||
aconf = configparser(live_dev);
|
||||
if (aconf == NULL) {
|
||||
printf("Single dev: Failed to allocate config\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
/* create the threads */
|
||||
ThreadVars *tv_receive =
|
||||
TmThreadCreatePacketHandler(recv_mod_name,
|
||||
"packetpool", "packetpool",
|
||||
"pickup-queue", "simple",
|
||||
"pktacqloop");
|
||||
if (tv_receive == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName(recv_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName failed for %s\n", recv_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, aconf);
|
||||
|
||||
TmThreadSetCPU(tv_receive, RECEIVE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_receive) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
} else {
|
||||
SCLogInfo("Using %d live device(s).", nlive);
|
||||
|
||||
for (thread = 0; thread < nlive; thread++) {
|
||||
char *live_dev = LiveGetDevice(thread);
|
||||
char *tnamec = NULL;
|
||||
void *aconf;
|
||||
|
||||
if (live_dev == NULL) {
|
||||
printf("Multidev: Failed to lookup live dev %d\n", thread);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
SCLogDebug("live_dev %s", live_dev);
|
||||
|
||||
aconf = configparser(live_dev);
|
||||
if (aconf == NULL) {
|
||||
printf("Failed to allocate config for %s (%d)\n",
|
||||
live_dev, thread);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
snprintf(tname, sizeof(tname),"%s-%s", thread_name, live_dev);
|
||||
tnamec = SCStrdup(tname);
|
||||
|
||||
/* create the threads */
|
||||
ThreadVars *tv_receive =
|
||||
TmThreadCreatePacketHandler(tnamec,
|
||||
"packetpool", "packetpool",
|
||||
"pickup-queue", "simple",
|
||||
"pktacqloop");
|
||||
if (tv_receive == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName(recv_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName failed for %s\n", recv_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, (void *)aconf);
|
||||
|
||||
TmThreadSetCPU(tv_receive, RECEIVE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_receive) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(__SC_CUDA_SUPPORT__)
|
||||
if (PatternMatchDefaultMatcher() == MPM_B2G_CUDA) {
|
||||
ThreadVars *tv_decode1 =
|
||||
TmThreadCreatePacketHandler("Decode",
|
||||
"pickup-queue", "simple",
|
||||
"decode-queue1", "simple",
|
||||
"1slot");
|
||||
if (tv_decode1 == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed for Decode1\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName(decode_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName %s failed\n", decode_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
Tm1SlotSetFunc(tv_decode1, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_decode1, DECODE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_decode1) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
ThreadVars *tv_cuda_PB =
|
||||
TmThreadCreate("CUDA_PB",
|
||||
"decode-queue1", "simple",
|
||||
"cuda-pb-queue1", "simple",
|
||||
"custom", SCCudaPBTmThreadsSlot1, 0);
|
||||
if (tv_cuda_PB == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed for CUDA_PB\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tv_cuda_PB->type = TVT_PPT;
|
||||
|
||||
tm_module = TmModuleGetByName("CudaPacketBatcher");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName CudaPacketBatcher failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
Tm1SlotSetFunc(tv_cuda_PB, tm_module, (void *)de_ctx);
|
||||
|
||||
TmThreadSetCPU(tv_cuda_PB, DETECT_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_cuda_PB) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
ThreadVars *tv_stream1 =
|
||||
TmThreadCreatePacketHandler("Stream1",
|
||||
"cuda-pb-queue1", "simple",
|
||||
"stream-queue1", "simple",
|
||||
"1slot");
|
||||
if (tv_stream1 == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed for Stream1\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName("StreamTcp");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName StreamTcp failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
Tm1SlotSetFunc(tv_stream1, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_stream1, STREAM_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_stream1) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
} else {
|
||||
ThreadVars *tv_decode1 =
|
||||
TmThreadCreatePacketHandler("Decode & Stream",
|
||||
"pickup-queue", "simple",
|
||||
"stream-queue1", "simple",
|
||||
"varslot");
|
||||
if (tv_decode1 == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed for Decode1\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName(decode_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName %s failed\n", decode_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmVarSlotSetFuncAppend(tv_decode1, tm_module, NULL);
|
||||
|
||||
tm_module = TmModuleGetByName("StreamTcp");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName StreamTcp failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmVarSlotSetFuncAppend(tv_decode1, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_decode1, DECODE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_decode1) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
#else
|
||||
ThreadVars *tv_decode1 =
|
||||
TmThreadCreatePacketHandler("Decode & Stream",
|
||||
"pickup-queue", "simple",
|
||||
"stream-queue1", "simple",
|
||||
"varslot");
|
||||
if (tv_decode1 == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed for Decode1\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName(decode_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName %s failed\n", decode_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_decode1, tm_module, NULL);
|
||||
|
||||
tm_module = TmModuleGetByName("StreamTcp");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName StreamTcp failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_decode1, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_decode1, DECODE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_decode1) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* always create at least one thread */
|
||||
int thread_max = TmThreadGetNbThreads(DETECT_CPU_SET);
|
||||
if (thread_max == 0)
|
||||
thread_max = ncpus * threading_detect_ratio;
|
||||
if (thread_max < 1)
|
||||
thread_max = 1;
|
||||
|
||||
for (thread = 0; thread < thread_max; thread++) {
|
||||
snprintf(tname, sizeof(tname),"Detect%"PRIu16, thread+1);
|
||||
|
||||
char *thread_name = SCStrdup(tname);
|
||||
|
||||
ThreadVars *tv_detect_ncpu =
|
||||
TmThreadCreatePacketHandler(thread_name,
|
||||
"stream-queue1", "simple",
|
||||
"verdict-queue", "simple",
|
||||
"1slot");
|
||||
if (tv_detect_ncpu == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName("Detect");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName Detect failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_detect_ncpu, tm_module, (void *)de_ctx);
|
||||
|
||||
TmThreadSetCPU(tv_detect_ncpu, DETECT_CPU_SET);
|
||||
|
||||
char *thread_group_name = SCStrdup("Detect");
|
||||
if (thread_group_name == NULL) {
|
||||
printf("Error allocating memory\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tv_detect_ncpu->thread_group_name = thread_group_name;
|
||||
|
||||
if (TmThreadSpawn(tv_detect_ncpu) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
ThreadVars *tv_rreject =
|
||||
TmThreadCreatePacketHandler("RespondReject",
|
||||
"verdict-queue", "simple",
|
||||
"alert-queue", "simple",
|
||||
"1slot");
|
||||
if (tv_rreject == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tm_module = TmModuleGetByName("RespondReject");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName for RespondReject failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_rreject, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_rreject, REJECT_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_rreject) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
ThreadVars *tv_outputs =
|
||||
TmThreadCreatePacketHandler("Outputs",
|
||||
"alert-queue", "simple",
|
||||
"packetpool", "packetpool",
|
||||
"varslot");
|
||||
if (tv_outputs == NULL) {
|
||||
printf("ERROR: TmThreadCreatePacketHandler for Outputs failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
SetupOutputs(tv_outputs);
|
||||
|
||||
TmThreadSetCPU(tv_outputs, OUTPUT_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_outputs) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int RunModeSetLiveCaptureAutoFp(DetectEngineCtx *de_ctx,
|
||||
ConfigIfaceParserFunc configparser,
|
||||
ConfigIfaceThreadsCountFunc mod_threads_count,
|
||||
char *recv_mod_name,
|
||||
char *decode_mod_name, char *thread_name,
|
||||
const char *live_dev)
|
||||
{
|
||||
char tname[12];
|
||||
char qname[12];
|
||||
char queues[2048] = "";
|
||||
int thread;
|
||||
/* Available cpus */
|
||||
uint16_t ncpus = UtilCpuGetNumProcessorsOnline();
|
||||
int nlive = LiveGetDeviceCount();
|
||||
int thread_max = TmThreadGetNbThreads(DETECT_CPU_SET);
|
||||
/* always create at least one thread */
|
||||
if (thread_max == 0)
|
||||
thread_max = ncpus * threading_detect_ratio;
|
||||
if (thread_max < 1)
|
||||
thread_max = 1;
|
||||
|
||||
for (thread = 0; thread < thread_max; thread++) {
|
||||
if (strlen(queues) > 0)
|
||||
strlcat(queues, ",", sizeof(queues));
|
||||
|
||||
snprintf(qname, sizeof(qname),"pickup%"PRIu16, thread+1);
|
||||
strlcat(queues, qname, sizeof(queues));
|
||||
}
|
||||
SCLogDebug("queues %s", queues);
|
||||
|
||||
if ((nlive <= 1) && (live_dev != NULL)) {
|
||||
void *aconf;
|
||||
int threads_count;
|
||||
|
||||
SCLogDebug("live_dev %s", live_dev);
|
||||
|
||||
aconf = configparser(live_dev);
|
||||
if (aconf == NULL) {
|
||||
printf("Failed to allocate config for %s (%d)\n",
|
||||
live_dev, thread);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
threads_count = mod_threads_count(aconf);
|
||||
SCLogInfo("Going to use %" PRId32 " %s receive thread(s)",
|
||||
threads_count, recv_mod_name);
|
||||
|
||||
/* create the threads */
|
||||
for (thread = 0; thread < threads_count; thread++) {
|
||||
snprintf(tname, sizeof(tname), "%s%"PRIu16, thread_name, thread+1);
|
||||
char *thread_name = SCStrdup(tname);
|
||||
|
||||
ThreadVars *tv_receive =
|
||||
TmThreadCreatePacketHandler(thread_name,
|
||||
"packetpool", "packetpool",
|
||||
queues, "flow", "pktacqloop");
|
||||
if (tv_receive == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmModule *tm_module = TmModuleGetByName(recv_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName failed for ReceiveAFP\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, aconf);
|
||||
|
||||
tm_module = TmModuleGetByName(decode_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName DecodeAFP failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_receive, RECEIVE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_receive) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
} else { /* Multiple input device */
|
||||
SCLogInfo("Using %d live device(s).", nlive);
|
||||
int lthread;
|
||||
|
||||
for (lthread = 0; lthread < nlive; lthread++) {
|
||||
char *live_dev = LiveGetDevice(lthread);
|
||||
void *aconf;
|
||||
int threads_count;
|
||||
|
||||
if (live_dev == NULL) {
|
||||
printf("Failed to lookup live dev %d\n", lthread);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
SCLogDebug("live_dev %s", live_dev);
|
||||
|
||||
aconf = configparser(live_dev);
|
||||
if (aconf == NULL) {
|
||||
printf("Multidev: Failed to allocate config for %s (%d)\n",
|
||||
live_dev, lthread);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
threads_count = mod_threads_count(aconf);
|
||||
for (thread = 0; thread < threads_count; thread++) {
|
||||
snprintf(tname, sizeof(tname), "%s%s%"PRIu16, thread_name,
|
||||
live_dev, thread+1);
|
||||
char *thread_name = SCStrdup(tname);
|
||||
|
||||
ThreadVars *tv_receive =
|
||||
TmThreadCreatePacketHandler(thread_name,
|
||||
"packetpool", "packetpool",
|
||||
queues, "flow", "pktacqloop");
|
||||
if (tv_receive == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmModule *tm_module = TmModuleGetByName(recv_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName failed for %s\n", recv_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, aconf);
|
||||
|
||||
tm_module = TmModuleGetByName(decode_mod_name);
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName %s failed\n", decode_mod_name);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_receive, tm_module, NULL);
|
||||
|
||||
TmThreadSetCPU(tv_receive, RECEIVE_CPU_SET);
|
||||
|
||||
if (TmThreadSpawn(tv_receive) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (thread = 0; thread < thread_max; thread++) {
|
||||
snprintf(tname, sizeof(tname), "Detect%"PRIu16, thread+1);
|
||||
snprintf(qname, sizeof(qname), "pickup%"PRIu16, thread+1);
|
||||
|
||||
SCLogDebug("tname %s, qname %s", tname, qname);
|
||||
|
||||
char *thread_name = SCStrdup(tname);
|
||||
|
||||
ThreadVars *tv_detect_ncpu =
|
||||
TmThreadCreatePacketHandler(thread_name,
|
||||
qname, "flow",
|
||||
"packetpool", "packetpool",
|
||||
"varslot");
|
||||
if (tv_detect_ncpu == NULL) {
|
||||
printf("ERROR: TmThreadsCreate failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmModule *tm_module = TmModuleGetByName("StreamTcp");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName StreamTcp failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_detect_ncpu, tm_module, NULL);
|
||||
|
||||
tm_module = TmModuleGetByName("Detect");
|
||||
if (tm_module == NULL) {
|
||||
printf("ERROR: TmModuleGetByName Detect failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
TmSlotSetFuncAppend(tv_detect_ncpu, tm_module, (void *)de_ctx);
|
||||
|
||||
TmThreadSetCPU(tv_detect_ncpu, DETECT_CPU_SET);
|
||||
|
||||
char *thread_group_name = SCStrdup("Detect");
|
||||
if (thread_group_name == NULL) {
|
||||
printf("Error allocating memory\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
tv_detect_ncpu->thread_group_name = thread_group_name;
|
||||
|
||||
/* add outputs as well */
|
||||
SetupOutputs(tv_detect_ncpu);
|
||||
|
||||
if (TmThreadSpawn(tv_detect_ncpu) != TM_ECODE_OK) {
|
||||
printf("ERROR: TmThreadSpawn failed\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -0,0 +1,41 @@
|
||||
/* Copyright (C) 2011 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*
|
||||
* \author Eric Leblond <eric@regit.org>
|
||||
*/
|
||||
|
||||
#ifndef __UTIL_RUNMODES_H__
|
||||
#define __UTIL_RUNMODES_H__
|
||||
|
||||
|
||||
typedef void *(*ConfigIfaceParserFunc) (const char *);
|
||||
typedef int (*ConfigIfaceThreadsCountFunc) (void *);
|
||||
|
||||
int RunModeSetLiveCaptureAuto(DetectEngineCtx *de_ctx,
|
||||
ConfigIfaceParserFunc configparser, char *recv_mod_name,
|
||||
char *decode_mod_name, char *thread_name,
|
||||
const char *live_dev);
|
||||
|
||||
int RunModeSetLiveCaptureAutoFp(DetectEngineCtx *de_ctx,
|
||||
ConfigIfaceParserFunc configparser,
|
||||
ConfigIfaceThreadsCountFunc mod_threads_count,
|
||||
char *recv_mod_name,
|
||||
char *decode_mod_name, char *thread_name,
|
||||
const char *live_dev);
|
||||
#endif /* __UTIL_RUNMODES_H__ */
|
||||
Loading…
Reference in New Issue