0189f02844f1e7af23f25e273b6ff321fdbceb57
[musl] / src / thread / pthread_create.c
1 #include "pthread_impl.h"
2 #include "stdio_impl.h"
3
4 static void dummy_0()
5 {
6 }
7 weak_alias(dummy_0, __synccall_lock);
8 weak_alias(dummy_0, __synccall_unlock);
9 weak_alias(dummy_0, __pthread_tsd_run_dtors);
10
11 void __pthread_do_unwind(struct __ptcb *cb)
12 {
13         pthread_t self = pthread_self();
14         int n;
15
16         if (cb->__next) {
17                 self->cancelbuf = cb->__next->__next;
18                 longjmp((void *)cb->__next->__jb, 1);
19         }
20
21         __pthread_tsd_run_dtors();
22
23         __lock(&self->exitlock);
24
25         /* Mark this thread dead before decrementing count */
26         __lock(&self->killlock);
27         self->dead = 1;
28         a_store(&self->killlock, 0);
29
30         do n = libc.threads_minus_1;
31         while (n && a_cas(&libc.threads_minus_1, n, n-1)!=n);
32         if (!n) exit(0);
33
34         if (self->detached && self->map_base) {
35                 __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1},0,8);
36                 __unmapself(self->map_base, self->map_size);
37         }
38
39         __syscall(SYS_exit, 0);
40 }
41
42 void __pthread_do_register(struct __ptcb *cb)
43 {
44         struct pthread *self = pthread_self();
45         cb->__next = self->cancelbuf;
46         self->cancelbuf = cb;
47 }
48
49 void __pthread_do_unregister(struct __ptcb *cb)
50 {
51         struct pthread *self = __pthread_self();
52         self->cancelbuf = self->cancelbuf->__next;
53 }
54
55 static int start(void *p)
56 {
57         pthread_t self = p;
58         if (self->unblock_cancel)
59                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
60         pthread_exit(self->start(self->start_arg));
61         return 0;
62 }
63
64 #define ROUND(x) (((x)+PAGE_SIZE-1)&-PAGE_SIZE)
65
66 /* pthread_key_create.c overrides this */
67 static const size_t dummy = 0;
68 weak_alias(dummy, __pthread_tsd_size);
69
70 static FILE *const dummy_file = 0;
71 weak_alias(dummy_file, __stdin_used);
72 weak_alias(dummy_file, __stdout_used);
73 weak_alias(dummy_file, __stderr_used);
74
75 static void init_file_lock(FILE *f)
76 {
77         if (f && f->lock<0) f->lock = 0;
78 }
79
80 int pthread_create(pthread_t *res, const pthread_attr_t *attr, void *(*entry)(void *), void *arg)
81 {
82         int ret;
83         size_t size = DEFAULT_STACK_SIZE + DEFAULT_GUARD_SIZE;
84         size_t guard = DEFAULT_GUARD_SIZE;
85         struct pthread *self = pthread_self(), *new;
86         unsigned char *map, *stack, *tsd;
87
88         if (!self) return ENOSYS;
89         if (!libc.threaded) {
90                 for (FILE *f=libc.ofl_head; f; f=f->next)
91                         init_file_lock(f);
92                 init_file_lock(__stdin_used);
93                 init_file_lock(__stdout_used);
94                 init_file_lock(__stderr_used);
95                 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, SIGPT_SET, 0, 8);
96                 libc.threaded = 1;
97         }
98
99         if (attr) {
100                 guard = ROUND(attr->_a_guardsize + DEFAULT_GUARD_SIZE);
101                 size = guard + ROUND(attr->_a_stacksize + DEFAULT_STACK_SIZE);
102         }
103         size += __pthread_tsd_size;
104         map = mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
105         if (map == MAP_FAILED) return EAGAIN;
106         if (guard) mprotect(map, guard, PROT_NONE);
107
108         tsd = map + size - __pthread_tsd_size;
109         new = (void *)(tsd - sizeof *new - PAGE_SIZE%sizeof *new);
110         new->map_base = map;
111         new->map_size = size;
112         new->pid = self->pid;
113         new->errno_ptr = &new->errno_val;
114         new->start = entry;
115         new->start_arg = arg;
116         new->self = new;
117         new->tsd = (void *)tsd;
118         if (attr) new->detached = attr->_a_detach;
119         new->unblock_cancel = self->cancel;
120         stack = (void *)new;
121
122         __synccall_lock();
123
124         a_inc(&libc.threads_minus_1);
125         ret = __clone(start, stack, 0x7d8f00, new, &new->tid, new, &new->tid);
126
127         __synccall_unlock();
128
129         if (ret < 0) {
130                 a_dec(&libc.threads_minus_1);
131                 munmap(map, size);
132                 return EAGAIN;
133         }
134         *res = new;
135         return 0;
136 }
137
138 void pthread_exit(void *result)
139 {
140         struct pthread *self = pthread_self();
141         struct __ptcb cb = { .__next = self->cancelbuf };
142         self->result = result;
143         __pthread_do_unwind(&cb);
144 }