pthread_create.c 5.0 KB
Newer Older
R
Rich Felker 已提交
1
#include "pthread_impl.h"
2
#include "stdio_impl.h"
3
#include <sys/mman.h>
R
Rich Felker 已提交
4

5 6 7
static void dummy_0()
{
}
8 9
weak_alias(dummy_0, __acquire_ptc);
weak_alias(dummy_0, __release_ptc);
10
weak_alias(dummy_0, __pthread_tsd_run_dtors);
11

12
_Noreturn void pthread_exit(void *result)
13
{
14
	pthread_t self = pthread_self();
R
Rich Felker 已提交
15
	int n;
16

17 18 19 20 21 22 23
	self->result = result;

	while (self->cancelbuf) {
		void (*f)(void *) = self->cancelbuf->__f;
		void *x = self->cancelbuf->__x;
		self->cancelbuf = self->cancelbuf->__next;
		f(x);
24
	}
25

26
	__pthread_tsd_run_dtors();
27

28
	__lock(self->exitlock);
29

30
	/* Mark this thread dead before decrementing count */
31
	__lock(self->killlock);
32
	self->dead = 1;
33
	__unlock(self->killlock);
34

R
Rich Felker 已提交
35 36 37
	do n = libc.threads_minus_1;
	while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
	if (!n) exit(0);
38

39
	if (self->detached && self->map_base) {
40 41
		if (self->detached == 2)
			__syscall(SYS_set_tid_address, 0);
42
		__syscall(SYS_rt_sigprocmask, SIG_BLOCK,
43
			SIGALL_SET, 0, _NSIG/8);
44
		__unmapself(self->map_base, self->map_size);
45
	}
46

47
	for (;;) __syscall(SYS_exit, 0);
48
}
R
Rich Felker 已提交
49

50
void __do_cleanup_push(struct __ptcb *cb)
51 52 53 54 55 56
{
	struct pthread *self = pthread_self();
	cb->__next = self->cancelbuf;
	self->cancelbuf = cb;
}

57
void __do_cleanup_pop(struct __ptcb *cb)
58
{
59
	__pthread_self()->cancelbuf = cb->__next;
60 61
}

R
Rich Felker 已提交
62
static int start(void *p)
R
Rich Felker 已提交
63
{
R
Rich Felker 已提交
64
	pthread_t self = p;
65 66 67 68 69 70 71
	if (self->startlock[0]) {
		__wait(self->startlock, 0, 1, 1);
		if (self->startlock[0]) {
			self->detached = 2;
			pthread_exit(0);
		}
		__syscall(SYS_rt_sigprocmask, SIG_SETMASK,
72
			self->sigmask, 0, _NSIG/8);
73
	}
74
	if (self->unblock_cancel)
75
		__syscall(SYS_rt_sigprocmask, SIG_UNBLOCK,
76
			SIGPT_SET, 0, _NSIG/8);
R
Rich Felker 已提交
77
	pthread_exit(self->start(self->start_arg));
R
Rich Felker 已提交
78
	return 0;
R
Rich Felker 已提交
79 80 81 82 83 84 85 86
}

#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);

87 88 89 90 91 92 93 94 95 96
static FILE *const dummy_file = 0;
weak_alias(dummy_file, __stdin_used);
weak_alias(dummy_file, __stdout_used);
weak_alias(dummy_file, __stderr_used);

static void init_file_lock(FILE *f)
{
	if (f && f->lock<0) f->lock = 0;
}

97
void *__copy_tls(unsigned char *);
98

