fix static linking dependency bloat with cancellation
[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 static int start(void *p)
43 {
44         struct pthread *self = p;
45         if (self->unblock_cancel)
46                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
47         pthread_exit(self->start(self->start_arg));
48         return 0;
49 }
50
51 int __uniclone(void *, int (*)(), void *);
52
53 #define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
54
55 /* pthread_key_create.c overrides this */
56 static const size_t dummy = 0;
57 weak_alias(dummy, __pthread_tsd_size);
58
59 static FILE *const dummy_file = 0;
60 weak_alias(dummy_file, __stdin_used);
61 weak_alias(dummy_file, __stdout_used);
62 weak_alias(dummy_file, __stderr_used);
63
64 static void init_file_lock(FILE *f)
65 {
66         if (f && f->lock<0) f->lock = 0;
67 }
68
69 int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
70 {
71         int ret;
72         size_t size = DEFAULT_STACK_SIZE + DEFAULT_GUARD_SIZE;
73         size_t guard = DEFAULT_GUARD_SIZE;
74         struct pthread *self = pthread_self(), *new;
75         unsigned char *map, *stack, *tsd;
76
77         if (!self) return ENOSYS;
78         if (!libc.threaded) {
79                 for (FILE *f=libc.ofl_head; f; f=f->next)
80                         init_file_lock(f);
81                 init_file_lock(__stdin_used);
82                 init_file_lock(__stdout_used);
83                 init_file_lock(__stderr_used);
84                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
85                 libc.threaded = 1;
86         }
87
88         if (attr) {
89                 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
90                 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
91         }
92         size += __pthread_tsd_size;
93         map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
94         if (!map) return EAGAIN;
95         if (guard) mprotect(map, guard, PROT_NONE);
96
97         tsd = map + size - __pthread_tsd_size;
98         new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
99         new->map_base = map;
100         new->map_size = size;
101         new->pid = self->pid;
102         new->errno_ptr = &new->errno_val;
103         new->start = entry;
104         new->start_arg = arg;
105         new->self = new;
106         new->tsd = (void *)tsd;
107         if (attr) new->detached = attr->_a_detach;
108         new->unblock_cancel = self->cancel;
109         memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
110         new->tlsdesc[1] = (uintptr_t)new;
111         stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
112
113         __synccall_lock();
114
115         a_inc(&libc.threads_minus_1);
116         ret = __uniclone(stack, start, new);
117
118         __synccall_unlock();
119
120         if (ret < 0) {
121                 a_dec(&libc.threads_minus_1);
122                 munmap(map, size);
123                 return EAGAIN;
124         }
125         *res = new;
126         return 0;
127 }
128
129 void pthread_exit(void *result)
130 {
131         struct pthread *self = pthread_self();
132         struct __ptcb cb = { .__next = self->cancelbuf };
133         self->result = result;
134         __pthread_unwind_next(&cb);
135 }