blob: a65e88e153e90514c6e21e43af1a1f9974d99bbf [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,
43 SIGALL_SET, 0, __SYSCALL_SSLEN);
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,
72 self->sigmask, 0, __SYSCALL_SSLEN);
73 }
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,
76 SIGPT_SET, 0, __SYSCALL_SSLEN);
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 Felker400c5e52012-09-06 22:44:55 -040099int pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attr, 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 Felker11e4b922011-05-07 23:39:48 -0400102 size_t size = DEFAULT_STACK_SIZE + DEFAULT_GUARD_SIZE;
103 size_t guard = DEFAULT_GUARD_SIZE;
Rich Felker0b44a032011-02-12 00:22:29 -0500104 struct pthread *self = pthread_self(), *new;
105 unsigned char *map, *stack, *tsd;
Rich Felker92f83962012-07-11 23:36:46 -0400106 unsigned flags = 0x7d8f00;
Rich Felker1e21e782012-11-11 15:38:04 -0500107 int do_sched = 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 Felker0b44a032011-02-12 00:22:29 -0500118
Rich Felkerdcd60372012-10-05 11:51:50 -0400119 __acquire_ptc();
120
Rich Felker819006a2012-06-09 19:53:29 -0400121 if (attr && attr->_a_stackaddr) {
122 map = 0;
123 tsd = (void *)(attr->_a_stackaddr-__pthread_tsd_size & -16);
124 } else {
125 if (attr) {
126 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
Rich Felker8431d792012-10-04 16:35:46 -0400127 size = guard + ROUND(attr->_a_stacksize
Rich Felkerdcd60372012-10-05 11:51:50 -0400128 + DEFAULT_STACK_SIZE + libc.tls_size);
Rich Felker819006a2012-06-09 19:53:29 -0400129 }
130 size += __pthread_tsd_size;
Rich Felker8431d792012-10-04 16:35:46 -0400131 if (guard) {
132 map = mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
133 if (map == MAP_FAILED) return EAGAIN;
134 if (mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
135 munmap(map, size);
136 return EAGAIN;
137 }
138 } else {
139 map = mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
140 if (map == MAP_FAILED) return EAGAIN;
141 }
Rich Felker819006a2012-06-09 19:53:29 -0400142 tsd = map + size - __pthread_tsd_size;
Rich Felker11e4b922011-05-07 23:39:48 -0400143 }
Rich Felker42c36f92012-10-14 21:10:44 -0400144 new = __copy_tls(stack = tsd - libc.tls_size);
Rich Felker0b44a032011-02-12 00:22:29 -0500145 new->map_base = map;
146 new->map_size = size;
147 new->pid = self->pid;
148 new->errno_ptr = &new->errno_val;
149 new->start = entry;
150 new->start_arg = arg;
151 new->self = new;
152 new->tsd = (void *)tsd;
Rich Felker92f83962012-07-11 23:36:46 -0400153 if (attr && attr->_a_detach) {
154 new->detached = 1;
155 flags -= 0x200000;
156 }
Rich Felker1e21e782012-11-11 15:38:04 -0500157 if (attr && attr->_a_sched) {
158 do_sched = new->startlock[0] = 1;
159 __syscall(SYS_rt_sigprocmask, SIG_BLOCK,
160 SIGALL_SET, self->sigmask, __SYSCALL_SSLEN);
161 }
Rich Felkerbf619d82011-03-29 12:58:22 -0400162 new->unblock_cancel = self->cancel;
Rich Felker0a96a372012-10-07 21:43:46 -0400163 new->canary = self->canary;
Rich Felker0b44a032011-02-12 00:22:29 -0500164
Rich Felker0b44a032011-02-12 00:22:29 -0500165 a_inc(&libc.threads_minus_1);
Rich Felker9ec42832012-10-15 18:51:53 -0400166 ret = __clone(start, stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
Rich Felker0b44a032011-02-12 00:22:29 -0500167
Rich Felkerdcd60372012-10-05 11:51:50 -0400168 __release_ptc();
Rich Felker0b44a032011-02-12 00:22:29 -0500169
Rich Felker1e21e782012-11-11 15:38:04 -0500170 if (do_sched) {
171 __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
172 new->sigmask, 0, __SYSCALL_SSLEN);
173 }
174
Rich Felker0b44a032011-02-12 00:22:29 -0500175 if (ret < 0) {
176 a_dec(&libc.threads_minus_1);
177 munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500178 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500179 }
Rich Felker1e21e782012-11-11 15:38:04 -0500180
181 if (do_sched) {
182 ret = __syscall(SYS_sched_setscheduler, new->tid,
183 attr->_a_policy, &attr->_a_prio);
184 a_store(new->startlock, ret<0 ? 2 : 0);
185 __wake(new->startlock, 1, 1);
186 if (ret < 0) return -ret;
187 }
188
Rich Felker0b44a032011-02-12 00:22:29 -0500189 *res = new;
190 return 0;
191}