use explicit __cp_cancel label in cancellable syscall asm for all archs
authorRich Felker <dalias@aerifal.cx>
Mon, 2 Nov 2015 21:16:00 +0000 (16:16 -0500)
committerRich Felker <dalias@aerifal.cx>
Mon, 2 Nov 2015 21:16:00 +0000 (16:16 -0500)
previously, only archs that needed to do stack cleanup defined a
__cp_cancel label for acting on cancellation in their syscall asm, and
a default definition was provided by a weak alias to __cancel, the C
function. this resulted in wrong codegen for arm on gcc versions
affected by pr 68178 and possibly similar issues (like pr 66609) on
other archs, and also created an inconsistency where the __cp_begin
and __cp_end labels were treated as const data but __cp_cancel was
treated as a function. this in turn caused incorrect code generation
on archs where function pointers point to function descriptors rather
than code (for now, only sh/fdpic).

src/thread/aarch64/syscall_cp.s
src/thread/microblaze/syscall_cp.s
src/thread/or1k/syscall_cp.s
src/thread/powerpc/syscall_cp.s
src/thread/pthread_cancel.c
src/thread/sh/syscall_cp.s
src/thread/x32/syscall_cp.s
src/thread/x86_64/syscall_cp.s

index 30e677ce522fe48949f08e423800988f2b8434d8..41db68af9588a02f524fdd971ccb1737e5031a68 100644 (file)
@@ -17,7 +17,7 @@
 __syscall_cp_asm:
 __cp_begin:
        ldr w0,[x0]
-       cbnz w0,1f
+       cbnz w0,__cp_cancel
        mov x8,x1
        mov x0,x2
        mov x1,x3
@@ -28,6 +28,5 @@ __cp_begin:
        svc 0
 __cp_end:
        ret
-
-       // cbnz might not be able to jump far enough
-1:     b __cancel
+__cp_cancel:
+       b __cancel
index 51599c912ac0a0e7fbf9e1840077aa69286d7839..b0df61c571eea25bf99fefd3bf0bc77451983a99 100644 (file)
@@ -11,7 +11,7 @@
 __syscall_cp_asm:
 __cp_begin:
        lwi     r5, r5, 0
-       bnei    r5, __cancel
+       bnei    r5, __cp_cancel
        addi    r12, r6, 0
        add     r5, r7, r0
        add     r6, r8, r0
@@ -23,3 +23,5 @@ __cp_begin:
 __cp_end:
        rtsd    r15, 8
        nop
+__cp_cancel:
+       bri     __cancel
index 2c0bf0e8ff8f2e10ee1e98fe328d90521458898f..7951166ed93d085b7125f26496a869813b05493f 100644 (file)
@@ -12,7 +12,7 @@ __syscall_cp_asm:
 __cp_begin:
        l.lwz   r3, 0(r3)
        l.sfeqi r3, 0
-       l.bnf   __cancel
+       l.bnf   __cp_cancel
         l.ori  r11, r4, 0
        l.ori   r3, r5, 0
        l.ori   r4, r6, 0
@@ -24,3 +24,6 @@ __cp_begin:
 __cp_end:
        l.jr    r9
         l.nop
+__cp_cancel:
+       l.j     __cancel
+        l.nop
index 20b5e0acc29d7804e9a174bff5d79dbc69e15709..77f8938dc8b7cbf3ad8ad9c283d0231e86c90b02 100644 (file)
@@ -38,7 +38,7 @@ __cp_begin:
        cmpwi cr7, 0, 0 #compare r0 with 0, store result in cr7. 
        beq+ cr7, 1f #jump to label 1 if r0 was 0
        
-       b __cancel #else call cancel 
+       b __cp_cancel #else call cancel
 1:
        #ok, the cancel flag was not set
        # syscall: number goes to r0, the rest 3-8
@@ -55,3 +55,5 @@ __cp_end:
        #else negate result.
        neg 3, 3
        blr
+__cp_cancel:
+       b __cancel
index 6eaf72c45c90e82b9e4bbe5bc2314111d39bc977..c4631f0817ac8049fef58605219098634c931173 100644 (file)
@@ -7,7 +7,7 @@
 #ifdef SHARED
 __attribute__((__visibility__("hidden")))
 #endif
-long __cancel(), __cp_cancel(), __syscall_cp_asm(), __syscall_cp_c();
+long __cancel(), __syscall_cp_asm(), __syscall_cp_c();
 
 long __cancel()
 {
@@ -18,12 +18,6 @@ long __cancel()
        return -ECANCELED;
 }
 
-/* If __syscall_cp_asm has adjusted the stack pointer, it must provide a
- * definition of __cp_cancel to undo those adjustments and call __cancel.
- * Otherwise, __cancel provides a definition for __cp_cancel. */
-
-weak_alias(__cancel, __cp_cancel);
-
 long __syscall_cp_asm(volatile void *, syscall_arg_t,
                       syscall_arg_t, syscall_arg_t, syscall_arg_t,
                       syscall_arg_t, syscall_arg_t, syscall_arg_t);
@@ -56,7 +50,7 @@ static void _sigaddset(sigset_t *set, int sig)
 #ifdef SHARED
 __attribute__((__visibility__("hidden")))
 #endif
-extern const char __cp_begin[1], __cp_end[1];
+extern const char __cp_begin[1], __cp_end[1], __cp_cancel[1];
 
 static void cancel_handler(int sig, siginfo_t *si, void *ctx)
 {
index c3caface8f83ce8f49a777ef65921dd52c626c93..bb848ef3b671429b101c247cf28d898b58cd66eb 100644 (file)
@@ -14,17 +14,8 @@ __syscall_cp_asm:
 __cp_begin:
        mov.l @r4, r4
        tst   r4, r4
-       bt    2f
-
-       mov.l L1, r0
-       braf  r0
-        nop
-1:
-
-.align 2
-L1:    .long __cancel@PLT-(1b-.)
-
-2:     mov   r5, r3
+       bf    __cp_cancel
+       mov   r5, r3
        mov   r6, r4
        mov   r7, r5
        mov.l @r15, r6
@@ -43,3 +34,12 @@ __cp_end:
 
        rts
         nop
+
+__cp_cancel:
+       mov.l 2f, r0
+       braf  r0
+        nop
+1:
+
+.align 2
+2:     .long __cancel@PCREL-(1b-.)
index 79709a550a2b36f2e7741eb377a0d401b72fd70e..9805af0ae98996a7d2d6d9c7680c140689d82068 100644 (file)
@@ -14,7 +14,7 @@ __syscall_cp_internal:
 __cp_begin:
        mov (%rdi),%eax
        test %eax,%eax
-       jnz __cancel
+       jnz __cp_cancel
        mov %rdi,%r11
        mov %rsi,%rax
        mov %rdx,%rdi
@@ -27,3 +27,5 @@ __cp_begin:
        syscall
 __cp_end:
        ret
+__cp_cancel:
+       jmp __cancel
index 1a0fd5d20c7665bd431183718dce6d5ba0db4998..4f101716d4ee0cd50461f45a0da6b2edb2be3d4c 100644 (file)
@@ -14,7 +14,7 @@ __syscall_cp_asm:
 __cp_begin:
        mov (%rdi),%eax
        test %eax,%eax
-       jnz __cancel
+       jnz __cp_cancel
        mov %rdi,%r11
        mov %rsi,%rax
        mov %rdx,%rdi
@@ -27,3 +27,5 @@ __cp_begin:
        syscall
 __cp_end:
        ret
+__cp_cancel:
+       jmp __cancel