x86-64: Disallow PC reloc against weak undefined symbols in PIE
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 8 Jul 2021 20:49:17 +0000 (13:49 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 8 Jul 2021 20:57:52 +0000 (13:57 -0700)
Disallow PC relocations against weak undefined symbols in PIE since they
can lead to non-zero address at run-time.

bfd/

PR ld/21782
* elf64-x86-64.c (elf_x86_64_relocate_section): Disallow PC
relocations against weak undefined symbols in PIE.

ld/

PR ld/21782
* testsuite/ld-x86-64/pie3.d: Expect linker error.

bfd/elf64-x86-64.c
ld/testsuite/ld-x86-64/pie3.d

index 4c55c5999c395da919cdfcd0dc9659d48b4d8ce4..8deb62dba5c7736fddad146708de042891d5520d 100644 (file)
@@ -3161,6 +3161,8 @@ elf_x86_64_relocate_section (bfd *output_bfd,
                       || (no_copyreloc_p
                           && h->def_dynamic
                           && !(h->root.u.def.section->flags & SEC_CODE))))
+                 || (bfd_link_pie (info)
+                     && h->root.type == bfd_link_hash_undefweak)
                  || bfd_link_dll (info)))
            {
              bool fail = false;
@@ -3174,8 +3176,9 @@ elf_x86_64_relocate_section (bfd *output_bfd,
                {
                  /* We can only use PC-relative relocations in PIE
                     from non-code sections.  */
-                 if (h->type == STT_FUNC
-                     && (sec->flags & SEC_CODE) != 0)
+                 if (h->root.type == bfd_link_hash_undefweak
+                     || (h->type == STT_FUNC
+                         && (sec->flags & SEC_CODE) != 0))
                    fail = true;
                }
              else if (no_copyreloc_p || bfd_link_dll (info))
index b943837bf6424699b3d6d560545a3ca1b856a6fe..a20029c63ba5365c681132d0f113d1fc72c23aac 100644 (file)
@@ -1,12 +1,3 @@
 #as: --64
 #ld: -pie -melf_x86_64 --hash-style=sysv -z max-page-size=0x200000 -z noseparate-code
-#objdump: -dw
-
-.*: +file format .*
-
-
-Disassembly of section .text:
-
-0+191 <_start>:
- +191: 48 8d 05 68 fe ff ff    lea    -0x198\(%rip\),%rax        # 0 <_start-0x191>
-#pass
+#error: .*relocation R_X86_64_PC32 against undefined symbol `foo' can not be used when making a PIE object; recompile with -fPIE