]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
arm: Guard ucontext _rtld_global_ro access by SHARED, not PIC macro
authorFlorian Weimer <fweimer@redhat.com>
Fri, 17 Dec 2021 10:48:41 +0000 (11:48 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Fri, 17 Dec 2021 10:48:44 +0000 (11:48 +0100)
Due to PIE-by-default, PIC is now defined in more cases.  libc.a
does not have _rtld_global_ro, and statically linking setcontext
fails.  SHARED is the right condition to use, so that libc.a
references _dl_hwcap instead of _rtld_global_ro.

For static PIE support, the !SHARED case would still have to be made
PIC.  This patch does not achieve that.

Fixes commit 23645707f12f2dd9d80b51effb2d9618a7b65565
("Replace --enable-static-pie with --disable-default-pie").

Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
sysdeps/unix/sysv/linux/arm/getcontext.S
sysdeps/unix/sysv/linux/arm/setcontext.S

index 3aa581c4da6d1166a69c1f7ac24d59eea03279ae..11bfcbe5f53afc6e1c61a648dc103e98f528588b 100644 (file)
@@ -50,7 +50,7 @@ ENTRY(__getcontext)
 
        /* Store FP regs.  Much of the FP code is copied from arm/setjmp.S.  */
 
-#ifdef PIC
+#ifdef SHARED
        ldr     r2, 1f
        ldr     r1, .Lrtld_global_ro
 0:      add     r2, pc, r2
@@ -102,7 +102,7 @@ ENTRY(__getcontext)
 
 END(__getcontext)
 
-#ifdef PIC
+#ifdef SHARED
 1:      .long   _GLOBAL_OFFSET_TABLE_ - 0b - PC_OFS
 .Lrtld_global_ro:
        .long   C_SYMBOL_NAME(_rtld_global_ro)(GOT)
index 8be8beefea13883e26320e856483f83341cb0573..4c7c6e550944138c6c6a73dcc68a121ba9442800 100644 (file)
@@ -32,7 +32,7 @@ ENTRY(__setcontext)
        add     r0, r0, #UCONTEXT_REGSPACE
 
        /* Restore the VFP registers.  Copied from arm/__longjmp.S.  */
-#ifdef PIC
+#ifdef SHARED
        ldr     r2, 1f
        ldr     r1, .Lrtld_global_ro
 0:      add     r2, pc, r2
@@ -101,7 +101,7 @@ ENTRY(__startcontext)
        .fnend
 END(__startcontext)
 
-#ifdef PIC
+#ifdef SHARED
 1:      .long   _GLOBAL_OFFSET_TABLE_ - 0b - PC_OFS
 .Lrtld_global_ro:
        .long   C_SYMBOL_NAME(_rtld_global_ro)(GOT)