X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fsignal%2Fsigaction.c;h=ab23a6f2ac755e22bf73df3d9c967a297744d87a;hb=6fef8cafbd0f6f185897bc87feb1ff66e2e204e1;hp=3d374e1f45bf661a7a278fc1ba060ada8e3e6735;hpb=aa398f56fa398f2202b04e82c67f822f3233786f;p=musl diff --git a/src/signal/sigaction.c b/src/signal/sigaction.c index 3d374e1f..ab23a6f2 100644 --- a/src/signal/sigaction.c +++ b/src/signal/sigaction.c @@ -1,41 +1,63 @@ -#include #include #include +#include #include "syscall.h" #include "pthread_impl.h" +#include "libc.h" +#include "ksigaction.h" -void __restore(), __restore_rt(); +static int unmask_done; +static unsigned long handler_set[_NSIG/(8*sizeof(long))]; -int __libc_sigaction(int sig, const struct sigaction *sa, struct sigaction *old) +void __get_handler_set(sigset_t *set) { - struct { - void *handler; - unsigned long flags; - void (*restorer)(void); - sigset_t mask; - } ksa, kold; - long pksa=0, pkold=0; + memcpy(set, handler_set, sizeof handler_set); +} + +int __libc_sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old) +{ + struct k_sigaction ksa, ksa_old; + if (sig >= (unsigned)_NSIG) { + errno = EINVAL; + return -1; + } if (sa) { + if ((uintptr_t)sa->sa_handler > 1UL) { + a_or_l(handler_set+(sig-1)/(8*sizeof(long)), + 1UL<<(sig-1)%(8*sizeof(long))); + + /* If pthread_create has not yet been called, + * implementation-internal signals might not + * yet have been unblocked. They must be + * unblocked before any signal handler is + * installed, so that an application cannot + * receive an illegal sigset_t (with them + * blocked) as part of the ucontext_t passed + * to the signal handler. */ + if (!libc.threaded && !unmask_done) { + __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, + SIGPT_SET, 0, _NSIG/8); + unmask_done = 1; + } + } ksa.handler = sa->sa_handler; ksa.flags = sa->sa_flags | SA_RESTORER; ksa.restorer = (sa->sa_flags & SA_SIGINFO) ? __restore_rt : __restore; - ksa.mask = sa->sa_mask; - pksa = (long)&ksa; + memcpy(&ksa.mask, &sa->sa_mask, sizeof ksa.mask); } - if (old) pkold = (long)&kold; - if (syscall(SYS_rt_sigaction, sig, pksa, pkold, 8)) + if (syscall(SYS_rt_sigaction, sig, sa?&ksa:0, old?&ksa_old:0, sizeof ksa.mask)) return -1; if (old) { - old->sa_handler = kold.handler; - old->sa_flags = kold.flags; - old->sa_mask = kold.mask; + old->sa_handler = ksa_old.handler; + old->sa_flags = ksa_old.flags; + memcpy(&old->sa_mask, &ksa_old.mask, sizeof ksa_old.mask); } return 0; } -int __sigaction(int sig, const struct sigaction *sa, struct sigaction *old) +int __sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old) { - if (sig == SIGCANCEL || sig == SIGSYSCALL) { + if (sig-32U < 3) { errno = EINVAL; return -1; }