blob: 8e3a4a26e94484825a0978dba22ff76b93e8b4a3 [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);
8
Rich Felkerfd80cfa2011-04-03 02:33:50 -04009static void dummy_1(pthread_t self)
10{
11}
12weak_alias(dummy_1, __pthread_tsd_run_dtors);
13
Rich Felkerea343362011-03-25 22:13:57 -040014#ifdef __pthread_unwind_next
15#undef __pthread_unwind_next
16#define __pthread_unwind_next __pthread_unwind_next_3
17#endif
18
Rich Felker1a9a2ff2011-02-13 19:58:30 -050019void __pthread_unwind_next(struct __ptcb *cb)
20{
Rich Felker1a9a2ff2011-02-13 19:58:30 -050021 pthread_t self;
Rich Felkerfeee9892011-04-17 11:43:03 -040022 int n;
Rich Felker1a9a2ff2011-02-13 19:58:30 -050023
24 if (cb->__next) longjmp((void *)cb->__next->__jb, 1);
25
26 self = pthread_self();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050027
Rich Felker1a9a2ff2011-02-13 19:58:30 -050028 LOCK(&self->exitlock);
29
Rich Felkerfd80cfa2011-04-03 02:33:50 -040030 __pthread_tsd_run_dtors(self);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050031
Rich Felker5fcebcd2011-03-10 18:31:37 -050032 /* Mark this thread dead before decrementing count */
33 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050034
Rich Felkerfeee9892011-04-17 11:43:03 -040035 do n = libc.threads_minus_1;
36 while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
37 if (!n) exit(0);
Rich Felkerfb11b6b2011-02-19 10:38:57 -050038
Rich Felker5fcebcd2011-03-10 18:31:37 -050039 if (self->detached && self->map_base) {
Rich Felkerc2cd25b2011-04-06 20:32:53 -040040 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050041 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050042 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050043
Rich Felker74950b32011-04-06 19:47:50 -040044 __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050045}
Rich Felker0b44a032011-02-12 00:22:29 -050046
Rich Felker0b44a032011-02-12 00:22:29 -050047static int start(void *p)
48{
49 struct pthread *self = p;
Rich Felkerbf619d82011-03-29 12:58:22 -040050 if (self->unblock_cancel) {
51 sigset_t set;
52 sigemptyset(&set);
53 sigaddset(&set, SIGCANCEL);
54 __libc_sigprocmask(SIG_UNBLOCK, &set, 0);
55 }
Rich Felker0b44a032011-02-12 00:22:29 -050056 pthread_exit(self->start(self->start_arg));
57 return 0;
58}
59
Rich Felker0b2006c2011-02-15 03:24:58 -050060int __uniclone(void *, int (*)(), void *);
Rich Felker0b44a032011-02-12 00:22:29 -050061
62#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
63
64/* pthread_key_create.c overrides this */
65static const size_t dummy = 0;
66weak_alias(dummy, __pthread_tsd_size);
67
68int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
69{
Rich Felker0b44a032011-02-12 00:22:29 -050070 int ret;
71 size_t size, guard;
72 struct pthread *self = pthread_self(), *new;
73 unsigned char *map, *stack, *tsd;
Rich Felkerb2486a82011-04-06 20:27:07 -040074 const pthread_attr_t default_attr = { 0 };
Rich Felker0b44a032011-02-12 00:22:29 -050075
Rich Felker7fd39952011-04-03 16:15:15 -040076 if (!self) return ENOSYS;
Rich Felker9080cc12011-04-17 16:53:54 -040077 if (!libc.threaded) {
78 sigset_t set;
79 sigemptyset(&set);
80 sigaddset(&set, SIGSYSCALL);
81 sigaddset(&set, SIGCANCEL);
82 __libc_sigprocmask(SIG_UNBLOCK, &set, 0);
83 libc.threaded = 1;
84 }
Rich Felker0b44a032011-02-12 00:22:29 -050085
86 if (!attr) attr = &default_attr;
Rich Felkere8827562011-02-17 17:16:20 -050087 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
88 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
Rich Felker0b44a032011-02-12 00:22:29 -050089 size += __pthread_tsd_size;
90 map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
91 if (!map) return EAGAIN;
Rich Felker29fae652011-03-16 11:36:21 -040092 if (guard) mprotect(map, guard, PROT_NONE);
Rich Felker0b44a032011-02-12 00:22:29 -050093
94 tsd = map + size - __pthread_tsd_size;
95 new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
96 new->map_base = map;
97 new->map_size = size;
98 new->pid = self->pid;
99 new->errno_ptr = &new->errno_val;
100 new->start = entry;
101 new->start_arg = arg;
102 new->self = new;
103 new->tsd = (void *)tsd;
Rich Felkere8827562011-02-17 17:16:20 -0500104 new->detached = attr->_a_detach;
Rich Felker0b44a032011-02-12 00:22:29 -0500105 new->attr = *attr;
Rich Felkerbf619d82011-03-29 12:58:22 -0400106 new->unblock_cancel = self->cancel;
Rich Felker4ae5e812011-04-01 22:15:03 -0400107 new->result = PTHREAD_CANCELED;
Rich Felker0b44a032011-02-12 00:22:29 -0500108 memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
109 new->tlsdesc[1] = (uintptr_t)new;
110 stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
111
Rich Felkerb2486a82011-04-06 20:27:07 -0400112 __rsyscall_lock();
Rich Felker0b44a032011-02-12 00:22:29 -0500113
114 a_inc(&libc.threads_minus_1);
Rich Felker0b2006c2011-02-15 03:24:58 -0500115 ret = __uniclone(stack, start, new);
Rich Felker0b44a032011-02-12 00:22:29 -0500116
Rich Felkerb2486a82011-04-06 20:27:07 -0400117 __rsyscall_unlock();
Rich Felker0b44a032011-02-12 00:22:29 -0500118
119 if (ret < 0) {
120 a_dec(&libc.threads_minus_1);
121 munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500122 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500123 }
124 *res = new;
125 return 0;
126}
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500127
128void pthread_exit(void *result)
129{
130 struct pthread *self = pthread_self();
Rich Felkerfeee9892011-04-17 11:43:03 -0400131 struct __ptcb cb = { .__next = self->cancelbuf };
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500132 self->result = result;
Rich Felkerfeee9892011-04-17 11:43:03 -0400133 self->canceldisable = 1;
134 self->cancelasync = 0;
135 __pthread_unwind_next(&cb);
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500136}