Sergei Trofimovich 368b6c8da9 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.
2017-12-18 17:23:02 +00:00
..
2017-12-06 18:55:09 -02:00
2017-12-12 23:35:21 +00:00
2017-12-12 16:57:41 -02:00
2017-12-16 14:01:37 +05:30
2017-12-12 23:35:21 +00:00
2017-12-12 23:35:21 +00:00
2017-12-12 23:35:21 +00:00
2017-12-16 14:04:14 +05:30
2017-12-16 14:11:56 +05:30
2017-12-12 23:35:21 +00:00
2017-12-12 23:35:21 +00:00
2017-11-27 14:16:47 +00:00