12#ifdef THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION
14#include "internal/gc.h"
15#include "internal/sanitizers.h"
17#ifdef HAVE_SYS_RESOURCE_H
18#include <sys/resource.h>
20#ifdef HAVE_THR_STKSEGMENT
23#if defined(HAVE_FCNTL_H)
25#elif defined(HAVE_SYS_FCNTL_H)
28#ifdef HAVE_SYS_PRCTL_H
31#if defined(HAVE_SYS_TIME_H)
38#include <sys/syscall.h>
46# include <AvailabilityMacros.h>
49#if defined(HAVE_SYS_EVENTFD_H) && defined(HAVE_EVENTFD)
50# define USE_EVENTFD (1)
51# include <sys/eventfd.h>
53# define USE_EVENTFD (0)
56#if defined(HAVE_PTHREAD_CONDATTR_SETCLOCK) && \
57 defined(CLOCK_REALTIME) && defined(CLOCK_MONOTONIC) && \
58 defined(HAVE_CLOCK_GETTIME)
59static pthread_condattr_t condattr_mono;
60static pthread_condattr_t *condattr_monotonic = &condattr_mono;
62static const void *
const condattr_monotonic = NULL;
68#define RB_NATIVE_COND_HRTIME_DEADLINE_P() (condattr_monotonic != NULL)
72#ifndef HAVE_SYS_EVENT_H
73#define HAVE_SYS_EVENT_H 0
76#ifndef HAVE_SYS_EPOLL_H
77#define HAVE_SYS_EPOLL_H 0
85 #if defined(__EMSCRIPTEN__) || defined(COROUTINE_PTHREAD_CONTEXT)
88 #define USE_MN_THREADS 0
89 #elif HAVE_SYS_EPOLL_H
90 #include <sys/epoll.h>
92 #define USE_MN_THREADS 1
95 #define USE_MN_THREADS 0
97 #elif HAVE_SYS_EVENT_H
98 #include <sys/event.h>
99 #define USE_MN_THREADS 1
101 #define USE_MN_THREADS 0
105#ifdef HAVE_SCHED_YIELD
106#define native_thread_yield() (void)sched_yield()
108#define native_thread_yield() ((void)0)
113#define NATIVE_MUTEX_LOCK_DEBUG 0
114#define NATIVE_MUTEX_LOCK_DEBUG_YIELD 0
117mutex_debug(
const char *msg,
void *lock)
119 if (NATIVE_MUTEX_LOCK_DEBUG) {
121 static pthread_mutex_t dbglock = PTHREAD_MUTEX_INITIALIZER;
123 if ((r = pthread_mutex_lock(&dbglock)) != 0) {exit(EXIT_FAILURE);}
124 fprintf(stdout,
"%s: %p\n", msg, lock);
125 if ((r = pthread_mutex_unlock(&dbglock)) != 0) {exit(EXIT_FAILURE);}
133#if NATIVE_MUTEX_LOCK_DEBUG_YIELD
134 native_thread_yield();
136 mutex_debug(
"lock", lock);
137 if ((r = pthread_mutex_lock(lock)) != 0) {
146 mutex_debug(
"unlock", lock);
147 if ((r = pthread_mutex_unlock(lock)) != 0) {
156 mutex_debug(
"trylock", lock);
157 if ((r = pthread_mutex_trylock(lock)) != 0) {
171 int r = pthread_mutex_init(lock, 0);
172 mutex_debug(
"init", lock);
181 int r = pthread_mutex_destroy(lock);
182 mutex_debug(
"destroy", lock);
191 int r = pthread_cond_init(cond, condattr_monotonic);
200 int r = pthread_cond_destroy(cond);
221 r = pthread_cond_signal(cond);
222 }
while (r == EAGAIN);
233 r = pthread_cond_broadcast(cond);
234 }
while (r == EAGAIN);
243 int r = pthread_cond_wait(cond, mutex);
250native_cond_timedwait(rb_nativethread_cond_t *cond, pthread_mutex_t *mutex,
const rb_hrtime_t *abs)
262 rb_hrtime2timespec(&ts, abs);
263 r = pthread_cond_timedwait(cond, mutex, &ts);
264 }
while (r == EINTR);
266 if (r != 0 && r != ETIMEDOUT) {
274native_cond_timeout(rb_nativethread_cond_t *cond,
const rb_hrtime_t rel)
276 if (condattr_monotonic) {
277 return rb_hrtime_add(rb_hrtime_now(), rel);
283 return rb_hrtime_add(rb_timespec2hrtime(&ts), rel);
290 rb_hrtime_t hrmsec = native_cond_timeout(cond, RB_HRTIME_PER_MSEC * msec);
291 native_cond_timedwait(cond, mutex, &hrmsec);
296static rb_internal_thread_event_hook_t *rb_internal_thread_event_hooks = NULL;
318#define RB_INTERNAL_THREAD_HOOK(event, th) \
319 if (UNLIKELY(rb_internal_thread_event_hooks)) { \
320 fprintf(stderr, "[thread=%"PRIxVALUE"] %s in %s (%s:%d)\n", th->self, event_name(event), __func__, __FILE__, __LINE__); \
321 rb_thread_execute_hooks(event, th); \
324#define RB_INTERNAL_THREAD_HOOK(event, th) if (UNLIKELY(rb_internal_thread_event_hooks)) { rb_thread_execute_hooks(event, th); }
327static rb_serial_t current_fork_gen = 1;
329#if defined(SIGVTALRM) && !defined(__EMSCRIPTEN__)
330# define USE_UBF_LIST 1
334static void nt_machine_stack_atfork(
void);
342struct rb_thread_context {
353#ifdef RB_THREAD_T_HAS_NATIVE_ID
355get_native_thread_id(
void)
358 return (
int)syscall(SYS_gettid);
359#elif defined(__FreeBSD__)
360 return pthread_getthreadid_np();
366#ifdef RB_THREAD_LOCAL_SPECIFIER
367static RB_THREAD_LOCAL_SPECIFIER
rb_thread_t *ruby_native_thread;
369static pthread_key_t ruby_native_thread_key;
381ruby_thread_from_native(
void)
383#ifdef RB_THREAD_LOCAL_SPECIFIER
384 return ruby_native_thread;
386 return pthread_getspecific(ruby_native_thread_key);
395 ccan_list_node_init(&th->sched.node.ubf);
402 rb_ractor_set_current_ec(th->ractor, th->ec);
404#ifdef RB_THREAD_LOCAL_SPECIFIER
405 ruby_native_thread = th;
408 return pthread_setspecific(ruby_native_thread_key, th) == 0;
416static size_t RB_THREAD_PAGE_SIZE;
422 RB_THREAD_PAGE_SIZE = sysconf(_SC_PAGESIZE);
424#if defined(HAVE_PTHREAD_CONDATTR_SETCLOCK)
425 if (condattr_monotonic) {
426 int r = pthread_condattr_init(condattr_monotonic);
428 r = pthread_condattr_setclock(condattr_monotonic, CLOCK_MONOTONIC);
430 if (r) condattr_monotonic = NULL;
434#ifndef RB_THREAD_LOCAL_SPECIFIER
435 if (pthread_key_create(&ruby_native_thread_key, 0) == EAGAIN) {
436 rb_bug(
"pthread_key_create failed (ruby_native_thread_key)");
438 if (pthread_key_create(&ruby_current_ec_key, 0) == EAGAIN) {
439 rb_bug(
"pthread_key_create failed (ruby_current_ec_key)");
442 ruby_posix_signal(SIGVTALRM, null_func);
446 thread_sched_init_vm(vm);
449 main_th->nt->thread_id = pthread_self();
450 main_th->nt->serial = 1;
454 ruby_thread_set_native(main_th);
455 native_thread_setup(main_th->nt);
456 native_thread_setup_on_thread(main_th->nt);
458 TH_SCHED(main_th)->running = main_th;
459 main_th->has_dedicated_nt = 1;
462 main_th->nt->dedicated = 1;
463 main_th->nt->running_thread = main_th;
464 main_th->nt->vm = vm;
466 thread_sched_setup_running_threads(TH_SCHED(main_th), main_th->ractor, vm, main_th, NULL);
469#if USE_RUBY_DEBUG_LOG
470 vm->ractor.sched.dnt_cnt = 1;
490 RB_ALTSTACK_FREE(nt->altstack);
491 SIZED_FREE(nt->nt_context);
503 native_thread_destroy_atfork(nt);
513#ifdef USE_SIGALTSTACK
514 stack_t disable = {0};
515 disable.ss_flags = SS_DISABLE;
516 sigaltstack(&disable, NULL);
518 native_thread_destroy(nt);
521#if defined HAVE_PTHREAD_GETATTR_NP || defined HAVE_PTHREAD_ATTR_GET_NP
522#define STACKADDR_AVAILABLE 1
523#elif defined HAVE_PTHREAD_GET_STACKADDR_NP && defined HAVE_PTHREAD_GET_STACKSIZE_NP
524#define STACKADDR_AVAILABLE 1
525#undef MAINSTACKADDR_AVAILABLE
526#define MAINSTACKADDR_AVAILABLE 1
527void *pthread_get_stackaddr_np(pthread_t);
528size_t pthread_get_stacksize_np(pthread_t);
529#elif defined HAVE_THR_STKSEGMENT || defined HAVE_PTHREAD_STACKSEG_NP
530#define STACKADDR_AVAILABLE 1
531#elif defined HAVE_PTHREAD_GETTHRDS_NP
532#define STACKADDR_AVAILABLE 1
533#elif defined __HAIKU__
534#define STACKADDR_AVAILABLE 1
537#ifndef MAINSTACKADDR_AVAILABLE
538# ifdef STACKADDR_AVAILABLE
539# define MAINSTACKADDR_AVAILABLE 1
541# define MAINSTACKADDR_AVAILABLE 0
544#if MAINSTACKADDR_AVAILABLE && !defined(get_main_stack)
545# define get_main_stack(addr, size) get_stack(addr, size)
548#ifdef STACKADDR_AVAILABLE
553get_stack(
void **addr,
size_t *size)
555#define CHECK_ERR(expr) \
556 {int err = (expr); if (err) return err;}
557#ifdef HAVE_PTHREAD_GETATTR_NP
560 STACK_GROW_DIR_DETECTION;
561 CHECK_ERR(pthread_getattr_np(pthread_self(), &attr));
562# ifdef HAVE_PTHREAD_ATTR_GETSTACK
563 CHECK_ERR(pthread_attr_getstack(&attr, addr, size));
564 STACK_DIR_UPPER((
void)0, (
void)(*addr = (
char *)*addr + *size));
566 CHECK_ERR(pthread_attr_getstackaddr(&attr, addr));
567 CHECK_ERR(pthread_attr_getstacksize(&attr, size));
569# ifdef HAVE_PTHREAD_ATTR_GETGUARDSIZE
570 CHECK_ERR(pthread_attr_getguardsize(&attr, &guard));
572 guard = RB_THREAD_PAGE_SIZE;
575 pthread_attr_destroy(&attr);
576#elif defined HAVE_PTHREAD_ATTR_GET_NP
578 CHECK_ERR(pthread_attr_init(&attr));
579 CHECK_ERR(pthread_attr_get_np(pthread_self(), &attr));
580# ifdef HAVE_PTHREAD_ATTR_GETSTACK
581 CHECK_ERR(pthread_attr_getstack(&attr, addr, size));
583 CHECK_ERR(pthread_attr_getstackaddr(&attr, addr));
584 CHECK_ERR(pthread_attr_getstacksize(&attr, size));
586 STACK_DIR_UPPER((
void)0, (
void)(*addr = (
char *)*addr + *size));
587 pthread_attr_destroy(&attr);
588#elif (defined HAVE_PTHREAD_GET_STACKADDR_NP && defined HAVE_PTHREAD_GET_STACKSIZE_NP)
589 pthread_t th = pthread_self();
590 *addr = pthread_get_stackaddr_np(th);
591 *size = pthread_get_stacksize_np(th);
592#elif defined HAVE_THR_STKSEGMENT || defined HAVE_PTHREAD_STACKSEG_NP
594# if defined HAVE_THR_STKSEGMENT
595 CHECK_ERR(thr_stksegment(&stk));
597 CHECK_ERR(pthread_stackseg_np(pthread_self(), &stk));
601#elif defined HAVE_PTHREAD_GETTHRDS_NP
602 pthread_t th = pthread_self();
603 struct __pthrdsinfo thinfo;
605 int regsiz=
sizeof(reg);
606 CHECK_ERR(pthread_getthrds_np(&th, PTHRDSINFO_QUERY_ALL,
607 &thinfo,
sizeof(thinfo),
609 *addr = thinfo.__pi_stackaddr;
613 *size = thinfo.__pi_stackend - thinfo.__pi_stackaddr;
614 STACK_DIR_UPPER((
void)0, (
void)(*addr = (
char *)*addr + *size));
615#elif defined __HAIKU__
617 STACK_GROW_DIR_DETECTION;
618 CHECK_ERR(get_thread_info(find_thread(NULL), &info));
619 *addr = info.stack_base;
620 *size = (uintptr_t)info.stack_end - (uintptr_t)info.stack_base;
621 STACK_DIR_UPPER((
void)0, (
void)(*addr = (
char *)*addr + *size));
623#error STACKADDR_AVAILABLE is defined but not implemented.
631 rb_nativethread_id_t id;
632 size_t stack_maxsize;
641native_thread_self_can_retire_p(
void)
643 return !pthread_equal(pthread_self(), native_main_thread.id);
646#if defined(HAVE_WORKING_FORK)
649native_main_thread_atfork(
void)
651 native_main_thread.id = pthread_self();
655 native_main_thread.stack_maxsize = 0;
659#ifdef STACK_END_ADDRESS
660extern void *STACK_END_ADDRESS;
664native_thread_init_main_thread_stack(
void *addr)
666 native_main_thread.id = pthread_self();
667#ifdef RUBY_ASAN_ENABLED
668 addr = asan_get_real_stack_addr((
void *)addr);
671#if MAINSTACKADDR_AVAILABLE
672 if (native_main_thread.stack_maxsize)
return;
676 if (get_main_stack(&stackaddr, &size) == 0) {
677 native_main_thread.stack_maxsize = size;
678 native_main_thread.stack_start = stackaddr;
683#ifdef STACK_END_ADDRESS
684 native_main_thread.stack_start = STACK_END_ADDRESS;
686 if (!native_main_thread.stack_start ||
687 STACK_UPPER((
VALUE *)(
void *)&addr,
688 native_main_thread.stack_start > (
VALUE *)addr,
689 native_main_thread.stack_start < (
VALUE *)addr)) {
690 native_main_thread.stack_start = (
VALUE *)addr;
694#if defined(HAVE_GETRLIMIT)
695#if defined(PTHREAD_STACK_DEFAULT)
696 size_t size = PTHREAD_STACK_DEFAULT;
698 size_t size = RUBY_VM_THREAD_VM_STACK_SIZE;
702 STACK_GROW_DIR_DETECTION;
703 if (getrlimit(RLIMIT_STACK, &rlim) == 0) {
704 size = (size_t)rlim.rlim_cur;
706 addr = native_main_thread.stack_start;
707 if (IS_STACK_DIR_UPPER()) {
708 space = ((size_t)((
char *)addr + size) / RB_THREAD_PAGE_SIZE) * RB_THREAD_PAGE_SIZE - (size_t)addr;
711 space = (size_t)addr - ((
size_t)((
char *)addr - size) / RB_THREAD_PAGE_SIZE + 1) * RB_THREAD_PAGE_SIZE;
713 native_main_thread.stack_maxsize = space;
717#if MAINSTACKADDR_AVAILABLE
724 STACK_GROW_DIR_DETECTION;
726 if (IS_STACK_DIR_UPPER()) {
727 start = native_main_thread.stack_start;
728 end = (
char *)native_main_thread.stack_start + native_main_thread.stack_maxsize;
731 start = (
char *)native_main_thread.stack_start - native_main_thread.stack_maxsize;
732 end = native_main_thread.stack_start;
735 if ((
void *)addr < start || (
void *)addr > end) {
737 native_main_thread.stack_start = (
VALUE *)addr;
738 native_main_thread.stack_maxsize = 0;
743#define CHECK_ERR(expr) \
744 {int err = (expr); if (err) {rb_bug_errno(#expr, err);}}
747native_thread_init_stack(
rb_thread_t *th,
void *local_in_parent_frame)
749 rb_nativethread_id_t curr = pthread_self();
750#ifdef RUBY_ASAN_ENABLED
751 local_in_parent_frame = asan_get_real_stack_addr(local_in_parent_frame);
752 th->ec->machine.asan_fake_stack_handle = asan_get_thread_fake_stack_handle();
755 if (!native_main_thread.id) {
758 native_thread_init_main_thread_stack(local_in_parent_frame);
761 if (th->sched.context != NULL) {
766 else if (pthread_equal(curr, native_main_thread.id)) {
767 th->ec->machine.stack_start = native_main_thread.stack_start;
768 th->ec->machine.stack_maxsize = native_main_thread.stack_maxsize;
771#ifdef STACKADDR_AVAILABLE
775 if (get_stack(&start, &size) == 0) {
776 uintptr_t diff = (uintptr_t)start - (uintptr_t)local_in_parent_frame;
777 th->ec->machine.stack_start = local_in_parent_frame;
778 th->ec->machine.stack_maxsize = size - diff;
781 rb_raise(
rb_eNotImpError,
"ruby engine can initialize only in the main thread");
800 const size_t stack_size = nt->vm->default_params.thread_machine_stack_size;
802#ifdef USE_SIGALTSTACK
803 nt->altstack = rb_allocate_sigaltstack();
806 CHECK_ERR(pthread_attr_init(&attr));
808# ifdef PTHREAD_STACK_MIN
809 RUBY_DEBUG_LOG(
"stack size: %lu", (
unsigned long)stack_size);
810 CHECK_ERR(pthread_attr_setstacksize(&attr, stack_size));
813# ifdef HAVE_PTHREAD_ATTR_SETINHERITSCHED
814 CHECK_ERR(pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED));
816 CHECK_ERR(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED));
818 err = pthread_create(&nt->thread_id, &attr, nt_start, nt);
820 RUBY_DEBUG_LOG(
"nt:%d err:%d", (
int)nt->serial, err);
822 CHECK_ERR(pthread_attr_destroy(&attr));
840#ifdef RB_THREAD_T_HAS_NATIVE_ID
841 nt->tid = get_native_thread_id();
845 RB_ALTSTACK_INIT(nt->altstack, nt->altstack);
849native_thread_alloc(
void)
852 native_thread_setup(nt);
858#if USE_RUBY_DEBUG_LOG
868#if USE_NATIVE_THREAD_PRIORITY
873#if defined(_POSIX_PRIORITY_SCHEDULING) && (_POSIX_PRIORITY_SCHEDULING > 0)
874 struct sched_param sp;
876 int priority = 0 - th->priority;
878 pthread_getschedparam(th->nt->thread_id, &policy, &sp);
879 max = sched_get_priority_max(policy);
880 min = sched_get_priority_min(policy);
882 if (min > priority) {
885 else if (max < priority) {
889 sp.sched_priority = priority;
890 pthread_setschedparam(th->nt->thread_id, policy, &sp);
901 return rb_fd_select(n, readfds, writefds, exceptfds, timeout);
911 pthread_kill(th->nt->thread_id, SIGVTALRM);
915native_thread_default_max_cpu(
void)
917#if defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_ONLN)
918 long nprocessors = sysconf(_SC_NPROCESSORS_ONLN);
919 return (nprocessors > 0) ? (int)nprocessors : 8;
927#define WRITE_CONST(fd, str) (void)(write((fd),(str),sizeof(str)-1)<0)
930rb_thread_wakeup_timer_thread(
int sig)
936 timer_thread_wakeup_force();
947 RUBY_VM_SET_TRAP_INTERRUPT(main_th_ec);
949 if (vm->ubf_async_safe && main_th->unblock.func) {
950 (main_th->unblock.func)(main_th->unblock.arg);
957#define CLOSE_INVALIDATE_PAIR(expr) \
958 close_invalidate_pair(expr,"close_invalidate: "#expr)
960close_invalidate(
int *fdp,
const char *msg)
966 async_bug_fd(msg,
errno, fd);
971close_invalidate_pair(
int fds[2],
const char *msg)
973 if (USE_EVENTFD && fds[0] == fds[1]) {
975 close_invalidate(&fds[0], msg);
978 close_invalidate(&fds[1], msg);
979 close_invalidate(&fds[0], msg);
989 oflags = fcntl(fd, F_GETFL);
992 oflags |= O_NONBLOCK;
993 err = fcntl(fd, F_SETFL, oflags);
1000setup_communication_pipe_internal(
int pipes[2])
1004 if (pipes[0] > 0 || pipes[1] > 0) {
1005 VM_ASSERT(pipes[0] > 0);
1006 VM_ASSERT(pipes[1] > 0);
1014#if USE_EVENTFD && defined(EFD_NONBLOCK) && defined(EFD_CLOEXEC)
1015 pipes[0] = pipes[1] = eventfd(0, EFD_NONBLOCK|EFD_CLOEXEC);
1017 if (pipes[0] >= 0) {
1025 rb_bug(
"can not create communication pipe");
1029 set_nonblock(pipes[0]);
1030 set_nonblock(pipes[1]);
1033#if !defined(SET_CURRENT_THREAD_NAME) && defined(__linux__) && defined(PR_SET_NAME)
1034# define SET_CURRENT_THREAD_NAME(name) prctl(PR_SET_NAME, name)
1039#if defined(__linux__)
1041#elif defined(__APPLE__)
1054#ifdef SET_CURRENT_THREAD_NAME
1061 if (!th->has_dedicated_nt)
return;
1063 if (!
NIL_P(loc = th->name)) {
1064 SET_CURRENT_THREAD_NAME(RSTRING_PTR(loc));
1066 else if ((loc = threadptr_invoke_proc_location(th)) !=
Qnil) {
1068 char buf[THREAD_NAME_MAX];
1073 p = strrchr(name,
'/');
1081 if (
len >=
sizeof(buf)) {
1082 buf[
sizeof(buf)-2] =
'*';
1083 buf[
sizeof(buf)-1] =
'\0';
1085 SET_CURRENT_THREAD_NAME(buf);
1091native_set_another_thread_name(rb_nativethread_id_t thread_id,
VALUE name)
1093#if defined SET_ANOTHER_THREAD_NAME || defined SET_CURRENT_THREAD_NAME
1094 char buf[THREAD_NAME_MAX];
1096# if !defined SET_ANOTHER_THREAD_NAME
1097 if (!pthread_equal(pthread_self(), thread_id))
return;
1102 if (n >= (
int)
sizeof(buf)) {
1103 memcpy(buf, s,
sizeof(buf)-1);
1104 buf[
sizeof(buf)-1] =
'\0';
1108# if defined SET_ANOTHER_THREAD_NAME
1109 SET_ANOTHER_THREAD_NAME(thread_id, s);
1110# elif defined SET_CURRENT_THREAD_NAME
1111 SET_CURRENT_THREAD_NAME(s);
1116#if defined(RB_THREAD_T_HAS_NATIVE_ID) || defined(__APPLE__)
1118native_thread_native_thread_id(
rb_thread_t *target_th)
1120 if (!target_th->nt)
return Qnil;
1122#ifdef RB_THREAD_T_HAS_NATIVE_ID
1123 int tid = target_th->nt->tid;
1124 if (tid == 0)
return Qnil;
1126#elif defined(__APPLE__)
1132# if (!defined(MAC_OS_X_VERSION_10_6) || \
1133 (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6) || \
1134 defined(__POWERPC__) )
1135 const bool no_pthread_threadid_np =
true;
1136# define NO_PTHREAD_MACH_THREAD_NP 1
1137# elif MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
1138 const bool no_pthread_threadid_np =
false;
1140# if !(defined(__has_attribute) && __has_attribute(availability))
1142 __attribute__((weak))
int pthread_threadid_np(pthread_t, uint64_t*);
1145 const bool no_pthread_threadid_np = !&pthread_threadid_np;
1147 if (no_pthread_threadid_np) {
1148 return ULL2NUM(pthread_mach_thread_np(pthread_self()));
1150# ifndef NO_PTHREAD_MACH_THREAD_NP
1151 int e = pthread_threadid_np(target_th->nt->thread_id, &tid);
1153 return ULL2NUM((
unsigned long long)tid);
1157# define USE_NATIVE_THREAD_NATIVE_THREAD_ID 1
1159# define USE_NATIVE_THREAD_NATIVE_THREAD_ID 0
1163 rb_serial_t created_fork_gen;
1164 pthread_t pthread_id;
1168#if (HAVE_SYS_EPOLL_H || HAVE_SYS_EVENT_H) && USE_MN_THREADS
1171#if HAVE_SYS_EPOLL_H && USE_MN_THREADS
1172#define EPOLL_EVENTS_MAX 0x10
1173 struct epoll_event finished_events[EPOLL_EVENTS_MAX];
1174#elif HAVE_SYS_EVENT_H && USE_MN_THREADS
1175#define KQUEUE_EVENTS_MAX 0x10
1176 struct kevent finished_events[KQUEUE_EVENTS_MAX];
1183#define TIMER_WHEEL_LEVELS 4
1184#define TIMER_WHEEL_SLOT_BITS 6
1185#define TIMER_WHEEL_SLOTS (1 << TIMER_WHEEL_SLOT_BITS)
1186 struct timer_wheel_level {
1188 struct ccan_list_head slots[TIMER_WHEEL_SLOTS];
1189 } wheel[TIMER_WHEEL_LEVELS];
1190 uint64_t wheel_cursor_tick;
1191 rb_hrtime_t next_expiry;
1192 pthread_mutex_t waiting_lock;
1198#define IO_WAIT_SHARDS 16
1199 pthread_mutex_t fd_shard_locks[IO_WAIT_SHARDS];
1202 pthread_mutex_t wake_pending_lock;
1203 rb_nativethread_cond_t wake_pending_cond;
1206#if (HAVE_SYS_EPOLL_H || HAVE_SYS_EVENT_H) && USE_MN_THREADS
1210#define FDMAP_MAX_CHUNKS 1024
1214 .created_fork_gen = 0,
1217#define TIMER_THREAD_CREATED_P() (timer_th.created_fork_gen == current_fork_gen)
1219static void timer_thread_check_timeslice(
rb_vm_t *vm);
1220static bool timeslice_scan(
rb_vm_t *vm,
bool interrupt);
1221static int timer_thread_set_timeout(
rb_vm_t *vm);
1223#include "thread_sched_mn.c"
1227signal_communication_pipe(
int fd)
1230 const uint64_t buff = 1;
1232 const char buff =
'!';
1239 if ((result = write(fd, &buff,
sizeof(buff))) <= 0) {
1242 case EINTR:
goto retry;
1244#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
1249 async_bug_fd(
"rb_thread_wakeup_timer_thread: write", e, fd);
1252 if (TT_DEBUG) WRITE_CONST(2,
"rb_thread_wakeup_timer_thread: write\n");
1260timer_thread_wakeup_force(
void)
1263 signal_communication_pipe(timer_th.comm_fds[1]);
1268rb_thread_create_timer_thread(
void)
1270 rb_serial_t created_fork_gen = timer_th.created_fork_gen;
1272 RUBY_DEBUG_LOG(
"fork_gen create:%d current:%d", (
int)created_fork_gen, (
int)current_fork_gen);
1274 timer_th.created_fork_gen = current_fork_gen;
1276 if (created_fork_gen != current_fork_gen) {
1277 if (created_fork_gen != 0) {
1278 RUBY_DEBUG_LOG(
"forked child process");
1280 CLOSE_INVALIDATE_PAIR(timer_th.comm_fds);
1286 for (
unsigned int ci = 0; ci < FDMAP_MAX_CHUNKS; ci++) {
1288 if (chunk == NULL)
continue;
1289 for (
unsigned int i = 0; i < FDMAP_CHUNK_SIZE; i++) {
1290 ccan_list_head_init(&chunk[i].waiters);
1291 chunk[i].armed_flags = 0;
1292 chunk[i].generation++;
1296#if HAVE_SYS_EPOLL_H && USE_MN_THREADS
1297 close_invalidate(&timer_th.event_fd,
"close event_fd");
1298#elif HAVE_SYS_EVENT_H && USE_MN_THREADS
1301 timer_th.event_fd = -1;
1310 for (
int lvl = 0; lvl < TIMER_WHEEL_LEVELS; lvl++) {
1311 timer_th.wheel[lvl].occupied = 0;
1312 for (
int slot = 0; slot < TIMER_WHEEL_SLOTS; slot++) {
1313 ccan_list_head_init(&timer_th.wheel[lvl].slots[slot]);
1316 timer_th.wheel_cursor_tick = timer_wheel_tick(rb_hrtime_now());
1317 timer_th.next_expiry = TIMER_WHEEL_NO_EXPIRY;
1319 for (
int i = 0; i < IO_WAIT_SHARDS; i++) {
1327 setup_communication_pipe_internal(timer_th.comm_fds);
1330 timer_thread_setup_mn();
1333 int err = pthread_create(&timer_th.pthread_id, NULL, timer_thread_func, GET_VM());
1342native_stop_timer_thread(
void)
1346 RUBY_DEBUG_LOG(
"wakeup send %d", timer_th.comm_fds[1]);
1347 timer_thread_wakeup_force();
1348 RUBY_DEBUG_LOG(
"wakeup sent");
1349 pthread_join(timer_th.pthread_id, NULL);
1351 if (TT_DEBUG) fprintf(stderr,
"stop timer thread\n");
1357native_reset_timer_thread(
void)
1362#ifdef HAVE_SIGALTSTACK
1364ruby_stack_overflowed_p(
const rb_thread_t *th,
const void *addr)
1368 const size_t water_mark = RB_THREAD_PAGE_SIZE;
1369 STACK_GROW_DIR_DETECTION;
1372 size = th->ec->machine.stack_maxsize;
1373 base = (
char *)th->ec->machine.stack_start - STACK_DIR_UPPER(0, size);
1375#ifdef STACKADDR_AVAILABLE
1376 else if (get_stack(&base, &size) == 0) {
1379 if (pthread_equal(pthread_self(), native_main_thread.id)) {
1381 if (getrlimit(RLIMIT_STACK, &rlim) == 0 && rlim.rlim_cur > size) {
1382 size = (size_t)rlim.rlim_cur;
1386 base = (
char *)base + STACK_DIR_UPPER(+size, -size);
1393 if (size > water_mark) size = water_mark;
1394 if (IS_STACK_DIR_UPPER()) {
1395 if (size > ~(
size_t)base+1) size = ~(
size_t)base+1;
1396 if (addr > base && addr <= (
void *)((
char *)base + size))
return 1;
1399 if (size > (
size_t)base) size = (
size_t)base;
1400 if (addr > (
void *)((
char *)base - size) && addr <= base)
return 1;
1410 if (fd < 0)
return 0;
1412 if (fd == timer_th.comm_fds[0] ||
1413 fd == timer_th.comm_fds[1]
1414#if (HAVE_SYS_EPOLL_H || HAVE_SYS_EVENT_H) && USE_MN_THREADS
1415 || fd == timer_th.event_fd
1418 goto check_fork_gen;
1423 if (timer_th.created_fork_gen == current_fork_gen) {
1435 return pthread_self();
1438#if defined(USE_POLL) && !defined(HAVE_PPOLL)
1441ruby_ppoll(
struct pollfd *fds, nfds_t nfds,
1442 const struct timespec *ts,
const sigset_t *sigmask)
1449 if (ts->tv_sec > INT_MAX/1000)
1450 timeout_ms = INT_MAX;
1452 tmp = (int)(ts->tv_sec * 1000);
1454 tmp2 = (int)((ts->tv_nsec + 999999L) / (1000L * 1000L));
1455 if (INT_MAX - tmp < tmp2)
1456 timeout_ms = INT_MAX;
1458 timeout_ms = (int)(tmp + tmp2);
1464 return poll(fds, nfds, timeout_ms);
1466# define ppoll(fds,nfds,ts,sigmask) ruby_ppoll((fds),(nfds),(ts),(sigmask))
1471static pthread_rwlock_t rb_thread_fork_rw_lock = PTHREAD_RWLOCK_INITIALIZER;
1474rb_thread_release_fork_lock(
void)
1477 if ((r = pthread_rwlock_unlock(&rb_thread_fork_rw_lock))) {
1483rb_thread_reset_fork_lock(
void)
1486 if ((r = pthread_rwlock_destroy(&rb_thread_fork_rw_lock))) {
1490 if ((r = pthread_rwlock_init(&rb_thread_fork_rw_lock, NULL))) {
1496rb_thread_prevent_fork(
void *(*func)(
void *),
void *data)
1499 if ((r = pthread_rwlock_rdlock(&rb_thread_fork_rw_lock))) {
1502 void *result = func(data);
1503 rb_thread_release_fork_lock();
1508rb_thread_acquire_fork_lock(
void)
1511 if ((r = pthread_rwlock_wrlock(&rb_thread_fork_rw_lock))) {
1518struct rb_internal_thread_event_hook {
1519 rb_internal_thread_event_callback callback;
1523 struct rb_internal_thread_event_hook *next;
1526static pthread_rwlock_t rb_internal_thread_event_hooks_rw_lock = PTHREAD_RWLOCK_INITIALIZER;
1533rb_thread_event_hooks_registered_p(
void)
1536 if ((r = pthread_rwlock_rdlock(&rb_internal_thread_event_hooks_rw_lock))) {
1539 const bool registered = (rb_internal_thread_event_hooks != NULL);
1540 if ((r = pthread_rwlock_unlock(&rb_internal_thread_event_hooks_rw_lock))) {
1546#if defined(HAVE_WORKING_FORK)
1548rb_internal_thread_event_hooks_rw_lock_atfork(
void)
1557 rb_internal_thread_event_hooks_rw_lock =
1558 (pthread_rwlock_t)PTHREAD_RWLOCK_INITIALIZER;
1562rb_internal_thread_event_hook_t *
1565 rb_internal_thread_event_hook_t *hook =
ALLOC_N(rb_internal_thread_event_hook_t, 1);
1566 hook->callback = callback;
1567 hook->user_data = user_data;
1568 hook->event = internal_event;
1571 if ((r = pthread_rwlock_wrlock(&rb_internal_thread_event_hooks_rw_lock))) {
1575 hook->next = rb_internal_thread_event_hooks;
1576 ATOMIC_PTR_EXCHANGE(rb_internal_thread_event_hooks, hook);
1578 if ((r = pthread_rwlock_unlock(&rb_internal_thread_event_hooks_rw_lock))) {
1588 if ((r = pthread_rwlock_wrlock(&rb_internal_thread_event_hooks_rw_lock))) {
1592 bool success = FALSE;
1594 if (rb_internal_thread_event_hooks == hook) {
1595 ATOMIC_PTR_EXCHANGE(rb_internal_thread_event_hooks, hook->next);
1599 rb_internal_thread_event_hook_t *h = rb_internal_thread_event_hooks;
1602 if (h->next == hook) {
1603 h->next = hook->next;
1607 }
while ((h = h->next));
1610 if ((r = pthread_rwlock_unlock(&rb_internal_thread_event_hooks_rw_lock))) {
1627 if (th->self == 0)
return;
1628 if ((r = pthread_rwlock_rdlock(&rb_internal_thread_event_hooks_rw_lock))) {
1632 if (rb_internal_thread_event_hooks) {
1633 rb_internal_thread_event_hook_t *h = rb_internal_thread_event_hooks;
1635 if (h->event & event) {
1639 (*h->callback)(event, &event_data, h->user_data);
1641 }
while((h = h->next));
1643 if ((r = pthread_rwlock_unlock(&rb_internal_thread_event_hooks_rw_lock))) {
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
#define RUBY_ATOMIC_FETCH_ADD(var, val)
Atomically replaces the value pointed by var with the result of addition of val to the old value of v...
#define RUBY_ATOMIC_LOAD(var)
Atomic load.
#define RUBY_ATOMIC_SET(var, val)
Identical to RUBY_ATOMIC_EXCHANGE, except for the return type.
uint32_t rb_event_flag_t
Represents event(s).
#define INT2FIX
Old name of RB_INT2FIX.
#define ZALLOC
Old name of RB_ZALLOC.
#define ALLOC_N
Old name of RB_ALLOC_N.
#define ULL2NUM
Old name of RB_ULL2NUM.
#define NUM2INT
Old name of RB_NUM2INT.
#define Qnil
Old name of RUBY_Qnil.
#define NIL_P
Old name of RB_NIL_P.
VALUE rb_eNotImpError
NotImplementedError exception.
void rb_syserr_fail(int e, const char *mesg)
Raises appropriate exception that represents a C errno.
void rb_bug_errno(const char *mesg, int errno_arg)
This is a wrapper of rb_bug() which automatically constructs appropriate message from the passed errn...
int rb_cloexec_pipe(int fildes[2])
Opens a pipe with closing on exec.
void rb_update_max_fd(int fd)
Informs the interpreter that the passed fd can be the max.
int rb_reserved_fd_p(int fd)
Queries if the given FD is reserved or not.
void rb_timespec_now(struct timespec *ts)
Fills the current time into the given struct.
int len
Length of the buffer.
#define RUBY_INTERNAL_THREAD_EVENT_RESUMED
Triggered when a thread successfully acquired the GVL.
rb_internal_thread_event_hook_t * rb_internal_thread_add_event_hook(rb_internal_thread_event_callback func, rb_event_flag_t events, void *data)
Registers a thread event hook function.
#define RUBY_INTERNAL_THREAD_EVENT_EXITED
Triggered when a thread exits.
#define RUBY_INTERNAL_THREAD_EVENT_SUSPENDED
Triggered when a thread released the GVL.
#define RUBY_INTERNAL_THREAD_EVENT_STARTED
Triggered when a new thread is started.
bool rb_internal_thread_remove_event_hook(rb_internal_thread_event_hook_t *hook)
Unregister the passed hook.
#define RUBY_INTERNAL_THREAD_EVENT_READY
Triggered when a thread attempt to acquire the GVL.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define rb_fd_select
Waits for multiple file descriptors at once.
#define RARRAY_AREF(a, i)
#define RSTRING_GETMEM(str, ptrvar, lenvar)
Convenient macro to obtain the contents and length at once.
#define errno
Ractor-aware version of errno.
The data structure which wraps the fd_set bitmap used by select(2).
rb_nativethread_id_t rb_nativethread_self(void)
Queries the ID of the native thread that is calling this function.
void rb_native_mutex_lock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_lock.
void rb_native_cond_initialize(rb_nativethread_cond_t *cond)
Fills the passed condition variable with an initial value.
int rb_native_mutex_trylock(rb_nativethread_lock_t *lock)
Identical to rb_native_mutex_lock(), except it doesn't block in case rb_native_mutex_lock() would.
void rb_native_cond_broadcast(rb_nativethread_cond_t *cond)
Signals a condition variable.
void rb_native_mutex_initialize(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_initialize.
void rb_native_mutex_unlock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_unlock.
void rb_native_mutex_destroy(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_destroy.
void rb_native_cond_destroy(rb_nativethread_cond_t *cond)
Destroys the passed condition variable.
void rb_native_cond_signal(rb_nativethread_cond_t *cond)
Signals a condition variable.
void rb_native_cond_wait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex)
Waits for the passed condition variable to be signalled.
void rb_native_cond_timedwait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, unsigned long msec)
Identical to rb_native_cond_wait(), except it additionally takes timeout in msec resolution.
uintptr_t VALUE
Type that represents a Ruby object.