use explicit __cp_cancel label in cancellable syscall asm for all archs
[musl.git] / src / thread / pthread_cancel.c
blobc4631f0817ac8049fef58605219098634c931173
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include "pthread_impl.h"
4 #include "syscall.h"
5 #include "libc.h"
7 #ifdef SHARED
8 __attribute__((__visibility__("hidden")))
9 #endif
10 long __cancel(), __syscall_cp_asm(), __syscall_cp_c();
12 long __cancel()
14 pthread_t self = __pthread_self();
15 if (self->canceldisable == PTHREAD_CANCEL_ENABLE || self->cancelasync)
16 pthread_exit(PTHREAD_CANCELED);
17 self->canceldisable = PTHREAD_CANCEL_DISABLE;
18 return -ECANCELED;
21 long __syscall_cp_asm(volatile void *, syscall_arg_t,
22 syscall_arg_t, syscall_arg_t, syscall_arg_t,
23 syscall_arg_t, syscall_arg_t, syscall_arg_t);
25 long __syscall_cp_c(syscall_arg_t nr,
26 syscall_arg_t u, syscall_arg_t v, syscall_arg_t w,
27 syscall_arg_t x, syscall_arg_t y, syscall_arg_t z)
29 pthread_t self;
30 long r;
31 int st;
33 if ((st=(self=__pthread_self())->canceldisable)
34 && (st==PTHREAD_CANCEL_DISABLE || nr==SYS_close))
35 return __syscall(nr, u, v, w, x, y, z);
37 r = __syscall_cp_asm(&self->cancel, nr, u, v, w, x, y, z);
38 if (r==-EINTR && nr!=SYS_close && self->cancel &&
39 self->canceldisable != PTHREAD_CANCEL_DISABLE)
40 r = __cancel();
41 return r;
44 static void _sigaddset(sigset_t *set, int sig)
46 unsigned s = sig-1;
47 set->__bits[s/8/sizeof *set->__bits] |= 1UL<<(s&8*sizeof *set->__bits-1);
50 #ifdef SHARED
51 __attribute__((__visibility__("hidden")))
52 #endif
53 extern const char __cp_begin[1], __cp_end[1], __cp_cancel[1];
55 static void cancel_handler(int sig, siginfo_t *si, void *ctx)
57 pthread_t self = __pthread_self();
58 ucontext_t *uc = ctx;
59 uintptr_t pc = uc->uc_mcontext.MC_PC;
61 a_barrier();
62 if (!self->cancel || self->canceldisable == PTHREAD_CANCEL_DISABLE) return;
64 _sigaddset(&uc->uc_sigmask, SIGCANCEL);
66 if (self->cancelasync || pc >= (uintptr_t)__cp_begin && pc < (uintptr_t)__cp_end) {
67 uc->uc_mcontext.MC_PC = (uintptr_t)__cp_cancel;
68 return;
71 __syscall(SYS_tkill, self->tid, SIGCANCEL);
74 void __testcancel()
76 pthread_t self = __pthread_self();
77 if (self->cancel && !self->canceldisable)
78 __cancel();
81 static void init_cancellation()
83 struct sigaction sa = {
84 .sa_flags = SA_SIGINFO | SA_RESTART,
85 .sa_sigaction = cancel_handler
87 memset(&sa.sa_mask, -1, _NSIG/8);
88 __libc_sigaction(SIGCANCEL, &sa, 0);
91 int pthread_cancel(pthread_t t)
93 static int init;
94 if (!init) {
95 init_cancellation();
96 init = 1;
98 a_store(&t->cancel, 1);
99 return pthread_kill(t, SIGCANCEL);