diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-06-02 20:04:27 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-06-02 20:04:27 -0400 |
commit | 40bd1726b6aa93a8311a77a1fec6da0fe0489fd0 (patch) | |
tree | 5270a8c14dc541d5915a786a5e335dd200eb715f /src/thread/pthread_sigmask.c | |
parent | 1e597a3e9bbdbe82d2ffd3963019d3a3edeed859 (diff) | |
download | musl-40bd1726b6aa93a8311a77a1fec6da0fe0489fd0.tar.gz musl-40bd1726b6aa93a8311a77a1fec6da0fe0489fd0.tar.xz musl-40bd1726b6aa93a8311a77a1fec6da0fe0489fd0.zip |
remove implementation-reserved bits when saving signal mask
this fix is necessary because a program could be started with some of the implementation-reserved signals masked (e.g. due to exec having been called from a signal handler, or from a non-musl program) and then could obtain an invalid-to-use-later sigset_t as the old/saved signal mask.
Diffstat (limited to 'src/thread/pthread_sigmask.c')
-rw-r--r-- | src/thread/pthread_sigmask.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/thread/pthread_sigmask.c b/src/thread/pthread_sigmask.c index 60a440b4..decc38f8 100644 --- a/src/thread/pthread_sigmask.c +++ b/src/thread/pthread_sigmask.c @@ -5,6 +5,16 @@ int pthread_sigmask(int how, const sigset_t *set, sigset_t *old) { + int ret; if (how > 2U) return EINVAL; - return -__syscall(SYS_rt_sigprocmask, how, set, old, 8); + ret = -__syscall(SYS_rt_sigprocmask, how, set, old, 8); + if (!ret && old) { + if (sizeof old->__bits[0] == 8) { + old->__bits[0] &= ~0x380000000ULL; + } else { + old->__bits[0] &= ~0x80000000UL; + old->__bits[1] &= ~0x3UL; + } + } + return ret; } |