mips64: fix clobbering s0 in setjmp() [BZ #22624]
commit368b6c8da9f8ae453f5d70f8a62dbf3f1b6d5995
authorSergei Trofimovich <slyfox@gentoo.org>
Mon, 18 Dec 2017 17:23:02 +0000 (18 17:23 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 18 Dec 2017 17:23:02 +0000 (18 17:23 +0000)
tree906e5f509e6c322750bbec6942fbfeac6ac09e3d
parentc8e939f12a4fce3bb09a8c4818629ccf76c8658c
mips64: fix clobbering s0 in setjmp() [BZ #22624]

When configured as --enable-stack-protector=all glibc
inserts stack checking canary into every function
including __sigsetjmp_aux(). Stack checking code
ends up using s0 register to temporary hold address
of global canary value.

Unfortunately __sigsetjmp_aux assumes no caller' caller-save
registers should be clobbered as it stores them as-is.

The fix is to disable stack protection of __sigsetjmp_aux.

Tested on the following test:

    #include <setjmp.h>
    #include <stdio.h>

    int main() {
        jmp_buf jb;
        volatile register long s0 asm ("$s0");
        s0 = 1234;
        if (setjmp(jb) == 0)
            longjmp(jb, 1);
        printf ("$s0 = %lu\n", s0);
    }

Without the fix:
    $ qemu-mipsn32 -L . ./mips-longjmp-bug
    $s0 = 1082346228

With the fix:
    $ qemu-mipsn32 -L . ./mips-longjmp-bug
    $s0 = 1234

[BZ #22624]
* sysdeps/mips/mips64/setjmp_aux.c (__sigsetjmp_aux): Use
inhibit_stack_protector.
ChangeLog
sysdeps/mips/mips64/setjmp_aux.c