remove remnants of support for running in no-thread-pointer mode
[musl] / src / thread / pthread_create.c
1 #define _GNU_SOURCE
2 #include "pthread_impl.h"
3 #include "stdio_impl.h"
4 #include "libc.h"
5 #include <sys/mman.h>
6 #include <string.h>
7 #include <stddef.h>
8
9 void *__mmap(void *, size_t, int, int, int, off_t);
10 int __munmap(void *, size_t);
11 int __mprotect(void *, size_t, int);
12
13 static void dummy_0()
14 {
15 }
16 weak_alias(dummy_0, __acquire_ptc);
17 weak_alias(dummy_0, __release_ptc);
18 weak_alias(dummy_0, __pthread_tsd_run_dtors);
19 weak_alias(dummy_0, __do_orphaned_stdio_locks);
20
21 _Noreturn void __pthread_exit(void *result)
22 {
23         pthread_t self = __pthread_self();
24         sigset_t set;
25
26         self->canceldisable = 1;
27         self->cancelasync = 0;
28         self->result = result;
29
30         while (self->cancelbuf) {
31                 void (*f)(void *) = self->cancelbuf->__f;
32                 void *x = self->cancelbuf->__x;
33                 self->cancelbuf = self->cancelbuf->__next;
34                 f(x);
35         }
36
37         __pthread_tsd_run_dtors();
38
39         __lock(self->exitlock);
40
41         /* Mark this thread dead before decrementing count */
42         __lock(self->killlock);
43         self->dead = 1;
44
45         /* Block all signals before decrementing the live thread count.
46          * This is important to ensure that dynamically allocated TLS
47          * is not under-allocated/over-committed, and possibly for other
48          * reasons as well. */
49         __block_all_sigs(&set);
50
51         /* Wait to unlock the kill lock, which governs functions like
52          * pthread_kill which target a thread id, until signals have
53          * been blocked. This precludes observation of the thread id
54          * as a live thread (with application code running in it) after
55          * the thread was reported dead by ESRCH being returned. */
56         __unlock(self->killlock);
57
58         /* It's impossible to determine whether this is "the last thread"
59          * until performing the atomic decrement, since multiple threads
60          * could exit at the same time. For the last thread, revert the
61          * decrement and unblock signals to give the atexit handlers and
62          * stdio cleanup code a consistent state. */
63         if (a_fetch_add(&libc.threads_minus_1, -1)==0) {
64                 libc.threads_minus_1 = 0;
65                 __restore_sigs(&set);
66                 exit(0);
67         }
68
69         if (self->locale != &libc.global_locale) {
70                 a_dec(&libc.uselocale_cnt);
71                 if (self->locale->ctype_utf8)
72                         a_dec(&libc.bytelocale_cnt_minus_1);
73         }
74
75         /* Process robust list in userspace to handle non-pshared mutexes
76          * and the detached thread case where the robust list head will
77          * be invalid when the kernel would process it. */
78         __vm_lock();
79         volatile void *volatile *rp;
80         while ((rp=self->robust_list.head) && rp != &self->robust_list.head) {
81                 pthread_mutex_t *m = (void *)((char *)rp
82                         - offsetof(pthread_mutex_t, _m_next));
83                 int waiters = m->_m_waiters;
84                 int priv = (m->_m_type & 128) ^ 128;
85                 self->robust_list.pending = rp;
86                 self->robust_list.head = *rp;
87                 int cont = a_swap(&m->_m_lock, self->tid|0x40000000);
88                 self->robust_list.pending = 0;
89                 if (cont < 0 || waiters)
90                         __wake(&m->_m_lock, 1, priv);
91         }
92         __vm_unlock();
93
94         __do_orphaned_stdio_locks();
95
96         if (self->detached && self->map_base) {
97                 /* Detached threads must avoid the kernel clear_child_tid
98                  * feature, since the virtual address will have been
99                  * unmapped and possibly already reused by a new mapping
100                  * at the time the kernel would perform the write. In
101                  * the case of threads that started out detached, the
102                  * initial clone flags are correct, but if the thread was
103                  * detached later (== 2), we need to clear it here. */
104                 if (self->detached == 2) __syscall(SYS_set_tid_address, 0);
105
106                 /* Robust list will no longer be valid, and was already
107                  * processed above, so unregister it with the kernel. */
108                 if (self->robust_list.off)
109                         __syscall(SYS_set_robust_list, 0, 3*sizeof(long));
110
111                 /* Since __unmapself bypasses the normal munmap code path,
112                  * explicitly wait for vmlock holders first. */
113                 __vm_wait();
114
115                 /* The following call unmaps the thread's stack mapping
116                  * and then exits without touching the stack. */
117                 __unmapself(self->map_base, self->map_size);
118         }
119
120         for (;;) __syscall(SYS_exit, 0);
121 }
122
123 void __do_cleanup_push(struct __ptcb *cb)
124 {
125         struct pthread *self = __pthread_self();
126         cb->__next = self->cancelbuf;
127         self->cancelbuf = cb;
128 }
129
130 void __do_cleanup_pop(struct __ptcb *cb)
131 {
132         __pthread_self()->cancelbuf = cb->__next;
133 }
134
135 static int start(void *p)
136 {
137         pthread_t self = p;
138         if (self->startlock[0]) {
139                 __wait(self->startlock, 0, 1, 1);
140                 if (self->startlock[0]) {
141                         self->detached = 2;
142                         pthread_exit(0);
143                 }
144                 __restore_sigs(self->sigmask);
145         }
146         if (self->unblock_cancel)
147                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
148                         SIGPT_SET, 0, _NSIG/8);
149         __pthread_exit(self->start(self->start_arg));
150         return 0;
151 }
152
153 static int start_c11(void *p)
154 {
155         pthread_t self = p;
156         int (*start)(void*) = (int(*)(void*)) self->start;
157         __pthread_exit((void *)(uintptr_t)start(self->start_arg));
158         return 0;
159 }
160
161 #define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
162
163 /* pthread_key_create.c overrides this */
164 static volatile size_t dummy = 0;
165 weak_alias(dummy, __pthread_tsd_size);
166 static void *dummy_tsd[1] = { 0 };
167 weak_alias(dummy_tsd, __pthread_tsd_main);
168
169 volatile int __block_new_threads = 0;
170
171 static FILE *volatile dummy_file = 0;
172 weak_alias(dummy_file, __stdin_used);
173 weak_alias(dummy_file, __stdout_used);
174 weak_alias(dummy_file, __stderr_used);
175
176 static void init_file_lock(FILE *f)
177 {
178         if (f && f->lock<0) f->lock = 0;
179 }
180
181 void *__copy_tls(unsigned char *);
182
183 int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attrp, void *(*entry)(void *), void *restrict arg)
184 {
185         int ret, c11 = (attrp == __ATTRP_C11_THREAD);
186         size_t size, guard;
187         struct pthread *self, *new;
188         unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
189         unsigned flags = CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND
190                 | CLONE_THREAD | CLONE_SYSVSEM | CLONE_SETTLS
191                 | CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID | CLONE_DETACHED;
192         int do_sched = 0;
193         pthread_attr_t attr = {0};
194
195         if (!libc.can_do_threads) return ENOSYS;
196         self = __pthread_self();
197         if (!libc.threaded) {
198                 for (FILE *f=libc.ofl_head; f; f=f->next)
199                         init_file_lock(f);
200                 init_file_lock(__stdin_used);
201                 init_file_lock(__stdout_used);
202                 init_file_lock(__stderr_used);
203                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, _NSIG/8);
204                 self->tsd = (void **)__pthread_tsd_main;
205                 libc.threaded = 1;
206         }
207         if (attrp && !c11) attr = *attrp;
208
209         __acquire_ptc();
210         if (__block_new_threads) __wait(&__block_new_threads, 0, 1, 1);
211
212         if (attr._a_stackaddr) {
213                 size_t need = libc.tls_size + __pthread_tsd_size;
214                 size = attr._a_stacksize + DEFAULT_STACK_SIZE;
215                 stack = (void *)(attr._a_stackaddr & -16);
216                 stack_limit = (void *)(attr._a_stackaddr - size);
217                 /* Use application-provided stack for TLS only when
218                  * it does not take more than ~12% or 2k of the
219                  * application's stack space. */
220                 if (need < size/8 && need < 2048) {
221                         tsd = stack - __pthread_tsd_size;
222                         stack = tsd - libc.tls_size;
223                         memset(stack, 0, need);
224                 } else {
225                         size = ROUND(need);
226                         guard = 0;
227                 }
228         } else {
229                 guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
230                 size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
231                         + libc.tls_size +  __pthread_tsd_size);
232         }
233
234         if (!tsd) {
235                 if (guard) {
236                         map = __mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
237                         if (map == MAP_FAILED) goto fail;
238                         if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
239                                 __munmap(map, size);
240                                 goto fail;
241                         }
242                 } else {
243                         map = __mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
244                         if (map == MAP_FAILED) goto fail;
245                 }
246                 tsd = map + size - __pthread_tsd_size;
247                 if (!stack) {
248                         stack = tsd - libc.tls_size;
249                         stack_limit = map + guard;
250                 }
251         }
252
253         new = __copy_tls(tsd - libc.tls_size);
254         new->map_base = map;
255         new->map_size = size;
256         new->stack = stack;
257         new->stack_size = stack - stack_limit;
258         new->start = entry;
259         new->start_arg = arg;
260         new->self = new;
261         new->tsd = (void *)tsd;
262         new->locale = &libc.global_locale;
263         if (attr._a_detach) {
264                 new->detached = 1;
265                 flags -= CLONE_CHILD_CLEARTID;
266         }
267         if (attr._a_sched) {
268                 do_sched = new->startlock[0] = 1;
269                 __block_app_sigs(new->sigmask);
270         }
271         new->robust_list.head = &new->robust_list.head;
272         new->unblock_cancel = self->cancel;
273         new->canary = self->canary;
274
275         a_inc(&libc.threads_minus_1);
276         ret = __clone((c11 ? start_c11 : start), stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
277
278         __release_ptc();
279
280         if (do_sched) {
281                 __restore_sigs(new->sigmask);
282         }
283
284         if (ret < 0) {
285                 a_dec(&libc.threads_minus_1);
286                 if (map) __munmap(map, size);
287                 return EAGAIN;
288         }
289
290         if (do_sched) {
291                 ret = __syscall(SYS_sched_setscheduler, new->tid,
292                         attr._a_policy, &attr._a_prio);
293                 a_store(new->startlock, ret<0 ? 2 : 0);
294                 __wake(new->startlock, 1, 1);
295                 if (ret < 0) return -ret;
296         }
297
298         *res = new;
299         return 0;
300 fail:
301         __release_ptc();
302         return EAGAIN;
303 }
304
305 weak_alias(__pthread_exit, pthread_exit);
306 weak_alias(__pthread_create, pthread_create);