Go to the documentation of this file.
50 #ifdef PROFILE_LOCKING
70 #include <sys/param.h>
71 #include <sys/resource.h>
72 #include <sys/cpuset.h>
74 #define cpu_set_t cpuset_t
78 static int SetCPUAffinity(uint16_t cpu);
117 while (decode_pq->
top != NULL) {
123 if (TmThreadsSlotProcessPkt(
tv, slot, extra_p) !=
TM_ECODE_OK) {
144 TmThreadsSlotProcessPktFail(
tv, NULL);
188 r = TmThreadsSlotProcessPkt(
tv, fw_slot, p);
232 static void *TmThreadsSlotPktAcqLoop(
void *td)
249 SCLogError(
"TmSlot or ThreadVars badly setup: s=%p,"
250 " PktAcqLoop=%p, tmqh_in=%p,"
254 pthread_exit((
void *) -1);
258 for (slot = s; slot != NULL; slot = slot->
slot_next) {
260 void *slot_data = NULL;
283 pthread_exit((
void *) -1);
298 pthread_exit((
void *) -1);
328 TmThreadTimeoutLoop(
tv, s);
335 for (slot = s; slot != NULL; slot = slot->
slot_next) {
352 pthread_exit((
void *) 0);
357 pthread_exit((
void *) -1);
382 static void *TmThreadsSlotVar(
void *td)
403 pthread_exit((
void *) -1);
409 void *slot_data = NULL;
429 pthread_exit((
void *) -1);
444 pthread_exit((
void *) -1);
489 TmThreadsHandleInjectedPackets(
tv);
522 pthread_exit((
void *) 0);
527 pthread_exit((
void *) -1);
531 static void *TmThreadsManagement(
void *td)
550 void *slot_data = NULL;
554 pthread_exit((
void *) -1);
585 pthread_exit((
void *) -1);
591 pthread_exit((
void *) 0);
609 printf(
"Both slot name and function pointer can't be NULL inside "
610 "TmThreadSetSlots\n");
617 if (strcmp(name,
"varslot") == 0) {
619 }
else if (strcmp(name,
"pktacqloop") == 0) {
621 }
else if (strcmp(name,
"management") == 0) {
623 }
else if (strcmp(name,
"command") == 0) {
625 }
else if (strcmp(name,
"custom") == 0) {
630 printf(
"Error: Slot \"%s\" not supported\n", name);
693 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
694 static int SetCPUAffinitySet(cpu_set_t *cs)
696 #if defined OS_FREEBSD
697 int r = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID,
700 int r = thread_policy_set(mach_thread_self(), THREAD_AFFINITY_POLICY,
701 (
void*)cs, THREAD_AFFINITY_POLICY_COUNT);
703 pid_t tid = syscall(SYS_gettid);
704 int r = sched_setaffinity(tid,
sizeof(cpu_set_t), cs);
708 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
725 static int SetCPUAffinity(uint16_t cpuid)
727 #if defined __OpenBSD__ || defined sun
730 int cpu = (int)cpuid;
732 #if defined OS_WIN32 || defined __CYGWIN__
735 int r = (0 == SetThreadAffinityMask(GetCurrentThread(), cs));
737 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
741 SCLogDebug(
"CPU Affinity for thread %lu set to CPU %" PRId32,
748 memset(&cs, 0,
sizeof(cs));
752 return SetCPUAffinitySet(&cs);
784 tv->
name, strerror(errno));
786 SCLogDebug(
"Priority set to %"PRId32
" for thread %s",
796 SCLogDebug(
"Nice value set to %"PRId32
" for thread %s",
857 SCLogPerf(
"Setting affinity for thread \"%s\"to cpu/core "
863 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
876 }
else if (CPU_ISSET(cpu, &taf->
hiprio_cpu)) {
881 SCLogPerf(
"Setting prio %d for thread \"%s\" to cpu/core "
885 SetCPUAffinitySet(&taf->
cpu_set);
887 SCLogPerf(
"Setting prio %d for thread \"%s\", "
914 const char *outq_name,
const char *outqh_name,
const char *slots,
915 void * (*fn_p)(
void *),
int mucond)
921 SCLogDebug(
"creating thread \"%s\"...", name);
938 if (inq_name != NULL && strcmp(inq_name,
"packetpool") != 0) {
953 if (inqh_name != NULL) {
970 if (outqh_name != NULL) {
985 if (outq_name != NULL && strcmp(outq_name,
"packetpool") != 0) {
1045 const char *inqh_name,
const char *outq_name,
1046 const char *outqh_name,
const char *slots)
1106 tv =
TmThreadCreate(name, NULL, NULL, NULL, NULL,
"management", NULL, mucond);
1139 tv =
TmThreadCreate(name, NULL, NULL, NULL, NULL,
"command", NULL, mucond);
1176 if (t->
next == NULL) {
1246 if (
tv->
inq != NULL) {
1274 pthread_join(
tv->
t, NULL);
1297 static void TmThreadDrainPacketThreads(
void)
1300 struct timeval start_ts;
1301 struct timeval cur_ts;
1302 gettimeofday(&start_ts, NULL);
1305 gettimeofday(&cur_ts, NULL);
1306 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1308 "to process their packets in time");
1317 if (ThreadStillHasPackets(
tv)) {
1327 if (ThreadBusy(
tv)) {
1361 struct timeval start_ts;
1362 struct timeval cur_ts;
1363 gettimeofday(&start_ts, NULL);
1366 gettimeofday(&cur_ts, NULL);
1367 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1368 FatalError(
"Engine unable to disable detect "
1369 "thread - \"%s\". Killing engine",
1387 while (slots != NULL) {
1400 if (ThreadStillHasPackets(
tv)) {
1410 if (ThreadBusy(
tv)) {
1435 if (
tv->
inq != NULL) {
1462 TmThreadDrainPacketThreads();
1465 #ifdef DEBUG_VALIDATION
1466 static void TmThreadDumpThreads(
void);
1469 static void TmThreadDebugValidateNoMorePackets(
void)
1471 #ifdef DEBUG_VALIDATION
1474 if (ThreadStillHasPackets(
tv)) {
1476 TmThreadDumpThreads();
1489 struct timeval start_ts;
1490 struct timeval cur_ts;
1493 TmThreadDrainPacketThreads();
1498 TmThreadDebugValidateNoMorePackets();
1500 gettimeofday(&start_ts, NULL);
1502 gettimeofday(&cur_ts, NULL);
1503 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1504 FatalError(
"Engine unable to disable packet "
1505 "threads. Killing engine");
1516 if (
tv->
inq != NULL) {
1535 #define MIN_WAIT_TIME 100
1536 #define MAX_WAIT_TIME 999999
1549 int r = TmThreadKillThread(
tv);
1563 #undef MIN_WAIT_TIME
1564 #undef MAX_WAIT_TIME
1570 for (i = 0; i <
TVT_MAX; i++) {
1593 TmThreadDeinitMC(
tv);
1622 char *thread_group_name = NULL;
1630 thread_group_name =
SCStrdup(name);
1631 if (
unlikely(thread_group_name == NULL)) {
1643 if ((family < 0) || (family >=
TVT_MAX))
1665 pthread_attr_t attr;
1671 pthread_attr_init(&attr);
1673 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1679 FatalError(
"Unable to increase stack size to %" PRIu64
" in thread attributes",
1686 FatalError(
"Unable to create thread with pthread_create(): retval %d: %s", rc,
1690 #if DEBUG && HAVE_PTHREAD_GETATTR_NP
1692 if (pthread_getattr_np(
tv->
t, &attr) == 0) {
1695 pthread_attr_getstack(&attr, &stack_addr, &stack_size);
1696 SCLogDebug(
"stack: %p; size %" PRIu64, stack_addr, (uintmax_t)stack_size);
1698 SCLogDebug(
"Unable to retrieve current stack-size for display; return code from "
1699 "pthread_getattr_np() is %" PRId32,
1722 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1727 printf(
"Error initializing the tv->m mutex\n");
1732 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1737 FatalError(
"Error initializing the tv->cond condition "
1777 static TmEcode WaitOnThreadsRunningByType(
const int t)
1779 struct timeval start_ts;
1780 struct timeval cur_ts;
1781 uint32_t thread_cnt = 0;
1792 uint32_t time_budget = 60 + thread_cnt;
1794 gettimeofday(&start_ts, NULL);
1798 while (
tv != NULL) {
1803 "start: flags %04x",
1813 gettimeofday(&cur_ts, NULL);
1814 if (((uint32_t)cur_ts.tv_sec - (uint32_t)start_ts.tv_sec) > time_budget) {
1816 "start in time: flags %04x. Total threads: %u. Time budget %us",
1841 uint16_t RX_num = 0;
1843 uint16_t FM_num = 0;
1844 uint16_t FR_num = 0;
1845 uint16_t TX_num = 0;
1847 for (
int i = 0; i <
TVT_MAX; i++) {
1853 for (
int i = 0; i <
TVT_MAX; i++) {
1871 uint16_t app_len = 32;
1872 uint16_t buf_len = 256;
1874 char append_str[app_len];
1875 char thread_counts[buf_len];
1877 strlcpy(thread_counts,
"Threads created -> ", strlen(
"Threads created -> ") + 1);
1879 snprintf(append_str, app_len,
"RX: %u ", RX_num);
1880 strlcat(thread_counts, append_str, buf_len);
1883 snprintf(append_str, app_len,
"W: %u ", W_num);
1884 strlcat(thread_counts, append_str, buf_len);
1887 snprintf(append_str, app_len,
"TX: %u ", TX_num);
1888 strlcat(thread_counts, append_str, buf_len);
1891 snprintf(append_str, app_len,
"FM: %u ", FM_num);
1892 strlcat(thread_counts, append_str, buf_len);
1895 snprintf(append_str, app_len,
"FR: %u ", FR_num);
1896 strlcat(thread_counts, append_str, buf_len);
1898 snprintf(append_str, app_len,
" Engine started.");
1899 strlcat(thread_counts, append_str, buf_len);
1911 for (
int i = 0; i <
TVT_MAX; i++) {
1913 while (
tv != NULL) {
1927 for (
int i = 0; i <
TVT_MAX; i++) {
1949 struct timeval start_ts;
1950 struct timeval cur_ts;
1951 gettimeofday(&start_ts, NULL);
1955 for (
int i = 0; i <
TVT_MAX; i++) {
1957 while (
tv != NULL) {
1962 "initialize: flags %04x",
1970 gettimeofday(&cur_ts, NULL);
1971 if ((cur_ts.tv_sec - start_ts.tv_sec) > 120) {
1973 "initialize in time: flags %04x",
2014 for (
int i = 0; i <
TVT_MAX; i++) {
2016 while (
tv != NULL) {
2027 #ifdef DEBUG_VALIDATION
2037 static void TmThreadDumpThreads(
void)
2040 for (
int i = 0; i <
TVT_MAX; i++) {
2042 while (
tv != NULL) {
2044 SCLogNotice(
"tv %p: type %u name %s tmm_flags %02X flags %X stream_pq %p",
2050 SCLogNotice(
"tv %p: ==> stream_pq_local: pq.len %u packet src %s",
2055 SCLogNotice(
"tv %p: ==> decode_pq: decode_pq.len %u packet src %s",
2058 TmThreadDoDumpSlots(
tv);
2085 static Threads thread_store = { NULL, 0, 0 };
2091 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2093 if (t == NULL || t->
in_use == 0)
2096 SCLogNotice(
"Thread %"PRIuMAX
", %s type %d, tv %p in_use %d",
2101 SCLogNotice(
"tv %p type %u name %s tmm_flags %02X flags %X",
2115 if (thread_store.
threads == NULL) {
2138 thread_store.
threads = newmem;
2219 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2238 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2252 struct timeval local = { 0 };
2284 SCLogDebug(
"ts->tv_sec %"PRIuMAX, (uintmax_t)
ts->tv_sec);
2292 if (thread_max == 0)
2296 if (thread_max > 1024) {
2297 SCLogWarning(
"limited number of 'worker' threads to 1024. Wanted %d", thread_max);
2300 return (uint16_t)thread_max;
2319 if (
tv->
inq != NULL) {
2324 TmThreadsCaptureBreakLoop(
tv);
const char * thread_name_workers
TmEcode TmThreadSetCPUAffinity(ThreadVars *tv, uint16_t cpu)
Set the thread options (cpu affinity).
struct FlowQueue_ * flow_queue
bool TmThreadsTimeSubsysIsReady(void)
void TmThreadInitMC(ThreadVars *tv)
Initializes the mutex and condition variables for this TV.
thread_local uint64_t spin_lock_cnt
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...
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
#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
void TmThreadSetGroupName(ThreadVars *tv, const char *name)
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
#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
int StatsSetupPrivate(ThreadVars *tv)
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
void TmThreadDisablePacketThreads(void)
Disable all packet threads.
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.
uint16_t AffinityGetNextCPU(ThreadsAffinityType *taf)
Return next cpu to use for a given thread family.
TmEcode(* PktAcqLoop)(ThreadVars *, void *, void *)
TmEcode TmThreadWaitOnThreadInit(void)
Used to check if all threads have finished their initialization. On finding an un-initialized thread,...
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
StatsPublicThreadContext perf_public_ctx
#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)
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 ThreadVars_ * next
#define SCTIME_TO_TIMEVAL(tv, t)
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
TmModule * TmModuleGetById(int id)
Returns a TM Module by its id.
uint8_t thread_setup_flags
thread_local uint64_t rww_lock_wait_ticks
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...
thread_local uint64_t rwr_lock_wait_ticks
#define SCMutexInit(mut, mutattrs)
#define TM_FLAG_RECEIVE_TM
#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)
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...
void StatsSyncCounters(ThreadVars *tv)
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.
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(ThreadVars *tv)
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.