Go to the documentation of this file.
48 #ifdef PROFILE_LOCKING
68 #include <sys/param.h>
69 #include <sys/resource.h>
70 #include <sys/cpuset.h>
72 #define cpu_set_t cpuset_t
76 static int SetCPUAffinity(uint16_t cpu);
115 while (decode_pq->
top != NULL) {
121 if (TmThreadsSlotProcessPkt(
tv, slot, extra_p) !=
TM_ECODE_OK) {
142 TmThreadsSlotProcessPktFail(
tv, s, NULL);
184 r = TmThreadsSlotProcessPkt(
tv, fw_slot, p);
230 static void *TmThreadsSlotPktAcqLoop(
void *td)
250 SCLogError(
"TmSlot or ThreadVars badly setup: s=%p,"
251 " PktAcqLoop=%p, tmqh_in=%p,"
255 pthread_exit((
void *) -1);
259 for (slot = s; slot != NULL; slot = slot->
slot_next) {
261 void *slot_data = NULL;
284 pthread_exit((
void *) -1);
299 pthread_exit((
void *) -1);
334 TmThreadTimeoutLoop(
tv, s);
341 for (slot = s; slot != NULL; slot = slot->
slot_next) {
358 pthread_exit((
void *) 0);
363 pthread_exit((
void *) -1);
367 static void *TmThreadsSlotVar(
void *td)
389 pthread_exit((
void *) -1);
395 void *slot_data = NULL;
415 pthread_exit((
void *) -1);
430 pthread_exit((
void *) -1);
480 TmThreadsHandleInjectedPackets(
tv);
513 pthread_exit((
void *) 0);
518 pthread_exit((
void *) -1);
522 static void *TmThreadsManagement(
void *td)
541 void *slot_data = NULL;
545 pthread_exit((
void *) -1);
576 pthread_exit((
void *) -1);
582 pthread_exit((
void *) 0);
600 printf(
"Both slot name and function pointer can't be NULL inside "
601 "TmThreadSetSlots\n");
608 if (strcmp(name,
"varslot") == 0) {
610 }
else if (strcmp(name,
"pktacqloop") == 0) {
612 }
else if (strcmp(name,
"management") == 0) {
614 }
else if (strcmp(name,
"command") == 0) {
616 }
else if (strcmp(name,
"custom") == 0) {
621 printf(
"Error: Slot \"%s\" not supported\n", name);
645 memset(slot, 0,
sizeof(
TmSlot));
685 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
686 static int SetCPUAffinitySet(cpu_set_t *cs)
688 #if defined OS_FREEBSD
689 int r = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_TID,
692 int r = thread_policy_set(mach_thread_self(), THREAD_AFFINITY_POLICY,
693 (
void*)cs, THREAD_AFFINITY_POLICY_COUNT);
695 pid_t tid = syscall(SYS_gettid);
696 int r = sched_setaffinity(tid,
sizeof(cpu_set_t), cs);
700 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
717 static int SetCPUAffinity(uint16_t cpuid)
719 #if defined __OpenBSD__ || defined sun
722 int cpu = (int)cpuid;
724 #if defined OS_WIN32 || defined __CYGWIN__
727 int r = (0 == SetThreadAffinityMask(GetCurrentThread(), cs));
729 printf(
"Warning: sched_setaffinity failed (%" PRId32
"): %s\n", r,
733 SCLogDebug(
"CPU Affinity for thread %lu set to CPU %" PRId32,
740 memset(&cs, 0,
sizeof(cs));
744 return SetCPUAffinitySet(&cs);
776 tv->
name, strerror(errno));
778 SCLogDebug(
"Priority set to %"PRId32
" for thread %s",
788 SCLogDebug(
"Nice value set to %"PRId32
" for thread %s",
849 SCLogPerf(
"Setting affinity for thread \"%s\"to cpu/core "
855 #if !defined __CYGWIN__ && !defined OS_WIN32 && !defined __OpenBSD__ && !defined sun
868 }
else if (CPU_ISSET(cpu, &taf->
hiprio_cpu)) {
873 SCLogPerf(
"Setting prio %d for thread \"%s\" to cpu/core "
877 SetCPUAffinitySet(&taf->
cpu_set);
879 SCLogPerf(
"Setting prio %d for thread \"%s\", "
906 const char *outq_name,
const char *outqh_name,
const char *slots,
907 void * (*fn_p)(
void *),
int mucond)
913 SCLogDebug(
"creating thread \"%s\"...", name);
931 if (inq_name != NULL && strcmp(inq_name,
"packetpool") != 0) {
946 if (inqh_name != NULL) {
963 if (outqh_name != NULL) {
978 if (outq_name != NULL && strcmp(outq_name,
"packetpool") != 0) {
1036 const char *inqh_name,
const char *outq_name,
1037 const char *outqh_name,
const char *slots)
1097 tv =
TmThreadCreate(name, NULL, NULL, NULL, NULL,
"management", NULL, mucond);
1130 tv =
TmThreadCreate(name, NULL, NULL, NULL, NULL,
"command", NULL, mucond);
1167 if (t->
next == NULL) {
1239 if (
tv->
inq != NULL) {
1263 pthread_join(
tv->
t, NULL);
1286 static void TmThreadDrainPacketThreads(
void)
1289 struct timeval start_ts;
1290 struct timeval cur_ts;
1291 gettimeofday(&start_ts, NULL);
1294 gettimeofday(&cur_ts, NULL);
1295 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1297 "to process their packets in time");
1306 if (ThreadStillHasPackets(
tv)) {
1316 if (ThreadBusy(
tv)) {
1351 struct timeval start_ts;
1352 struct timeval cur_ts;
1353 gettimeofday(&start_ts, NULL);
1356 gettimeofday(&cur_ts, NULL);
1357 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1358 FatalError(
"Engine unable to disable detect "
1359 "thread - \"%s\". Killing engine",
1377 while (slots != NULL) {
1390 if (ThreadStillHasPackets(
tv)) {
1400 if (ThreadBusy(
tv)) {
1425 if (
tv->
inq != NULL) {
1450 TmThreadDrainPacketThreads();
1454 #ifdef DEBUG_VALIDATION
1455 static void TmThreadDumpThreads(
void);
1458 static void TmThreadDebugValidateNoMorePackets(
void)
1460 #ifdef DEBUG_VALIDATION
1463 if (ThreadStillHasPackets(
tv)) {
1465 TmThreadDumpThreads();
1478 struct timeval start_ts;
1479 struct timeval cur_ts;
1482 TmThreadDrainPacketThreads();
1487 TmThreadDebugValidateNoMorePackets();
1489 gettimeofday(&start_ts, NULL);
1491 gettimeofday(&cur_ts, NULL);
1492 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1493 FatalError(
"Engine unable to disable packet "
1494 "threads. Killing engine");
1505 if (
tv->
inq != NULL) {
1523 #define MIN_WAIT_TIME 100
1524 #define MAX_WAIT_TIME 999999
1537 int r = TmThreadKillThread(
tv);
1551 #undef MIN_WAIT_TIME
1552 #undef MAX_WAIT_TIME
1558 for (i = 0; i <
TVT_MAX; i++) {
1581 TmThreadDeinitMC(
tv);
1610 char *thread_group_name = NULL;
1618 thread_group_name =
SCStrdup(name);
1619 if (
unlikely(thread_group_name == NULL)) {
1631 if ((family < 0) || (family >=
TVT_MAX))
1653 pthread_attr_t attr;
1659 pthread_attr_init(&attr);
1661 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1667 FatalError(
"Unable to increase stack size to %" PRIu64
" in thread attributes",
1674 FatalError(
"Unable to create thread with pthread_create(): retval %d: %s", rc,
1678 #if DEBUG && HAVE_PTHREAD_GETATTR_NP
1680 if (pthread_getattr_np(
tv->
t, &attr) == 0) {
1683 pthread_attr_getstack(&attr, &stack_addr, &stack_size);
1684 SCLogDebug(
"stack: %p; size %" PRIu64, stack_addr, (uintmax_t)stack_size);
1686 SCLogDebug(
"Unable to retrieve current stack-size for display; return code from "
1687 "pthread_getattr_np() is %" PRId32,
1710 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1715 printf(
"Error initializing the tv->m mutex\n");
1720 FatalError(
"Fatal error encountered in TmThreadInitMC. "
1725 FatalError(
"Error initializing the tv->cond condition "
1798 uint16_t RX_num = 0;
1800 uint16_t FM_num = 0;
1801 uint16_t FR_num = 0;
1802 uint16_t TX_num = 0;
1804 struct timeval start_ts;
1805 struct timeval cur_ts;
1806 gettimeofday(&start_ts, NULL);
1810 for (
int i = 0; i <
TVT_MAX; i++) {
1812 while (
tv != NULL) {
1817 "start: flags %04x",
1827 gettimeofday(&cur_ts, NULL);
1828 if ((cur_ts.tv_sec - start_ts.tv_sec) > 60) {
1830 "start in time: flags %04x",
1843 for (
int i = 0; i <
TVT_MAX; i++) {
1861 uint16_t app_len = 32;
1862 uint16_t buf_len = 256;
1864 char append_str[app_len];
1865 char thread_counts[buf_len];
1867 strlcpy(thread_counts,
"Threads created -> ", strlen(
"Threads created -> ") + 1);
1869 snprintf(append_str, app_len,
"RX: %u ", RX_num);
1870 strlcat(thread_counts, append_str, buf_len);
1873 snprintf(append_str, app_len,
"W: %u ", W_num);
1874 strlcat(thread_counts, append_str, buf_len);
1877 snprintf(append_str, app_len,
"TX: %u ", TX_num);
1878 strlcat(thread_counts, append_str, buf_len);
1881 snprintf(append_str, app_len,
"FM: %u ", FM_num);
1882 strlcat(thread_counts, append_str, buf_len);
1885 snprintf(append_str, app_len,
"FR: %u ", FR_num);
1886 strlcat(thread_counts, append_str, buf_len);
1888 snprintf(append_str, app_len,
" Engine started.");
1889 strlcat(thread_counts, append_str, buf_len);
1901 for (
int i = 0; i <
TVT_MAX; i++) {
1903 while (
tv != NULL) {
1918 for (
int i = 0; i <
TVT_MAX; i++) {
1941 struct timeval start_ts;
1942 struct timeval cur_ts;
1943 gettimeofday(&start_ts, NULL);
1947 for (
int i = 0; i <
TVT_MAX; i++) {
1949 while (
tv != NULL) {
1954 "initialize: flags %04x",
1962 gettimeofday(&cur_ts, NULL);
1963 if ((cur_ts.tv_sec - start_ts.tv_sec) > 120) {
1965 "initialize in time: flags %04x",
2006 for (
int i = 0; i <
TVT_MAX; i++) {
2008 while (
tv != NULL) {
2019 #ifdef DEBUG_VALIDATION
2029 static void TmThreadDumpThreads(
void)
2032 for (
int i = 0; i <
TVT_MAX; i++) {
2034 while (
tv != NULL) {
2036 SCLogNotice(
"tv %p: type %u name %s tmm_flags %02X flags %X stream_pq %p",
2042 SCLogNotice(
"tv %p: ==> stream_pq_local: pq.len %u packet src %s",
2047 SCLogNotice(
"tv %p: ==> decode_pq: decode_pq.len %u packet src %s",
2050 TmThreadDoDumpSlots(
tv);
2077 static Threads thread_store = { NULL, 0, 0 };
2083 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2085 if (t == NULL || t->
in_use == 0)
2088 SCLogNotice(
"Thread %"PRIuMAX
", %s type %d, tv %p in_use %d",
2093 SCLogNotice(
"tv %p type %u name %s tmm_flags %02X flags %X",
2107 if (thread_store.
threads == NULL) {
2130 thread_store.
threads = newmem;
2191 struct timeval systs;
2192 gettimeofday(&systs, NULL);
2201 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2216 struct timeval systs;
2217 gettimeofday(&systs, NULL);
2219 for (
size_t s = 0; s < thread_store.
threads_size; s++) {
2231 struct timeval local = { 0 };
2232 static struct timeval nullts;
2235 struct timeval systs;
2236 gettimeofday(&systs, NULL);
2245 if (!(timercmp(&pkttv, &nullts, ==))) {
2262 SCLogDebug(
"ts->tv_sec %"PRIuMAX, (uintmax_t)
ts->tv_sec);
2270 if (thread_max == 0)
2274 if (thread_max > 1024) {
2275 SCLogWarning(
"limited number of 'worker' threads to 1024. Wanted %d", thread_max);
2278 return (uint16_t)thread_max;
2297 if (
tv->
inq != NULL) {
2300 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)
TmEcode TmThreadSetupOptions(ThreadVars *tv)
Set the thread options (cpu affinitythread). Priority should be already set by pthread_create.
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).
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)
void TmThreadTestThreadUnPaused(ThreadVars *tv)
Tests if the thread represented in the arg has been unpaused or not.
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.
int threading_set_cpu_affinity
void(* OutHandlerCtxFree)(void *)
struct ThreadVars_ * next
#define SCTIME_TO_TIMEVAL(tv, t)
int TmModuleGetIDForTM(TmModule *tm)
Given a TM Module, returns its id.
void TmThreadKillThreads(void)
#define PACKET_PROFILING_TMM_END(p, id)
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.
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_ *)
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...
#define THREAD_SET_AFFTYPE
void(* ThreadExitPrintStats)(ThreadVars *, void *)
Packet * PacketDequeue(PacketQueue *q)
Packet * PacketGetFromAlloc(void)
Get a malloced packet.
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.
#define StatsSyncCounters(tv)
void TmThreadsListThreads(void)
struct TmSlot_ * slot_next
void TmThreadCheckThreadState(void)
Used to check the thread for certain conditions of failure.
#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 SCLogNotice(...)
Macro used to log NOTICE messages.
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.