* transcode.c (rb_cEncodingConverter): new class Encoding::Converter.
[ruby-svn.git] / thread_pthread.c
blobbf3dd96bad18a4f065323f4de3a5854bf803b27c
1 /* -*-c-*- */
2 /**********************************************************************
4 thread_pthread.c -
6 $Author$
8 Copyright (C) 2004-2007 Koichi Sasada
10 **********************************************************************/
12 #ifdef THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION
14 #include "gc.h"
16 #ifdef HAVE_SYS_RESOURCE_H
17 #include <sys/resource.h>
18 #endif
20 static void native_mutex_lock(pthread_mutex_t *lock);
21 static void native_mutex_unlock(pthread_mutex_t *lock);
22 static int native_mutex_trylock(pthread_mutex_t *lock);
23 static void native_mutex_initialize(pthread_mutex_t *lock);
24 static void native_mutex_destroy(pthread_mutex_t *lock);
26 static void native_cond_signal(pthread_cond_t *cond);
27 static void native_cond_broadcast(pthread_cond_t *cond);
28 static void native_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
29 static void native_cond_initialize(pthread_cond_t *cond);
30 static void native_cond_destroy(pthread_cond_t *cond);
32 static void
33 native_mutex_lock(pthread_mutex_t *lock)
35 int r;
36 if ((r = pthread_mutex_lock(lock)) != 0) {
37 rb_bug("pthread_mutex_lock: %d", r);
41 static void
42 native_mutex_unlock(pthread_mutex_t *lock)
44 int r;
45 if ((r = pthread_mutex_unlock(lock)) != 0) {
46 rb_bug("native_mutex_unlock return non-zero: %d", r);
50 static inline int
51 native_mutex_trylock(pthread_mutex_t *lock)
53 int r;
54 if ((r = pthread_mutex_trylock(lock)) != 0) {
55 if (r == EBUSY) {
56 return EBUSY;
58 else {
59 rb_bug("native_mutex_trylock return non-zero: %d", r);
62 return 0;
65 static void
66 native_mutex_initialize(pthread_mutex_t *lock)
68 int r = pthread_mutex_init(lock, 0);
69 if (r != 0) {
70 rb_bug("native_mutex_initialize return non-zero: %d", r);
74 static void
75 native_mutex_destroy(pthread_mutex_t *lock)
77 int r = pthread_mutex_destroy(lock);
78 if (r != 0) {
79 rb_bug("native_mutex_destroy return non-zero: %d", r);
83 static void
84 native_cond_initialize(pthread_cond_t *cond)
86 int r = pthread_cond_init(cond, 0);
87 if (r != 0) {
88 rb_bug("native_cond_initialize return non-zero: %d", r);
92 static void
93 native_cond_destroy(pthread_cond_t *cond)
95 int r = pthread_cond_destroy(cond);
96 if (r != 0) {
97 rb_bug("native_cond_destroy return non-zero: %d", r);
101 static void
102 native_cond_signal(pthread_cond_t *cond)
104 pthread_cond_signal(cond);
107 static void
108 native_cond_broadcast(pthread_cond_t *cond)
110 pthread_cond_broadcast(cond);
113 static void
114 native_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
116 pthread_cond_wait(cond, mutex);
120 #define native_cleanup_push pthread_cleanup_push
121 #define native_cleanup_pop pthread_cleanup_pop
122 #ifdef HAVE_SCHED_YIELD
123 #define native_thread_yield() (void)sched_yield()
124 #else
125 #define native_thread_yield() ((void)0)
126 #endif
128 #ifndef __CYGWIN__
129 static void add_signal_thread_list(rb_thread_t *th);
130 #endif
131 static void remove_signal_thread_list(rb_thread_t *th);
133 static rb_thread_lock_t signal_thread_list_lock;
135 static pthread_key_t ruby_native_thread_key;
137 static void
138 null_func(int i)
140 /* null */
143 static rb_thread_t *
144 ruby_thread_from_native(void)
146 return pthread_getspecific(ruby_native_thread_key);
149 static int
150 ruby_thread_set_native(rb_thread_t *th)
152 return pthread_setspecific(ruby_native_thread_key, th) == 0;
155 static void
156 Init_native_thread(void)
158 rb_thread_t *th = GET_THREAD();
160 pthread_key_create(&ruby_native_thread_key, NULL);
161 th->thread_id = pthread_self();
162 native_cond_initialize(&th->native_thread_data.sleep_cond);
163 ruby_thread_set_native(th);
164 native_mutex_initialize(&signal_thread_list_lock);
165 posix_signal(SIGVTALRM, null_func);
168 static void
169 native_thread_destroy(rb_thread_t *th)
171 pthread_mutex_destroy(&th->interrupt_lock);
172 pthread_cond_destroy(&th->native_thread_data.sleep_cond);
175 #define USE_THREAD_CACHE 0
177 static struct {
178 rb_thread_id_t id;
179 size_t stack_maxsize;
180 VALUE *stack_start;
181 #ifdef __ia64
182 VALUE *register_stack_start;
183 #endif
184 } native_main_thread;
186 #ifdef STACK_END_ADDRESS
187 extern void *STACK_END_ADDRESS;
188 #endif
190 #undef ruby_init_stack
191 void
192 ruby_init_stack(VALUE *addr
193 #ifdef __ia64
194 , void *bsp
195 #endif
198 native_main_thread.id = pthread_self();
199 #ifdef STACK_END_ADDRESS
200 native_main_thread.stack_start = STACK_END_ADDRESS;
201 #else
202 if (!native_main_thread.stack_start ||
203 STACK_UPPER(&addr,
204 native_main_thread.stack_start > addr,
205 native_main_thread.stack_start < addr)) {
206 native_main_thread.stack_start = addr;
208 #endif
209 #ifdef __ia64
210 if (!native_main_thread.register_stack_start ||
211 (VALUE*)bsp < native_main_thread.register_stack_start) {
212 native_main_thread.register_stack_start = (VALUE*)bsp;
214 #endif
215 #ifdef HAVE_GETRLIMIT
217 struct rlimit rlim;
219 if (getrlimit(RLIMIT_STACK, &rlim) == 0) {
220 unsigned int space = rlim.rlim_cur/5;
222 if (space > 1024*1024) space = 1024*1024;
223 native_main_thread.stack_maxsize = rlim.rlim_cur - space;
226 #endif
229 #define CHECK_ERR(expr) \
230 {int err = (expr); if (err) {rb_bug("err: %d - %s", err, #expr);}}
232 static int
233 native_thread_init_stack(rb_thread_t *th)
235 rb_thread_id_t curr = pthread_self();
237 if (pthread_equal(curr, native_main_thread.id)) {
238 th->machine_stack_start = native_main_thread.stack_start;
239 th->machine_stack_maxsize = native_main_thread.stack_maxsize;
241 else {
242 #ifdef HAVE_PTHREAD_GETATTR_NP
243 pthread_attr_t attr;
244 void *start;
245 CHECK_ERR(pthread_getattr_np(curr, &attr));
246 # if defined HAVE_PTHREAD_ATTR_GETSTACK
247 CHECK_ERR(pthread_attr_getstack(&attr, &start, &th->machine_stack_maxsize));
248 # elif defined HAVE_PTHREAD_ATTR_GETSTACKSIZE && defined HAVE_PTHREAD_ATTR_GETSTACKADDR
249 CHECK_ERR(pthread_attr_getstackaddr(&attr, &start));
250 CHECK_ERR(pthread_attr_getstacksize(&attr, &th->machine_stack_maxsize));
251 # endif
252 th->machine_stack_start = start;
253 #else
254 rb_raise(rb_eNotImpError, "ruby engine can initialize only in the main thread");
255 #endif
257 #ifdef __ia64
258 th->machine_register_stack_start = native_main_thread.register_stack_start;
259 th->machine_stack_maxsize /= 2;
260 th->machine_register_stack_maxsize = th->machine_stack_maxsize;
261 #endif
262 return 0;
265 static void *
266 thread_start_func_1(void *th_ptr)
268 #if USE_THREAD_CACHE
269 thread_start:
270 #endif
272 rb_thread_t *th = th_ptr;
273 VALUE stack_start;
275 /* run */
276 thread_start_func_2(th, &stack_start, rb_ia64_bsp());
278 #if USE_THREAD_CACHE
279 if (1) {
280 /* cache thread */
281 rb_thread_t *th;
282 static rb_thread_t *register_cached_thread_and_wait(void);
283 if ((th = register_cached_thread_and_wait()) != 0) {
284 th_ptr = (void *)th;
285 th->thread_id = pthread_self();
286 goto thread_start;
289 #endif
290 return 0;
293 void rb_thread_create_control_thread(void);
295 struct cached_thread_entry {
296 volatile rb_thread_t **th_area;
297 pthread_cond_t *cond;
298 struct cached_thread_entry *next;
302 #if USE_THREAD_CACHE
303 static pthread_mutex_t thread_cache_lock = PTHREAD_MUTEX_INITIALIZER;
304 struct cached_thread_entry *cached_thread_root;
306 static rb_thread_t *
307 register_cached_thread_and_wait(void)
309 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
310 volatile rb_thread_t *th_area = 0;
311 struct cached_thread_entry *entry =
312 (struct cached_thread_entry *)malloc(sizeof(struct cached_thread_entry));
314 struct timeval tv;
315 struct timespec ts;
316 gettimeofday(&tv, 0);
317 ts.tv_sec = tv.tv_sec + 60;
318 ts.tv_nsec = tv.tv_usec * 1000;
320 pthread_mutex_lock(&thread_cache_lock);
322 entry->th_area = &th_area;
323 entry->cond = &cond;
324 entry->next = cached_thread_root;
325 cached_thread_root = entry;
327 pthread_cond_timedwait(&cond, &thread_cache_lock, &ts);
330 struct cached_thread_entry *e = cached_thread_root;
331 struct cached_thread_entry *prev = cached_thread_root;
333 while (e) {
334 if (e == entry) {
335 if (prev == cached_thread_root) {
336 cached_thread_root = e->next;
338 else {
339 prev->next = e->next;
341 break;
343 prev = e;
344 e = e->next;
348 free(entry); /* ok */
349 pthread_cond_destroy(&cond);
351 pthread_mutex_unlock(&thread_cache_lock);
353 return (rb_thread_t *)th_area;
355 #endif
357 static int
358 use_cached_thread(rb_thread_t *th)
360 int result = 0;
361 #if USE_THREAD_CACHE
362 struct cached_thread_entry *entry;
364 if (cached_thread_root) {
365 pthread_mutex_lock(&thread_cache_lock);
366 entry = cached_thread_root;
368 if (cached_thread_root) {
369 cached_thread_root = entry->next;
370 *entry->th_area = th;
371 result = 1;
374 if (result) {
375 pthread_cond_signal(entry->cond);
377 pthread_mutex_unlock(&thread_cache_lock);
379 #endif
380 return result;
383 static int
384 native_thread_create(rb_thread_t *th)
386 int err = 0;
388 if (use_cached_thread(th)) {
389 thread_debug("create (use cached thread): %p\n", th);
391 else {
392 pthread_attr_t attr;
393 size_t stack_size = 512 * 1024; /* 512KB */
394 size_t space;
396 #ifdef PTHREAD_STACK_MIN
397 if (stack_size < PTHREAD_STACK_MIN) {
398 stack_size = PTHREAD_STACK_MIN * 2;
400 #endif
401 space = stack_size/5;
402 if (space > 1024*1024) space = 1024*1024;
403 th->machine_stack_maxsize = stack_size - space;
404 #ifdef __ia64
405 th->machine_stack_maxsize /= 2;
406 th->machine_register_stack_maxsize = th->machine_stack_maxsize;
407 #endif
409 CHECK_ERR(pthread_attr_init(&attr));
411 #ifdef PTHREAD_STACK_MIN
412 thread_debug("create - stack size: %lu\n", (unsigned long)stack_size);
413 CHECK_ERR(pthread_attr_setstacksize(&attr, stack_size));
414 #endif
416 #ifdef HAVE_PTHREAD_ATTR_SETINHERITSCHED
417 CHECK_ERR(pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED));
418 #endif
419 CHECK_ERR(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED));
421 err = pthread_create(&th->thread_id, &attr, thread_start_func_1, th);
422 thread_debug("create: %p (%d)", th, err);
423 CHECK_ERR(pthread_attr_destroy(&attr));
425 if (!err) {
426 pthread_cond_init(&th->native_thread_data.sleep_cond, 0);
428 else {
429 st_delete_wrap(th->vm->living_threads, th->self);
430 th->status = THREAD_KILLED;
431 rb_raise(rb_eThreadError, "can't create Thread (%d)", err);
434 return err;
437 static void
438 native_thread_join(pthread_t th)
440 int err = pthread_join(th, 0);
441 if (err) {
442 rb_raise(rb_eThreadError, "native_thread_join() failed (%d)", err);
446 static void
447 native_thread_apply_priority(rb_thread_t *th)
449 #if defined(_POSIX_PRIORITY_SCHEDULING) && (_POSIX_PRIORITY_SCHEDULING > 0)
450 struct sched_param sp;
451 int policy;
452 int priority = 0 - th->priority;
453 int max, min;
454 pthread_getschedparam(th->thread_id, &policy, &sp);
455 max = sched_get_priority_max(policy);
456 min = sched_get_priority_min(policy);
458 if (min > priority) {
459 priority = min;
461 else if (max < priority) {
462 priority = max;
465 sp.sched_priority = priority;
466 pthread_setschedparam(th->thread_id, policy, &sp);
467 #else
468 /* not touched */
469 #endif
472 static void
473 ubf_pthread_cond_signal(void *ptr)
475 rb_thread_t *th = (rb_thread_t *)ptr;
476 thread_debug("ubf_pthread_cond_signal (%p)\n", th);
477 pthread_cond_signal(&th->native_thread_data.sleep_cond);
480 #ifndef __CYGWIN__
481 static void
482 ubf_select_each(rb_thread_t *th)
484 thread_debug("ubf_select_each (%p)\n", (void *)th->thread_id);
485 if (th) {
486 pthread_kill(th->thread_id, SIGVTALRM);
490 static void
491 ubf_select(void *ptr)
493 rb_thread_t *th = (rb_thread_t *)ptr;
494 add_signal_thread_list(th);
495 ubf_select_each(th);
497 #else
498 #define ubf_select 0
499 #endif
501 static void
502 native_sleep(rb_thread_t *th, struct timeval *tv)
504 struct timespec ts;
505 struct timeval tvn;
507 if (tv) {
508 gettimeofday(&tvn, NULL);
509 ts.tv_sec = tvn.tv_sec + tv->tv_sec;
510 ts.tv_nsec = (tvn.tv_usec + tv->tv_usec) * 1000;
511 if (ts.tv_nsec >= 1000000000){
512 ts.tv_sec += 1;
513 ts.tv_nsec -= 1000000000;
517 thread_debug("native_sleep %ld\n", tv ? tv->tv_sec : -1);
518 GVL_UNLOCK_BEGIN();
520 pthread_mutex_lock(&th->interrupt_lock);
521 th->unblock.func = ubf_pthread_cond_signal;
522 th->unblock.arg = th;
524 if (RUBY_VM_INTERRUPTED(th)) {
525 /* interrupted. return immediate */
526 thread_debug("native_sleep: interrupted before sleep\n");
528 else {
529 if (tv == 0 || ts.tv_sec < tvn.tv_sec /* overflow */ ) {
530 int r;
531 thread_debug("native_sleep: pthread_cond_wait start\n");
532 r = pthread_cond_wait(&th->native_thread_data.sleep_cond,
533 &th->interrupt_lock);
534 if (r) rb_bug("pthread_cond_wait: %d", r);
535 thread_debug("native_sleep: pthread_cond_wait end\n");
537 else {
538 int r;
539 thread_debug("native_sleep: pthread_cond_timedwait start (%ld, %ld)\n",
540 (unsigned long)ts.tv_sec, ts.tv_nsec);
541 r = pthread_cond_timedwait(&th->native_thread_data.sleep_cond,
542 &th->interrupt_lock, &ts);
543 if (r && r != ETIMEDOUT) rb_bug("pthread_cond_timedwait: %d", r);
545 thread_debug("native_sleep: pthread_cond_timedwait end (%d)\n", r);
548 th->unblock.func = 0;
549 th->unblock.arg = 0;
551 pthread_mutex_unlock(&th->interrupt_lock);
553 GVL_UNLOCK_END();
555 thread_debug("native_sleep done\n");
558 struct signal_thread_list {
559 rb_thread_t *th;
560 struct signal_thread_list *prev;
561 struct signal_thread_list *next;
564 #ifndef __CYGWIN__
565 static struct signal_thread_list signal_thread_list_anchor = {
566 0, 0, 0,
568 #endif
570 #define FGLOCK(lock, body) do { \
571 native_mutex_lock(lock); \
573 body; \
575 native_mutex_unlock(lock); \
576 } while (0)
578 #if 0 /* for debug */
579 static void
580 print_signal_list(char *str)
582 struct signal_thread_list *list =
583 signal_thread_list_anchor.next;
584 thread_debug("list (%s)> ", str);
585 while(list){
586 thread_debug("%p (%p), ", list->th, list->th->thread_id);
587 list = list->next;
589 thread_debug("\n");
591 #endif
593 #ifndef __CYGWIN__
594 static void
595 add_signal_thread_list(rb_thread_t *th)
597 if (!th->native_thread_data.signal_thread_list) {
598 FGLOCK(&signal_thread_list_lock, {
599 struct signal_thread_list *list =
600 malloc(sizeof(struct signal_thread_list));
602 if (list == 0) {
603 fprintf(stderr, "[FATAL] failed to allocate memory\n");
604 exit(1);
607 list->th = th;
609 list->prev = &signal_thread_list_anchor;
610 list->next = signal_thread_list_anchor.next;
611 if (list->next) {
612 list->next->prev = list;
614 signal_thread_list_anchor.next = list;
615 th->native_thread_data.signal_thread_list = list;
619 #endif
621 static void
622 remove_signal_thread_list(rb_thread_t *th)
624 if (th->native_thread_data.signal_thread_list) {
625 FGLOCK(&signal_thread_list_lock, {
626 struct signal_thread_list *list =
627 (struct signal_thread_list *)
628 th->native_thread_data.signal_thread_list;
630 list->prev->next = list->next;
631 if (list->next) {
632 list->next->prev = list->prev;
634 th->native_thread_data.signal_thread_list = 0;
635 list->th = 0;
636 free(list); /* ok */
639 else {
640 /* */
644 static pthread_t timer_thread_id;
646 static void *
647 thread_timer(void *dummy)
649 while (system_working) {
650 #ifdef HAVE_NANOSLEEP
651 struct timespec req, rem;
652 req.tv_sec = 0;
653 req.tv_nsec = 10 * 1000 * 1000; /* 10 ms */
654 nanosleep(&req, &rem);
655 #else
656 struct timeval tv;
657 tv.tv_sec = 0;
658 tv.tv_usec = 10000; /* 10 ms */
659 select(0, NULL, NULL, NULL, &tv);
660 #endif
661 #ifndef __CYGWIN__
662 if (signal_thread_list_anchor.next) {
663 FGLOCK(&signal_thread_list_lock, {
664 struct signal_thread_list *list;
665 list = signal_thread_list_anchor.next;
666 while (list) {
667 ubf_select_each(list->th);
668 list = list->next;
672 #endif
673 timer_thread_function(dummy);
675 return NULL;
678 static void
679 rb_thread_create_timer_thread(void)
681 rb_enable_interrupt();
683 if (!timer_thread_id) {
684 pthread_attr_t attr;
685 int err;
687 pthread_attr_init(&attr);
688 #ifdef PTHREAD_STACK_MIN
689 pthread_attr_setstacksize(&attr,
690 PTHREAD_STACK_MIN + (THREAD_DEBUG ? BUFSIZ : 0));
691 #endif
692 err = pthread_create(&timer_thread_id, &attr, thread_timer, GET_VM());
693 if (err != 0) {
694 rb_bug("rb_thread_create_timer_thread: return non-zero (%d)", err);
697 rb_disable_interrupt(); /* only timer thread recieve signal */
700 #endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */