2011-02-12 00:22:29 -05:00
|
|
|
#include "pthread_impl.h"
|
|
|
|
|
2011-04-06 20:27:07 -04:00
|
|
|
static void dummy_0()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
weak_alias(dummy_0, __rsyscall_lock);
|
|
|
|
weak_alias(dummy_0, __rsyscall_unlock);
|
|
|
|
|
2011-04-03 02:33:50 -04:00
|
|
|
static void dummy_1(pthread_t self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
weak_alias(dummy_1, __pthread_tsd_run_dtors);
|
2011-04-03 12:03:58 -04:00
|
|
|
weak_alias(dummy_1, __sigtimer_handler);
|
2011-04-03 02:33:50 -04:00
|
|
|
|
2011-03-25 22:13:57 -04:00
|
|
|
#ifdef __pthread_unwind_next
|
|
|
|
#undef __pthread_unwind_next
|
|
|
|
#define __pthread_unwind_next __pthread_unwind_next_3
|
|
|
|
#endif
|
|
|
|
|
2011-02-13 19:58:30 -05:00
|
|
|
void __pthread_unwind_next(struct __ptcb *cb)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
|
|
|
|
|
|
|
if (cb->__next) longjmp((void *)cb->__next->__jb, 1);
|
|
|
|
|
|
|
|
self = pthread_self();
|
|
|
|
|
|
|
|
LOCK(&self->exitlock);
|
|
|
|
|
2011-04-03 02:33:50 -04:00
|
|
|
__pthread_tsd_run_dtors(self);
|
2011-02-13 19:58:30 -05:00
|
|
|
|
2011-03-10 18:31:37 -05:00
|
|
|
/* Mark this thread dead before decrementing count */
|
|
|
|
self->dead = 1;
|
2011-02-19 11:04:36 -05:00
|
|
|
|
2011-02-19 10:38:57 -05:00
|
|
|
if (!a_fetch_add(&libc.threads_minus_1, -1))
|
|
|
|
exit(0);
|
|
|
|
|
2011-03-10 18:31:37 -05:00
|
|
|
if (self->detached && self->map_base) {
|
2011-04-06 19:47:50 -04:00
|
|
|
__syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
|
2011-02-13 19:58:30 -05:00
|
|
|
__unmapself(self->map_base, self->map_size);
|
2011-03-10 18:31:37 -05:00
|
|
|
}
|
2011-02-13 19:58:30 -05:00
|
|
|
|
2011-04-06 19:47:50 -04:00
|
|
|
__syscall(SYS_exit, 0);
|
2011-02-13 19:58:30 -05:00
|
|
|
}
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
static void docancel(struct pthread *self)
|
|
|
|
{
|
|
|
|
struct __ptcb cb = { .__next = self->cancelbuf };
|
2011-03-24 14:18:00 -04:00
|
|
|
self->canceldisable = 1;
|
|
|
|
self->cancelasync = 0;
|
2011-02-12 00:22:29 -05:00
|
|
|
__pthread_unwind_next(&cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cancel_handler(int sig, siginfo_t *si, void *ctx)
|
|
|
|
{
|
2011-02-13 19:58:30 -05:00
|
|
|
struct pthread *self = __pthread_self();
|
2011-04-03 12:03:58 -04:00
|
|
|
if (si->si_code == SI_TIMER) __sigtimer_handler(self);
|
|
|
|
if (self->cancel && !self->canceldisable &&
|
|
|
|
(self->cancelasync || (self->cancelpoint==1 && PC_AT_SYS(ctx))))
|
2011-03-24 14:18:00 -04:00
|
|
|
docancel(self);
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
|
|
|
|
2011-02-13 19:58:30 -05:00
|
|
|
static void cancelpt(int x)
|
|
|
|
{
|
|
|
|
struct pthread *self = __pthread_self();
|
2011-04-05 18:00:28 -04:00
|
|
|
switch (x) {
|
|
|
|
case 1:
|
|
|
|
self->cancelpoint++;
|
|
|
|
case 0:
|
|
|
|
if (self->cancel && self->cancelpoint==1 && !self->canceldisable)
|
|
|
|
docancel(self);
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
self->cancelpoint--;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
self->canceldisable += x;
|
|
|
|
}
|
2011-02-13 19:58:30 -05:00
|
|
|
}
|
|
|
|
|
2011-02-12 00:22:29 -05:00
|
|
|
static void init_threads()
|
|
|
|
{
|
|
|
|
struct sigaction sa = { .sa_flags = SA_SIGINFO | SA_RESTART };
|
|
|
|
libc.lock = __lock;
|
2011-03-12 21:55:45 -05:00
|
|
|
libc.lockfile = __lockfile;
|
2011-02-12 00:22:29 -05:00
|
|
|
libc.cancelpt = cancelpt;
|
2011-04-03 13:15:42 -04:00
|
|
|
|
|
|
|
sigemptyset(&sa.sa_mask);
|
2011-02-12 00:22:29 -05:00
|
|
|
sa.sa_sigaction = cancel_handler;
|
|
|
|
__libc_sigaction(SIGCANCEL, &sa, 0);
|
2011-04-03 13:15:42 -04:00
|
|
|
|
2011-02-12 00:22:29 -05:00
|
|
|
sigaddset(&sa.sa_mask, SIGSYSCALL);
|
|
|
|
sigaddset(&sa.sa_mask, SIGCANCEL);
|
2011-04-03 13:15:42 -04:00
|
|
|
__libc_sigprocmask(SIG_UNBLOCK, &sa.sa_mask, 0);
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int start(void *p)
|
|
|
|
{
|
|
|
|
struct pthread *self = p;
|
2011-03-29 12:58:22 -04:00
|
|
|
if (self->unblock_cancel) {
|
|
|
|
sigset_t set;
|
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGCANCEL);
|
|
|
|
__libc_sigprocmask(SIG_UNBLOCK, &set, 0);
|
|
|
|
}
|
2011-02-12 00:22:29 -05:00
|
|
|
pthread_exit(self->start(self->start_arg));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-02-15 03:24:58 -05:00
|
|
|
int __uniclone(void *, int (*)(), void *);
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
#define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
|
|
|
|
|
|
|
|
/* pthread_key_create.c overrides this */
|
|
|
|
static const size_t dummy = 0;
|
|
|
|
weak_alias(dummy, __pthread_tsd_size);
|
|
|
|
|
|
|
|
int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
|
|
|
|
{
|
|
|
|
static int init;
|
|
|
|
int ret;
|
|
|
|
size_t size, guard;
|
|
|
|
struct pthread *self = pthread_self(), *new;
|
|
|
|
unsigned char *map, *stack, *tsd;
|
2011-04-06 20:27:07 -04:00
|
|
|
const pthread_attr_t default_attr = { 0 };
|
2011-02-12 00:22:29 -05:00
|
|
|
|
2011-04-03 16:15:15 -04:00
|
|
|
if (!self) return ENOSYS;
|
2011-02-12 00:22:29 -05:00
|
|
|
if (!init && ++init) init_threads();
|
|
|
|
|
|
|
|
if (!attr) attr = &default_attr;
|
2011-02-17 17:16:20 -05:00
|
|
|
guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
|
|
|
|
size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
|
2011-02-12 00:22:29 -05:00
|
|
|
size += __pthread_tsd_size;
|
|
|
|
map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
|
|
|
|
if (!map) return EAGAIN;
|
2011-03-16 11:36:21 -04:00
|
|
|
if (guard) mprotect(map, guard, PROT_NONE);
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
tsd = map + size - __pthread_tsd_size;
|
|
|
|
new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
|
|
|
|
new->map_base = map;
|
|
|
|
new->map_size = size;
|
|
|
|
new->pid = self->pid;
|
|
|
|
new->errno_ptr = &new->errno_val;
|
|
|
|
new->start = entry;
|
|
|
|
new->start_arg = arg;
|
|
|
|
new->self = new;
|
|
|
|
new->tsd = (void *)tsd;
|
2011-02-17 17:16:20 -05:00
|
|
|
new->detached = attr->_a_detach;
|
2011-02-12 00:22:29 -05:00
|
|
|
new->attr = *attr;
|
2011-03-29 12:58:22 -04:00
|
|
|
new->unblock_cancel = self->cancel;
|
2011-04-01 22:15:03 -04:00
|
|
|
new->result = PTHREAD_CANCELED;
|
2011-02-12 00:22:29 -05:00
|
|
|
memcpy(new->tlsdesc, self->tlsdesc, sizeof new->tlsdesc);
|
|
|
|
new->tlsdesc[1] = (uintptr_t)new;
|
|
|
|
stack = (void *)((uintptr_t)new-1 & ~(uintptr_t)15);
|
|
|
|
|
2011-04-06 20:27:07 -04:00
|
|
|
__rsyscall_lock();
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
a_inc(&libc.threads_minus_1);
|
2011-02-15 03:24:58 -05:00
|
|
|
ret = __uniclone(stack, start, new);
|
2011-02-12 00:22:29 -05:00
|
|
|
|
2011-04-06 20:27:07 -04:00
|
|
|
__rsyscall_unlock();
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
a_dec(&libc.threads_minus_1);
|
|
|
|
munmap(map, size);
|
2011-02-15 02:20:21 -05:00
|
|
|
return EAGAIN;
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|
|
|
|
*res = new;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-13 19:58:30 -05:00
|
|
|
|
|
|
|
void pthread_exit(void *result)
|
|
|
|
{
|
|
|
|
struct pthread *self = pthread_self();
|
|
|
|
self->result = result;
|
|
|
|
docancel(self);
|
|
|
|
}
|