parent
803efc2501
commit
3ce2e142bc
@ -137,3 +137,278 @@ diff -rupN binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-exe-eliminate.s binu
|
||||
+ .size p, 8
|
||||
+p:
|
||||
+ .xword global_a
|
||||
diff -rupN binutils.orig/bfd/elfnn-aarch64.c binutils-2.28/bfd/elfnn-aarch64.c
|
||||
--- binutils.orig/bfd/elfnn-aarch64.c 2017-06-15 15:12:31.038471300 +0100
|
||||
+++ binutils-2.28/bfd/elfnn-aarch64.c 2017-06-15 15:12:52.797218241 +0100
|
||||
@@ -6812,15 +6812,22 @@ elfNN_aarch64_gc_sweep_hook (bfd *abfd,
|
||||
h->plt.refcount -= 1;
|
||||
break;
|
||||
|
||||
+ case BFD_RELOC_AARCH64_ADD_LO12:
|
||||
case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
|
||||
case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
|
||||
case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_LDST128_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST16_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST32_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST64_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST8_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LD_LO19_PCREL:
|
||||
case BFD_RELOC_AARCH64_MOVW_G0_NC:
|
||||
case BFD_RELOC_AARCH64_MOVW_G1_NC:
|
||||
case BFD_RELOC_AARCH64_MOVW_G2_NC:
|
||||
case BFD_RELOC_AARCH64_MOVW_G3:
|
||||
case BFD_RELOC_AARCH64_NN:
|
||||
- if (h != NULL && bfd_link_executable (info))
|
||||
+ if (h != NULL && !bfd_link_pic (info))
|
||||
{
|
||||
if (h->plt.refcount > 0)
|
||||
h->plt.refcount -= 1;
|
||||
@@ -6835,18 +6842,24 @@ elfNN_aarch64_gc_sweep_hook (bfd *abfd,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
-/* Return true if we have dynamic relocs against EH or any of its weak
|
||||
- aliases, that apply to read-only sections. */
|
||||
+/* Return true if we need copy relocation against EH. */
|
||||
|
||||
static bfd_boolean
|
||||
-alias_readonly_dynrelocs (struct elf_aarch64_link_hash_entry *eh)
|
||||
+need_copy_relocation_p (struct elf_aarch64_link_hash_entry *eh)
|
||||
{
|
||||
struct elf_dyn_relocs *p;
|
||||
asection *s;
|
||||
|
||||
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
||||
{
|
||||
+ /* If there is any pc-relative reference, we need to keep copy relocation
|
||||
+ to avoid propagating the relocation into runtime that current glibc
|
||||
+ does not support. */
|
||||
+ if (p->pc_count)
|
||||
+ return TRUE;
|
||||
+
|
||||
s = p->sec->output_section;
|
||||
+ /* Need copy relocation if it's against read-only section. */
|
||||
if (s != NULL && (s->flags & SEC_READONLY) != 0)
|
||||
return TRUE;
|
||||
}
|
||||
@@ -6933,7 +6946,7 @@ elfNN_aarch64_adjust_dynamic_symbol (str
|
||||
/* If we didn't find any dynamic relocs in read-only sections, then
|
||||
we'll be keeping the dynamic relocs and avoiding the copy reloc. */
|
||||
eh = (struct elf_aarch64_link_hash_entry *) h;
|
||||
- if (eh->dyn_relocs && !alias_readonly_dynrelocs (eh))
|
||||
+ if (!need_copy_relocation_p (eh))
|
||||
{
|
||||
h->non_got_ref = 0;
|
||||
return TRUE;
|
||||
@@ -7194,6 +7207,41 @@ elfNN_aarch64_check_relocs (bfd *abfd, s
|
||||
|
||||
switch (bfd_r_type)
|
||||
{
|
||||
+ case BFD_RELOC_AARCH64_MOVW_G0_NC:
|
||||
+ case BFD_RELOC_AARCH64_MOVW_G1_NC:
|
||||
+ case BFD_RELOC_AARCH64_MOVW_G2_NC:
|
||||
+ case BFD_RELOC_AARCH64_MOVW_G3:
|
||||
+ if (bfd_link_pic (info))
|
||||
+ {
|
||||
+ int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
|
||||
+ _bfd_error_handler
|
||||
+ /* xgettext:c-format */
|
||||
+ (_("%B: relocation %s against `%s' can not be used when making "
|
||||
+ "a shared object; recompile with -fPIC"),
|
||||
+ abfd, elfNN_aarch64_howto_table[howto_index].name,
|
||||
+ (h) ? h->root.root.string : "a local symbol");
|
||||
+ bfd_set_error (bfd_error_bad_value);
|
||||
+ return FALSE;
|
||||
+ }
|
||||
+ /* Fall through. */
|
||||
+
|
||||
+ case BFD_RELOC_AARCH64_16_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_32_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_64_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_ADD_LO12:
|
||||
+ case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
|
||||
+ case BFD_RELOC_AARCH64_LDST128_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST16_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST32_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST64_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LDST8_LO12:
|
||||
+ case BFD_RELOC_AARCH64_LD_LO19_PCREL:
|
||||
+ if (h == NULL || bfd_link_pic (info))
|
||||
+ break;
|
||||
+ /* Fall through. */
|
||||
+
|
||||
case BFD_RELOC_AARCH64_NN:
|
||||
|
||||
/* We don't need to handle relocs into sections not going into
|
||||
@@ -7216,7 +7264,17 @@ elfNN_aarch64_check_relocs (bfd *abfd, s
|
||||
/* If on the other hand, we are creating an executable, we
|
||||
may need to keep relocations for symbols satisfied by a
|
||||
dynamic library if we manage to avoid copy relocs for the
|
||||
- symbol. */
|
||||
+ symbol.
|
||||
+
|
||||
+ NOTE: Currently, there is no support of copy relocs
|
||||
+ elimination on pc-relative relocation types, because there is
|
||||
+ no dynamic relocation support for them in glibc. We still
|
||||
+ record the dynamic symbol reference for them. This is
|
||||
+ because one symbol may be referenced by both absolute
|
||||
+ relocation (for example, BFD_RELOC_AARCH64_NN) and
|
||||
+ pc-relative relocation. We need full symbol reference
|
||||
+ information to make correct decision later in
|
||||
+ elfNN_aarch64_adjust_dynamic_symbol. */
|
||||
|| (ELIMINATE_COPY_RELOCS
|
||||
&& !bfd_link_pic (info)
|
||||
&& h != NULL
|
||||
@@ -7227,6 +7285,7 @@ elfNN_aarch64_check_relocs (bfd *abfd, s
|
||||
{
|
||||
struct elf_dyn_relocs *p;
|
||||
struct elf_dyn_relocs **head;
|
||||
+ int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
|
||||
|
||||
/* We must copy these reloc types into the output file.
|
||||
Create a reloc section in dynobj and make room for
|
||||
@@ -7290,6 +7349,8 @@ elfNN_aarch64_check_relocs (bfd *abfd, s
|
||||
|
||||
p->count += 1;
|
||||
|
||||
+ if (elfNN_aarch64_howto_table[howto_index].pc_relative)
|
||||
+ p->pc_count += 1;
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -7393,44 +7454,6 @@ elfNN_aarch64_check_relocs (bfd *abfd, s
|
||||
break;
|
||||
}
|
||||
|
||||
- case BFD_RELOC_AARCH64_MOVW_G0_NC:
|
||||
- case BFD_RELOC_AARCH64_MOVW_G1_NC:
|
||||
- case BFD_RELOC_AARCH64_MOVW_G2_NC:
|
||||
- case BFD_RELOC_AARCH64_MOVW_G3:
|
||||
- if (bfd_link_pic (info))
|
||||
- {
|
||||
- int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
|
||||
- _bfd_error_handler
|
||||
- /* xgettext:c-format */
|
||||
- (_("%B: relocation %s against `%s' can not be used when making "
|
||||
- "a shared object; recompile with -fPIC"),
|
||||
- abfd, elfNN_aarch64_howto_table[howto_index].name,
|
||||
- (h) ? h->root.root.string : "a local symbol");
|
||||
- bfd_set_error (bfd_error_bad_value);
|
||||
- return FALSE;
|
||||
- }
|
||||
- /* Fall through. */
|
||||
-
|
||||
- case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
|
||||
- case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
|
||||
- case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
|
||||
- if (h != NULL && bfd_link_executable (info))
|
||||
- {
|
||||
- /* If this reloc is in a read-only section, we might
|
||||
- need a copy reloc. We can't check reliably at this
|
||||
- stage whether the section is read-only, as input
|
||||
- sections have not yet been mapped to output sections.
|
||||
- Tentatively set the flag for now, and correct in
|
||||
- adjust_dynamic_symbol. */
|
||||
- h->non_got_ref = 1;
|
||||
- h->plt.refcount += 1;
|
||||
- h->pointer_equality_needed = 1;
|
||||
- }
|
||||
- /* FIXME:: RR need to handle these in shared libraries
|
||||
- and essentially bomb out as these being non-PIC
|
||||
- relocations in shared libraries. */
|
||||
- break;
|
||||
-
|
||||
case BFD_RELOC_AARCH64_CALL26:
|
||||
case BFD_RELOC_AARCH64_JUMP26:
|
||||
/* If this is a local symbol then we resolve it
|
||||
diff -rupN binutils.orig/ld/testsuite/ld-aarch64/aarch64-elf.exp binutils-2.28/ld/testsuite/ld-aarch64/aarch64-elf.exp
|
||||
--- binutils.orig/ld/testsuite/ld-aarch64/aarch64-elf.exp 2017-06-15 15:12:31.263468684 +0100
|
||||
+++ binutils-2.28/ld/testsuite/ld-aarch64/aarch64-elf.exp 2017-06-15 15:12:52.797218241 +0100
|
||||
@@ -323,6 +323,8 @@ set aarch64elflinktests {
|
||||
{} "copy-reloc-so.so"}
|
||||
{"ld-aarch64/exe with copy relocation" "-e0 tmpdir/copy-reloc-so.so" "" ""
|
||||
{copy-reloc-exe.s} {{objdump -R copy-reloc.d}} "copy-reloc"}
|
||||
+ {"ld-aarch64/exe with copy relocation 2" "-e0 tmpdir/copy-reloc-so.so" "" ""
|
||||
+ {copy-reloc-exe-2.s} {{objdump -R copy-reloc-2.d}} "copy-reloc-2"}
|
||||
{"ld-aarch64/exe with copy relocation elimination" "-e0 tmpdir/copy-reloc-so.so" "" ""
|
||||
{copy-reloc-exe-eliminate.s} {{objdump -R copy-reloc-eliminate.d}} "copy-reloc-elimination"}
|
||||
}
|
||||
diff -rupN binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-2.d binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-2.d
|
||||
--- binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-2.d 1970-01-01 01:00:00.000000000 +0100
|
||||
+++ binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-2.d 2017-06-15 15:12:52.797218241 +0100
|
||||
@@ -0,0 +1,7 @@
|
||||
+.*
|
||||
+DYNAMIC RELOCATION RECORDS
|
||||
+OFFSET.*TYPE.*VALUE.*
|
||||
+.*R_AARCH64_COPY.*global_[abcd]
|
||||
+.*R_AARCH64_COPY.*global_[abcd]
|
||||
+.*R_AARCH64_COPY.*global_[abcd]
|
||||
+.*R_AARCH64_COPY.*global_[abcd]
|
||||
diff -rupN binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-exe-2.s binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-exe-2.s
|
||||
--- binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-exe-2.s 1970-01-01 01:00:00.000000000 +0100
|
||||
+++ binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-exe-2.s 2017-06-15 15:12:52.797218241 +0100
|
||||
@@ -0,0 +1,32 @@
|
||||
+ # expect copy relocation for all these scenarios.
|
||||
+ .global p
|
||||
+ .global q
|
||||
+ .global r
|
||||
+ .section .data.rel.ro,"aw",%progbits
|
||||
+ .align 3
|
||||
+ .type p, %object
|
||||
+ .size p, 8
|
||||
+p:
|
||||
+ .xword global_a
|
||||
+
|
||||
+ .type q, %object
|
||||
+ .size q, 8
|
||||
+q:
|
||||
+ .xword global_b
|
||||
+
|
||||
+ .type r, %object
|
||||
+ .size r, 8
|
||||
+r:
|
||||
+ # Any pc-rel relocation as no dynamic linker support on AArch64.
|
||||
+ .xword global_c - .
|
||||
+
|
||||
+ .text
|
||||
+ .global main
|
||||
+main:
|
||||
+ # Symbols are referenced by any other relocation against read-only
|
||||
+ # section.
|
||||
+ movz x0, :abs_g0_nc:global_a
|
||||
+ adrp x1, global_b
|
||||
+ # pc-rel.
|
||||
+ adrp x2, global_d
|
||||
+ add x2, x2, #:lo12:global_c
|
||||
diff -rupN binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-so.s binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-so.s
|
||||
--- binutils.orig/ld/testsuite/ld-aarch64/copy-reloc-so.s 2017-06-15 15:12:31.263468684 +0100
|
||||
+++ binutils-2.28/ld/testsuite/ld-aarch64/copy-reloc-so.s 2017-06-15 15:12:52.797218241 +0100
|
||||
@@ -1,6 +1,25 @@
|
||||
.global global_a
|
||||
.type global_a, %object
|
||||
.size global_a, 4
|
||||
+
|
||||
+ .global global_b
|
||||
+ .type global_b, %object
|
||||
+ .size global_b, 4
|
||||
+
|
||||
+ .global global_c
|
||||
+ .type global_c, %object
|
||||
+ .size global_c, 4
|
||||
+
|
||||
+ .global global_d
|
||||
+ .type global_d, %object
|
||||
+ .size global_d, 4
|
||||
+
|
||||
.data
|
||||
global_a:
|
||||
.word 0xcafedead
|
||||
+global_b:
|
||||
+ .word 0xcafecafe
|
||||
+global_c:
|
||||
+ .word 0xdeadcafe
|
||||
+global_d:
|
||||
+ .word 0xdeaddead
|
||||
|
@ -43,7 +43,7 @@
|
||||
Summary: A GNU collection of binary utilities
|
||||
Name: %{?cross}binutils%{?_with_debug:-debug}
|
||||
Version: 2.28
|
||||
Release: 8%{?dist}
|
||||
Release: 9%{?dist}
|
||||
License: GPLv3+
|
||||
Group: Development/Tools
|
||||
URL: http://sources.redhat.com/binutils
|
||||
@ -602,6 +602,10 @@ exit 0
|
||||
%endif # %{isnative}
|
||||
|
||||
%changelog
|
||||
* Thu Jun 15 2017 Nick Clifton <nickc@redhat.com> 2.28-9
|
||||
- Update patch to fix AArch64 copy reloc generation.
|
||||
(#1452170)
|
||||
|
||||
* Fri Jun 09 2017 Nick Clifton <nickc@redhat.com> 2.28-8
|
||||
- Ignore duplicate indirect symbols generated by the GOLD linker.
|
||||
(#1458003)
|
||||
|
Loading…
Reference in New Issue
Block a user