further debloat cancellation handlers
[musl] / src / thread / pthread_create.c
1 #include "pthread_impl.h"
2 #include "stdio_impl.h"
3
4 static void dummy_0()
5 {
6 }
7 weak_alias(dummy_0, __synccall_lock);
8 weak_alias(dummy_0, __synccall_unlock);
9 weak_alias(dummy_0, __pthread_tsd_run_dtors);
10
11 void __pthread_do_unwind(struct __ptcb *cb)
12 {
13         pthread_t self = pthread_self();
14         int n;
15
16         if (cb->__next) {
17                 self->cancelbuf = cb->__next->__next;
18                 longjmp((void *)cb->__next->__jb, 1);
19         }
20
21         __pthread_tsd_run_dtors();
22
23         __lock(&self->exitlock);
24
25         /* Mark this thread dead before decrementing count */
26         __lock(&self->killlock);
27         self->dead = 1;
28         a_store(&self->killlock, 0);
29
30         do n = libc.threads_minus_1;
31         while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
32         if (!n) exit(0);
33
34         if (self->detached && self->map_base) {
35                 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1},0,8);
36                 __unmapself(self->map_base, self->map_size);
37         }
38
39         __syscall(SYS_exit, 0);
40 }
41
42 void __pthread_do_register(struct __ptcb *cb)
43 {
44         struct pthread *self = pthread_self();
45         cb->__next = self->cancelbuf;
46         self->cancelbuf = cb;
47 }
48
49 void __pthread_do_unregister(struct __ptcb *cb)
50 {
51         struct pthread *self = __pthread_self();
52         self->cancelbuf = self->cancelbuf->__next;
53 }
54
55 static int start(void *p)
56 {
57         struct pthread *self = p;
58         if (self->unblock_cancel)
59                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
60         pthread_exit(self->start(self->start_arg));
61         return 0;
62 }
63
64 int __uniclone(void *, int (*)(), void *);
65
66 #define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
67
68 /* pthread_key_create.c overrides this */
69 static const size_t dummy = 0;
70 weak_alias(dummy, __pthread_tsd_size);
71
72 static FILE *const dummy_file = 0;
73 weak_alias(dummy_file, __stdin_used);
74 weak_alias(dummy_file, __stdout_used);
75 weak_alias(dummy_file, __stderr_used);
76
77 static void init_file_lock(FILE *f)
78 {
79         if (f && f->lock<0) f->lock = 0;
80 }
81
82 int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
83 {
84         int ret;
85         size_t size = DEFAULT_STACK_SIZE + DEFAULT_GUARD_SIZE;
86         size_t guard = DEFAULT_GUARD_SIZE;
87         struct pthread *self = pthread_self(), *new;
88         unsigned char *map, *stack, *tsd;
89
90         if (!self) return ENOSYS;
91         if (!libc.threaded) {
92                 for (FILE *f=libc.ofl_head; f; f=f->next)
93                         init_file_lock(f);
94                 init_file_lock(__stdin_used);
95                 init_file_lock(__stdout_used);
96                 init_file_lock(__stderr_used);
97                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
98                 libc.threaded = 1;
99         }
100
101         if (attr) {
102                 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
103                 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
104         }
105         size += __pthread_tsd_size;
106         map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
107         if (!map) return EAGAIN;
108         if (guard) mprotect(map, guard, PROT_NONE);
109
110         tsd = map + size - __pthread_tsd_size;
111         new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
112         new->map_base = map;
113         new->map_size = size;
114         new->pid = self->pid;
115         new->errno_ptr = &new->errno_val;
116         new->start = entry;
117         new->start_arg = arg;
118         new->self = new;
119         new->tsd = (void *)tsd;
120         if (attr) new->detached = attr->_a_detach;
121         new->unblock_cancel = self->cancel;
122         memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
123         new->tlsdesc[1] = (uintptr_t)new;
124         stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
125
126         __synccall_lock();
127
128         a_inc(&libc.threads_minus_1);
129         ret = __uniclone(stack, start, new);
130
131         __synccall_unlock();
132
133         if (ret < 0) {
134                 a_dec(&libc.threads_minus_1);
135                 munmap(map, size);
136                 return EAGAIN;
137         }
138         *res = new;
139         return 0;
140 }
141
142 void pthread_exit(void *result)
143 {
144         struct pthread *self = pthread_self();
145         struct __ptcb cb = { .__next = self->cancelbuf };
146         self->result = result;
147         __pthread_do_unwind(&cb);
148 }