aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/signal32.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-12-25 18:55:27 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2013-02-03 18:33:00 -0500
commitaa584802e51fa3f28cc6efb1863fe9a3d197c9c8 (patch)
tree0ec61437be3758db9987cf73191ebcc75bcda232 /arch/mips/kernel/signal32.c
parent0450d22f4b0c6ab88d2249a71f304326af5cc36c (diff)
mips: switch to generic compat rt_sigaction()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips/kernel/signal32.c')
-rw-r--r--arch/mips/kernel/signal32.c54
1 files changed, 2 insertions, 52 deletions
diff --git a/arch/mips/kernel/signal32.c b/arch/mips/kernel/signal32.c
index 0b1f57111eae..ad7c2be0c33d 100644
--- a/arch/mips/kernel/signal32.c
+++ b/arch/mips/kernel/signal32.c
@@ -55,12 +55,6 @@ extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 __user
55typedef unsigned int __sighandler32_t; 55typedef unsigned int __sighandler32_t;
56typedef void (*vfptr_t)(void); 56typedef void (*vfptr_t)(void);
57 57
58struct sigaction32 {
59 unsigned int sa_flags;
60 __sighandler32_t sa_handler;
61 compat_sigset_t sa_mask;
62};
63
64struct ucontext32 { 58struct ucontext32 {
65 u32 uc_flags; 59 u32 uc_flags;
66 s32 uc_link; 60 s32 uc_link;
@@ -278,8 +272,8 @@ asmlinkage int sys32_sigsuspend(compat_sigset_t __user *uset)
278 return compat_sys_rt_sigsuspend(uset, sizeof(compat_sigset_t)); 272 return compat_sys_rt_sigsuspend(uset, sizeof(compat_sigset_t));
279} 273}
280 274
281SYSCALL_DEFINE3(32_sigaction, long, sig, const struct sigaction32 __user *, act, 275SYSCALL_DEFINE3(32_sigaction, long, sig, const struct compat_sigaction __user *, act,
282 struct sigaction32 __user *, oact) 276 struct compat_sigaction __user *, oact)
283{ 277{
284 struct k_sigaction new_ka, old_ka; 278 struct k_sigaction new_ka, old_ka;
285 int ret; 279 int ret;
@@ -564,50 +558,6 @@ struct mips_abi mips_abi_32 = {
564 .restart = __NR_O32_restart_syscall 558 .restart = __NR_O32_restart_syscall
565}; 559};
566 560
567SYSCALL_DEFINE4(32_rt_sigaction, int, sig,
568 const struct sigaction32 __user *, act,
569 struct sigaction32 __user *, oact, unsigned int, sigsetsize)
570{
571 struct k_sigaction new_sa, old_sa;
572 int ret = -EINVAL;
573
574 /* XXX: Don't preclude handling different sized sigset_t's. */
575 if (sigsetsize != sizeof(sigset_t))
576 goto out;
577
578 if (act) {
579 s32 handler;
580 int err = 0;
581
582 if (!access_ok(VERIFY_READ, act, sizeof(*act)))
583 return -EFAULT;
584 err |= __get_user(handler, &act->sa_handler);
585 new_sa.sa.sa_handler = (void __user *)(s64)handler;
586 err |= __get_user(new_sa.sa.sa_flags, &act->sa_flags);
587 err |= get_sigset(&new_sa.sa.sa_mask, &act->sa_mask);
588 if (err)
589 return -EFAULT;
590 }
591
592 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
593
594 if (!ret && oact) {
595 int err = 0;
596
597 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)))
598 return -EFAULT;
599
600 err |= __put_user((u32)(u64)old_sa.sa.sa_handler,
601 &oact->sa_handler);
602 err |= __put_user(old_sa.sa.sa_flags, &oact->sa_flags);
603 err |= put_sigset(&old_sa.sa.sa_mask, &oact->sa_mask);
604 if (err)
605 return -EFAULT;
606 }
607out:
608 return ret;
609}
610
611static int signal32_init(void) 561static int signal32_init(void)
612{ 562{
613 if (cpu_has_fpu) { 563 if (cpu_has_fpu) {