Go to the documentation of this file.
52 #ifdef PROFILE_LOCKING
72 #include <sys/param.h>
73 #include <sys/resource.h>
74 #include <sys/cpuset.h>
76 #define cpu_set_t cpuset_t
80 static int SetCPUAffinity(uint16_t cpu);
119 while (decode_pq->
top != NULL) {
125 if (TmThreadsSlotProcessPkt(
tv, slot, extra_p) !=
TM_ECODE_OK) {
146 TmThreadsSlotProcessPktFail(
tv, NULL);
190 r = TmThreadsSlotProcessPkt(
tv, fw_slot, p);
222 if (slot->SlotThreadInit != NULL) {
223 void *slot_data = NULL;
224 TmEcode r = slot->SlotThreadInit(
tv, slot->slot_initdata, &slot_data);
293 if (slot->SlotThreadExitPrintStats != NULL) {
297 if (slot->SlotThreadDeinit != NULL) {
312 static void *TmThreadsSlotPktAcqLoop(
void *td)
320 SCLogError(
"TmSlot or ThreadVars badly setup: s=%p,"
321 " PktAcqLoop=%p, tmqh_in=%p,"
329 if (!TmThreadsSlotPktAcqLoopInit(td)) {
354 pthread_exit((
void *) 0);
383 static void *TmThreadsLib(
void *td)
390 SCLogError(
"TmSlot or ThreadVars badly setup: s=%p, tmqh_in=%p,"
397 if (!TmThreadsSlotPktAcqLoopInit(
tv)) {
412 static void *TmThreadsSlotVar(
void *td)
439 void *slot_data = NULL;
519 TmThreadsHandleInjectedPackets(
tv);
540 static void *TmThreadsManagement(
void *td)
559 void *slot_data = NULL;
600 pthread_exit((
void *) 0);
618 printf(
"Both slot name and function pointer can't be NULL inside "
619 "TmThreadSetSlots\n");
626 if (strcmp(
name,
"varslot") == 0) {
628 }
else if (strcmp(
name,
"pktacqloop") == 0) {
630 }
else if (strcmp(
name,
"management") == 0) {
632 }
else if (strcmp(
name,
"command") == 0) {
634 }
else if (strcmp(
name,
"lib") == 0) {
636 }
else if (strcmp(
name,
"custom") == 0) {
641 printf(
"Error: Slot \"%s\" not supported\n",
name);
704 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
705 static int SetCPUAffinitySet(cpu_set_t *cs)
707 #if defined OS_FREEBSD
708 int r = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID,
711 int r = thread_policy_set(mach_thread_self(), THREAD_AFFINITY_POLICY,
712 (
void*)cs, THREAD_AFFINITY_POLICY_COUNT);
714 pid_t tid = (pid_t)syscall(SYS_gettid);
715 int r = sched_setaffinity(tid,
sizeof(cpu_set_t), cs);
719 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
736 static int SetCPUAffinity(uint16_t cpuid)
738 #if defined __OpenBSD__ || defined sun
741 int cpu = (int)cpuid;
743 #if defined OS_WIN32 || defined __CYGWIN__
746 int r = (0 == SetThreadAffinityMask(GetCurrentThread(), cs));
748 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
752 SCLogDebug(
"CPU Affinity for thread %lu set to CPU %" PRId32,
759 memset(&cs, 0,
sizeof(cs));
763 return SetCPUAffinitySet(&cs);
795 tv->
name, strerror(errno));
797 SCLogDebug(
"Priority set to %"PRId32
" for thread %s",
807 SCLogDebug(
"Nice value set to %"PRId32
" for thread %s",
868 SCLogPerf(
"Setting affinity for thread \"%s\"to cpu/core "
874 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
884 if (use_iface_affinity) {
903 }
else if (CPU_ISSET(cpu, &taf->
hiprio_cpu)) {
908 SCLogPerf(
"Setting prio %d for thread \"%s\" to cpu/core "
912 SetCPUAffinitySet(&taf->
cpu_set);
914 SCLogPerf(
"Setting prio %d for thread \"%s\", "
941 const char *outq_name,
const char *outqh_name,
const char *slots,
942 void * (*fn_p)(
void *),
int mucond)
964 if (inq_name != NULL && strcmp(inq_name,
"packetpool") != 0) {
979 if (inqh_name != NULL) {
996 if (outqh_name != NULL) {
1011 if (outq_name != NULL && strcmp(outq_name,
"packetpool") != 0) {
1071 const char *inqh_name,
const char *outq_name,
1072 const char *outqh_name,
const char *slots)
1202 if (t->
next == NULL) {
1272 if (
tv->
inq != NULL) {
1302 pthread_join(
tv->
t, NULL);
1326 static void TmThreadDrainPacketThreads(
void)
1329 struct timeval start_ts;
1330 struct timeval cur_ts;
1331 gettimeofday(&start_ts, NULL);
1334 gettimeofday(&cur_ts, NULL);
1335 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1337 "to process their packets in time");
1346 if (ThreadStillHasPackets(
tv)) {
1356 if (ThreadBusy(
tv)) {
1391 struct timeval start_ts;
1392 struct timeval cur_ts;
1393 gettimeofday(&start_ts, NULL);
1396 gettimeofday(&cur_ts, NULL);
1397 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1398 FatalError(
"Engine unable to disable detect "
1399 "thread - \"%s\". Killing engine",
1417 while (slots != NULL) {
1430 if (ThreadStillHasPackets(
tv)) {
1440 if (ThreadBusy(
tv)) {
1466 if (
tv->
inq != NULL) {
1493 TmThreadDrainPacketThreads();
1496 #ifdef DEBUG_VALIDATION
1497 static void TmThreadDumpThreads(
void);
1500 static void TmThreadDebugValidateNoMorePackets(
void)
1502 #ifdef DEBUG_VALIDATION
1505 if (ThreadStillHasPackets(
tv)) {
1507 TmThreadDumpThreads();
1541 const uint16_t set,
const uint16_t check,
const uint8_t module_flags)
1543 struct timeval start_ts;
1544 struct timeval cur_ts;
1547 TmThreadDrainPacketThreads();
1552 TmThreadDebugValidateNoMorePackets();
1554 gettimeofday(&start_ts, NULL);
1556 gettimeofday(&cur_ts, NULL);
1557 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1558 FatalError(
"Engine unable to disable packet "
1559 "threads. Killing engine");
1566 if (!CheckModuleFlags(
tv, module_flags)) {
1567 SCLogDebug(
"%s does not have any of the modules %02x, skip",
tv->
name, module_flags);
1575 if (
tv->
inq != NULL) {
1596 #define MIN_WAIT_TIME 100
1597 #define MAX_WAIT_TIME 999999
1610 int r = TmThreadKillThread(
tv);
1624 #undef MIN_WAIT_TIME
1625 #undef MAX_WAIT_TIME
1631 for (i = 0; i <
TVT_MAX; i++) {
1654 TmThreadDeinitMC(
tv);
1686 if ((family < 0) || (family >=
TVT_MAX))
1708 pthread_attr_t attr;
1714 pthread_attr_init(&attr);
1716 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1722 FatalError(
"Unable to increase stack size to %" PRIu64
" in thread attributes",
1729 FatalError(
"Unable to create thread %s with pthread_create(): retval %d: %s",
tv->
name, rc,
1733 #if DEBUG && HAVE_PTHREAD_GETATTR_NP
1735 if (pthread_getattr_np(
tv->
t, &attr) == 0) {
1738 pthread_attr_getstack(&attr, &stack_addr, &stack_size);
1739 SCLogDebug(
"stack: %p; size %" PRIu64, stack_addr, (uintmax_t)stack_size);
1741 SCLogDebug(
"Unable to retrieve current stack-size for display; return code from "
1742 "pthread_getattr_np() is %" PRId32,
1762 printf(
"ERROR: no thread function set\n");
1786 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1791 printf(
"Error initializing the tv->m mutex\n");
1796 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1801 FatalError(
"Error initializing the tv->cond condition "
1841 static TmEcode WaitOnThreadsRunningByType(
const int t)
1843 struct timeval start_ts;
1844 struct timeval cur_ts;
1845 uint32_t thread_cnt = 0;
1856 uint32_t time_budget = 60 + thread_cnt;
1858 gettimeofday(&start_ts, NULL);
1862 while (
tv != NULL) {
1867 "start: flags %04x",
1877 gettimeofday(&cur_ts, NULL);
1878 if (((uint32_t)cur_ts.tv_sec - (uint32_t)start_ts.tv_sec) > time_budget) {
1880 "start in time: flags %04x. Total threads: %u. Time budget %us",
1905 uint16_t RX_num = 0;
1907 uint16_t FM_num = 0;
1908 uint16_t FR_num = 0;
1909 uint16_t TX_num = 0;
1911 for (
int i = 0; i <
TVT_MAX; i++) {
1917 for (
int i = 0; i <
TVT_MAX; i++) {
1935 uint16_t app_len = 32;
1936 uint16_t buf_len = 256;
1938 char append_str[app_len];
1939 char thread_counts[buf_len];
1941 strlcpy(thread_counts,
"Threads created -> ", strlen(
"Threads created -> ") + 1);
1943 snprintf(append_str, app_len,
"RX: %u ", RX_num);
1944 strlcat(thread_counts, append_str, buf_len);
1947 snprintf(append_str, app_len,
"W: %u ", W_num);
1948 strlcat(thread_counts, append_str, buf_len);
1951 snprintf(append_str, app_len,
"TX: %u ", TX_num);
1952 strlcat(thread_counts, append_str, buf_len);
1955 snprintf(append_str, app_len,
"FM: %u ", FM_num);
1956 strlcat(thread_counts, append_str, buf_len);
1959 snprintf(append_str, app_len,
"FR: %u ", FR_num);
1960 strlcat(thread_counts, append_str, buf_len);
1962 snprintf(append_str, app_len,
" Engine started.");
1963 strlcat(thread_counts, append_str, buf_len);
1975 for (
int i = 0; i <
TVT_MAX; i++) {
1977 while (
tv != NULL) {
1991 for (
int i = 0; i <
TVT_MAX; i++) {
2013 struct timeval start_ts;
2014 struct timeval cur_ts;
2015 gettimeofday(&start_ts, NULL);
2019 for (
int i = 0; i <
TVT_MAX; i++) {
2021 while (
tv != NULL) {
2026 "initialize: flags %04x",
2034 gettimeofday(&cur_ts, NULL);
2035 if ((cur_ts.tv_sec - start_ts.tv_sec) > 120) {
2037 "initialize in time: flags %04x",
2078 for (
int i = 0; i <
TVT_MAX; i++) {
2080 while (
tv != NULL) {
2091 #ifdef DEBUG_VALIDATION
2101 static void TmThreadDumpThreads(
void)
2104 for (
int i = 0; i <
TVT_MAX; i++) {
2106 while (
tv != NULL) {
2108 SCLogNotice(
"tv %p: type %u name %s tmm_flags %02X flags %X stream_pq %p",
2114 SCLogNotice(
"tv %p: ==> stream_pq_local: pq.len %u packet src %s",
2119 SCLogNotice(
"tv %p: ==> decode_pq: decode_pq.len %u packet src %s",
2122 TmThreadDoDumpSlots(
tv);
2145 typedef struct Threads_ {
2147 size_t threads_size;
2151 static bool thread_store_sealed =
false;
2152 static Threads thread_store = { NULL, 0, 0 };
2159 thread_store_sealed =
true;
2167 thread_store_sealed =
false;
2174 for (
size_t s = 0; s < thread_store.threads_size; s++) {
2175 Thread *t = &thread_store.threads[s];
2176 if (t == NULL || t->in_use == 0)
2179 SCLogNotice(
"Thread %"PRIuMAX
", %s type %d, tv %p in_use %d",
2180 (uintmax_t)s+1, t->name, t->type, t->tv, t->in_use);
2184 SCLogNotice(
"tv %p type %u name %s tmm_flags %02X flags %X",
2199 if (thread_store.threads == NULL) {
2201 BUG_ON(thread_store.threads == NULL);
2202 thread_store.threads_size =
STEP;
2206 for (s = 0; s < thread_store.threads_size; s++) {
2207 if (thread_store.threads[s].in_use == 0) {
2208 Thread *t = &thread_store.threads[s];
2223 void *newmem =
SCRealloc(thread_store.threads, ((thread_store.threads_size +
STEP) *
sizeof(Thread)));
2225 thread_store.threads = newmem;
2226 memset((uint8_t *)thread_store.threads + (thread_store.threads_size *
sizeof(Thread)), 0x00,
STEP *
sizeof(Thread));
2228 Thread *t = &thread_store.threads[thread_store.threads_size];
2237 s = thread_store.threads_size;
2238 thread_store.threads_size +=
STEP;
2249 if (id <= 0 || id > (
int)thread_store.threads_size) {
2258 thread_store.threads[idx].in_use = 0;
2262 for (s = 0; s < thread_store.threads_size; s++) {
2263 Thread *t = &thread_store.threads[s];
2264 if (t->in_use == 1) {
2270 SCFree(thread_store.threads);
2271 thread_store.threads = NULL;
2272 thread_store.threads_size = 0;
2273 thread_store.threads_cnt = 0;
2283 Thread *t = &thread_store.threads[idx];
2288 if (t->sys_sec_stamp.secs != 0) {
2291 SCLogDebug(
"%s: thread slept for %u secs", t->name, (uint32_t)(now.
secs - tmpts.
secs));
2296 t->sys_sec_stamp = now;
2304 for (
size_t s = 0; s < thread_store.threads_size; s++) {
2305 Thread *t = &thread_store.threads[s];
2327 for (
size_t s = 0; s < thread_store.threads_size; s++) {
2328 Thread *t = &thread_store.threads[s];
2338 t->sys_sec_stamp = now;
2346 const int i = idx - 1;
2347 Thread *t = &thread_store.threads[i];
2353 struct timeval local = { 0 };
2358 for (
size_t s = 0; s < thread_store.threads_size; s++) {
2359 Thread *t = &thread_store.threads[s];
2360 if (t->in_use == 0) {
2389 SCLogDebug(
"ts->tv_sec %"PRIuMAX, (uintmax_t)
ts->tv_sec);
2397 if (thread_max == 0)
2401 if (thread_max > 1024) {
2402 SCLogWarning(
"limited number of 'worker' threads to 1024. Wanted %d", thread_max);
2405 return (uint16_t)thread_max;
2412 if (
id > 0 &&
id <= (
int)thread_store.threads_size) {
2414 Thread *t = &thread_store.threads[idx];
2420 if (
tv->
inq != NULL) {
2425 TmThreadsCaptureBreakLoop(
tv);
const char * thread_name_workers
TmEcode TmThreadSetCPUAffinity(ThreadVars *tv, uint16_t cpu)
Set the thread options (cpu affinity).
bool SCTmThreadsSlotPacketLoopFinish(ThreadVars *tv)
struct FlowQueue_ * flow_queue
bool TmThreadsTimeSubsysIsReady(void)
void TmThreadInitMC(ThreadVars *tv)
Initializes the mutex and condition variables for this TV.
void TmThreadsSealThreads(void)
thread_local uint64_t spin_lock_cnt
TmEcode TmThreadLibSpawn(ThreadVars *tv)
Spawns a "fake" lib thread associated with the ThreadVars instance tv.
TmEcode TmThreadsSlotVarRun(ThreadVars *tv, Packet *p, TmSlot *slot)
Separate run function so we can call it recursively.
TmEcode TmThreadSpawn(ThreadVars *tv)
Spawns a thread associated with the ThreadVars instance tv.
ThreadVars * TmThreadCreateMgmtThreadByName(const char *name, const char *module, int mucond)
Creates and returns the TV instance for a Management thread(MGMT). This function supports only custom...
void TmThreadDisablePacketThreads(const uint16_t set, const uint16_t check, const uint8_t module_flags)
Disable all packet threads.
int TmqhNameToID(const char *name)
bool threading_set_cpu_affinity
TmEcode TmThreadSetupOptions(ThreadVars *tv)
Set the thread options (cpu affinitythread). Priority should be already set by pthread_create.
#define SCTIME_CMP_NEQ(a, b)
const char * thread_name_flow_mgr
SC_ATOMIC_DECLARE(SCTime_t, pktts)
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
void TmThreadContinueThreads(void)
Unpauses all threads present in tv_root.
ThreadVars * TmThreadCreatePacketHandler(const char *name, const char *inq_name, const char *inqh_name, const char *outq_name, const char *outqh_name, const char *slots)
Creates and returns a TV instance for a Packet Processing Thread. This function doesn't support custo...
#define SC_ATOMIC_SET(name, val)
Set the value for the atomic variable.
#define SCCtrlMutexDestroy
char * AffinityGetYamlPath(ThreadsAffinityType *taf)
Get the YAML path for the given affinity type. The path is built using the parent name (if available)...
void CaptureStatsSetup(ThreadVars *tv)
thread_local uint64_t rwr_lock_cnt
void TmThreadsSetFlag(ThreadVars *tv, uint32_t flag)
Set a thread flag.
void TmThreadWaitForFlag(ThreadVars *tv, uint32_t flags)
Waits till the specified flag(s) is(are) set. We don't bother if the kill flag has been set or not on...
void PacketEnqueue(PacketQueue *q, Packet *p)
simple fifo queue for packets with mutex and cond Calling the mutex or triggering the cond is respons...
@ PKT_SRC_CAPTURE_TIMEOUT
uint16_t UtilAffinityGetAffinedCPUNum(ThreadsAffinityType *taf)
Return the total number of CPUs in a given affinity.
void TmThreadsUnsealThreads(void)
#define SCSetThreadName(n)
const char * thread_name_flow_rec
void(* OutHandler)(ThreadVars *, Packet *)
uint32_t TmThreadCountThreadsByTmmFlags(uint8_t flags)
returns a count of all the threads that match the flag
const char * thread_name_autofp
struct PacketQueue_ * stream_pq_local
ThreadVars * tv_root[TVT_MAX]
void TmThreadDisableReceiveThreads(void)
Disable all threads having the specified TMs.
#define SCCtrlCondDestroy
#define SCMUTEX_INITIALIZER
TmEcode TmThreadSetThreadPriority(ThreadVars *tv, int prio)
Set the thread options (thread priority).
#define SCTIME_CMP_EQ(a, b)
bool(* ThreadBusy)(ThreadVars *tv, void *thread_data)
#define THREAD_SET_PRIORITY
void TmqhOutputPacketpool(ThreadVars *t, Packet *p)
thread_local uint64_t rww_lock_contention
simple fifo queue for packets
void FlowEnqueue(FlowQueue *q, Flow *f)
add a flow to a queue
SCTime_t TmThreadsGetThreadTime(const int idx)
TmEcode(* PktAcqLoop)(ThreadVars *, void *, void *)
void PacketPoolInit(void)
Packet *(* InHandler)(ThreadVars *)
void TmThreadsInjectFlowById(Flow *f, const int id)
inject a flow into a threads flow queue
thread_local uint64_t rwr_lock_contention
void TmThreadsGetMinimalTimestamp(struct timeval *ts)
size_t strlcpy(char *dst, const char *src, size_t siz)
TmEcode TmThreadsProcessDecodePseudoPackets(ThreadVars *tv, PacketQueueNoLock *decode_pq, TmSlot *slot)
TmEcode(* ThreadDeinit)(ThreadVars *, void *)
TmModule * TmModuleGetByName(const char *name)
get a tm module ptr by name
thread_local uint64_t spin_lock_wait_ticks
#define PKT_SET_SRC(p, src_val)
void TmThreadsUnsetFlag(ThreadVars *tv, uint32_t flag)
Unset a thread flag.
void(* InShutdownHandler)(ThreadVars *)
void TmThreadSetPrio(ThreadVars *tv)
Adjusting nice value for threads.
void TmThreadContinue(ThreadVars *tv)
Unpauses a thread.
bool RunmodeIsWorkers(void)
TmEcode(* PktAcqLoop)(ThreadVars *, void *, void *)
TmEcode TmThreadWaitOnThreadInit(void)
Used to check if all threads have finished their initialization. On finding an un-initialized thread,...
bool RunmodeIsAutofp(void)
TmEcode(* PktAcqBreakLoop)(ThreadVars *, void *)
size_t strlcat(char *, const char *src, size_t siz)
struct TmSlot_ * tm_slots
Packet * PacketDequeueNoLock(PacketQueueNoLock *qnl)
TmEcode(* Management)(ThreadVars *, void *)
#define SCMutexUnlock(mut)
uint64_t threading_set_stack_size
#define PKT_PSEUDO_STREAM_END
void TmThreadsSetThreadTimestamp(const int id, const SCTime_t ts)
thread_local uint64_t rww_lock_cnt
Per thread variable structure.
thread_local uint64_t mutex_lock_contention
#define SCTIME_FROM_TIMEVAL(tv)
Tmq * TmqGetQueueByName(const char *name)
TmEcode(* Management)(ThreadVars *, void *)
thread_local uint64_t spin_lock_contention
TmEcode(* Func)(ThreadVars *, Packet *, void *)
void TmThreadClearThreadsFamily(int family)
#define THV_REQ_FLOW_LOOP
ThreadVars * TmThreadCreate(const char *name, const char *inq_name, const char *inqh_name, const char *outq_name, const char *outqh_name, const char *slots, void *(*fn_p)(void *), int mucond)
Creates and returns the TV instance for a new thread.
FlowQueue * FlowQueueNew(void)
const char * PktSrcToString(enum PktSrcEnum pkt_src)
void TmThreadsUnregisterThread(const int id)
int TmThreadsRegisterThread(ThreadVars *tv, const int type)
#define SCLogWarning(...)
Macro used to log WARNING messages.
void(* OutHandlerCtxFree)(void *)
struct Thread_ __attribute__((aligned(CLS)))
struct ThreadVars_ * next
#define SCTIME_TO_TIMEVAL(tv, t)
int TmThreadTimeoutLoop(ThreadVars *tv, TmSlot *s)
int TmModuleGetIDForTM(TmModule *tm)
Given a TM Module, returns its id.
#define SCCtrlMutexLock(mut)
void TmThreadKillThreads(void)
#define PACKET_PROFILING_TMM_END(p, id)
#define TM_FLAG_DECODE_TM
void CaptureHooksOnPseudoPacketCreated(Packet *p)
TmModule * TmModuleGetById(int id)
Returns a TM Module by its id.
uint8_t thread_setup_flags
thread_local uint64_t rww_lock_wait_ticks
int StatsSetupPrivate(StatsThreadContext *stats, const char *thread_name)
ThreadVars * TmThreadCreateMgmtThread(const char *name, void *(fn_p)(void *), int mucond)
Creates and returns the TV instance for a Management thread(MGMT). This function supports only custom...
uint16_t AffinityGetNextCPU(ThreadVars *tv, ThreadsAffinityType *taf)
thread_local uint64_t rwr_lock_wait_ticks
#define SCMutexInit(mut, mutattrs)
#define TM_FLAG_RECEIVE_TM
void StatsThreadInit(StatsThreadContext *stats)
#define SCGetThreadIdLong(...)
#define SCRealloc(ptr, sz)
void TmThreadsInitThreadsTimestamp(const SCTime_t ts)
struct PacketQueue_ * stream_pq
#define SCTIME_CMP_LT(a, b)
void TmSlotSetFuncAppend(ThreadVars *tv, TmModule *tm, const void *data)
Appends a new entry to the slots.
#define SCCtrlMutexUnlock(mut)
void TmThreadKillThreadsFamily(int family)
void TmThreadAppend(ThreadVars *tv, int type)
Appends this TV to tv_root based on its type.
TmEcode TmThreadSetCPU(ThreadVars *tv, uint8_t type)
ThreadsAffinityType thread_affinity[MAX_CPU_SET]
void(* tmqh_out)(struct ThreadVars_ *, struct Packet_ *)
bool TmThreadsWaitForUnpause(ThreadVars *tv)
Wait for a thread to become unpaused.
struct TmSlot_ * tm_flowworker
int TmThreadGetNbThreads(uint8_t type)
void StatsSyncCounters(StatsThreadContext *stats)
TmEcode(* SlotThreadInit)(ThreadVars *, const void *, void **)
TmEcode(* ThreadInit)(ThreadVars *, const void *, void **)
const void * slot_initdata
uint16_t TmThreadsGetWorkerThreadMax(void)
ThreadVars * TmThreadCreateCmdThreadByName(const char *name, const char *module, int mucond)
Creates and returns the TV instance for a Command thread (CMD). This function supports only custom sl...
unsigned int ThreadStorageSize(void)
#define THREAD_SET_AFFTYPE
void(* ThreadExitPrintStats)(ThreadVars *, void *)
Packet * PacketDequeue(PacketQueue *q)
Packet * PacketGetFromAlloc(void)
Get a malloced packet.
void SCThreadRunInitCallbacks(ThreadVars *tv)
thread_local uint64_t mutex_lock_wait_ticks
#define PACKET_PROFILING_TMM_START(p, id)
struct Packet_ *(* tmqh_in)(struct ThreadVars_ *)
void *(* OutHandlerCtxSetup)(const char *)
#define SCLogError(...)
Macro used to log ERROR messages.
Tmq * TmqCreateQueue(const char *name)
TmEcode(* SlotThreadDeinit)(ThreadVars *, void *)
const char * thread_name_verdict
void(* SlotThreadExitPrintStats)(ThreadVars *, void *)
Tmqh * TmqhGetQueueHandlerByID(const int id)
#define SC_ATOMIC_INITPTR(name)
PacketQueueNoLock decode_pq
#define SCCtrlMutexInit(mut, mutattr)
void EngineDone(void)
Used to indicate that the current task is done.
#define THREAD_SET_AFFINITY
TmEcode TmThreadWaitOnThreadRunning(void)
Waits for all threads to be in a running state.
void TmThreadsListThreads(void)
struct TmSlot_ * slot_next
void TmThreadCheckThreadState(void)
Used to check the thread for certain conditions of failure.
void ThreadFreeStorage(ThreadVars *tv)
#define SC_ATOMIC_GET(name)
Get the value from the atomic variable.
ThreadsAffinityType * FindAffinityByInterface(ThreadsAffinityType *parent, const char *interface_name)
uint16_t UtilCpuGetNumProcessorsOnline(void)
Get the number of cpus online in the system.
void PacketPoolDestroy(void)
thread_local uint64_t mutex_lock_cnt
int TmThreadsCheckFlag(ThreadVars *tv, uint32_t flag)
Check if a thread flag is set.
#define SCTIME_INITIALIZER
#define SCLogNotice(...)
Macro used to log NOTICE messages.
#define SCTIME_ADD_SECS(ts, s)
Tmqh * TmqhGetQueueHandlerByName(const char *name)
void StatsThreadCleanup(StatsThreadContext *stats)
void *(* tm_func)(void *)
Packet * PacketGetFromQueueOrAlloc(void)
Get a packet. We try to get a packet from the packetpool first, but if that is empty we alloc a packe...
#define DEBUG_VALIDATE_BUG_ON(exp)
float threading_detect_ratio
#define SC_ATOMIC_AND(name, val)
Bitwise AND a value to our atomic variable.
volatile uint8_t suricata_ctl_flags
#define SC_ATOMIC_OR(name, val)
Bitwise OR a value to our atomic variable.