]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
sparc: fix compat siginfo ABI regression
authorDmitry V. Levin <ldv@altlinux.org>
Fri, 13 Apr 2018 14:19:02 +0000 (17:19 +0300)
committerEric W. Biederman <ebiederm@xmission.com>
Thu, 19 Apr 2018 21:39:39 +0000 (16:39 -0500)
Starting with commit v4.14-rc1~60^2^2~1, a SIGFPE signal sent via kill
results to wrong values in si_pid and si_uid fields of compat siginfo_t.

This happens due to FPE_FIXME being defined to 0 for sparc, and at the
same time siginfo_layout() introduced by the same commit returns
SIL_FAULT for SIGFPE if si_code == SI_USER and FPE_FIXME is defined to 0.

Fix this regression by removing FPE_FIXME macro and changing all its users
to assign FPE_FLTUNK to si_code instead of FPE_FIXME.

Note that FPE_FLTUNK is a new macro introduced by commit
266da65e9156d93e1126e185259a4aae68188d0e.

Tested with commit v4.16-11958-g16e205cf42da.

This bug was found by strace test suite.

In the discussion about FPE_FLTUNK on sparc David Miller said:
> Eric, feel free to do something similar on Sparc.

Link: https://github.com/strace/strace/issues/21
Fixes: cc731525f26a ("signal: Remove kernel interal si_code magic")
Fixes: 2.3.41
Cc: David Miller <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Conceptually-Acked-By: David Miller <davem@davemloft.net>
Thanks-to: Anatoly Pugachev <matorola@gmail.com>
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
arch/sparc/include/uapi/asm/siginfo.h
arch/sparc/kernel/traps_32.c
arch/sparc/kernel/traps_64.c

index 896ce447d16af39e554583cf02048ee7ac3b2cde..e7049550ac823ab5c0ba17a47426dd3f312e0ed6 100644 (file)
 
 #define SI_NOINFO      32767           /* no information in siginfo_t */
 
-/*
- * SIGFPE si_codes
- */
-#ifdef __KERNEL__
-#define FPE_FIXME      0       /* Broken dup of SI_USER */
-#endif /* __KERNEL__ */
-
 /*
  * SIGEMT si_codes
  */
index b1ed763e4787784a79353650c6b25af329ebfba1..33cd35bf3dc8b6ce8148e5bd3f2fdb8c7b15b721 100644 (file)
@@ -307,7 +307,7 @@ void do_fpe_trap(struct pt_regs *regs, unsigned long pc, unsigned long npc,
        info.si_errno = 0;
        info.si_addr = (void __user *)pc;
        info.si_trapno = 0;
-       info.si_code = FPE_FIXME;
+       info.si_code = FPE_FLTUNK;
        if ((fsr & 0x1c000) == (1 << 14)) {
                if (fsr & 0x10)
                        info.si_code = FPE_FLTINV;
index 462a21abd1054c828ce452d0f1c2d3b62a6f14a2..e81072ac52c376743af12c50ce23c8c8d5e54c3b 100644 (file)
@@ -2372,7 +2372,7 @@ static void do_fpe_common(struct pt_regs *regs)
                info.si_errno = 0;
                info.si_addr = (void __user *)regs->tpc;
                info.si_trapno = 0;
-               info.si_code = FPE_FIXME;
+               info.si_code = FPE_FLTUNK;
                if ((fsr & 0x1c000) == (1 << 14)) {
                        if (fsr & 0x10)
                                info.si_code = FPE_FLTINV;