blob: a645f9fe3d3b1ab007210d971beb9cb487728e1c [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include "pthread_impl.h"
2
Rich Felkerb2486a82011-04-06 20:27:07 -04003static void dummy_0()
4{
5}
6weak_alias(dummy_0, __rsyscall_lock);
7weak_alias(dummy_0, __rsyscall_unlock);
Rich Felkera6054e32011-04-19 23:09:14 -04008weak_alias(dummy_0, __pthread_tsd_run_dtors);
Rich Felkerfd80cfa2011-04-03 02:33:50 -04009
Rich Felkerea343362011-03-25 22:13:57 -040010#ifdef __pthread_unwind_next
11#undef __pthread_unwind_next
12#define __pthread_unwind_next __pthread_unwind_next_3
13#endif
14
Rich Felker1a9a2ff2011-02-13 19:58:30 -050015void __pthread_unwind_next(struct __ptcb *cb)
16{
Rich Felker1ebde9c2011-04-17 17:06:05 -040017 pthread_t self = pthread_self();
Rich Felkerfeee9892011-04-17 11:43:03 -040018 int n;
Rich Felker1a9a2ff2011-02-13 19:58:30 -050019
Rich Felker1ebde9c2011-04-17 17:06:05 -040020 if (cb->__next) {
21 self->cancelbuf = cb->__next->__next;
22 longjmp((void *)cb->__next->__jb, 1);
23 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050024
Rich Felker1a9a2ff2011-02-13 19:58:30 -050025 LOCK(&self->exitlock);
26
Rich Felkera6054e32011-04-19 23:09:14 -040027 __pthread_tsd_run_dtors();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050028
Rich Felker5fcebcd2011-03-10 18:31:37 -050029 /* Mark this thread dead before decrementing count */
30 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050031
Rich Felkerfeee9892011-04-17 11:43:03 -040032 do n = libc.threads_minus_1;
33 while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
34 if (!n) exit(0);
Rich Felkerfb11b6b2011-02-19 10:38:57 -050035
Rich Felker5fcebcd2011-03-10 18:31:37 -050036 if (self->detached && self->map_base) {
Rich Felker99b8a252011-05-07 23:23:58 -040037 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1},0,8);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050038 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050039 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050040
Rich Felker74950b32011-04-06 19:47:50 -040041 __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050042}
Rich Felker0b44a032011-02-12 00:22:29 -050043
Rich Felker0b44a032011-02-12 00:22:29 -050044static int start(void *p)
45{
46 struct pthread *self = p;
Rich Felker99b8a252011-05-07 23:23:58 -040047 if (self->unblock_cancel)
Rich Felker4c4e22d2011-05-07 23:37:10 -040048 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
Rich Felker0b44a032011-02-12 00:22:29 -050049 pthread_exit(self->start(self->start_arg));
50 return 0;
51}
52
Rich Felker0b2006c2011-02-15 03:24:58 -050053int __uniclone(void *, int (*)(), void *);
Rich Felker0b44a032011-02-12 00:22:29 -050054
55#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
56
57/* pthread_key_create.c overrides this */
58static const size_t dummy = 0;
59weak_alias(dummy, __pthread_tsd_size);
60
61int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
62{
Rich Felker0b44a032011-02-12 00:22:29 -050063 int ret;
Rich Felker11e4b922011-05-07 23:39:48 -040064 size_t size = DEFAULT_STACK_SIZE + DEFAULT_GUARD_SIZE;
65 size_t guard = DEFAULT_GUARD_SIZE;
Rich Felker0b44a032011-02-12 00:22:29 -050066 struct pthread *self = pthread_self(), *new;
67 unsigned char *map, *stack, *tsd;
Rich Felker0b44a032011-02-12 00:22:29 -050068
Rich Felker7fd39952011-04-03 16:15:15 -040069 if (!self) return ENOSYS;
Rich Felker9080cc12011-04-17 16:53:54 -040070 if (!libc.threaded) {
Rich Felker4c4e22d2011-05-07 23:37:10 -040071 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
Rich Felker9080cc12011-04-17 16:53:54 -040072 libc.threaded = 1;
73 }
Rich Felker0b44a032011-02-12 00:22:29 -050074
Rich Felker11e4b922011-05-07 23:39:48 -040075 if (attr) {
76 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
77 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
78 }
Rich Felker0b44a032011-02-12 00:22:29 -050079 size += __pthread_tsd_size;
80 map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
81 if (!map) return EAGAIN;
Rich Felker29fae652011-03-16 11:36:21 -040082 if (guard) mprotect(map, guard, PROT_NONE);
Rich Felker0b44a032011-02-12 00:22:29 -050083
84 tsd = map + size - __pthread_tsd_size;
85 new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
86 new->map_base = map;
87 new->map_size = size;
88 new->pid = self->pid;
89 new->errno_ptr = &new->errno_val;
90 new->start = entry;
91 new->start_arg = arg;
92 new->self = new;
93 new->tsd = (void *)tsd;
Rich Felker11e4b922011-05-07 23:39:48 -040094 if (attr) new->detached = attr->_a_detach;
Rich Felkerbf619d82011-03-29 12:58:22 -040095 new->unblock_cancel = self->cancel;
Rich Felker0b44a032011-02-12 00:22:29 -050096 memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
97 new->tlsdesc[1] = (uintptr_t)new;
98 stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
99
Rich Felkerb2486a82011-04-06 20:27:07 -0400100 __rsyscall_lock();
Rich Felker0b44a032011-02-12 00:22:29 -0500101
102 a_inc(&libc.threads_minus_1);
Rich Felker0b2006c2011-02-15 03:24:58 -0500103 ret = __uniclone(stack, start, new);
Rich Felker0b44a032011-02-12 00:22:29 -0500104
Rich Felkerb2486a82011-04-06 20:27:07 -0400105 __rsyscall_unlock();
Rich Felker0b44a032011-02-12 00:22:29 -0500106
107 if (ret < 0) {
108 a_dec(&libc.threads_minus_1);
109 munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500110 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500111 }
112 *res = new;
113 return 0;
114}
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500115
116void pthread_exit(void *result)
117{
118 struct pthread *self = pthread_self();
Rich Felkerfeee9892011-04-17 11:43:03 -0400119 struct __ptcb cb = { .__next = self->cancelbuf };
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500120 self->result = result;
Rich Felkerfeee9892011-04-17 11:43:03 -0400121 __pthread_unwind_next(&cb);
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500122}