99
int pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attrp, void *(*entry)(void *), void *restrict arg)
R
Rich Felker 已提交
100 101
{
	int ret;
102
	size_t size, guard;
R
Rich Felker 已提交
103
	struct pthread *self = pthread_self(), *new;
R
Rich Felker 已提交
104
	unsigned char *map = 0, *stack = 0, *tsd = 0, *stack_limit;
105
	unsigned flags = 0x7d8f00;
106
	int do_sched = 0;
107
	pthread_attr_t attr = {0};
R
Rich Felker 已提交
108

R
Rich Felker 已提交
109
	if (!self) return ENOSYS;
110
	if (!libc.threaded) {
111 112 113 114 115
		for (FILE *f=libc.ofl_head; f; f=f->next)
			init_file_lock(f);
		init_file_lock(__stdin_used);
		init_file_lock(__stdout_used);
		init_file_lock(__stderr_used);
116 117
		libc.threaded = 1;
	}
118
	if (attrp) attr = *attrp;
R
Rich Felker 已提交
119

120 121
	__acquire_ptc();

122 123 124 125
	if (attr._a_stackaddr) {
		size_t need = libc.tls_size + __pthread_tsd_size;
		size = attr._a_stacksize + DEFAULT_STACK_SIZE;
		stack = (void *)(attr._a_stackaddr & -16);
R
Rich Felker 已提交
126
		stack_limit = attr._a_stackaddr - size;
127 128 129 130 131 132 133 134 135
		/* Use application-provided stack for TLS only when
		 * it does not take more than ~12% or 2k of the
		 * application's stack space. */
		if (need < size/8 && need < 2048) {
			tsd = stack - __pthread_tsd_size;
			stack = tsd - libc.tls_size;
		} else {
			size = ROUND(need);
			guard = 0;
136
		}
137 138 139 140 141 142 143
	} else {
		guard = ROUND(DEFAULT_GUARD_SIZE + attr._a_guardsize);
		size = guard + ROUND(DEFAULT_STACK_SIZE + attr._a_stacksize
			+ libc.tls_size +  __pthread_tsd_size);
	}

	if (!tsd) {
144 145
		if (guard) {
			map = mmap(0, size, PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0);
146
			if (map == MAP_FAILED) goto fail;
147 148
			if (mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE)) {
				munmap(map, size);
149
				goto fail;
150 151 152
			}
		} else {
			map = mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
153
			if (map == MAP_FAILED) goto fail;
154
		}
155
		tsd = map + size - __pthread_tsd_size;
R
Rich Felker 已提交
156 157 158 159
		if (!stack) {
			stack = tsd - libc.tls_size;
			stack_limit = map + guard;
		}
160
	}
161 162

	new = __copy_tls(tsd - libc.tls_size);
R
Rich Felker 已提交
163 164
	new->map_base = map;
	new->map_size = size;
R
Rich Felker 已提交
165 166
	new->stack = stack;
	new->stack_size = stack - stack_limit;
R
Rich Felker 已提交
167 168 169 170 171 172
	new->pid = self->pid;
	new->errno_ptr = &new->errno_val;
	new->start = entry;
	new->start_arg = arg;
	new->self = new;
	new->tsd = (void *)tsd;
173
	if (attr._a_detach) {
174 175 176
		new->detached = 1;
		flags -= 0x200000;
	}
177
	if (attr._a_sched) {
178 179
		do_sched = new->startlock[0] = 1;
		__syscall(SYS_rt_sigprocmask, SIG_BLOCK,
180
			SIGALL_SET, self->sigmask, _NSIG/8);
181
	}
182
	new->unblock_cancel = self->cancel;
183
	new->canary = self->canary;
R
Rich Felker 已提交
184 185

	a_inc(&libc.threads_minus_1);
186
	ret = __clone(start, stack, flags, new, &new->tid, TP_ADJ(new), &new->tid);
R
Rich Felker 已提交
187

188
	__release_ptc();
R
Rich Felker 已提交
189

190 191
	if (do_sched) {
		__syscall(SYS_rt_sigprocmask, SIG_SETMASK,
192
			new->sigmask, 0, _NSIG/8);
193 194
	}

R
Rich Felker 已提交
195 196
	if (ret < 0) {
		a_dec(&libc.threads_minus_1);
197
		if (map) munmap(map, size);
198
		return EAGAIN;
R
Rich Felker 已提交
199
	}
200 201 202

	if (do_sched) {
		ret = __syscall(SYS_sched_setscheduler, new->tid,
203
			attr._a_policy, &attr._a_prio);
204 205 206 207 208
		a_store(new->startlock, ret<0 ? 2 : 0);
		__wake(new->startlock, 1, 1);
		if (ret < 0) return -ret;
	}

R
Rich Felker 已提交
209 210
	*res = new;
	return 0;
211 212 213
fail:
	__release_ptc();
	return EAGAIN;
R
Rich Felker 已提交
214
}