Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 300131
b: refs/heads/master
c: b7dafa0
h: refs/heads/master
i:
  300129: 216dad5
  300127: 92bd6e5
v: v3
  • Loading branch information
Jan Kiszka authored and Linus Torvalds committed May 10, 2012
1 parent cfd0798 commit d96e86c
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7ee94d97aafacf5a019b3578e0eae6daa2e2bcd5
refs/heads/master: b7dafa0ef3145c31d7753be0a08b3cbda51f0209
63 changes: 46 additions & 17 deletions trunk/kernel/compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,25 +372,54 @@ asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)

#ifdef __ARCH_WANT_SYS_SIGPROCMASK

asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *set,
compat_old_sigset_t __user *oset)
/*
* sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
* blocked set of signals to the supplied signal set
*/
static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
{
old_sigset_t s;
long ret;
mm_segment_t old_fs;
memcpy(blocked->sig, &set, sizeof(set));
}

if (set && get_user(s, set))
return -EFAULT;
old_fs = get_fs();
set_fs(KERNEL_DS);
ret = sys_sigprocmask(how,
set ? (old_sigset_t __user *) &s : NULL,
oset ? (old_sigset_t __user *) &s : NULL);
set_fs(old_fs);
if (ret == 0)
if (oset)
ret = put_user(s, oset);
return ret;
asmlinkage long compat_sys_sigprocmask(int how,
compat_old_sigset_t __user *nset,
compat_old_sigset_t __user *oset)
{
old_sigset_t old_set, new_set;
sigset_t new_blocked;

old_set = current->blocked.sig[0];

if (nset) {
if (get_user(new_set, nset))
return -EFAULT;
new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));

new_blocked = current->blocked;

switch (how) {
case SIG_BLOCK:
sigaddsetmask(&new_blocked, new_set);
break;
case SIG_UNBLOCK:
sigdelsetmask(&new_blocked, new_set);
break;
case SIG_SETMASK:
compat_sig_setmask(&new_blocked, new_set);
break;
default:
return -EINVAL;
}

set_current_blocked(&new_blocked);
}

if (oset) {
if (put_user(old_set, oset))
return -EFAULT;
}

return 0;
}

#endif
Expand Down

0 comments on commit d96e86c

Please sign in to comment.