aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2019-08-05 16:15:14 +0100
committerNick Clifton <nickc@redhat.com>2019-08-05 16:15:14 +0100
commit276cbbdf990f3f09acacdf3d9603b054ac7d29da (patch)
tree69fb381e93d2587d39c981cc4175e680f58180c5 /binutils
parent580f1034d10934b757703110db068397c0c1e7bb (diff)
downloadfsf-binutils-gdb-276cbbdf990f3f09acacdf3d9603b054ac7d29da.zip
fsf-binutils-gdb-276cbbdf990f3f09acacdf3d9603b054ac7d29da.tar.gz
fsf-binutils-gdb-276cbbdf990f3f09acacdf3d9603b054ac7d29da.tar.bz2
Fix objcopy's note merging capabilities so that they no longer insist on the first note being a version note.
PR 24874 * objcopy.c (merge_gnu_build_notes): Do not insist on the first note being a version note.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog7
-rw-r--r--binutils/objcopy.c20
2 files changed, 16 insertions, 11 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 22a7828..411f835 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,5 +1,12 @@
2019-08-05 Nick Clifton <nickc@redhat.com>
+ PR 24874
+ * objcopy.c (merge_gnu_build_notes): Do not insist on the first
+ note being a version note.
+ Remove spurious debugging fprintf.
+
+2019-08-05 Nick Clifton <nickc@redhat.com>
+
PR 24829
* readelf.c (apply_relocations): Catch potential integer overflow
whilst checking reloc location against section size.
diff --git a/binutils/objcopy.c b/binutils/objcopy.c
index 28b9d3b..eb25421 100644
--- a/binutils/objcopy.c
+++ b/binutils/objcopy.c
@@ -1996,7 +1996,6 @@ merge_gnu_build_notes (bfd * abfd, asection * sec, bfd_size_type size, bfd_byte
unsigned long previous_open_end = 0;
long relsize;
-
relsize = bfd_get_reloc_upper_bound (abfd, sec);
if (relsize > 0)
{
@@ -2013,7 +2012,8 @@ merge_gnu_build_notes (bfd * abfd, asection * sec, bfd_size_type size, bfd_byte
}
/* Make a copy of the notes and convert to our internal format.
- Minimum size of a note is 12 bytes. */
+ Minimum size of a note is 12 bytes. Also locate the version
+ notes and check them. */
pnote = pnotes = (objcopy_internal_note *) xcalloc ((size / 12), sizeof (* pnote));
while (remain >= 12)
{
@@ -2182,12 +2182,10 @@ merge_gnu_build_notes (bfd * abfd, asection * sec, bfd_size_type size, bfd_byte
attribute_type_byte = version_1_seen ? 1 : 3;
val_start = attribute_type_byte + 1;
- /* The first note should be the first version note. */
- if (pnotes[0].note.namedata[attribute_type_byte] != GNU_BUILD_ATTRIBUTE_VERSION)
- {
- err = _("bad GNU build attribute notes: first note not version note");
- goto done;
- }
+ /* We used to require that the first note be a version note,
+ but this is no longer enforced. Due to the problems with
+ linking sections with the same name (eg .gnu.build.note.hot)
+ we cannot guarantee that the first note will be a version note. */
/* Now merge the notes. The rules are:
1. Preserve the ordering of the notes.
@@ -2204,8 +2202,9 @@ merge_gnu_build_notes (bfd * abfd, asection * sec, bfd_size_type size, bfd_byte
with a non-empty description field must also be preserved *OR* the
description field of the note must be changed to contain the starting
address to which it refers.
- 6. Notes with the same start and end address can be deleted. */
- for (pnote = pnotes + 1; pnote < pnotes_end; pnote ++)
+ 6. Notes with the same start and end address can be deleted.
+ 7. FIXME: Elminate duplicate version notes - even function specific ones ? */
+ for (pnote = pnotes; pnote < pnotes_end; pnote ++)
{
int note_type;
objcopy_internal_note * back;
@@ -2233,7 +2232,6 @@ merge_gnu_build_notes (bfd * abfd, asection * sec, bfd_size_type size, bfd_byte
&& back->note.namesz == pnote->note.namesz
&& memcmp (back->note.namedata, pnote->note.namedata, pnote->note.namesz) == 0)
{
- fprintf (stderr, "DUP FUNXC\n");
duplicate_found = TRUE;
pnote->note.type = 0;
break;