blob: ec329f5072ded734198fb1de54fe2c6b7a82c9e5 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include "pthread_impl.h"
2
Rich Felkerb2486a82011-04-06 20:27:07 -04003static void dummy_0()
4{
5}
6weak_alias(dummy_0, __rsyscall_lock);
7weak_alias(dummy_0, __rsyscall_unlock);
8
Rich Felkerfd80cfa2011-04-03 02:33:50 -04009static void dummy_1(pthread_t self)
10{
11}
12weak_alias(dummy_1, __pthread_tsd_run_dtors);
Rich Felkerf01d3512011-04-03 12:03:58 -040013weak_alias(dummy_1, __sigtimer_handler);
Rich Felkerfd80cfa2011-04-03 02:33:50 -040014
Rich Felkerea343362011-03-25 22:13:57 -040015#ifdef __pthread_unwind_next
16#undef __pthread_unwind_next
17#define __pthread_unwind_next __pthread_unwind_next_3
18#endif
19
Rich Felker1a9a2ff2011-02-13 19:58:30 -050020void __pthread_unwind_next(struct __ptcb *cb)
21{
Rich Felker1a9a2ff2011-02-13 19:58:30 -050022 pthread_t self;
23
24 if (cb->__next) longjmp((void *)cb->__next->__jb, 1);
25
26 self = pthread_self();
Rich Felker1a9a2ff2011-02-13 19:58:30 -050027
Rich Felker1a9a2ff2011-02-13 19:58:30 -050028 LOCK(&self->exitlock);
29
Rich Felkerfd80cfa2011-04-03 02:33:50 -040030 __pthread_tsd_run_dtors(self);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050031
Rich Felker5fcebcd2011-03-10 18:31:37 -050032 /* Mark this thread dead before decrementing count */
33 self->dead = 1;
Rich Felker19eb13b2011-02-19 11:04:36 -050034
Rich Felkerfb11b6b2011-02-19 10:38:57 -050035 if (!a_fetch_add(&libc.threads_minus_1, -1))
36 exit(0);
37
Rich Felker5fcebcd2011-03-10 18:31:37 -050038 if (self->detached && self->map_base) {
Rich Felker74950b32011-04-06 19:47:50 -040039 __syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050040 __unmapself(self->map_base, self->map_size);
Rich Felker5fcebcd2011-03-10 18:31:37 -050041 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050042
Rich Felker74950b32011-04-06 19:47:50 -040043 __syscall(SYS_exit, 0);
Rich Felker1a9a2ff2011-02-13 19:58:30 -050044}
Rich Felker0b44a032011-02-12 00:22:29 -050045
46static void docancel(struct pthread *self)
47{
48 struct __ptcb cb = { .__next = self->cancelbuf };
Rich Felkerb4700302011-03-24 14:18:00 -040049 self->canceldisable = 1;
50 self->cancelasync = 0;
Rich Felker0b44a032011-02-12 00:22:29 -050051 __pthread_unwind_next(&cb);
52}
53
54static void cancel_handler(int sig, siginfo_t *si, void *ctx)
55{
Rich Felker1a9a2ff2011-02-13 19:58:30 -050056 struct pthread *self = __pthread_self();
Rich Felkerf01d3512011-04-03 12:03:58 -040057 if (si->si_code == SI_TIMER) __sigtimer_handler(self);
58 if (self->cancel && !self->canceldisable &&
59 (self->cancelasync || (self->cancelpoint==1 && PC_AT_SYS(ctx))))
Rich Felkerb4700302011-03-24 14:18:00 -040060 docancel(self);
Rich Felker0b44a032011-02-12 00:22:29 -050061}
62
Rich Felker1a9a2ff2011-02-13 19:58:30 -050063static void cancelpt(int x)
64{
65 struct pthread *self = __pthread_self();
Rich Felker729cb492011-04-05 18:00:28 -040066 switch (x) {
67 case 1:
68 self->cancelpoint++;
69 case 0:
70 if (self->cancel && self->cancelpoint==1 && !self->canceldisable)
71 docancel(self);
72 break;
73 case -1:
74 self->cancelpoint--;
75 break;
76 default:
77 self->canceldisable += x;
78 }
Rich Felker1a9a2ff2011-02-13 19:58:30 -050079}
80
Rich Felker0b44a032011-02-12 00:22:29 -050081static void init_threads()
82{
83 struct sigaction sa = { .sa_flags = SA_SIGINFO | SA_RESTART };
84 libc.lock = __lock;
Rich Felker5eb0d332011-03-12 21:55:45 -050085 libc.lockfile = __lockfile;
Rich Felker0b44a032011-02-12 00:22:29 -050086 libc.cancelpt = cancelpt;
Rich Felker66def4e2011-04-03 13:15:42 -040087
88 sigemptyset(&sa.sa_mask);
89 sa.sa_sigaction = cancel_handler;
90 __libc_sigaction(SIGCANCEL, &sa, 0);
91
92 sigaddset(&sa.sa_mask, SIGSYSCALL);
93 sigaddset(&sa.sa_mask, SIGCANCEL);
94 __libc_sigprocmask(SIG_UNBLOCK, &sa.sa_mask, 0);
Rich Felker0b44a032011-02-12 00:22:29 -050095}
96
97static int start(void *p)
98{
99 struct pthread *self = p;
Rich Felkerbf619d82011-03-29 12:58:22 -0400100 if (self->unblock_cancel) {
101 sigset_t set;
102 sigemptyset(&set);
103 sigaddset(&set, SIGCANCEL);
104 __libc_sigprocmask(SIG_UNBLOCK, &set, 0);
105 }
Rich Felker0b44a032011-02-12 00:22:29 -0500106 pthread_exit(self->start(self->start_arg));
107 return 0;
108}
109
Rich Felker0b2006c2011-02-15 03:24:58 -0500110int __uniclone(void *, int (*)(), void *);
Rich Felker0b44a032011-02-12 00:22:29 -0500111
112#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
113
114/* pthread_key_create.c overrides this */
115static const size_t dummy = 0;
116weak_alias(dummy, __pthread_tsd_size);
117
118int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
119{
120 static int init;
121 int ret;
122 size_t size, guard;
123 struct pthread *self = pthread_self(), *new;
124 unsigned char *map, *stack, *tsd;
Rich Felkerb2486a82011-04-06 20:27:07 -0400125 const pthread_attr_t default_attr = { 0 };
Rich Felker0b44a032011-02-12 00:22:29 -0500126
Rich Felker7fd39952011-04-03 16:15:15 -0400127 if (!self) return ENOSYS;
Rich Felker0b44a032011-02-12 00:22:29 -0500128 if (!init && ++init) init_threads();
129
130 if (!attr) attr = &default_attr;
Rich Felkere8827562011-02-17 17:16:20 -0500131 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
132 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
Rich Felker0b44a032011-02-12 00:22:29 -0500133 size += __pthread_tsd_size;
134 map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
135 if (!map) return EAGAIN;
Rich Felker29fae652011-03-16 11:36:21 -0400136 if (guard) mprotect(map, guard, PROT_NONE);
Rich Felker0b44a032011-02-12 00:22:29 -0500137
138 tsd = map + size - __pthread_tsd_size;
139 new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
140 new->map_base = map;
141 new->map_size = size;
142 new->pid = self->pid;
143 new->errno_ptr = &new->errno_val;
144 new->start = entry;
145 new->start_arg = arg;
146 new->self = new;
147 new->tsd = (void *)tsd;
Rich Felkere8827562011-02-17 17:16:20 -0500148 new->detached = attr->_a_detach;
Rich Felker0b44a032011-02-12 00:22:29 -0500149 new->attr = *attr;
Rich Felkerbf619d82011-03-29 12:58:22 -0400150 new->unblock_cancel = self->cancel;
Rich Felker4ae5e812011-04-01 22:15:03 -0400151 new->result = PTHREAD_CANCELED;
Rich Felker0b44a032011-02-12 00:22:29 -0500152 memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
153 new->tlsdesc[1] = (uintptr_t)new;
154 stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
155
Rich Felkerb2486a82011-04-06 20:27:07 -0400156 __rsyscall_lock();
Rich Felker0b44a032011-02-12 00:22:29 -0500157
158 a_inc(&libc.threads_minus_1);
Rich Felker0b2006c2011-02-15 03:24:58 -0500159 ret = __uniclone(stack, start, new);
Rich Felker0b44a032011-02-12 00:22:29 -0500160
Rich Felkerb2486a82011-04-06 20:27:07 -0400161 __rsyscall_unlock();
Rich Felker0b44a032011-02-12 00:22:29 -0500162
163 if (ret < 0) {
164 a_dec(&libc.threads_minus_1);
165 munmap(map, size);
Rich Felker59666802011-02-15 02:20:21 -0500166 return EAGAIN;
Rich Felker0b44a032011-02-12 00:22:29 -0500167 }
168 *res = new;
169 return 0;
170}
Rich Felker1a9a2ff2011-02-13 19:58:30 -0500171
172void pthread_exit(void *result)
173{
174 struct pthread *self = pthread_self();
175 self->result = result;
176 docancel(self);
177}