blob: 059c20e7b6b2d73aa28a4cbef5fda88203572c01 [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 Felkerfeee9892011-04-17 11:43:03 -040035 do n = libc.threads_minus_1;
36 while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
37 if (!n) exit(0);
Rich Felkerfb11b6b2011-02-19 10:38:57 -050038
Rich Felker5fcebcd2011-03-10 18:31:37 -050039 if (self->detached && self->map_base) {
Rich Felker92f83962012-07-11 23:36:46 -040040 if (self->detached == 2)
41 __syscall(SYS_set_tid_address, 0);
Rich Felker2f437042012-08-09 22:52:13 -040042 __syscall(SYS_rt_sigprocmask, SIG_BLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -040043 SIGALL_SET, 0, _NSIG/8);
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 Felkerd5142642013-02-01 22:10:40 -0500104 unsigned char *map = 0, *stack = 0, *tsd = 0;
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);
126 /* Use application-provided stack for TLS only when
127 * it does not take more than ~12% or 2k of the
128 * application's stack space. */
129 if (need < size/8 && need < 2048) {
130 tsd = stack - __pthread_tsd_size;
131 stack = tsd - libc.tls_size;
132 } else {
133 size = ROUND(need);
134 guard = 0;
Rich Felker819006a2012-06-09 19:53:29 -0400135 }
Rich Felkerd5142642013-02-01 22:10:40 -0500136 } else {
137 guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
138 size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
139 + libc.tls_size + __pthread_tsd_size);
140 }
141
142 if (!tsd) {
Rich Felker8431d792012-10-04 16:35:46 -0400143 if (guard) {
144 map = mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500145 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400146 if (mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
147 munmap(map, size);
Rich Felker72768ea2013-02-01 22:25:19 -0500148 goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400149 }
150 } else {
151 map = mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
Rich Felker72768ea2013-02-01 22:25:19 -0500152 if (map == MAP_FAILED) goto fail;
Rich Felker8431d792012-10-04 16:35:46 -0400153 }
Rich Felker819006a2012-06-09 19:53:29 -0400154 tsd = map + size - __pthread_tsd_size;
Rich Felkerd5142642013-02-01 22:10:40 -0500155 if (!stack) stack = tsd - libc.tls_size;
Rich Felker11e4b922011-05-07 23:39:48 -0400156 }
Rich Felkerd5142642013-02-01 22:10:40 -0500157
158 new = __copy_tls(tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500159 new->map_base = map;
160 new->map_size = size;
161 new->pid = self->pid;
162 new->errno_ptr = &new->errno_val;
163 new->start = entry;
164 new->start_arg = arg;
165 new->self = new;
166 new->tsd = (void *)tsd;
Rich Felkerd5142642013-02-01 22:10:40 -0500167 if (attr._a_detach) {
Rich Felker92f83962012-07-11 23:36:46 -0400168 new->detached = 1;
169 flags -= 0x200000;
170 }
Rich Felkerd5142642013-02-01 22:10:40 -0500171 if (attr._a_sched) {
Rich Felker1e21e782012-11-11 15:38:04 -0500172 do_sched = new->startlock[0] = 1;
173 __syscall(SYS_rt_sigprocmask, SIG_BLOCK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400174 SIGALL_SET, self->sigmask, _NSIG/8);
Rich Felker1e21e782012-11-11 15:38:04 -0500175 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400176 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400177 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500178
Rich Felker0b44a032011-02-12 00:22:29 -0500179 a_inc(&libc.threads_minus_1);
Rich Felker9ec42832012-10-15 18:51:53 -0400180 ret = __clone(start, stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500181
Rich Felkerdcd60372012-10-05 11:51:50 -0400182 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500183
Rich Felker1e21e782012-11-11 15:38:04 -0500184 if (do_sched) {
185 __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
Rich Felkerccc7b4c2013-03-26 23:07:31 -0400186 new->sigmask, 0, _NSIG/8);
Rich Felker1e21e782012-11-11 15:38:04 -0500187 }
188
Rich Felker0b44a032011-02-12 00:22:29 -0500189 if (ret < 0) {
190 a_dec(&libc.threads_minus_1);
Rich Felker077549e2013-02-01 22:23:24 -0500191 if (map) munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500192 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500193 }
Rich Felker1e21e782012-11-11 15:38:04 -0500194
195 if (do_sched) {
196 ret = __syscall(SYS_sched_setscheduler, new->tid,
Rich Felkerd5142642013-02-01 22:10:40 -0500197 attr._a_policy, &attr._a_prio);
Rich Felker1e21e782012-11-11 15:38:04 -0500198 a_store(new->startlock, ret<0 ? 2 : 0);
199 __wake(new->startlock, 1, 1);
200 if (ret < 0) return -ret;
201 }
202
Rich Felker0b44a032011-02-12 00:22:29 -0500203 *res = new;
204 return 0;
Rich Felker72768ea2013-02-01 22:25:19 -0500205fail:
206 __release_ptc();
207 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500208}