new attempt at making set*id() safe and robust
[musl] / src / thread / synccall.c
1 #include "pthread_impl.h"
2 #include <semaphore.h>
3
4 static struct chain {
5         struct chain *next;
6         sem_t sem, sem2;
7 } *head;
8
9 static void (*callback)(void *), *context;
10 static int chainlen;
11 static sem_t chainlock, chaindone;
12 static pthread_rwlock_t lock = PTHREAD_RWLOCK_INITIALIZER;
13
14 static void handler(int sig, siginfo_t *si, void *ctx)
15 {
16         struct chain ch;
17         pthread_t self = __pthread_self();
18         int old_errno = errno;
19
20         if (chainlen == libc.threads_minus_1) return;
21
22         sigqueue(self->pid, SIGSYNCCALL, (union sigval){0});
23
24         /* Threads which have already decremented themselves from the
25          * thread count must not act. Block further receipt of signals
26          * and return. */
27         if (self->dead) {
28                 memset(&((ucontext_t *)ctx)->uc_sigmask, -1, 8);
29                 errno = old_errno;
30                 return;
31         }
32
33         sem_init(&ch.sem, 0, 0);
34         sem_init(&ch.sem2, 0, 0);
35
36         while (sem_wait(&chainlock));
37         ch.next = head;
38         head = &ch;
39         if (++chainlen == libc.threads_minus_1) sem_post(&chaindone);
40         sem_post(&chainlock);
41
42         while (sem_wait(&ch.sem));
43         callback(context);
44         sem_post(&ch.sem2);
45         while (sem_wait(&ch.sem));
46
47         errno = old_errno;
48 }
49
50 void __synccall(void (*func)(void *), void *ctx)
51 {
52         pthread_t self;
53         struct sigaction sa;
54         struct chain *cur, *next;
55         uint64_t oldmask;
56
57         pthread_rwlock_wrlock(&lock);
58
59         __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1}, &oldmask, 8);
60
61         if (!libc.threads_minus_1) {
62                 func(ctx);
63                 return;
64         }
65
66         sem_init(&chaindone, 0, 0);
67         sem_init(&chainlock, 0, 1);
68         chainlen = 0;
69         callback = func;
70         context = ctx;
71
72         sa.sa_flags = SA_SIGINFO | SA_RESTART;
73         sa.sa_sigaction = handler;
74         sigfillset(&sa.sa_mask);
75         __libc_sigaction(SIGSYNCCALL, &sa, 0);
76
77         self = __pthread_self();
78         sigqueue(self->pid, SIGSYNCCALL, (union sigval){0});
79         while (sem_wait(&chaindone));
80
81         for (cur=head; cur; cur=cur->next) {
82                 sem_post(&cur->sem);
83                 while (sem_wait(&cur->sem2));
84         }
85         func(ctx);
86
87         for (cur=head; cur; cur=next) {
88                 next = cur->next;
89                 sem_post(&cur->sem);
90         }
91
92         sa.sa_flags = 0;
93         sa.sa_handler = SIG_IGN;
94         __libc_sigaction(SIGSYNCCALL, &sa, 0);
95
96         __syscall(SYS_rt_sigprocmask, SIG_SETMASK, &oldmask, 0, 8);
97
98         pthread_rwlock_unlock(&lock);
99 }
100
101 void __synccall_lock()
102 {
103         pthread_rwlock_rdlock(&lock);
104 }
105
106 void __synccall_unlock()
107 {
108         pthread_rwlock_unlock(&lock);
109 }