IBM zSystems: Fix offset relative to static TLS
authorStefan Schulze Frielinghaus <stefansf@linux.ibm.com>
Tue, 10 Jan 2023 13:51:47 +0000 (14:51 +0100)
committerStefan Schulze Frielinghaus <stefansf@linux.ibm.com>
Tue, 10 Jan 2023 13:51:47 +0000 (14:51 +0100)
For local exec TLS relocations of the form foo@NTPOFF+x the addend was
ignored.

bfd/ChangeLog:

* elf32-s390.c (elf_s390_relocate_section): Honor addend for
R_390_TLS_LE32.
* elf64-s390.c (elf_s390_relocate_section): Honor addend for
R_390_TLS_LE64.

ld/ChangeLog:

* testsuite/ld-s390/reloctlsle-1.d: New test.
* testsuite/ld-s390/reloctlsle-1.s: New test.

(cherry picked from commit aefebe82dc89711384b85329daa48d04c1d3a45b)

bfd/elf32-s390.c
bfd/elf64-s390.c
ld/testsuite/ld-s390/reloctlsle-1.d [new file with mode: 0644]
ld/testsuite/ld-s390/reloctlsle-1.s [new file with mode: 0644]

index 061307d..9496b14 100644 (file)
@@ -2706,7 +2706,7 @@ elf_s390_relocate_section (bfd *output_bfd,
              /* This relocation gets optimized away by the local exec
                 access optimization.  */
              BFD_ASSERT (! unresolved_reloc);
-             bfd_put_32 (output_bfd, -tpoff (info, relocation),
+             bfd_put_32 (output_bfd, -tpoff (info, relocation) + rel->r_addend,
                          contents + rel->r_offset);
              continue;
            }
@@ -2901,7 +2901,7 @@ elf_s390_relocate_section (bfd *output_bfd,
          else
            {
              BFD_ASSERT (! unresolved_reloc);
-             bfd_put_32 (output_bfd, -tpoff (info, relocation),
+             bfd_put_32 (output_bfd, -tpoff (info, relocation) + rel->r_addend,
                          contents + rel->r_offset);
            }
          continue;
index 5279660..bcf5903 100644 (file)
@@ -2714,7 +2714,7 @@ elf_s390_relocate_section (bfd *output_bfd,
              /* This relocation gets optimized away by the local exec
                 access optimization.  */
              BFD_ASSERT (! unresolved_reloc);
-             bfd_put_64 (output_bfd, -tpoff (info, relocation),
+             bfd_put_64 (output_bfd, -tpoff (info, relocation) + rel->r_addend,
                          contents + rel->r_offset);
              continue;
            }
@@ -2907,7 +2907,7 @@ elf_s390_relocate_section (bfd *output_bfd,
          else
            {
              BFD_ASSERT (! unresolved_reloc);
-             bfd_put_64 (output_bfd, -tpoff (info, relocation),
+             bfd_put_64 (output_bfd, -tpoff (info, relocation) + rel->r_addend,
                          contents + rel->r_offset);
            }
          continue;
diff --git a/ld/testsuite/ld-s390/reloctlsle-1.d b/ld/testsuite/ld-s390/reloctlsle-1.d
new file mode 100644 (file)
index 0000000..a24c3d6
--- /dev/null
@@ -0,0 +1,6 @@
+#as: -m64 -mzarch -march=z900
+#ld: -m elf64_s390 -static
+#readelf: -x .data
+
+Hex dump of section '.data':
+  0x[0-9a-f]+ ffffffff fffffff0 ffffffff fffffff8 ................
diff --git a/ld/testsuite/ld-s390/reloctlsle-1.s b/ld/testsuite/ld-s390/reloctlsle-1.s
new file mode 100644 (file)
index 0000000..c8f351d
--- /dev/null
@@ -0,0 +1,14 @@
+       .text
+       .globl  _start
+_start:
+       larl    %r0,bar
+
+       .section .tbss,"awT",@nobits
+       .align  8
+foo:   .zero   8
+       .zero   8
+
+       .data
+       .align  8
+       .quad   foo@NTPOFF
+bar:   .quad   foo@NTPOFF+8