blob: 64971d569e5391bfce5566c2140ccf8cd3e48e7d [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 Felker0b44a032011-02-12 00:22:29 -05007
Jens Gustedtdf7d0df2014-09-01 00:46:23 +02008void *__mmap(void *, size_t, int, int, int, off_t);
9int __munmap(void *, size_t);
10int __mprotect(void *, size_t, int);
11
Rich Felkerb2486a82011-04-06 20:27:07 -040012static void dummy_0()
13{
14}
Rich Felkerdcd60372012-10-05 11:51:50 -040015weak_alias(dummy_0, __acquire_ptc);
16weak_alias(dummy_0, __release_ptc);
Rich Felkera6054e32011-04-19 23:09:14 -040017weak_alias(dummy_0, __pthread_tsd_run_dtors);
Rich Felkerb092f1c2014-08-16 02:28:34 -040018weak_alias(dummy_0, __do_private_robust_list);
Rich Felker5345c9b2014-08-23 23:35:10 -040019weak_alias(dummy_0, __do_orphaned_stdio_locks);
Rich Felkerfd80cfa2011-04-03 02:33:50 -040020
Jens Gustedtdf7d0df2014-09-01 00:46:23 +020021_Noreturn void __pthread_exit(void *result)
Rich Felker1a9a2ff2011-02-13 19:58:30 -050022{
Rich Felkerdf151682014-06-10 04:02:40 -040023 pthread_t self = __pthread_self();
Rich Felkerd0ba0982013-04-26 16:16:04 -040024 sigset_t set;
Rich Felker1a9a2ff2011-02-13 19:58:30 -050025
Rich Felkerafc35d52012-02-09 02:33:08 -050026 self->result = result;
27
28 while (self->cancelbuf) {
29 void (*f)(void *) = self->cancelbuf->__f;
30 void *x = self->cancelbuf->__x;
31 self->cancelbuf = self->cancelbuf->__next;
32 f(x);
Rich Felker1ebde9c2011-04-17 17:06:05 -040033 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050034
Rich Felkera6054e32011-04-19 23:09:14 -040035 __pthread_tsd_run_dtors();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050036
Rich Felkerbbbe87e2012-07-12 11:23:43 -040037 __lock(self->exitlock);
Rich Felkerf58c8a02011-06-14 01:25:17 -040038
Rich Felker5fcebcd2011-03-10 18:31:37 -050039 /* Mark this thread dead before decrementing count */
Rich Felkerbbbe87e2012-07-12 11:23:43 -040040 __lock(self->killlock);
Rich Felker5fcebcd2011-03-10 18:31:37 -050041 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050042
Rich Felker6e531f92013-04-26 16:04:30 -040043 /* Block all signals before decrementing the live thread count.
44 * This is important to ensure that dynamically allocated TLS
45 * is not under-allocated/over-committed, and possibly for other
46 * reasons as well. */
Rich Felker2c074b02013-04-26 19:48:01 -040047 __block_all_sigs(&set);
Rich Felker23f21c32013-04-26 15:47:44 -040048
Rich Felkerd674f852013-04-26 17:51:22 -040049 /* Wait to unlock the kill lock, which governs functions like
50 * pthread_kill which target a thread id, until signals have
51 * been blocked. This precludes observation of the thread id
52 * as a live thread (with application code running in it) after
53 * the thread was reported dead by ESRCH being returned. */
54 __unlock(self->killlock);
55
Rich Felkerd0ba0982013-04-26 16:16:04 -040056 /* It's impossible to determine whether this is "the last thread"
57 * until performing the atomic decrement, since multiple threads
58 * could exit at the same time. For the last thread, revert the
59 * decrement and unblock signals to give the atexit handlers and
60 * stdio cleanup code a consistent state. */
61 if (a_fetch_add(&libc.threads_minus_1, -1)==0) {
62 libc.threads_minus_1 = 0;
Rich Felker2c074b02013-04-26 19:48:01 -040063 __restore_sigs(&set);
Rich Felkerd0ba0982013-04-26 16:16:04 -040064 exit(0);
65 }
Rich Felkerfb11b6b2011-02-19 10:38:57 -050066
Rich Felker0bc03092014-07-02 19:33:19 -040067 if (self->locale != &libc.global_locale) {
68 a_dec(&libc.uselocale_cnt);
69 if (self->locale->ctype_utf8)
70 a_dec(&libc.bytelocale_cnt_minus_1);
71 }
72
Rich Felkerb092f1c2014-08-16 02:28:34 -040073 __do_private_robust_list();
Rich Felker5345c9b2014-08-23 23:35:10 -040074 __do_orphaned_stdio_locks();
Rich Felkerb092f1c2014-08-16 02:28:34 -040075
Rich Felker5fcebcd2011-03-10 18:31:37 -050076 if (self->detached && self->map_base) {
Rich Felker6e531f92013-04-26 16:04:30 -040077 /* Detached threads must avoid the kernel clear_child_tid
78 * feature, since the virtual address will have been
79 * unmapped and possibly already reused by a new mapping
80 * at the time the kernel would perform the write. In
81 * the case of threads that started out detached, the
82 * initial clone flags are correct, but if the thread was
83 * detached later (== 2), we need to clear it here. */
84 if (self->detached == 2) __syscall(SYS_set_tid_address, 0);
85
86 /* The following call unmaps the thread's stack mapping
87 * and then exits without touching the stack. */
Rich Felker1a9a2ff2011-02-13 19:58:30 -050088 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050089 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050090
Rich Felker0c05bd32012-09-06 23:34:10 -040091 for (;;) __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050092}
Rich Felker0b44a032011-02-12 00:22:29 -050093
Rich Felkercfd892f2012-05-23 14:13:54 -040094void __do_cleanup_push(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -040095{
Rich Felkerdab441a2014-03-24 16:57:11 -040096 if (!libc.has_thread_pointer) return;
Rich Felkerdf151682014-06-10 04:02:40 -040097 struct pthread *self = __pthread_self();
Rich Felker5f37fc12011-08-03 19:57:46 -040098 cb->__next = self->cancelbuf;
99 self->cancelbuf = cb;
100}
101
Rich Felkercfd892f2012-05-23 14:13:54 -0400102void __do_cleanup_pop(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -0400103{
Rich Felkerdab441a2014-03-24 16:57:11 -0400104 if (!libc.has_thread_pointer) return;
Rich Felkerafc35d52012-02-09 02:33:08 -0500105 __pthread_self()->cancelbuf = cb->__next;
Rich Felker5f37fc12011-08-03 19:57:46 -0400106}
107
Rich Felker3f72cda2011-09-18 10:14:37 -0400108static int start(void *p)
Rich Felker0b44a032011-02-12 00:22:29 -0500109{
Rich Felker3f72cda2011-09-18 10:14:37 -0400110 pthread_t self = p;
Rich Felker1e21e782012-11-11 15:38:04 -0500111 if (self->startlock[0]) {
112 __wait(self->startlock, 0, 1, 1);
113 if (self->startlock[0]) {
114 self->detached = 2;
115 pthread_exit(0);
116 }
Rich Felker2c074b02013-04-26 19:48:01 -0400117 __restore_sigs(self->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500118 }
Rich Felker99b8a252011-05-07 23:23:58 -0400119 if (self->unblock_cancel)
Rich Felker2f437042012-08-09 22:52:13 -0400120 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400121 SIGPT_SET, 0, _NSIG/8);
Rich Felker23614b02014-09-07 10:28:08 -0400122 __pthread_exit(self->start(self->start_arg));
123 return 0;
124}
125
126static int start_c11(void *p)
127{
128 pthread_t self = p;
129 int (*start)(void*) = (int(*)(void*)) self->start;
130 __pthread_exit((void *)(uintptr_t)start(self->start_arg));
Rich Felker3f72cda2011-09-18 10:14:37 -0400131 return 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500132}
133
Rich Felker0b44a032011-02-12 00:22:29 -0500134#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
135
136/* pthread_key_create.c overrides this */
Rich Felkera6adb2b2014-07-16 21:32:06 -0400137static volatile size_t dummy = 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500138weak_alias(dummy, __pthread_tsd_size);
Rich Felkera6adb2b2014-07-16 21:32:06 -0400139static void *dummy_tsd[1] = { 0 };
Rich Felkerdab441a2014-03-24 16:57:11 -0400140weak_alias(dummy_tsd, __pthread_tsd_main);
Rich Felker0b44a032011-02-12 00:22:29 -0500141
Rich Felker78a8ef42015-01-15 23:17:38 -0500142volatile int __block_new_threads = 0;
143
Rich Felkera6adb2b2014-07-16 21:32:06 -0400144static FILE *volatile dummy_file = 0;
Rich Felkerdba68bf2011-07-30 08:02:14 -0400145weak_alias(dummy_file, __stdin_used);
146weak_alias(dummy_file, __stdout_used);
147weak_alias(dummy_file, __stderr_used);
148
149static void init_file_lock(FILE *f)
150{
151 if (f && f->lock<0) f->lock = 0;
152}
153
Rich Felkerdcd60372012-10-05 11:51:50 -0400154void *__copy_tls(unsigned char *);
Rich Felker8431d792012-10-04 16:35:46 -0400155
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200156int __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 -0500157{
Rich Felker23614b02014-09-07 10:28:08 -0400158 int ret, c11 = (attrp == __ATTRP_C11_THREAD);
Rich Felkerd5142642013-02-01 22:10:40 -0500159 size_t size, guard;
Rich Felkerdab441a2014-03-24 16:57:11 -0400160 struct pthread *self, *new;
Rich Felker14a835b2013-03-31 23:25:55 -0400161 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
Rich Felkerf68a3462013-09-16 10:54:31 -0400162 unsigned flags = CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND
Rich Felker271c2112013-09-16 10:56:01 -0400163 | CLONE_THREAD | CLONE_SYSVSEM | CLONE_SETTLS
Rich Felkerf68a3462013-09-16 10:54:31 -0400164 | CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID | CLONE_DETACHED;
Rich Felker1e21e782012-11-11 15:38:04 -0500165 int do_sched = 0;
Rich Felkerd5142642013-02-01 22:10:40 -0500166 pthread_attr_t attr = {0};
Rich Felker0b44a032011-02-12 00:22:29 -0500167
Rich Felkerdab441a2014-03-24 16:57:11 -0400168 if (!libc.can_do_threads) return ENOSYS;
169 self = __pthread_self();
Rich Felker9080cc12011-04-17 16:53:54 -0400170 if (!libc.threaded) {
Rich Felkerdba68bf2011-07-30 08:02:14 -0400171 for (FILE *f=libc.ofl_head; f; f=f->next)
172 init_file_lock(f);
173 init_file_lock(__stdin_used);
174 init_file_lock(__stdout_used);
175 init_file_lock(__stderr_used);
Rich Felkerdab441a2014-03-24 16:57:11 -0400176 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, _NSIG/8);
Rich Felker689e0e62014-03-24 17:39:08 -0400177 self->tsd = (void **)__pthread_tsd_main;
Rich Felker9080cc12011-04-17 16:53:54 -0400178 libc.threaded = 1;
179 }
Rich Felker23614b02014-09-07 10:28:08 -0400180 if (attrp && !c11) attr = *attrp;
Rich Felker0b44a032011-02-12 00:22:29 -0500181
Rich Felkerdcd60372012-10-05 11:51:50 -0400182 __acquire_ptc();
Rich Felker78a8ef42015-01-15 23:17:38 -0500183 if (__block_new_threads) __wait(&__block_new_threads, 0, 1, 1);
Rich Felkerdcd60372012-10-05 11:51:50 -0400184
Rich Felkerd5142642013-02-01 22:10:40 -0500185 if (attr._a_stackaddr) {
186 size_t need = libc.tls_size + __pthread_tsd_size;
187 size = attr._a_stacksize + DEFAULT_STACK_SIZE;
188 stack = (void *)(attr._a_stackaddr & -16);
Rich Felkerced64992013-04-06 01:15:08 -0400189 stack_limit = (void *)(attr._a_stackaddr - size);
Rich Felkerd5142642013-02-01 22:10:40 -0500190 /* Use application-provided stack for TLS only when
191 * it does not take more than ~12% or 2k of the
192 * application's stack space. */
193 if (need < size/8 && need < 2048) {
194 tsd = stack - __pthread_tsd_size;
195 stack = tsd - libc.tls_size;
Rich Felkera6293282014-08-22 14:05:10 -0400196 memset(stack, 0, need);
Rich Felkerd5142642013-02-01 22:10:40 -0500197 } else {
198 size = ROUND(need);
199 guard = 0;
Rich Felker819006a2012-06-09 19:53:29 -0400200 }
Rich Felkerd5142642013-02-01 22:10:40 -0500201 } else {
202 guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
203 size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
204 + libc.tls_size + __pthread_tsd_size);
205 }
206
207 if (!tsd) {
Rich Felker8431d792012-10-04 16:35:46 -0400208 if (guard) {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200209 map = __mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500210 if (map == MAP_FAILED) goto fail;
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200211 if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
212 __munmap(map, size);
Rich Felker72768ea2013-02-01 22:25:19 -0500213 goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400214 }
215 } else {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200216 map = __mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500217 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400218 }
Rich Felker819006a2012-06-09 19:53:29 -0400219 tsd = map + size - __pthread_tsd_size;
Rich Felker14a835b2013-03-31 23:25:55 -0400220 if (!stack) {
221 stack = tsd - libc.tls_size;
222 stack_limit = map + guard;
223 }
Rich Felker11e4b922011-05-07 23:39:48 -0400224 }
Rich Felkerd5142642013-02-01 22:10:40 -0500225
226 new = __copy_tls(tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500227 new->map_base = map;
228 new->map_size = size;
Rich Felker14a835b2013-03-31 23:25:55 -0400229 new->stack = stack;
230 new->stack_size = stack - stack_limit;
Rich Felker0b44a032011-02-12 00:22:29 -0500231 new->start = entry;
232 new->start_arg = arg;
233 new->self = new;
234 new->tsd = (void *)tsd;
Rich Felker0bc03092014-07-02 19:33:19 -0400235 new->locale = &libc.global_locale;
Rich Felkerd5142642013-02-01 22:10:40 -0500236 if (attr._a_detach) {
Rich Felker92f83962012-07-11 23:36:46 -0400237 new->detached = 1;
Rich Felkerf68a3462013-09-16 10:54:31 -0400238 flags -= CLONE_CHILD_CLEARTID;
Rich Felker92f83962012-07-11 23:36:46 -0400239 }
Rich Felkerd5142642013-02-01 22:10:40 -0500240 if (attr._a_sched) {
Rich Felker1e21e782012-11-11 15:38:04 -0500241 do_sched = new->startlock[0] = 1;
Rich Felker2c074b02013-04-26 19:48:01 -0400242 __block_app_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500243 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400244 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400245 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500246
Rich Felker0b44a032011-02-12 00:22:29 -0500247 a_inc(&libc.threads_minus_1);
Rich Felker23614b02014-09-07 10:28:08 -0400248 ret = __clone((c11 ? start_c11 : start), stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500249
Rich Felkerdcd60372012-10-05 11:51:50 -0400250 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500251
Rich Felker1e21e782012-11-11 15:38:04 -0500252 if (do_sched) {
Rich Felker2c074b02013-04-26 19:48:01 -0400253 __restore_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500254 }
255
Rich Felker0b44a032011-02-12 00:22:29 -0500256 if (ret < 0) {
257 a_dec(&libc.threads_minus_1);
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200258 if (map) __munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500259 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500260 }
Rich Felker1e21e782012-11-11 15:38:04 -0500261
262 if (do_sched) {
263 ret = __syscall(SYS_sched_setscheduler, new->tid,
Rich Felkerd5142642013-02-01 22:10:40 -0500264 attr._a_policy, &attr._a_prio);
Rich Felker1e21e782012-11-11 15:38:04 -0500265 a_store(new->startlock, ret<0 ? 2 : 0);
266 __wake(new->startlock, 1, 1);
267 if (ret < 0) return -ret;
268 }
269
Rich Felker0b44a032011-02-12 00:22:29 -0500270 *res = new;
271 return 0;
Rich Felker72768ea2013-02-01 22:25:19 -0500272fail:
273 __release_ptc();
274 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500275}
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200276
277weak_alias(__pthread_exit, pthread_exit);
278weak_alias(__pthread_create, pthread_create);