blob: 0cd2d6c29260d5f92f0b13f5ca8e82f596be770c [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include "pthread_impl.h"
Rich Felkerdba68bf2011-07-30 08:02:14 -04002#include "stdio_impl.h"
Rich Felkerefd4d872012-11-08 17:04:20 -05003#include <sys/mman.h>
Rich Felker0b44a032011-02-12 00:22:29 -05004
Rich Felkerb2486a82011-04-06 20:27:07 -04005static void dummy_0()
6{
7}
Rich Felkerdcd60372012-10-05 11:51:50 -04008weak_alias(dummy_0, __acquire_ptc);
9weak_alias(dummy_0, __release_ptc);
Rich Felkera6054e32011-04-19 23:09:14 -040010weak_alias(dummy_0, __pthread_tsd_run_dtors);
Rich Felkerfd80cfa2011-04-03 02:33:50 -040011
Rich Felker0c05bd32012-09-06 23:34:10 -040012_Noreturn void pthread_exit(void *result)
Rich Felker1a9a2ff2011-02-13 19:58:30 -050013{
Rich Felker1ebde9c2011-04-17 17:06:05 -040014 pthread_t self = pthread_self();
Rich Felkerfeee9892011-04-17 11:43:03 -040015 int n;
Rich Felker1a9a2ff2011-02-13 19:58:30 -050016
Rich Felkerafc35d52012-02-09 02:33:08 -050017 self->result = result;
18
19 while (self->cancelbuf) {
20 void (*f)(void *) = self->cancelbuf->__f;
21 void *x = self->cancelbuf->__x;
22 self->cancelbuf = self->cancelbuf->__next;
23 f(x);
Rich Felker1ebde9c2011-04-17 17:06:05 -040024 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050025
Rich Felkera6054e32011-04-19 23:09:14 -040026 __pthread_tsd_run_dtors();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050027
Rich Felkerbbbe87e2012-07-12 11:23:43 -040028 __lock(self->exitlock);
Rich Felkerf58c8a02011-06-14 01:25:17 -040029
Rich Felker5fcebcd2011-03-10 18:31:37 -050030 /* Mark this thread dead before decrementing count */
Rich Felkerbbbe87e2012-07-12 11:23:43 -040031 __lock(self->killlock);
Rich Felker5fcebcd2011-03-10 18:31:37 -050032 self->dead = 1;
Rich Felkerbbbe87e2012-07-12 11:23:43 -040033 __unlock(self->killlock);
Rich Felker19eb13b2011-02-19 11:04:36 -050034
Rich Felker23f21c32013-04-26 15:47:44 -040035 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, SIGALL_SET, 0, _NSIG/8);
36
Rich Felkerfeee9892011-04-17 11:43:03 -040037 do n = libc.threads_minus_1;
38 while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
39 if (!n) exit(0);
Rich Felkerfb11b6b2011-02-19 10:38:57 -050040
Rich Felker5fcebcd2011-03-10 18:31:37 -050041 if (self->detached && self->map_base) {
Rich Felker92f83962012-07-11 23:36:46 -040042 if (self->detached == 2)
43 __syscall(SYS_set_tid_address, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050044 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050045 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050046
Rich Felker0c05bd32012-09-06 23:34:10 -040047 for (;;) __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050048}
Rich Felker0b44a032011-02-12 00:22:29 -050049
Rich Felkercfd892f2012-05-23 14:13:54 -040050void __do_cleanup_push(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -040051{
52 struct pthread *self = pthread_self();
53 cb->__next = self->cancelbuf;
54 self->cancelbuf = cb;
55}
56
Rich Felkercfd892f2012-05-23 14:13:54 -040057void __do_cleanup_pop(struct __ptcb *cb)
Rich Felker5f37fc12011-08-03 19:57:46 -040058{
Rich Felkerafc35d52012-02-09 02:33:08 -050059 __pthread_self()->cancelbuf = cb->__next;
Rich Felker5f37fc12011-08-03 19:57:46 -040060}
61
Rich Felker3f72cda2011-09-18 10:14:37 -040062static int start(void *p)
Rich Felker0b44a032011-02-12 00:22:29 -050063{
Rich Felker3f72cda2011-09-18 10:14:37 -040064 pthread_t self = p;
Rich Felker1e21e782012-11-11 15:38:04 -050065 if (self->startlock[0]) {
66 __wait(self->startlock, 0, 1, 1);
67 if (self->startlock[0]) {
68 self->detached = 2;
69 pthread_exit(0);
70 }
71 __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -040072 self->sigmask, 0, _NSIG/8);
Rich Felker1e21e782012-11-11 15:38:04 -050073 }
Rich Felker99b8a252011-05-07 23:23:58 -040074 if (self->unblock_cancel)
Rich Felker2f437042012-08-09 22:52:13 -040075 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -040076 SIGPT_SET, 0, _NSIG/8);
Rich Felker0b44a032011-02-12 00:22:29 -050077 pthread_exit(self->start(self->start_arg));
Rich Felker3f72cda2011-09-18 10:14:37 -040078 return 0;
Rich Felker0b44a032011-02-12 00:22:29 -050079}
80
Rich Felker0b44a032011-02-12 00:22:29 -050081#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
82
83/* pthread_key_create.c overrides this */
84static const size_t dummy = 0;
85weak_alias(dummy, __pthread_tsd_size);
86
Rich Felkerdba68bf2011-07-30 08:02:14 -040087static FILE *const dummy_file = 0;
88weak_alias(dummy_file, __stdin_used);
89weak_alias(dummy_file, __stdout_used);
90weak_alias(dummy_file, __stderr_used);
91
92static void init_file_lock(FILE *f)
93{
94 if (f && f->lock<0) f->lock = 0;
95}
96
Rich Felkerdcd60372012-10-05 11:51:50 -040097void *__copy_tls(unsigned char *);
Rich Felker8431d792012-10-04 16:35:46 -040098
Rich Felkerd5142642013-02-01 22:10:40 -050099int 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 -0500100{
Rich Felker0b44a032011-02-12 00:22:29 -0500101 int ret;
Rich Felkerd5142642013-02-01 22:10:40 -0500102 size_t size, guard;
Rich Felker0b44a032011-02-12 00:22:29 -0500103 struct pthread *self = pthread_self(), *new;
Rich Felker14a835b2013-03-31 23:25:55 -0400104 unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
Rich Felker92f83962012-07-11 23:36:46 -0400105 unsigned flags = 0x7d8f00;
Rich Felker1e21e782012-11-11 15:38:04 -0500106 int do_sched = 0;
Rich Felkerd5142642013-02-01 22:10:40 -0500107 pthread_attr_t attr = {0};
Rich Felker0b44a032011-02-12 00:22:29 -0500108
Rich Felker7fd39952011-04-03 16:15:15 -0400109 if (!self) return ENOSYS;
Rich Felker9080cc12011-04-17 16:53:54 -0400110 if (!libc.threaded) {
Rich Felkerdba68bf2011-07-30 08:02:14 -0400111 for (FILE *f=libc.ofl_head; f; f=f->next)
112 init_file_lock(f);
113 init_file_lock(__stdin_used);
114 init_file_lock(__stdout_used);
115 init_file_lock(__stderr_used);
Rich Felker9080cc12011-04-17 16:53:54 -0400116 libc.threaded = 1;
117 }
Rich Felkerd5142642013-02-01 22:10:40 -0500118 if (attrp) attr = *attrp;
Rich Felker0b44a032011-02-12 00:22:29 -0500119
Rich Felkerdcd60372012-10-05 11:51:50 -0400120 __acquire_ptc();
121
Rich Felkerd5142642013-02-01 22:10:40 -0500122 if (attr._a_stackaddr) {
123 size_t need = libc.tls_size + __pthread_tsd_size;
124 size = attr._a_stacksize + DEFAULT_STACK_SIZE;
125 stack = (void *)(attr._a_stackaddr & -16);
Rich Felkerced64992013-04-06 01:15:08 -0400126 stack_limit = (void *)(attr._a_stackaddr - size);
Rich Felkerd5142642013-02-01 22:10:40 -0500127 /* Use application-provided stack for TLS only when
128 * it does not take more than ~12% or 2k of the
129 * application's stack space. */
130 if (need < size/8 && need < 2048) {
131 tsd = stack - __pthread_tsd_size;
132 stack = tsd - libc.tls_size;
133 } else {
134 size = ROUND(need);
135 guard = 0;
Rich Felker819006a2012-06-09 19:53:29 -0400136 }
Rich Felkerd5142642013-02-01 22:10:40 -0500137 } else {
138 guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
139 size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
140 + libc.tls_size + __pthread_tsd_size);
141 }
142
143 if (!tsd) {
Rich Felker8431d792012-10-04 16:35:46 -0400144 if (guard) {
145 map = mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500146 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400147 if (mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
148 munmap(map, size);
Rich Felker72768ea2013-02-01 22:25:19 -0500149 goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400150 }
151 } else {
152 map = mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500153 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400154 }
Rich Felker819006a2012-06-09 19:53:29 -0400155 tsd = map + size - __pthread_tsd_size;
Rich Felker14a835b2013-03-31 23:25:55 -0400156 if (!stack) {
157 stack = tsd - libc.tls_size;
158 stack_limit = map + guard;
159 }
Rich Felker11e4b922011-05-07 23:39:48 -0400160 }
Rich Felkerd5142642013-02-01 22:10:40 -0500161
162 new = __copy_tls(tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500163 new->map_base = map;
164 new->map_size = size;
Rich Felker14a835b2013-03-31 23:25:55 -0400165 new->stack = stack;
166 new->stack_size = stack - stack_limit;
Rich Felker0b44a032011-02-12 00:22:29 -0500167 new->pid = self->pid;
168 new->errno_ptr = &new->errno_val;
169 new->start = entry;
170 new->start_arg = arg;
171 new->self = new;
172 new->tsd = (void *)tsd;
Rich Felkerd5142642013-02-01 22:10:40 -0500173 if (attr._a_detach) {
Rich Felker92f83962012-07-11 23:36:46 -0400174 new->detached = 1;
175 flags -= 0x200000;
176 }
Rich Felkerd5142642013-02-01 22:10:40 -0500177 if (attr._a_sched) {
Rich Felker1e21e782012-11-11 15:38:04 -0500178 do_sched = new->startlock[0] = 1;
179 __syscall(SYS_rt_sigprocmask, SIG_BLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400180 SIGALL_SET, self->sigmask, _NSIG/8);
Rich Felker1e21e782012-11-11 15:38:04 -0500181 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400182 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400183 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500184
Rich Felker0b44a032011-02-12 00:22:29 -0500185 a_inc(&libc.threads_minus_1);
Rich Felker9ec42832012-10-15 18:51:53 -0400186 ret = __clone(start, stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500187
Rich Felkerdcd60372012-10-05 11:51:50 -0400188 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500189
Rich Felker1e21e782012-11-11 15:38:04 -0500190 if (do_sched) {
191 __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400192 new->sigmask, 0, _NSIG/8);
Rich Felker1e21e782012-11-11 15:38:04 -0500193 }
194
Rich Felker0b44a032011-02-12 00:22:29 -0500195 if (ret < 0) {
196 a_dec(&libc.threads_minus_1);
Rich Felker077549e2013-02-01 22:23:24 -0500197 if (map) munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500198 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500199 }
Rich Felker1e21e782012-11-11 15:38:04 -0500200
201 if (do_sched) {
202 ret = __syscall(SYS_sched_setscheduler, new->tid,
Rich Felkerd5142642013-02-01 22:10:40 -0500203 attr._a_policy, &attr._a_prio);
Rich Felker1e21e782012-11-11 15:38:04 -0500204 a_store(new->startlock, ret<0 ? 2 : 0);
205 __wake(new->startlock, 1, 1);
206 if (ret < 0) return -ret;
207 }
208
Rich Felker0b44a032011-02-12 00:22:29 -0500209 *res = new;
210 return 0;
Rich Felker72768ea2013-02-01 22:25:19 -0500211fail:
212 __release_ptc();
213 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500214}