]> Cypherpunks repositories - gostls13.git/commit
[release-branch.go1.5] cmd/go: fix Go buildid reading on Solaris
authorShawn Walker-Salas <shawn.walker@oracle.com>
Wed, 26 Aug 2015 22:24:41 +0000 (15:24 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 23 Nov 2015 02:01:20 +0000 (02:01 +0000)
commit61e1caee5b3a79f8986248541839eb15d311a3a9
tree92b6d262f63aff91e5115535a6c6af13b09290a4
parent497e4a8093939f53861d48a0afc081183f7032f4
[release-branch.go1.5] cmd/go: fix Go buildid reading on Solaris

TestNoteReading fails on Solaris with linkmode=external due to some
assumptions made about how ELF .note sections are written by some
linkers.

On current versions of Solaris and older derivatives, SHF_ALLOC is
intentionally ignored for .note sections unless the .note section is
assigned to the text segment via a mapfile.  Also, if .note sections
are assigned to the text segment, no PT_NOTE program header will be
created thwarting Go's attempts at attempting to quickly find the
.note.

Furthermore, Go assumes that the relevant note segment will be placed
early in the file while the Solaris linker currently places the note
segment last in the file, additionally thwarting Go's optimisation
attempts that read only the first 16KB of the file to find the
buildid.

The fix is to detect when the note section is outside of the first
16KB of the file and then fallback to additionally reading that
section of the file.  This way, in future versions of Solaris when
this linking behaviour is changed, the fast path will always succeed
and we'll only be slower if it fails; likewise, any other linker that
does this will also just work.

Fixes #12178

Change-Id: I61c1dc3f744ae3ad63938386d2ace8a432c0efe1
Reviewed-on: https://go-review.googlesource.com/14210
Run-TryBot: Aram Hăvărneanu <aram@mgk.ro>
Reviewed-by: Aram Hăvărneanu <aram@mgk.ro>
Reviewed-on: https://go-review.googlesource.com/17142
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
src/cmd/go/note.go
src/cmd/go/note_test.go
src/cmd/link/internal/ld/elf.go