blob: 893773fa10f0228be9d64af7e1e884dcb048391c [file] [log] [blame]
Rich Felkerf68a3462013-09-16 10:54:31 -04001#define _GNU_SOURCE
Rich Felker0b44a032011-02-12 00:22:29 -05002#include "pthread_impl.h"
Rich Felkerdba68bf2011-07-30 08:02:14 -04003#include "stdio_impl.h"
Szabolcs Nagyb20760c2013-09-15 02:00:32 +00004#include "libc.h"
Rich Felkerefd4d872012-11-08 17:04:20 -05005#include <sys/mman.h>
Rich Felkera6293282014-08-22 14:05:10 -04006#include <string.h>
Rich Felker12e1e322015-04-10 00:26:34 -04007#include <stddef.h>
Rich Felker0b44a032011-02-12 00:22:29 -05008
Jens Gustedtdf7d0df2014-09-01 00:46:23 +02009void *__mmap(void *, size_t, int, int, int, off_t);
10int __munmap(void *, size_t);
11int __mprotect(void *, size_t, int);
Rich Felker12e1e322015-04-10 00:26:34 -040012void __vm_lock_impl(int);
13void __vm_unlock_impl(void);
Jens Gustedtdf7d0df2014-09-01 00:46:23 +020014
Rich Felkerb2486a82011-04-06 20:27:07 -040015static void dummy_0()
16{
17}
Rich Felkerdcd60372012-10-05 11:51:50 -040018weak_alias(dummy_0, __acquire_ptc);
19weak_alias(dummy_0, __release_ptc);
Rich Felkera6054e32011-04-19 23:09:14 -040020weak_alias(dummy_0, __pthread_tsd_run_dtors);
Rich Felker5345c9b2014-08-23 23:35:10 -040021weak_alias(dummy_0, __do_orphaned_stdio_locks);
Rich Felkerfd80cfa2011-04-03 02:33:50 -040022
Jens Gustedtdf7d0df2014-09-01 00:46:23 +020023_Noreturn void __pthread_exit(void *result)
Rich Felker1a9a2ff2011-02-13 19:58:30 -050024{
Rich Felkerdf151682014-06-10 04:02:40 -040025 pthread_t self = __pthread_self();
Rich Felkerd0ba0982013-04-26 16:16:04 -040026 sigset_t set;
Rich Felker1a9a2ff2011-02-13 19:58:30 -050027
Rich Felker36d8e972015-02-16 22:25:50 -050028 self->canceldisable = 1;
29 self->cancelasync = 0;
Rich Felkerafc35d52012-02-09 02:33:08 -050030 self->result = result;
31
32 while (self->cancelbuf) {
33 void (*f)(void *) = self->cancelbuf->__f;
34 void *x = self->cancelbuf->__x;
35 self->cancelbuf = self->cancelbuf->__next;
36 f(x);
Rich Felker1ebde9c2011-04-17 17:06:05 -040037 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050038
Rich Felkera6054e32011-04-19 23:09:14 -040039 __pthread_tsd_run_dtors();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050040
Rich Felkerbbbe87e2012-07-12 11:23:43 -040041 __lock(self->exitlock);
Rich Felkerf58c8a02011-06-14 01:25:17 -040042
Rich Felker5fcebcd2011-03-10 18:31:37 -050043 /* Mark this thread dead before decrementing count */
Rich Felkerbbbe87e2012-07-12 11:23:43 -040044 __lock(self->killlock);
Rich Felker5fcebcd2011-03-10 18:31:37 -050045 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050046
Rich Felker6e531f92013-04-26 16:04:30 -040047 /* Block all signals before decrementing the live thread count.
48 * This is important to ensure that dynamically allocated TLS
49 * is not under-allocated/over-committed, and possibly for other
50 * reasons as well. */
Rich Felker2c074b02013-04-26 19:48:01 -040051 __block_all_sigs(&set);
Rich Felker23f21c32013-04-26 15:47:44 -040052
Rich Felkerd674f852013-04-26 17:51:22 -040053 /* Wait to unlock the kill lock, which governs functions like
54 * pthread_kill which target a thread id, until signals have
55 * been blocked. This precludes observation of the thread id
56 * as a live thread (with application code running in it) after
57 * the thread was reported dead by ESRCH being returned. */
58 __unlock(self->killlock);
59
Rich Felkerd0ba0982013-04-26 16:16:04 -040060 /* It's impossible to determine whether this is "the last thread"
61 * until performing the atomic decrement, since multiple threads
62 * could exit at the same time. For the last thread, revert the
63 * decrement and unblock signals to give the atexit handlers and
64 * stdio cleanup code a consistent state. */
65 if (a_fetch_add(&libc.threads_minus_1, -1)==0) {
66 libc.threads_minus_1 = 0;
Rich Felker2c074b02013-04-26 19:48:01 -040067 __restore_sigs(&set);
Rich Felkerd0ba0982013-04-26 16:16:04 -040068 exit(0);
69 }
Rich Felkerfb11b6b2011-02-19 10:38:57 -050070
Rich Felker0bc03092014-07-02 19:33:19 -040071 if (self->locale != &libc.global_locale) {
72 a_dec(&libc.uselocale_cnt);
73 if (self->locale->ctype_utf8)
74 a_dec(&libc.bytelocale_cnt_minus_1);
75 }
76
Rich Felker12e1e322015-04-10 00:26:34 -040077 /* Process robust list in userspace to handle non-pshared mutexes
78 * and the detached thread case where the robust list head will
79 * be invalid when the kernel would process it. */
80 __vm_lock_impl(+1);
81 volatile void *volatile *rp;
82 while ((rp=self->robust_list.head) && rp != &self->robust_list.head) {
83 pthread_mutex_t *m = (void *)((char *)rp
84 - offsetof(pthread_mutex_t, _m_next));
85 int waiters = m->_m_waiters;
86 int priv = (m->_m_type & 128) ^ 128;
87 self->robust_list.pending = rp;
88 self->robust_list.head = *rp;
89 int cont = a_swap(&m->_m_lock, self->tid|0x40000000);
90 self->robust_list.pending = 0;
91 if (cont < 0 || waiters)
92 __wake(&m->_m_lock, 1, priv);
93 }
94 __vm_unlock_impl();
95
Rich Felker5345c9b2014-08-23 23:35:10 -040096 __do_orphaned_stdio_locks();
Rich Felkerb092f1c2014-08-16 02:28:34 -040097
Rich Felker5fcebcd2011-03-10 18:31:37 -050098 if (self->detached && self->map_base) {
Rich Felker6e531f92013-04-26 16:04:30 -040099 /* Detached threads must avoid the kernel clear_child_tid
100 * feature, since the virtual address will have been
101 * unmapped and possibly already reused by a new mapping
102 * at the time the kernel would perform the write. In
103 * the case of threads that started out detached, the
104 * initial clone flags are correct, but if the thread was
105 * detached later (== 2), we need to clear it here. */
106 if (self->detached == 2) __syscall(SYS_set_tid_address, 0);
107
Rich Felker12e1e322015-04-10 00:26:34 -0400108 /* Robust list will no longer be valid, and was already
109 * processed above, so unregister it with the kernel. */
110 if (self->robust_list.off)
111 __syscall(SYS_set_robust_list, 0, 3*sizeof(long));
112
Rich Felker6e531f92013-04-26 16:04:30 -0400113 /* The following call unmaps the thread's stack mapping
114 * and then exits without touching the stack. */
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500115 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -0500116 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500117
Rich Felker0c05bd32012-09-06 23:34:10 -0400118 for (;;) __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500119}
Rich Felker0b44a032011-02-12 00:22:29 -0500120
Rich Felkercfd892f2012-05-23 14:13:54 -0400121void __do_cleanup_push(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -0400122{
Rich Felkerdab441a2014-03-24 16:57:11 -0400123 if (!libc.has_thread_pointer) return;
Rich Felkerdf151682014-06-10 04:02:40 -0400124 struct pthread *self = __pthread_self();
Rich Felker5f37fc12011-08-03 19:57:46 -0400125 cb->__next = self->cancelbuf;
126 self->cancelbuf = cb;
127}
128
Rich Felkercfd892f2012-05-23 14:13:54 -0400129void __do_cleanup_pop(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -0400130{
Rich Felkerdab441a2014-03-24 16:57:11 -0400131 if (!libc.has_thread_pointer) return;
Rich Felkerafc35d52012-02-09 02:33:08 -0500132 __pthread_self()->cancelbuf = cb->__next;
Rich Felker5f37fc12011-08-03 19:57:46 -0400133}
134
Rich Felker3f72cda2011-09-18 10:14:37 -0400135static int start(void *p)
Rich Felker0b44a032011-02-12 00:22:29 -0500136{
Rich Felker3f72cda2011-09-18 10:14:37 -0400137 pthread_t self = p;
Rich Felker1e21e782012-11-11 15:38:04 -0500138 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 }
Rich Felker2c074b02013-04-26 19:48:01 -0400144 __restore_sigs(self->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500145 }
Rich Felker99b8a252011-05-07 23:23:58 -0400146 if (self->unblock_cancel)
Rich Felker2f437042012-08-09 22:52:13 -0400147 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400148 SIGPT_SET, 0, _NSIG/8);
Rich Felker23614b02014-09-07 10:28:08 -0400149 __pthread_exit(self->start(self->start_arg));
150 return 0;
151}
152
153static 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));
Rich Felker3f72cda2011-09-18 10:14:37 -0400158 return 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500159}
160
Rich Felker0b44a032011-02-12 00:22:29 -0500161#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
162
163/* pthread_key_create.c overrides this */
Rich Felkera6adb2b2014-07-16 21:32:06 -0400164static volatile size_t dummy = 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500165weak_alias(dummy, __pthread_tsd_size);
Rich Felkera6adb2b2014-07-16 21:32:06 -0400166static void *dummy_tsd[1] = { 0 };
Rich Felkerdab441a2014-03-24 16:57:11 -0400167weak_alias(dummy_tsd, __pthread_tsd_main);
Rich Felker0b44a032011-02-12 00:22:29 -0500168
Rich Felker78a8ef42015-01-15 23:17:38 -0500169volatile int __block_new_threads = 0;
170
Rich Felkera6adb2b2014-07-16 21:32:06 -0400171static FILE *volatile dummy_file = 0;
Rich Felkerdba68bf2011-07-30 08:02:14 -0400172weak_alias(dummy_file, __stdin_used);
173weak_alias(dummy_file, __stdout_used);
174weak_alias(dummy_file, __stderr_used);
175
176static void init_file_lock(FILE *f)
177{
178 if (f && f->lock<0) f->lock = 0;
179}
180
Rich Felkerdcd60372012-10-05 11:51:50 -0400181void *__copy_tls(unsigned char *);
Rich Felker8431d792012-10-04 16:35:46 -0400182
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200183int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attrp, void *(*entry)(void *), void *restrict arg)
Rich Felker0b44a032011-02-12 00:22:29 -0500184{
Rich Felker23614b02014-09-07 10:28:08 -0400185 int ret, c11 = (attrp == __ATTRP_C11_THREAD);
Rich Felkerd5142642013-02-01 22:10:40 -0500186 size_t size, guard;
Rich Felkerdab441a2014-03-24 16:57:11 -0400187 struct pthread *self, *new;
Rich Felker14a835b2013-03-31 23:25:55 -0400188 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
Rich Felkerf68a3462013-09-16 10:54:31 -0400189 unsigned flags = CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND
Rich Felker271c2112013-09-16 10:56:01 -0400190 | CLONE_THREAD | CLONE_SYSVSEM | CLONE_SETTLS
Rich Felkerf68a3462013-09-16 10:54:31 -0400191 | CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID | CLONE_DETACHED;
Rich Felker1e21e782012-11-11 15:38:04 -0500192 int do_sched = 0;
Rich Felkerd5142642013-02-01 22:10:40 -0500193 pthread_attr_t attr = {0};
Rich Felker0b44a032011-02-12 00:22:29 -0500194
Rich Felkerdab441a2014-03-24 16:57:11 -0400195 if (!libc.can_do_threads) return ENOSYS;
196 self = __pthread_self();
Rich Felker9080cc12011-04-17 16:53:54 -0400197 if (!libc.threaded) {
Rich Felkerdba68bf2011-07-30 08:02:14 -0400198 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);
Rich Felkerdab441a2014-03-24 16:57:11 -0400203 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, _NSIG/8);
Rich Felker689e0e62014-03-24 17:39:08 -0400204 self->tsd = (void **)__pthread_tsd_main;
Rich Felker9080cc12011-04-17 16:53:54 -0400205 libc.threaded = 1;
206 }
Rich Felker23614b02014-09-07 10:28:08 -0400207 if (attrp && !c11) attr = *attrp;
Rich Felker0b44a032011-02-12 00:22:29 -0500208
Rich Felkerdcd60372012-10-05 11:51:50 -0400209 __acquire_ptc();
Rich Felker78a8ef42015-01-15 23:17:38 -0500210 if (__block_new_threads) __wait(&__block_new_threads, 0, 1, 1);
Rich Felkerdcd60372012-10-05 11:51:50 -0400211
Rich Felkerd5142642013-02-01 22:10:40 -0500212 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);
Rich Felkerced64992013-04-06 01:15:08 -0400216 stack_limit = (void *)(attr._a_stackaddr - size);
Rich Felkerd5142642013-02-01 22:10:40 -0500217 /* 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;
Rich Felkera6293282014-08-22 14:05:10 -0400223 memset(stack, 0, need);
Rich Felkerd5142642013-02-01 22:10:40 -0500224 } else {
225 size = ROUND(need);
226 guard = 0;
Rich Felker819006a2012-06-09 19:53:29 -0400227 }
Rich Felkerd5142642013-02-01 22:10:40 -0500228 } 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) {
Rich Felker8431d792012-10-04 16:35:46 -0400235 if (guard) {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200236 map = __mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500237 if (map == MAP_FAILED) goto fail;
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200238 if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
239 __munmap(map, size);
Rich Felker72768ea2013-02-01 22:25:19 -0500240 goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400241 }
242 } else {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200243 map = __mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500244 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400245 }
Rich Felker819006a2012-06-09 19:53:29 -0400246 tsd = map + size - __pthread_tsd_size;
Rich Felker14a835b2013-03-31 23:25:55 -0400247 if (!stack) {
248 stack = tsd - libc.tls_size;
249 stack_limit = map + guard;
250 }
Rich Felker11e4b922011-05-07 23:39:48 -0400251 }
Rich Felkerd5142642013-02-01 22:10:40 -0500252
253 new = __copy_tls(tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500254 new->map_base = map;
255 new->map_size = size;
Rich Felker14a835b2013-03-31 23:25:55 -0400256 new->stack = stack;
257 new->stack_size = stack - stack_limit;
Rich Felker0b44a032011-02-12 00:22:29 -0500258 new->start = entry;
259 new->start_arg = arg;
260 new->self = new;
261 new->tsd = (void *)tsd;
Rich Felker0bc03092014-07-02 19:33:19 -0400262 new->locale = &libc.global_locale;
Rich Felkerd5142642013-02-01 22:10:40 -0500263 if (attr._a_detach) {
Rich Felker92f83962012-07-11 23:36:46 -0400264 new->detached = 1;
Rich Felkerf68a3462013-09-16 10:54:31 -0400265 flags -= CLONE_CHILD_CLEARTID;
Rich Felker92f83962012-07-11 23:36:46 -0400266 }
Rich Felkerd5142642013-02-01 22:10:40 -0500267 if (attr._a_sched) {
Rich Felker1e21e782012-11-11 15:38:04 -0500268 do_sched = new->startlock[0] = 1;
Rich Felker2c074b02013-04-26 19:48:01 -0400269 __block_app_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500270 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400271 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400272 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500273
Rich Felker0b44a032011-02-12 00:22:29 -0500274 a_inc(&libc.threads_minus_1);
Rich Felker23614b02014-09-07 10:28:08 -0400275 ret = __clone((c11 ? start_c11 : start), stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500276
Rich Felkerdcd60372012-10-05 11:51:50 -0400277 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500278
Rich Felker1e21e782012-11-11 15:38:04 -0500279 if (do_sched) {
Rich Felker2c074b02013-04-26 19:48:01 -0400280 __restore_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500281 }
282
Rich Felker0b44a032011-02-12 00:22:29 -0500283 if (ret < 0) {
284 a_dec(&libc.threads_minus_1);
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200285 if (map) __munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500286 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500287 }
Rich Felker1e21e782012-11-11 15:38:04 -0500288
289 if (do_sched) {
290 ret = __syscall(SYS_sched_setscheduler, new->tid,
Rich Felkerd5142642013-02-01 22:10:40 -0500291 attr._a_policy, &attr._a_prio);
Rich Felker1e21e782012-11-11 15:38:04 -0500292 a_store(new->startlock, ret<0 ? 2 : 0);
293 __wake(new->startlock, 1, 1);
294 if (ret < 0) return -ret;
295 }
296
Rich Felker0b44a032011-02-12 00:22:29 -0500297 *res = new;
298 return 0;
Rich Felker72768ea2013-02-01 22:25:19 -0500299fail:
300 __release_ptc();
301 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500302}
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200303
304weak_alias(__pthread_exit, pthread_exit);
305weak_alias(__pthread_create, pthread_create);