blob: b6a7a5ef06ad72ac79d25bea5b3ac6454274426c [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 Felker36d8e972015-02-16 22:25:50 -050026 self->canceldisable = 1;
27 self->cancelasync = 0;
Rich Felkerafc35d52012-02-09 02:33:08 -050028 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);
Rich Felker1ebde9c2011-04-17 17:06:05 -040035 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050036
Rich Felkera6054e32011-04-19 23:09:14 -040037 __pthread_tsd_run_dtors();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050038
Rich Felkerbbbe87e2012-07-12 11:23:43 -040039 __lock(self->exitlock);
Rich Felkerf58c8a02011-06-14 01:25:17 -040040
Rich Felker5fcebcd2011-03-10 18:31:37 -050041 /* Mark this thread dead before decrementing count */
Rich Felkerbbbe87e2012-07-12 11:23:43 -040042 __lock(self->killlock);
Rich Felker5fcebcd2011-03-10 18:31:37 -050043 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050044
Rich Felker6e531f92013-04-26 16:04:30 -040045 /* 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. */
Rich Felker2c074b02013-04-26 19:48:01 -040049 __block_all_sigs(&set);
Rich Felker23f21c32013-04-26 15:47:44 -040050
Rich Felkerd674f852013-04-26 17:51:22 -040051 /* 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
Rich Felkerd0ba0982013-04-26 16:16:04 -040058 /* 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;
Rich Felker2c074b02013-04-26 19:48:01 -040065 __restore_sigs(&set);
Rich Felkerd0ba0982013-04-26 16:16:04 -040066 exit(0);
67 }
Rich Felkerfb11b6b2011-02-19 10:38:57 -050068
Rich Felker0bc03092014-07-02 19:33:19 -040069 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
Rich Felkerb092f1c2014-08-16 02:28:34 -040075 __do_private_robust_list();
Rich Felker5345c9b2014-08-23 23:35:10 -040076 __do_orphaned_stdio_locks();
Rich Felkerb092f1c2014-08-16 02:28:34 -040077
Rich Felker5fcebcd2011-03-10 18:31:37 -050078 if (self->detached && self->map_base) {
Rich Felker6e531f92013-04-26 16:04:30 -040079 /* Detached threads must avoid the kernel clear_child_tid
80 * feature, since the virtual address will have been
81 * unmapped and possibly already reused by a new mapping
82 * at the time the kernel would perform the write. In
83 * the case of threads that started out detached, the
84 * initial clone flags are correct, but if the thread was
85 * detached later (== 2), we need to clear it here. */
86 if (self->detached == 2) __syscall(SYS_set_tid_address, 0);
87
88 /* The following call unmaps the thread's stack mapping
89 * and then exits without touching the stack. */
Rich Felker1a9a2ff2011-02-13 19:58:30 -050090 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050091 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050092
Rich Felker0c05bd32012-09-06 23:34:10 -040093 for (;;) __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050094}
Rich Felker0b44a032011-02-12 00:22:29 -050095
Rich Felkercfd892f2012-05-23 14:13:54 -040096void __do_cleanup_push(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -040097{
Rich Felkerdab441a2014-03-24 16:57:11 -040098 if (!libc.has_thread_pointer) return;
Rich Felkerdf151682014-06-10 04:02:40 -040099 struct pthread *self = __pthread_self();
Rich Felker5f37fc12011-08-03 19:57:46 -0400100 cb->__next = self->cancelbuf;
101 self->cancelbuf = cb;
102}
103
Rich Felkercfd892f2012-05-23 14:13:54 -0400104void __do_cleanup_pop(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -0400105{
Rich Felkerdab441a2014-03-24 16:57:11 -0400106 if (!libc.has_thread_pointer) return;
Rich Felkerafc35d52012-02-09 02:33:08 -0500107 __pthread_self()->cancelbuf = cb->__next;
Rich Felker5f37fc12011-08-03 19:57:46 -0400108}
109
Rich Felker3f72cda2011-09-18 10:14:37 -0400110static int start(void *p)
Rich Felker0b44a032011-02-12 00:22:29 -0500111{
Rich Felker3f72cda2011-09-18 10:14:37 -0400112 pthread_t self = p;
Rich Felker1e21e782012-11-11 15:38:04 -0500113 if (self->startlock[0]) {
114 __wait(self->startlock, 0, 1, 1);
115 if (self->startlock[0]) {
116 self->detached = 2;
117 pthread_exit(0);
118 }
Rich Felker2c074b02013-04-26 19:48:01 -0400119 __restore_sigs(self->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500120 }
Rich Felker99b8a252011-05-07 23:23:58 -0400121 if (self->unblock_cancel)
Rich Felker2f437042012-08-09 22:52:13 -0400122 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400123 SIGPT_SET, 0, _NSIG/8);
Rich Felker23614b02014-09-07 10:28:08 -0400124 __pthread_exit(self->start(self->start_arg));
125 return 0;
126}
127
128static int start_c11(void *p)
129{
130 pthread_t self = p;
131 int (*start)(void*) = (int(*)(void*)) self->start;
132 __pthread_exit((void *)(uintptr_t)start(self->start_arg));
Rich Felker3f72cda2011-09-18 10:14:37 -0400133 return 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500134}
135
Rich Felker0b44a032011-02-12 00:22:29 -0500136#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
137
138/* pthread_key_create.c overrides this */
Rich Felkera6adb2b2014-07-16 21:32:06 -0400139static volatile size_t dummy = 0;
Rich Felker0b44a032011-02-12 00:22:29 -0500140weak_alias(dummy, __pthread_tsd_size);
Rich Felkera6adb2b2014-07-16 21:32:06 -0400141static void *dummy_tsd[1] = { 0 };
Rich Felkerdab441a2014-03-24 16:57:11 -0400142weak_alias(dummy_tsd, __pthread_tsd_main);
Rich Felker0b44a032011-02-12 00:22:29 -0500143
Rich Felker78a8ef42015-01-15 23:17:38 -0500144volatile int __block_new_threads = 0;
145
Rich Felkera6adb2b2014-07-16 21:32:06 -0400146static FILE *volatile dummy_file = 0;
Rich Felkerdba68bf2011-07-30 08:02:14 -0400147weak_alias(dummy_file, __stdin_used);
148weak_alias(dummy_file, __stdout_used);
149weak_alias(dummy_file, __stderr_used);
150
151static void init_file_lock(FILE *f)
152{
153 if (f && f->lock<0) f->lock = 0;
154}
155
Rich Felkerdcd60372012-10-05 11:51:50 -0400156void *__copy_tls(unsigned char *);
Rich Felker8431d792012-10-04 16:35:46 -0400157
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200158int __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 -0500159{
Rich Felker23614b02014-09-07 10:28:08 -0400160 int ret, c11 = (attrp == __ATTRP_C11_THREAD);
Rich Felkerd5142642013-02-01 22:10:40 -0500161 size_t size, guard;
Rich Felkerdab441a2014-03-24 16:57:11 -0400162 struct pthread *self, *new;
Rich Felker14a835b2013-03-31 23:25:55 -0400163 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
Rich Felkerf68a3462013-09-16 10:54:31 -0400164 unsigned flags = CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND
Rich Felker271c2112013-09-16 10:56:01 -0400165 | CLONE_THREAD | CLONE_SYSVSEM | CLONE_SETTLS
Rich Felkerf68a3462013-09-16 10:54:31 -0400166 | CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID | CLONE_DETACHED;
Rich Felker1e21e782012-11-11 15:38:04 -0500167 int do_sched = 0;
Rich Felkerd5142642013-02-01 22:10:40 -0500168 pthread_attr_t attr = {0};
Rich Felker0b44a032011-02-12 00:22:29 -0500169
Rich Felkerdab441a2014-03-24 16:57:11 -0400170 if (!libc.can_do_threads) return ENOSYS;
171 self = __pthread_self();
Rich Felker9080cc12011-04-17 16:53:54 -0400172 if (!libc.threaded) {
Rich Felkerdba68bf2011-07-30 08:02:14 -0400173 for (FILE *f=libc.ofl_head; f; f=f->next)
174 init_file_lock(f);
175 init_file_lock(__stdin_used);
176 init_file_lock(__stdout_used);
177 init_file_lock(__stderr_used);
Rich Felkerdab441a2014-03-24 16:57:11 -0400178 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, _NSIG/8);
Rich Felker689e0e62014-03-24 17:39:08 -0400179 self->tsd = (void **)__pthread_tsd_main;
Rich Felker9080cc12011-04-17 16:53:54 -0400180 libc.threaded = 1;
181 }
Rich Felker23614b02014-09-07 10:28:08 -0400182 if (attrp && !c11) attr = *attrp;
Rich Felker0b44a032011-02-12 00:22:29 -0500183
Rich Felkerdcd60372012-10-05 11:51:50 -0400184 __acquire_ptc();
Rich Felker78a8ef42015-01-15 23:17:38 -0500185 if (__block_new_threads) __wait(&__block_new_threads, 0, 1, 1);
Rich Felkerdcd60372012-10-05 11:51:50 -0400186
Rich Felkerd5142642013-02-01 22:10:40 -0500187 if (attr._a_stackaddr) {
188 size_t need = libc.tls_size + __pthread_tsd_size;
189 size = attr._a_stacksize + DEFAULT_STACK_SIZE;
190 stack = (void *)(attr._a_stackaddr & -16);
Rich Felkerced64992013-04-06 01:15:08 -0400191 stack_limit = (void *)(attr._a_stackaddr - size);
Rich Felkerd5142642013-02-01 22:10:40 -0500192 /* Use application-provided stack for TLS only when
193 * it does not take more than ~12% or 2k of the
194 * application's stack space. */
195 if (need < size/8 && need < 2048) {
196 tsd = stack - __pthread_tsd_size;
197 stack = tsd - libc.tls_size;
Rich Felkera6293282014-08-22 14:05:10 -0400198 memset(stack, 0, need);
Rich Felkerd5142642013-02-01 22:10:40 -0500199 } else {
200 size = ROUND(need);
201 guard = 0;
Rich Felker819006a2012-06-09 19:53:29 -0400202 }
Rich Felkerd5142642013-02-01 22:10:40 -0500203 } else {
204 guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
205 size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
206 + libc.tls_size + __pthread_tsd_size);
207 }
208
209 if (!tsd) {
Rich Felker8431d792012-10-04 16:35:46 -0400210 if (guard) {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200211 map = __mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500212 if (map == MAP_FAILED) goto fail;
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200213 if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
214 __munmap(map, size);
Rich Felker72768ea2013-02-01 22:25:19 -0500215 goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400216 }
217 } else {
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200218 map = __mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500219 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400220 }
Rich Felker819006a2012-06-09 19:53:29 -0400221 tsd = map + size - __pthread_tsd_size;
Rich Felker14a835b2013-03-31 23:25:55 -0400222 if (!stack) {
223 stack = tsd - libc.tls_size;
224 stack_limit = map + guard;
225 }
Rich Felker11e4b922011-05-07 23:39:48 -0400226 }
Rich Felkerd5142642013-02-01 22:10:40 -0500227
228 new = __copy_tls(tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500229 new->map_base = map;
230 new->map_size = size;
Rich Felker14a835b2013-03-31 23:25:55 -0400231 new->stack = stack;
232 new->stack_size = stack - stack_limit;
Rich Felker0b44a032011-02-12 00:22:29 -0500233 new->start = entry;
234 new->start_arg = arg;
235 new->self = new;
236 new->tsd = (void *)tsd;
Rich Felker0bc03092014-07-02 19:33:19 -0400237 new->locale = &libc.global_locale;
Rich Felkerd5142642013-02-01 22:10:40 -0500238 if (attr._a_detach) {
Rich Felker92f83962012-07-11 23:36:46 -0400239 new->detached = 1;
Rich Felkerf68a3462013-09-16 10:54:31 -0400240 flags -= CLONE_CHILD_CLEARTID;
Rich Felker92f83962012-07-11 23:36:46 -0400241 }
Rich Felkerd5142642013-02-01 22:10:40 -0500242 if (attr._a_sched) {
Rich Felker1e21e782012-11-11 15:38:04 -0500243 do_sched = new->startlock[0] = 1;
Rich Felker2c074b02013-04-26 19:48:01 -0400244 __block_app_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500245 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400246 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400247 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500248
Rich Felker0b44a032011-02-12 00:22:29 -0500249 a_inc(&libc.threads_minus_1);
Rich Felker23614b02014-09-07 10:28:08 -0400250 ret = __clone((c11 ? start_c11 : start), stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500251
Rich Felkerdcd60372012-10-05 11:51:50 -0400252 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500253
Rich Felker1e21e782012-11-11 15:38:04 -0500254 if (do_sched) {
Rich Felker2c074b02013-04-26 19:48:01 -0400255 __restore_sigs(new->sigmask);
Rich Felker1e21e782012-11-11 15:38:04 -0500256 }
257
Rich Felker0b44a032011-02-12 00:22:29 -0500258 if (ret < 0) {
259 a_dec(&libc.threads_minus_1);
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200260 if (map) __munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500261 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500262 }
Rich Felker1e21e782012-11-11 15:38:04 -0500263
264 if (do_sched) {
265 ret = __syscall(SYS_sched_setscheduler, new->tid,
Rich Felkerd5142642013-02-01 22:10:40 -0500266 attr._a_policy, &attr._a_prio);
Rich Felker1e21e782012-11-11 15:38:04 -0500267 a_store(new->startlock, ret<0 ? 2 : 0);
268 __wake(new->startlock, 1, 1);
269 if (ret < 0) return -ret;
270 }
271
Rich Felker0b44a032011-02-12 00:22:29 -0500272 *res = new;
273 return 0;
Rich Felker72768ea2013-02-01 22:25:19 -0500274fail:
275 __release_ptc();
276 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500277}
Jens Gustedtdf7d0df2014-09-01 00:46:23 +0200278
279weak_alias(__pthread_exit, pthread_exit);
280weak_alias(__pthread_create, pthread_create);