runmodes: adapt to uint16_t thread count

pull/13926/head
Victor Julien 1 month ago committed by Victor Julien
parent fbf75f2e7d
commit b633887d83

@ -1,4 +1,4 @@
/* Copyright (C) 2011-2019 Open Information Security Foundation
/* Copyright (C) 2011-2025 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
@ -155,17 +155,17 @@ int RunModeSetLiveCaptureAutoFp(ConfigIfaceParserFunc ConfigParser,
FatalError("Multidev: Failed to allocate config for %s (%d)", dev, lthread);
}
int threads_count = ModThreadsCount(aconf);
for (int thread = 0; thread < threads_count; thread++) {
const size_t printable_threadname_size = strlen(thread_name) + 10 + strlen(dev) + 1;
uint16_t threads_count = ModThreadsCount(aconf);
for (uint16_t thread = 0; thread < threads_count; thread++) {
const size_t printable_threadname_size = strlen(thread_name) + 5 + strlen(dev) + 1;
char *printable_threadname = SCMalloc(printable_threadname_size);
if (unlikely(printable_threadname == NULL)) {
FatalError("failed to alloc printable thread name: %s", strerror(errno));
}
snprintf(tname, sizeof(tname), "%s#%02d-%s", thread_name,
thread+1, visual_devname);
snprintf(printable_threadname, printable_threadname_size, "%s#%02d-%s", thread_name,
thread + 1, dev);
snprintf(tname, sizeof(tname), "%s#%02u-%s", thread_name, (uint16_t)(thread + 1),
visual_devname);
snprintf(printable_threadname, printable_threadname_size, "%s#%02u-%s", thread_name,
(uint16_t)(thread + 1), dev);
ThreadVars *tv_receive =
TmThreadCreatePacketHandler(tname,
@ -248,23 +248,23 @@ static int RunModeSetLiveCaptureWorkersForDevice(ConfigIfaceThreadsCountFunc Mod
const char *live_dev, void *aconf,
unsigned char single_mode)
{
int threads_count;
uint16_t threads_count;
uint16_t thread_max = TmThreadsGetWorkerThreadMax();
if (single_mode) {
threads_count = 1;
} else {
threads_count = MIN(ModThreadsCount(aconf), thread_max);
SCLogInfo("%s: creating %" PRId32 " thread%s", live_dev, threads_count,
SCLogInfo("%s: creating %" PRIu16 " thread%s", live_dev, threads_count,
threads_count > 1 ? "s" : "");
}
/* create the threads */
for (int thread = 0; thread < threads_count; thread++) {
for (uint16_t thread = 0; thread < threads_count; thread++) {
char tname[TM_THREAD_NAME_MAX];
TmModule *tm_module = NULL;
const char *visual_devname = LiveGetShortName(live_dev);
const size_t printable_threadname_size = strlen(thread_name) + 10 + strlen(live_dev) + 1;
const size_t printable_threadname_size = strlen(thread_name) + 5 + strlen(live_dev) + 1;
char *printable_threadname = SCMalloc(printable_threadname_size);
if (unlikely(printable_threadname == NULL)) {
FatalError("failed to alloc printable thread name: %s", strerror(errno));
@ -276,10 +276,10 @@ static int RunModeSetLiveCaptureWorkersForDevice(ConfigIfaceThreadsCountFunc Mod
snprintf(printable_threadname, printable_threadname_size, "%s#01-%s", thread_name,
live_dev);
} else {
snprintf(tname, sizeof(tname), "%s#%02d-%s", thread_name,
thread+1, visual_devname);
snprintf(printable_threadname, printable_threadname_size, "%s#%02d-%s", thread_name,
thread + 1, live_dev);
snprintf(tname, sizeof(tname), "%s#%02u-%s", thread_name, (uint16_t)(thread + 1),
visual_devname);
snprintf(printable_threadname, printable_threadname_size, "%s#%02u-%s", thread_name,
(uint16_t)(thread + 1), live_dev);
}
ThreadVars *tv = TmThreadCreatePacketHandler(tname,
"packetpool", "packetpool",
@ -446,7 +446,7 @@ int RunModeSetIPSAutoFp(ConfigIPSParserFunc ConfigParser,
}
}
for (int thread = 0; thread < thread_max; thread++) {
for (uint16_t thread = 0; thread < thread_max; thread++) {
snprintf(tname, sizeof(tname), "%s#%02u", thread_name_workers, (uint16_t)(thread + 1));
char qname[TM_QUEUE_NAME_MAX];
snprintf(qname, sizeof(qname), "pickup%u", (uint16_t)(thread + 1));

Loading…
Cancel
Save