2015-07-25 05:03:07 +08:00
|
|
|
//===- Writer.cpp ---------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-09-05 06:48:30 +08:00
|
|
|
#include "Writer.h"
|
2015-08-06 07:51:50 +08:00
|
|
|
#include "Config.h"
|
2016-02-12 05:17:59 +08:00
|
|
|
#include "LinkerScript.h"
|
2016-10-29 04:57:25 +08:00
|
|
|
#include "Memory.h"
|
2015-09-22 05:38:08 +08:00
|
|
|
#include "OutputSections.h"
|
2016-05-25 04:24:43 +08:00
|
|
|
#include "Relocations.h"
|
2016-06-29 17:08:02 +08:00
|
|
|
#include "Strings.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "SymbolTable.h"
|
2016-11-02 04:28:21 +08:00
|
|
|
#include "SyntheticSections.h"
|
2015-09-23 02:19:46 +08:00
|
|
|
#include "Target.h"
|
2015-08-12 08:00:24 +08:00
|
|
|
|
2015-11-12 17:52:08 +08:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2015-10-13 04:51:48 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "llvm/Support/FileOutputBuffer.h"
|
2016-02-06 08:06:26 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2016-09-29 09:45:22 +08:00
|
|
|
#include <climits>
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::ELF;
|
|
|
|
using namespace llvm::object;
|
2016-10-10 17:39:26 +08:00
|
|
|
using namespace llvm::support;
|
|
|
|
using namespace llvm::support::endian;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace lld;
|
2016-02-28 08:25:54 +08:00
|
|
|
using namespace lld::elf;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-08-06 07:24:46 +08:00
|
|
|
namespace {
|
|
|
|
// The writer writes a SymbolTable result to a file.
|
|
|
|
template <class ELFT> class Writer {
|
|
|
|
public:
|
2016-03-15 07:16:09 +08:00
|
|
|
typedef typename ELFT::uint uintX_t;
|
|
|
|
typedef typename ELFT::Shdr Elf_Shdr;
|
|
|
|
typedef typename ELFT::Ehdr Elf_Ehdr;
|
|
|
|
typedef typename ELFT::Phdr Elf_Phdr;
|
|
|
|
typedef typename ELFT::Sym Elf_Sym;
|
|
|
|
typedef typename ELFT::SymRange Elf_Sym_Range;
|
|
|
|
typedef typename ELFT::Rela Elf_Rela;
|
2015-08-06 07:24:46 +08:00
|
|
|
void run();
|
|
|
|
|
|
|
|
private:
|
2016-07-19 20:33:46 +08:00
|
|
|
typedef PhdrEntry<ELFT> Phdr;
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2016-11-02 07:17:45 +08:00
|
|
|
void createSyntheticSections();
|
2015-10-09 07:49:30 +08:00
|
|
|
void copyLocalSymbols();
|
2015-12-26 15:50:39 +08:00
|
|
|
void addReservedSymbols();
|
2016-11-01 17:49:24 +08:00
|
|
|
void addInputSec(InputSectionBase<ELFT> *S);
|
2016-07-30 00:18:47 +08:00
|
|
|
void createSections();
|
2016-10-20 16:36:42 +08:00
|
|
|
void forEachRelSec(std::function<void(InputSectionBase<ELFT> &,
|
|
|
|
const typename ELFT::Shdr &)> Fn);
|
2016-09-22 06:36:19 +08:00
|
|
|
void sortSections();
|
2016-07-20 22:43:20 +08:00
|
|
|
void finalizeSections();
|
2015-12-26 15:50:41 +08:00
|
|
|
void addPredefinedSections();
|
2016-02-26 03:34:37 +08:00
|
|
|
bool needsGot();
|
2015-12-25 15:38:58 +08:00
|
|
|
|
2016-07-21 03:36:39 +08:00
|
|
|
std::vector<Phdr> createPhdrs();
|
2015-08-06 07:24:46 +08:00
|
|
|
void assignAddresses();
|
2016-04-02 01:07:17 +08:00
|
|
|
void assignFileOffsets();
|
2016-08-25 17:05:47 +08:00
|
|
|
void assignFileOffsetsBinary();
|
2016-04-02 01:07:17 +08:00
|
|
|
void setPhdrs();
|
2016-04-06 15:20:45 +08:00
|
|
|
void fixHeaders();
|
2016-03-31 03:41:51 +08:00
|
|
|
void fixSectionAlignments();
|
2015-12-26 18:52:26 +08:00
|
|
|
void fixAbsoluteSymbols();
|
2016-04-02 01:24:19 +08:00
|
|
|
void openFile();
|
2015-08-06 07:24:46 +08:00
|
|
|
void writeHeader();
|
|
|
|
void writeSections();
|
2016-08-25 17:05:47 +08:00
|
|
|
void writeSectionsBinary();
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
void writeBuildId();
|
2015-08-06 07:24:46 +08:00
|
|
|
|
2016-07-17 02:55:47 +08:00
|
|
|
std::unique_ptr<FileOutputBuffer> Buffer;
|
2015-09-18 03:58:07 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
std::vector<OutputSectionBase *> OutputSections;
|
2016-07-20 22:43:20 +08:00
|
|
|
OutputSectionFactory<ELFT> Factory;
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2015-12-26 17:47:57 +08:00
|
|
|
void addRelIpltSymbols();
|
2015-12-26 17:48:00 +08:00
|
|
|
void addStartEndSymbols();
|
2016-11-10 07:23:45 +08:00
|
|
|
void addStartStopSymbols(OutputSectionBase *Sec);
|
|
|
|
OutputSectionBase *findSection(StringRef Name);
|
2015-10-11 06:34:30 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
std::vector<Phdr> Phdrs;
|
2015-09-18 03:58:07 +08:00
|
|
|
|
2015-08-12 07:14:13 +08:00
|
|
|
uintX_t FileSize;
|
2015-08-06 07:24:46 +08:00
|
|
|
uintX_t SectionHeaderOff;
|
|
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
|
2016-10-29 04:57:25 +08:00
|
|
|
StringRef elf::getOutputSectionName(StringRef Name) {
|
2016-10-05 18:10:45 +08:00
|
|
|
if (Config->Relocatable)
|
|
|
|
return Name;
|
|
|
|
|
2016-09-20 03:59:21 +08:00
|
|
|
for (StringRef V :
|
|
|
|
{".text.", ".rodata.", ".data.rel.ro.", ".data.", ".bss.",
|
|
|
|
".init_array.", ".fini_array.", ".ctors.", ".dtors.", ".tbss.",
|
|
|
|
".gcc_except_table.", ".tdata.", ".ARM.exidx."}) {
|
|
|
|
StringRef Prefix = V.drop_back();
|
|
|
|
if (Name.startswith(V) || Name == Prefix)
|
|
|
|
return Prefix;
|
|
|
|
}
|
2016-10-13 06:36:31 +08:00
|
|
|
|
2016-11-06 07:05:47 +08:00
|
|
|
// CommonSection is identified as "COMMON" in linker scripts.
|
|
|
|
// By default, it should go to .bss section.
|
|
|
|
if (Name == "COMMON")
|
|
|
|
return ".bss";
|
|
|
|
|
2016-10-13 06:36:31 +08:00
|
|
|
// ".zdebug_" is a prefix for ZLIB-compressed sections.
|
|
|
|
// Because we decompressed input sections, we want to remove 'z'.
|
|
|
|
if (Name.startswith(".zdebug_"))
|
2016-10-29 04:57:25 +08:00
|
|
|
return Saver.save(Twine(".") + Name.substr(2));
|
2016-07-12 16:50:42 +08:00
|
|
|
return Name;
|
|
|
|
}
|
|
|
|
|
2016-07-26 06:26:28 +08:00
|
|
|
template <class ELFT> void elf::reportDiscarded(InputSectionBase<ELFT> *IS) {
|
2016-11-09 02:23:02 +08:00
|
|
|
if (!Config->PrintGcSections)
|
2016-07-12 16:50:42 +08:00
|
|
|
return;
|
2016-09-08 22:06:08 +08:00
|
|
|
errs() << "removing unused section from '" << IS->Name << "' in file '"
|
|
|
|
<< IS->getFile()->getName() << "'\n";
|
2016-07-12 16:50:42 +08:00
|
|
|
}
|
|
|
|
|
2016-07-21 19:01:23 +08:00
|
|
|
template <class ELFT> static bool needsInterpSection() {
|
|
|
|
return !Symtab<ELFT>::X->getSharedFiles().empty() &&
|
2016-08-16 14:40:58 +08:00
|
|
|
!Config->DynamicLinker.empty() &&
|
|
|
|
!Script<ELFT>::X->ignoreInterpSection();
|
2016-07-21 19:01:23 +08:00
|
|
|
}
|
|
|
|
|
2016-08-09 11:38:23 +08:00
|
|
|
template <class ELFT> void elf::writeResult() {
|
|
|
|
Writer<ELFT>().run();
|
2015-10-08 03:18:16 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// The main function of the writer.
|
2015-08-06 07:24:46 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::run() {
|
2016-11-02 07:17:45 +08:00
|
|
|
createSyntheticSections();
|
2015-12-26 15:50:39 +08:00
|
|
|
addReservedSymbols();
|
2016-07-20 22:43:20 +08:00
|
|
|
|
2016-08-11 15:56:43 +08:00
|
|
|
if (Target->NeedsThunks)
|
|
|
|
forEachRelSec(createThunks<ELFT>);
|
|
|
|
|
2016-08-04 20:13:05 +08:00
|
|
|
Script<ELFT>::X->OutputSections = &OutputSections;
|
2016-09-16 23:30:47 +08:00
|
|
|
if (ScriptConfig->HasSections) {
|
2016-08-04 20:13:05 +08:00
|
|
|
Script<ELFT>::X->createSections(Factory);
|
2016-09-16 23:30:47 +08:00
|
|
|
} else {
|
2016-07-30 00:18:47 +08:00
|
|
|
createSections();
|
2016-09-16 23:30:47 +08:00
|
|
|
Script<ELFT>::X->processCommands(Factory);
|
|
|
|
}
|
2016-07-30 00:18:47 +08:00
|
|
|
|
2016-09-23 21:17:16 +08:00
|
|
|
if (Config->Discard != DiscardPolicy::All)
|
|
|
|
copyLocalSymbols();
|
|
|
|
|
2016-07-20 22:43:20 +08:00
|
|
|
finalizeSections();
|
2016-04-02 01:24:19 +08:00
|
|
|
if (HasError)
|
2016-01-29 06:56:29 +08:00
|
|
|
return;
|
2016-04-02 01:07:17 +08:00
|
|
|
|
|
|
|
if (Config->Relocatable) {
|
|
|
|
assignFileOffsets();
|
|
|
|
} else {
|
2016-08-04 20:13:05 +08:00
|
|
|
Phdrs = Script<ELFT>::X->hasPhdrsCommands() ? Script<ELFT>::X->createPhdrs()
|
|
|
|
: createPhdrs();
|
2016-04-06 15:20:45 +08:00
|
|
|
fixHeaders();
|
2016-09-14 16:32:36 +08:00
|
|
|
if (ScriptConfig->HasSections) {
|
2016-09-30 02:50:34 +08:00
|
|
|
Script<ELFT>::X->assignAddresses(Phdrs);
|
2016-04-16 18:10:32 +08:00
|
|
|
} else {
|
|
|
|
fixSectionAlignments();
|
|
|
|
assignAddresses();
|
|
|
|
}
|
2016-08-25 17:05:47 +08:00
|
|
|
|
|
|
|
if (!Config->OFormatBinary)
|
|
|
|
assignFileOffsets();
|
|
|
|
else
|
|
|
|
assignFileOffsetsBinary();
|
|
|
|
|
2016-04-02 01:07:17 +08:00
|
|
|
setPhdrs();
|
2016-04-02 01:11:42 +08:00
|
|
|
fixAbsoluteSymbols();
|
2016-02-25 16:23:37 +08:00
|
|
|
}
|
2016-04-02 01:07:17 +08:00
|
|
|
|
2016-04-02 01:24:19 +08:00
|
|
|
openFile();
|
|
|
|
if (HasError)
|
2016-02-03 06:48:04 +08:00
|
|
|
return;
|
2016-08-25 17:05:47 +08:00
|
|
|
if (!Config->OFormatBinary) {
|
|
|
|
writeHeader();
|
|
|
|
writeSections();
|
|
|
|
} else {
|
|
|
|
writeSectionsBinary();
|
|
|
|
}
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
writeBuildId();
|
2016-02-02 07:28:21 +08:00
|
|
|
if (HasError)
|
|
|
|
return;
|
2016-07-15 10:01:03 +08:00
|
|
|
if (auto EC = Buffer->commit())
|
|
|
|
error(EC, "failed to write to the output file");
|
2016-10-27 02:59:00 +08:00
|
|
|
if (Config->ExitEarly) {
|
|
|
|
// Flush the output streams and exit immediately. A full shutdown is a good
|
|
|
|
// test that we are keeping track of all allocated memory, but actually
|
2016-10-27 04:26:29 +08:00
|
|
|
// freeing it is a waste of time in a regular linker run.
|
2016-10-27 21:32:32 +08:00
|
|
|
exitLld(0);
|
2016-10-27 02:59:00 +08:00
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2016-11-02 07:17:45 +08:00
|
|
|
// Initialize Out<ELFT> members.
|
|
|
|
template <class ELFT> void Writer<ELFT>::createSyntheticSections() {
|
|
|
|
// Initialize all pointers with NULL. This is needed because
|
|
|
|
// you can call lld::elf::main more than once as a library.
|
|
|
|
memset(&Out<ELFT>::First, 0, sizeof(Out<ELFT>));
|
|
|
|
|
|
|
|
// Create singleton output sections.
|
|
|
|
Out<ELFT>::Bss =
|
|
|
|
make<OutputSection<ELFT>>(".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
|
2016-11-02 10:18:01 +08:00
|
|
|
Out<ELFT>::DynStrTab = make<StringTableSection<ELFT>>(".dynstr", true);
|
2016-11-02 07:17:45 +08:00
|
|
|
Out<ELFT>::Dynamic = make<DynamicSection<ELFT>>();
|
|
|
|
Out<ELFT>::EhFrame = make<EhOutputSection<ELFT>>();
|
|
|
|
Out<ELFT>::Got = make<GotSection<ELFT>>();
|
|
|
|
Out<ELFT>::Plt = make<PltSection<ELFT>>();
|
|
|
|
Out<ELFT>::RelaDyn = make<RelocationSection<ELFT>>(
|
|
|
|
Config->Rela ? ".rela.dyn" : ".rel.dyn", Config->ZCombreloc);
|
|
|
|
Out<ELFT>::ShStrTab = make<StringTableSection<ELFT>>(".shstrtab", false);
|
|
|
|
Out<ELFT>::VerSym = make<VersionTableSection<ELFT>>();
|
|
|
|
Out<ELFT>::VerNeed = make<VersionNeedSection<ELFT>>();
|
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
Out<ELFT>::ElfHeader = make<OutputSectionBase>("", 0, SHF_ALLOC);
|
2016-11-09 09:42:41 +08:00
|
|
|
Out<ELFT>::ElfHeader->Size = sizeof(Elf_Ehdr);
|
2016-11-10 07:23:45 +08:00
|
|
|
Out<ELFT>::ProgramHeaders = make<OutputSectionBase>("", 0, SHF_ALLOC);
|
2016-11-02 07:17:45 +08:00
|
|
|
Out<ELFT>::ProgramHeaders->updateAlignment(sizeof(uintX_t));
|
|
|
|
|
2016-11-06 07:05:47 +08:00
|
|
|
if (needsInterpSection<ELFT>()) {
|
2016-11-08 22:56:27 +08:00
|
|
|
In<ELFT>::Interp = createInterpSection<ELFT>();
|
2016-11-06 07:05:47 +08:00
|
|
|
Symtab<ELFT>::X->Sections.push_back(In<ELFT>::Interp);
|
|
|
|
} else {
|
|
|
|
In<ELFT>::Interp = nullptr;
|
|
|
|
}
|
2016-11-02 07:17:45 +08:00
|
|
|
|
|
|
|
if (!Symtab<ELFT>::X->getSharedFiles().empty() || Config->Pic) {
|
|
|
|
Out<ELFT>::DynSymTab =
|
|
|
|
make<SymbolTableSection<ELFT>>(*Out<ELFT>::DynStrTab);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->EhFrameHdr)
|
|
|
|
Out<ELFT>::EhFrameHdr = make<EhFrameHeader<ELFT>>();
|
|
|
|
|
|
|
|
if (Config->GnuHash)
|
|
|
|
Out<ELFT>::GnuHashTab = make<GnuHashTableSection<ELFT>>();
|
|
|
|
if (Config->SysvHash)
|
|
|
|
Out<ELFT>::HashTab = make<HashTableSection<ELFT>>();
|
|
|
|
if (Config->GdbIndex)
|
|
|
|
Out<ELFT>::GdbIndex = make<GdbIndexSection<ELFT>>();
|
|
|
|
|
2016-11-02 07:17:47 +08:00
|
|
|
Out<ELFT>::RelaPlt = make<RelocationSection<ELFT>>(
|
|
|
|
Config->Rela ? ".rela.plt" : ".rel.plt", false /*Sort*/);
|
2016-11-02 07:17:45 +08:00
|
|
|
if (Config->Strip != StripPolicy::All) {
|
|
|
|
Out<ELFT>::StrTab = make<StringTableSection<ELFT>>(".strtab", false);
|
|
|
|
Out<ELFT>::SymTab = make<SymbolTableSection<ELFT>>(*Out<ELFT>::StrTab);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->EMachine == EM_MIPS && !Config->Shared) {
|
|
|
|
// This is a MIPS specific section to hold a space within the data segment
|
|
|
|
// of executable file which is pointed to by the DT_MIPS_RLD_MAP entry.
|
|
|
|
// See "Dynamic section" in Chapter 5 in the following document:
|
|
|
|
// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
|
|
|
|
Out<ELFT>::MipsRldMap = make<OutputSection<ELFT>>(".rld_map", SHT_PROGBITS,
|
|
|
|
SHF_ALLOC | SHF_WRITE);
|
2016-11-09 09:42:41 +08:00
|
|
|
Out<ELFT>::MipsRldMap->Size = sizeof(uintX_t);
|
2016-11-02 07:17:45 +08:00
|
|
|
Out<ELFT>::MipsRldMap->updateAlignment(sizeof(uintX_t));
|
|
|
|
}
|
|
|
|
if (!Config->VersionDefinitions.empty())
|
|
|
|
Out<ELFT>::VerDef = make<VersionDefinitionSection<ELFT>>();
|
|
|
|
|
|
|
|
// Initialize linker generated sections
|
|
|
|
if (Config->BuildId == BuildIdKind::Fast)
|
|
|
|
In<ELFT>::BuildId = make<BuildIdFastHash<ELFT>>();
|
|
|
|
else if (Config->BuildId == BuildIdKind::Md5)
|
|
|
|
In<ELFT>::BuildId = make<BuildIdMd5<ELFT>>();
|
|
|
|
else if (Config->BuildId == BuildIdKind::Sha1)
|
|
|
|
In<ELFT>::BuildId = make<BuildIdSha1<ELFT>>();
|
|
|
|
else if (Config->BuildId == BuildIdKind::Uuid)
|
|
|
|
In<ELFT>::BuildId = make<BuildIdUuid<ELFT>>();
|
|
|
|
else if (Config->BuildId == BuildIdKind::Hexstring)
|
|
|
|
In<ELFT>::BuildId = make<BuildIdHexstring<ELFT>>();
|
2016-11-06 07:05:47 +08:00
|
|
|
else
|
|
|
|
In<ELFT>::BuildId = nullptr;
|
2016-11-03 02:58:44 +08:00
|
|
|
|
2016-11-06 07:05:47 +08:00
|
|
|
if (In<ELFT>::BuildId)
|
|
|
|
Symtab<ELFT>::X->Sections.push_back(In<ELFT>::BuildId);
|
|
|
|
|
2016-11-08 22:42:34 +08:00
|
|
|
InputSection<ELFT> *Common = createCommonSection<ELFT>();
|
2016-11-06 07:05:47 +08:00
|
|
|
if (!Common->Data.empty()) {
|
|
|
|
In<ELFT>::Common = Common;
|
|
|
|
Symtab<ELFT>::X->Sections.push_back(Common);
|
|
|
|
}
|
2016-11-10 05:36:56 +08:00
|
|
|
|
|
|
|
if (Config->EMachine == EM_MIPS) {
|
2016-11-10 05:37:06 +08:00
|
|
|
// .MIPS.abiflags
|
|
|
|
auto *AbiFlags = make<MipsAbiFlagsSection<ELFT>>();
|
|
|
|
if (AbiFlags->Live) {
|
|
|
|
In<ELFT>::MipsAbiFlags = AbiFlags;
|
|
|
|
Symtab<ELFT>::X->Sections.push_back(AbiFlags);
|
|
|
|
}
|
2016-11-10 05:36:56 +08:00
|
|
|
// .MIPS.options
|
|
|
|
auto *OptSec = make<MipsOptionsSection<ELFT>>();
|
|
|
|
if (OptSec->Live) {
|
|
|
|
In<ELFT>::MipsOptions = OptSec;
|
|
|
|
Symtab<ELFT>::X->Sections.push_back(OptSec);
|
|
|
|
}
|
|
|
|
// MIPS .reginfo
|
|
|
|
auto *RegSec = make<MipsReginfoSection<ELFT>>();
|
|
|
|
if (RegSec->Live) {
|
|
|
|
In<ELFT>::MipsReginfo = RegSec;
|
|
|
|
Symtab<ELFT>::X->Sections.push_back(RegSec);
|
|
|
|
}
|
|
|
|
}
|
2016-11-10 17:48:29 +08:00
|
|
|
|
|
|
|
In<ELFT>::GotPlt = make<GotPltSection<ELFT>>();
|
2016-11-02 07:17:45 +08:00
|
|
|
}
|
|
|
|
|
2016-01-28 02:04:26 +08:00
|
|
|
template <class ELFT>
|
2016-04-04 22:04:16 +08:00
|
|
|
static bool shouldKeepInSymtab(InputSectionBase<ELFT> *Sec, StringRef SymName,
|
|
|
|
const SymbolBody &B) {
|
|
|
|
if (B.isFile())
|
2016-01-28 02:04:26 +08:00
|
|
|
return false;
|
|
|
|
|
2016-03-03 15:49:35 +08:00
|
|
|
// We keep sections in symtab for relocatable output.
|
2016-04-04 22:04:16 +08:00
|
|
|
if (B.isSection())
|
2016-03-03 15:49:35 +08:00
|
|
|
return Config->Relocatable;
|
|
|
|
|
2016-01-28 02:04:26 +08:00
|
|
|
// If sym references a section in a discarded group, don't keep it.
|
2016-04-04 22:04:16 +08:00
|
|
|
if (Sec == &InputSection<ELFT>::Discarded)
|
2016-01-28 02:04:26 +08:00
|
|
|
return false;
|
|
|
|
|
2016-08-31 16:46:30 +08:00
|
|
|
if (Config->Discard == DiscardPolicy::None)
|
2016-01-28 02:04:26 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// In ELF assembly .L symbols are normally discarded by the assembler.
|
|
|
|
// If the assembler fails to do so, the linker discards them if
|
|
|
|
// * --discard-locals is used.
|
|
|
|
// * The symbol is in a SHF_MERGE section, which is normally the reason for
|
|
|
|
// the assembler keeping the .L symbol.
|
|
|
|
if (!SymName.startswith(".L") && !SymName.empty())
|
|
|
|
return true;
|
|
|
|
|
2016-08-31 16:46:30 +08:00
|
|
|
if (Config->Discard == DiscardPolicy::Locals)
|
2016-01-28 02:04:26 +08:00
|
|
|
return false;
|
|
|
|
|
2016-10-26 20:36:56 +08:00
|
|
|
return !Sec || !(Sec->Flags & SHF_MERGE);
|
2016-01-28 02:04:26 +08:00
|
|
|
}
|
|
|
|
|
2016-05-06 00:40:28 +08:00
|
|
|
template <class ELFT> static bool includeInSymtab(const SymbolBody &B) {
|
|
|
|
if (!B.isLocal() && !B.symbol()->IsUsedInRegularObj)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (auto *D = dyn_cast<DefinedRegular<ELFT>>(&B)) {
|
|
|
|
// Always include absolute symbols.
|
|
|
|
if (!D->Section)
|
|
|
|
return true;
|
|
|
|
// Exclude symbols pointing to garbage-collected sections.
|
|
|
|
if (!D->Section->Live)
|
|
|
|
return false;
|
|
|
|
if (auto *S = dyn_cast<MergeInputSection<ELFT>>(D->Section))
|
2016-05-22 08:41:38 +08:00
|
|
|
if (!S->getSectionPiece(D->Value)->Live)
|
2016-05-06 00:40:28 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-06 00:38:46 +08:00
|
|
|
|
2015-10-09 07:49:30 +08:00
|
|
|
// Local symbols are not in the linker's symbol table. This function scans
|
|
|
|
// each object file's symbol table to copy local symbols to the output.
|
|
|
|
template <class ELFT> void Writer<ELFT>::copyLocalSymbols() {
|
2016-01-21 11:07:38 +08:00
|
|
|
if (!Out<ELFT>::SymTab)
|
|
|
|
return;
|
2016-09-14 08:05:51 +08:00
|
|
|
for (elf::ObjectFile<ELFT> *F : Symtab<ELFT>::X->getObjectFiles()) {
|
2016-09-29 19:10:40 +08:00
|
|
|
StringRef StrTab = F->getStringTable();
|
2016-03-11 20:06:30 +08:00
|
|
|
for (SymbolBody *B : F->getLocalSymbols()) {
|
2016-10-11 17:07:14 +08:00
|
|
|
if (!B->IsLocal)
|
|
|
|
fatal(getFilename(F) +
|
|
|
|
": broken object: getLocalSymbols returns a non-local symbol");
|
2016-04-04 22:04:16 +08:00
|
|
|
auto *DR = dyn_cast<DefinedRegular<ELFT>>(B);
|
|
|
|
// No reason to keep local undefined symbol in symtab.
|
|
|
|
if (!DR)
|
|
|
|
continue;
|
2016-05-06 00:38:46 +08:00
|
|
|
if (!includeInSymtab<ELFT>(*B))
|
|
|
|
continue;
|
2016-09-29 19:10:40 +08:00
|
|
|
if (B->getNameOffset() >= StrTab.size())
|
|
|
|
fatal(getFilename(F) + ": invalid symbol name offset");
|
|
|
|
StringRef SymName(StrTab.data() + B->getNameOffset());
|
2016-04-04 22:04:16 +08:00
|
|
|
InputSectionBase<ELFT> *Sec = DR->Section;
|
|
|
|
if (!shouldKeepInSymtab<ELFT>(Sec, SymName, *B))
|
2015-10-10 03:25:07 +08:00
|
|
|
continue;
|
2016-01-29 09:24:25 +08:00
|
|
|
++Out<ELFT>::SymTab->NumLocals;
|
2016-03-03 15:49:35 +08:00
|
|
|
if (Config->Relocatable)
|
2016-03-14 04:18:12 +08:00
|
|
|
B->DynsymIndex = Out<ELFT>::SymTab->NumLocals;
|
2016-04-04 22:04:16 +08:00
|
|
|
F->KeptLocalSyms.push_back(
|
|
|
|
std::make_pair(DR, Out<ELFT>::SymTab->StrTabSec.addString(SymName)));
|
2015-10-09 07:49:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 04:51:48 +08:00
|
|
|
// PPC64 has a number of special SHT_PROGBITS+SHF_ALLOC+SHF_WRITE sections that
|
|
|
|
// we would like to make sure appear is a specific order to maximize their
|
|
|
|
// coverage by a single signed 16-bit offset from the TOC base pointer.
|
|
|
|
// Conversely, the special .tocbss section should be first among all SHT_NOBITS
|
|
|
|
// sections. This will put it next to the loaded special PPC64 sections (and,
|
|
|
|
// thus, within reach of the TOC base pointer).
|
|
|
|
static int getPPC64SectionRank(StringRef SectionName) {
|
|
|
|
return StringSwitch<int>(SectionName)
|
2016-04-14 21:23:02 +08:00
|
|
|
.Case(".tocbss", 0)
|
|
|
|
.Case(".branch_lt", 2)
|
|
|
|
.Case(".toc", 3)
|
|
|
|
.Case(".toc1", 4)
|
|
|
|
.Case(".opd", 5)
|
|
|
|
.Default(1);
|
2015-10-13 04:51:48 +08:00
|
|
|
}
|
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
template <class ELFT> bool elf::isRelroSection(const OutputSectionBase *Sec) {
|
2016-02-11 06:43:13 +08:00
|
|
|
if (!Config->ZRelro)
|
|
|
|
return false;
|
2016-11-10 07:23:45 +08:00
|
|
|
uint64_t Flags = Sec->Flags;
|
2015-11-24 18:15:50 +08:00
|
|
|
if (!(Flags & SHF_ALLOC) || !(Flags & SHF_WRITE))
|
|
|
|
return false;
|
2015-12-11 03:13:08 +08:00
|
|
|
if (Flags & SHF_TLS)
|
|
|
|
return true;
|
2016-11-09 09:42:41 +08:00
|
|
|
uint32_t Type = Sec->Type;
|
2015-12-11 03:13:08 +08:00
|
|
|
if (Type == SHT_INIT_ARRAY || Type == SHT_FINI_ARRAY ||
|
|
|
|
Type == SHT_PREINIT_ARRAY)
|
2015-11-24 18:15:50 +08:00
|
|
|
return true;
|
2016-11-10 17:48:29 +08:00
|
|
|
if (Sec == In<ELFT>::GotPlt->OutSec)
|
2015-11-24 18:15:50 +08:00
|
|
|
return Config->ZNow;
|
|
|
|
if (Sec == Out<ELFT>::Dynamic || Sec == Out<ELFT>::Got)
|
|
|
|
return true;
|
2015-12-11 03:19:04 +08:00
|
|
|
StringRef S = Sec->getName();
|
|
|
|
return S == ".data.rel.ro" || S == ".ctors" || S == ".dtors" || S == ".jcr" ||
|
|
|
|
S == ".eh_frame";
|
2015-11-24 18:15:50 +08:00
|
|
|
}
|
|
|
|
|
2015-10-09 07:49:30 +08:00
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
static bool compareSectionsNonScript(const OutputSectionBase *A,
|
|
|
|
const OutputSectionBase *B) {
|
2016-11-03 02:58:44 +08:00
|
|
|
// Put .interp first because some loaders want to see that section
|
|
|
|
// on the first page of the executable file when loaded into memory.
|
|
|
|
bool AIsInterp = A->getName() == ".interp";
|
|
|
|
bool BIsInterp = B->getName() == ".interp";
|
|
|
|
if (AIsInterp != BIsInterp)
|
|
|
|
return AIsInterp;
|
|
|
|
|
2015-10-09 07:49:30 +08:00
|
|
|
// Allocatable sections go first to reduce the total PT_LOAD size and
|
|
|
|
// so debug info doesn't change addresses in actual code.
|
2016-11-09 09:42:41 +08:00
|
|
|
bool AIsAlloc = A->Flags & SHF_ALLOC;
|
|
|
|
bool BIsAlloc = B->Flags & SHF_ALLOC;
|
2015-10-09 07:49:30 +08:00
|
|
|
if (AIsAlloc != BIsAlloc)
|
|
|
|
return AIsAlloc;
|
|
|
|
|
2016-09-21 06:43:15 +08:00
|
|
|
// We don't have any special requirements for the relative order of two non
|
|
|
|
// allocatable sections.
|
2015-10-09 07:49:30 +08:00
|
|
|
if (!AIsAlloc)
|
2016-09-22 06:36:19 +08:00
|
|
|
return false;
|
2015-10-09 07:49:30 +08:00
|
|
|
|
|
|
|
// We want the read only sections first so that they go in the PT_LOAD
|
|
|
|
// covering the program headers at the start of the file.
|
2016-11-09 09:42:41 +08:00
|
|
|
bool AIsWritable = A->Flags & SHF_WRITE;
|
|
|
|
bool BIsWritable = B->Flags & SHF_WRITE;
|
2015-10-09 07:49:30 +08:00
|
|
|
if (AIsWritable != BIsWritable)
|
|
|
|
return BIsWritable;
|
|
|
|
|
2016-09-30 06:48:55 +08:00
|
|
|
if (!ScriptConfig->HasSections) {
|
|
|
|
// For a corresponding reason, put non exec sections first (the program
|
|
|
|
// header PT_LOAD is not executable).
|
|
|
|
// We only do that if we are not using linker scripts, since with linker
|
|
|
|
// scripts ro and rx sections are in the same PT_LOAD, so their relative
|
|
|
|
// order is not important.
|
2016-11-09 09:42:41 +08:00
|
|
|
bool AIsExec = A->Flags & SHF_EXECINSTR;
|
|
|
|
bool BIsExec = B->Flags & SHF_EXECINSTR;
|
2016-09-30 06:48:55 +08:00
|
|
|
if (AIsExec != BIsExec)
|
|
|
|
return BIsExec;
|
|
|
|
}
|
2015-10-09 07:49:30 +08:00
|
|
|
|
2015-10-14 01:57:46 +08:00
|
|
|
// If we got here we know that both A and B are in the same PT_LOAD.
|
2015-10-17 07:11:07 +08:00
|
|
|
|
|
|
|
// The TLS initialization block needs to be a single contiguous block in a R/W
|
|
|
|
// PT_LOAD, so stick TLS sections directly before R/W sections. The TLS NOBITS
|
|
|
|
// sections are placed here as they don't take up virtual address space in the
|
|
|
|
// PT_LOAD.
|
2016-11-09 09:42:41 +08:00
|
|
|
bool AIsTls = A->Flags & SHF_TLS;
|
|
|
|
bool BIsTls = B->Flags & SHF_TLS;
|
2015-12-17 08:12:03 +08:00
|
|
|
if (AIsTls != BIsTls)
|
|
|
|
return AIsTls;
|
2015-10-17 07:11:07 +08:00
|
|
|
|
2015-10-14 02:55:01 +08:00
|
|
|
// The next requirement we have is to put nobits sections last. The
|
2015-10-09 07:49:30 +08:00
|
|
|
// reason is that the only thing the dynamic linker will see about
|
|
|
|
// them is a p_memsz that is larger than p_filesz. Seeing that it
|
|
|
|
// zeros the end of the PT_LOAD, so that has to correspond to the
|
|
|
|
// nobits sections.
|
2016-11-09 09:42:41 +08:00
|
|
|
bool AIsNoBits = A->Type == SHT_NOBITS;
|
|
|
|
bool BIsNoBits = B->Type == SHT_NOBITS;
|
2015-10-14 03:27:12 +08:00
|
|
|
if (AIsNoBits != BIsNoBits)
|
|
|
|
return BIsNoBits;
|
2015-10-13 04:51:48 +08:00
|
|
|
|
2015-11-24 18:15:50 +08:00
|
|
|
// We place RelRo section before plain r/w ones.
|
2016-11-10 07:23:45 +08:00
|
|
|
bool AIsRelRo = isRelroSection<ELFT>(A);
|
|
|
|
bool BIsRelRo = isRelroSection<ELFT>(B);
|
2015-11-24 18:15:50 +08:00
|
|
|
if (AIsRelRo != BIsRelRo)
|
|
|
|
return AIsRelRo;
|
|
|
|
|
2015-10-14 03:07:29 +08:00
|
|
|
// Some architectures have additional ordering restrictions for sections
|
|
|
|
// within the same PT_LOAD.
|
|
|
|
if (Config->EMachine == EM_PPC64)
|
|
|
|
return getPPC64SectionRank(A->getName()) <
|
|
|
|
getPPC64SectionRank(B->getName());
|
|
|
|
|
2016-09-22 06:36:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Output section ordering is determined by this function.
|
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
static bool compareSections(const OutputSectionBase *A,
|
|
|
|
const OutputSectionBase *B) {
|
2016-09-22 06:36:19 +08:00
|
|
|
// For now, put sections mentioned in a linker script first.
|
|
|
|
int AIndex = Script<ELFT>::X->getSectionIndex(A->getName());
|
|
|
|
int BIndex = Script<ELFT>::X->getSectionIndex(B->getName());
|
|
|
|
bool AInScript = AIndex != INT_MAX;
|
|
|
|
bool BInScript = BIndex != INT_MAX;
|
|
|
|
if (AInScript != BInScript)
|
|
|
|
return AInScript;
|
|
|
|
// If both are in the script, use that order.
|
|
|
|
if (AInScript)
|
|
|
|
return AIndex < BIndex;
|
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
return compareSectionsNonScript<ELFT>(A, B);
|
2015-10-09 07:49:30 +08:00
|
|
|
}
|
|
|
|
|
2016-07-19 17:25:43 +08:00
|
|
|
// Program header entry
|
2016-10-20 16:36:42 +08:00
|
|
|
template <class ELFT>
|
2016-07-19 20:33:46 +08:00
|
|
|
PhdrEntry<ELFT>::PhdrEntry(unsigned Type, unsigned Flags) {
|
2016-07-19 17:25:43 +08:00
|
|
|
H.p_type = Type;
|
|
|
|
H.p_flags = Flags;
|
|
|
|
}
|
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
template <class ELFT> void PhdrEntry<ELFT>::add(OutputSectionBase *Sec) {
|
2016-07-19 17:25:43 +08:00
|
|
|
Last = Sec;
|
|
|
|
if (!First)
|
|
|
|
First = Sec;
|
2016-11-09 09:42:41 +08:00
|
|
|
H.p_align = std::max<typename ELFT::uint>(H.p_align, Sec->Addralign);
|
2016-09-30 00:24:17 +08:00
|
|
|
if (H.p_type == PT_LOAD)
|
2016-09-29 17:20:33 +08:00
|
|
|
Sec->FirstInPtLoad = First;
|
2016-07-19 17:25:43 +08:00
|
|
|
}
|
|
|
|
|
2016-04-12 21:26:51 +08:00
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
static Symbol *addOptionalSynthetic(StringRef Name, OutputSectionBase *Sec,
|
|
|
|
typename ELFT::uint Val,
|
|
|
|
uint8_t StOther = STV_HIDDEN) {
|
2016-08-09 11:38:23 +08:00
|
|
|
SymbolBody *S = Symtab<ELFT>::X->find(Name);
|
2016-05-09 23:25:54 +08:00
|
|
|
if (!S)
|
2016-04-12 21:26:51 +08:00
|
|
|
return nullptr;
|
2016-05-09 23:25:54 +08:00
|
|
|
if (!S->isUndefined() && !S->isShared())
|
|
|
|
return S->symbol();
|
2016-10-14 06:20:18 +08:00
|
|
|
return Symtab<ELFT>::X->addSynthetic(Name, Sec, Val, StOther);
|
2016-04-12 21:26:51 +08:00
|
|
|
}
|
|
|
|
|
2015-12-26 17:47:57 +08:00
|
|
|
// The beginning and the ending of .rel[a].plt section are marked
|
|
|
|
// with __rel[a]_iplt_{start,end} symbols if it is a statically linked
|
|
|
|
// executable. The runtime needs these symbols in order to resolve
|
|
|
|
// all IRELATIVE relocs on startup. For dynamic executables, we don't
|
|
|
|
// need these symbols, since IRELATIVE relocs are resolved through GOT
|
|
|
|
// and PLT. For details, see http://www.airs.com/blog/archives/403.
|
2016-04-14 21:23:02 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::addRelIpltSymbols() {
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab || !Out<ELFT>::RelaPlt)
|
2015-12-21 18:12:06 +08:00
|
|
|
return;
|
2016-03-14 04:10:20 +08:00
|
|
|
StringRef S = Config->Rela ? "__rela_iplt_start" : "__rel_iplt_start";
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>(S, Out<ELFT>::RelaPlt, 0);
|
2015-12-26 17:47:57 +08:00
|
|
|
|
2016-03-14 04:10:20 +08:00
|
|
|
S = Config->Rela ? "__rela_iplt_end" : "__rel_iplt_end";
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>(S, Out<ELFT>::RelaPlt,
|
|
|
|
DefinedSynthetic<ELFT>::SectionEnd);
|
2015-12-21 18:12:06 +08:00
|
|
|
}
|
|
|
|
|
2015-12-26 15:50:39 +08:00
|
|
|
// The linker is expected to define some symbols depending on
|
|
|
|
// the linking result. This function defines such symbols.
|
|
|
|
template <class ELFT> void Writer<ELFT>::addReservedSymbols() {
|
2016-07-27 05:11:30 +08:00
|
|
|
if (Config->EMachine == EM_MIPS && !Config->Relocatable) {
|
2016-04-12 10:24:43 +08:00
|
|
|
// Define _gp for MIPS. st_value of _gp symbol will be updated by Writer
|
|
|
|
// so that it points to an absolute address which is relative to GOT.
|
|
|
|
// See "Global Data Symbols" in Chapter 6 in the following document:
|
|
|
|
// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
|
2016-08-19 23:36:32 +08:00
|
|
|
Symtab<ELFT>::X->addSynthetic("_gp", Out<ELFT>::Got, MipsGPOffset,
|
|
|
|
STV_HIDDEN);
|
2016-04-12 10:24:43 +08:00
|
|
|
|
2016-04-04 22:04:16 +08:00
|
|
|
// On MIPS O32 ABI, _gp_disp is a magic symbol designates offset between
|
|
|
|
// start of function and 'gp' pointer into GOT.
|
2016-05-04 02:03:45 +08:00
|
|
|
Symbol *Sym =
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>("_gp_disp", Out<ELFT>::Got, MipsGPOffset);
|
2016-05-04 02:03:45 +08:00
|
|
|
if (Sym)
|
|
|
|
ElfSym<ELFT>::MipsGpDisp = Sym->body();
|
|
|
|
|
2016-04-04 22:04:16 +08:00
|
|
|
// The __gnu_local_gp is a magic symbol equal to the current value of 'gp'
|
|
|
|
// pointer. This symbol is used in the code generated by .cpload pseudo-op
|
|
|
|
// in case of using -mno-shared option.
|
|
|
|
// https://sourceware.org/ml/binutils/2004-12/msg00094.html
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>("__gnu_local_gp", Out<ELFT>::Got, MipsGPOffset);
|
2016-04-04 22:04:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// In the assembly for 32 bit x86 the _GLOBAL_OFFSET_TABLE_ symbol
|
|
|
|
// is magical and is used to produce a R_386_GOTPC relocation.
|
|
|
|
// The R_386_GOTPC relocation value doesn't actually depend on the
|
|
|
|
// symbol value, so it could use an index of STN_UNDEF which, according
|
|
|
|
// to the spec, means the symbol value is 0.
|
|
|
|
// Unfortunately both gas and MC keep the _GLOBAL_OFFSET_TABLE_ symbol in
|
|
|
|
// the object file.
|
|
|
|
// The situation is even stranger on x86_64 where the assembly doesn't
|
|
|
|
// need the magical symbol, but gas still puts _GLOBAL_OFFSET_TABLE_ as
|
|
|
|
// an undefined symbol in the .o files.
|
|
|
|
// Given that the symbol is effectively unused, we just create a dummy
|
|
|
|
// hidden one to avoid the undefined symbol error.
|
|
|
|
if (!Config->Relocatable)
|
2016-08-09 11:38:23 +08:00
|
|
|
Symtab<ELFT>::X->addIgnored("_GLOBAL_OFFSET_TABLE_");
|
2016-04-04 22:04:16 +08:00
|
|
|
|
2015-12-26 15:50:39 +08:00
|
|
|
// __tls_get_addr is defined by the dynamic linker for dynamic ELFs. For
|
|
|
|
// static linking the linker is required to optimize away any references to
|
|
|
|
// __tls_get_addr, so it's not defined anywhere. Create a hidden definition
|
2016-10-27 18:28:53 +08:00
|
|
|
// to avoid the undefined symbol error. As usual special cases are ARM and
|
|
|
|
// MIPS - the libc for these targets defines __tls_get_addr itself because
|
|
|
|
// there are no TLS optimizations for these targets.
|
|
|
|
if (!Out<ELFT>::DynSymTab &&
|
|
|
|
(Config->EMachine != EM_MIPS && Config->EMachine != EM_ARM))
|
2016-08-09 11:38:23 +08:00
|
|
|
Symtab<ELFT>::X->addIgnored("__tls_get_addr");
|
2015-12-26 15:50:39 +08:00
|
|
|
|
2016-08-08 16:42:48 +08:00
|
|
|
// If linker script do layout we do not need to create any standart symbols.
|
2016-09-14 16:32:36 +08:00
|
|
|
if (ScriptConfig->HasSections)
|
2016-08-08 16:42:48 +08:00
|
|
|
return;
|
|
|
|
|
2016-08-23 02:44:04 +08:00
|
|
|
ElfSym<ELFT>::EhdrStart = Symtab<ELFT>::X->addIgnored("__ehdr_start");
|
|
|
|
|
2016-04-22 04:50:15 +08:00
|
|
|
auto Define = [this](StringRef S, DefinedRegular<ELFT> *&Sym1,
|
|
|
|
DefinedRegular<ELFT> *&Sym2) {
|
2016-08-09 11:38:23 +08:00
|
|
|
Sym1 = Symtab<ELFT>::X->addIgnored(S, STV_DEFAULT);
|
2016-02-27 00:38:39 +08:00
|
|
|
|
|
|
|
// The name without the underscore is not a reserved name,
|
|
|
|
// so it is defined only when there is a reference against it.
|
2016-02-27 00:49:54 +08:00
|
|
|
assert(S.startswith("_"));
|
2016-02-27 00:38:39 +08:00
|
|
|
S = S.substr(1);
|
2016-08-09 11:38:23 +08:00
|
|
|
if (SymbolBody *B = Symtab<ELFT>::X->find(S))
|
2016-02-26 22:36:36 +08:00
|
|
|
if (B->isUndefined())
|
2016-08-09 11:38:23 +08:00
|
|
|
Sym2 = Symtab<ELFT>::X->addAbsolute(S, STV_DEFAULT);
|
2016-02-26 22:36:36 +08:00
|
|
|
};
|
|
|
|
|
2016-04-22 04:50:15 +08:00
|
|
|
Define("_end", ElfSym<ELFT>::End, ElfSym<ELFT>::End2);
|
|
|
|
Define("_etext", ElfSym<ELFT>::Etext, ElfSym<ELFT>::Etext2);
|
|
|
|
Define("_edata", ElfSym<ELFT>::Edata, ElfSym<ELFT>::Edata2);
|
2015-12-26 15:50:39 +08:00
|
|
|
}
|
|
|
|
|
2016-02-11 07:20:42 +08:00
|
|
|
// Sort input sections by section name suffixes for
|
|
|
|
// __attribute__((init_priority(N))).
|
2016-11-10 07:23:45 +08:00
|
|
|
template <class ELFT> static void sortInitFini(OutputSectionBase *S) {
|
2016-02-11 07:20:42 +08:00
|
|
|
if (S)
|
2016-02-12 07:41:38 +08:00
|
|
|
reinterpret_cast<OutputSection<ELFT> *>(S)->sortInitFini();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort input sections by the special rule for .ctors and .dtors.
|
2016-11-10 07:23:45 +08:00
|
|
|
template <class ELFT> static void sortCtorsDtors(OutputSectionBase *S) {
|
2016-02-12 07:41:38 +08:00
|
|
|
if (S)
|
|
|
|
reinterpret_cast<OutputSection<ELFT> *>(S)->sortCtorsDtors();
|
2016-02-11 07:20:42 +08:00
|
|
|
}
|
|
|
|
|
2016-11-10 17:05:20 +08:00
|
|
|
// Sort input sections using the list provided by --symbol-ordering-file.
|
|
|
|
template <class ELFT>
|
|
|
|
static void sortBySymbolsOrder(ArrayRef<OutputSectionBase *> V) {
|
|
|
|
if (Config->SymbolOrderingFile.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Build sections order map from symbols list.
|
|
|
|
DenseMap<InputSectionBase<ELFT> *, unsigned> SectionsOrder;
|
|
|
|
for (elf::ObjectFile<ELFT> *File : Symtab<ELFT>::X->getObjectFiles()) {
|
|
|
|
for (SymbolBody *Body : File->getSymbols()) {
|
|
|
|
auto *D = dyn_cast<DefinedRegular<ELFT>>(Body);
|
|
|
|
if (!D || !D->Section)
|
|
|
|
continue;
|
|
|
|
StringRef SymName = getSymbolName(File->getStringTable(), *Body);
|
|
|
|
auto It = Config->SymbolOrderingFile.find(CachedHashString(SymName));
|
|
|
|
if (It == Config->SymbolOrderingFile.end())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto It2 = SectionsOrder.insert({D->Section, It->second});
|
|
|
|
if (!It2.second)
|
|
|
|
It2.first->second = std::min(It->second, It2.first->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (OutputSectionBase *Base : V)
|
|
|
|
if (OutputSection<ELFT> *Sec = dyn_cast<OutputSection<ELFT>>(Base))
|
|
|
|
Sec->sort([&](InputSection<ELFT> *S) {
|
|
|
|
auto It = SectionsOrder.find(S);
|
|
|
|
return It == SectionsOrder.end() ? UINT32_MAX : It->second;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-21 01:58:07 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void Writer<ELFT>::forEachRelSec(
|
|
|
|
std::function<void(InputSectionBase<ELFT> &, const typename ELFT::Shdr &)>
|
|
|
|
Fn) {
|
2016-11-06 06:37:59 +08:00
|
|
|
for (InputSectionBase<ELFT> *IS : Symtab<ELFT>::X->Sections) {
|
2016-11-09 02:23:02 +08:00
|
|
|
if (!IS->Live)
|
2016-11-06 06:37:59 +08:00
|
|
|
continue;
|
|
|
|
// Scan all relocations. Each relocation goes through a series
|
|
|
|
// of tests to determine if it needs special treatment, such as
|
|
|
|
// creating GOT, PLT, copy relocations, etc.
|
|
|
|
// Note that relocations for non-alloc sections are directly
|
|
|
|
// processed by InputSection::relocateNonAlloc.
|
|
|
|
if (!(IS->Flags & SHF_ALLOC))
|
|
|
|
continue;
|
|
|
|
if (auto *S = dyn_cast<InputSection<ELFT>>(IS)) {
|
|
|
|
for (const Elf_Shdr *RelSec : S->RelocSections)
|
|
|
|
Fn(*S, *RelSec);
|
|
|
|
continue;
|
2016-07-21 01:58:07 +08:00
|
|
|
}
|
2016-11-06 06:37:59 +08:00
|
|
|
if (auto *S = dyn_cast<EhInputSection<ELFT>>(IS))
|
|
|
|
if (S->RelocSection)
|
|
|
|
Fn(*S, *S->RelocSection);
|
2016-07-21 01:58:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 17:49:24 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void Writer<ELFT>::addInputSec(InputSectionBase<ELFT> *IS) {
|
2016-11-09 02:23:02 +08:00
|
|
|
if (!IS->Live) {
|
2016-11-01 17:49:24 +08:00
|
|
|
reportDiscarded(IS);
|
|
|
|
return;
|
|
|
|
}
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *Sec;
|
2016-11-01 17:49:24 +08:00
|
|
|
bool IsNew;
|
|
|
|
StringRef OutsecName = getOutputSectionName(IS->Name);
|
|
|
|
std::tie(Sec, IsNew) = Factory.create(IS, OutsecName);
|
|
|
|
if (IsNew)
|
|
|
|
OutputSections.push_back(Sec);
|
|
|
|
Sec->addSection(IS);
|
|
|
|
}
|
2016-10-28 01:45:40 +08:00
|
|
|
|
2016-11-01 17:49:24 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::createSections() {
|
2016-11-06 06:37:59 +08:00
|
|
|
for (InputSectionBase<ELFT> *IS : Symtab<ELFT>::X->Sections)
|
|
|
|
addInputSec(IS);
|
2016-08-11 15:56:43 +08:00
|
|
|
|
2016-11-10 17:05:20 +08:00
|
|
|
sortBySymbolsOrder<ELFT>(OutputSections);
|
2016-11-10 07:23:45 +08:00
|
|
|
sortInitFini<ELFT>(findSection(".init_array"));
|
|
|
|
sortInitFini<ELFT>(findSection(".fini_array"));
|
|
|
|
sortCtorsDtors<ELFT>(findSection(".ctors"));
|
|
|
|
sortCtorsDtors<ELFT>(findSection(".dtors"));
|
2016-08-11 15:56:43 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-08-11 15:56:43 +08:00
|
|
|
Sec->assignOffsets();
|
2016-07-20 22:43:20 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 18:44:48 +08:00
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
static bool canSharePtLoad(const OutputSectionBase &S1,
|
|
|
|
const OutputSectionBase &S2) {
|
2016-11-09 09:42:41 +08:00
|
|
|
if (!(S1.Flags & SHF_ALLOC) || !(S2.Flags & SHF_ALLOC))
|
2016-11-08 18:44:48 +08:00
|
|
|
return false;
|
|
|
|
|
2016-11-09 09:42:41 +08:00
|
|
|
bool S1IsWrite = S1.Flags & SHF_WRITE;
|
|
|
|
bool S2IsWrite = S2.Flags & SHF_WRITE;
|
2016-11-08 18:44:48 +08:00
|
|
|
if (S1IsWrite != S2IsWrite)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!S1IsWrite)
|
|
|
|
return true; // RO and RX share a PT_LOAD with linker scripts.
|
2016-11-09 09:42:41 +08:00
|
|
|
return (S1.Flags & SHF_EXECINSTR) == (S2.Flags & SHF_EXECINSTR);
|
2016-11-08 18:44:48 +08:00
|
|
|
}
|
|
|
|
|
2016-09-22 06:36:19 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::sortSections() {
|
|
|
|
if (!ScriptConfig->HasSections) {
|
|
|
|
std::stable_sort(OutputSections.begin(), OutputSections.end(),
|
|
|
|
compareSectionsNonScript<ELFT>);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-22 22:40:50 +08:00
|
|
|
Script<ELFT>::X->adjustSectionsBeforeSorting();
|
2016-09-22 06:36:19 +08:00
|
|
|
|
|
|
|
// The order of the sections in the script is arbitrary and may not agree with
|
|
|
|
// compareSectionsNonScript. This means that we cannot easily define a
|
|
|
|
// strict weak ordering. To see why, consider a comparison of a section in the
|
|
|
|
// script and one not in the script. We have a two simple options:
|
|
|
|
// * Make them equivalent (a is not less than b, and b is not less than a).
|
|
|
|
// The problem is then that equivalence has to be transitive and we can
|
|
|
|
// have sections a, b and c with only b in a script and a less than c
|
|
|
|
// which breaks this property.
|
|
|
|
// * Use compareSectionsNonScript. Given that the script order doesn't have
|
|
|
|
// to match, we can end up with sections a, b, c, d where b and c are in the
|
|
|
|
// script and c is compareSectionsNonScript less than b. In which case d
|
|
|
|
// can be equivalent to c, a to b and d < a. As a concrete example:
|
|
|
|
// .a (rx) # not in script
|
|
|
|
// .b (rx) # in script
|
|
|
|
// .c (ro) # in script
|
|
|
|
// .d (ro) # not in script
|
|
|
|
//
|
|
|
|
// The way we define an order then is:
|
|
|
|
// * First put script sections at the start and sort the script and
|
|
|
|
// non-script sections independently.
|
2016-11-08 18:44:48 +08:00
|
|
|
// * Move each non-script section to its preferred position. We try
|
|
|
|
// to put each section in the last position where it it can share
|
|
|
|
// a PT_LOAD.
|
2016-09-22 06:36:19 +08:00
|
|
|
|
|
|
|
std::stable_sort(OutputSections.begin(), OutputSections.end(),
|
|
|
|
compareSections<ELFT>);
|
|
|
|
|
|
|
|
auto I = OutputSections.begin();
|
|
|
|
auto E = OutputSections.end();
|
2016-11-08 18:44:48 +08:00
|
|
|
auto NonScriptI =
|
2016-11-10 07:23:45 +08:00
|
|
|
std::find_if(OutputSections.begin(), E, [](OutputSectionBase *S) {
|
2016-11-08 18:44:48 +08:00
|
|
|
return Script<ELFT>::X->getSectionIndex(S->getName()) == INT_MAX;
|
|
|
|
});
|
2016-09-22 06:36:19 +08:00
|
|
|
while (NonScriptI != E) {
|
2016-11-10 07:23:45 +08:00
|
|
|
auto BestPos = std::max_element(
|
|
|
|
I, NonScriptI, [&](OutputSectionBase *&A, OutputSectionBase *&B) {
|
|
|
|
bool ACanSharePtLoad = canSharePtLoad<ELFT>(**NonScriptI, *A);
|
|
|
|
bool BCanSharePtLoad = canSharePtLoad<ELFT>(**NonScriptI, *B);
|
2016-11-08 18:44:48 +08:00
|
|
|
if (ACanSharePtLoad != BCanSharePtLoad)
|
|
|
|
return BCanSharePtLoad;
|
|
|
|
|
|
|
|
bool ACmp = compareSectionsNonScript<ELFT>(*NonScriptI, A);
|
|
|
|
bool BCmp = compareSectionsNonScript<ELFT>(*NonScriptI, B);
|
|
|
|
if (ACmp != BCmp)
|
|
|
|
return BCmp; // FIXME: missing test
|
|
|
|
|
|
|
|
size_t PosA = &A - &OutputSections[0];
|
|
|
|
size_t PosB = &B - &OutputSections[0];
|
|
|
|
return ACmp ? PosA > PosB : PosA < PosB;
|
2016-09-22 06:36:19 +08:00
|
|
|
});
|
2016-11-08 18:44:48 +08:00
|
|
|
|
|
|
|
// max_element only returns NonScriptI if the range is empty. If the range
|
|
|
|
// is not empty we should consider moving the the element forward one
|
|
|
|
// position.
|
|
|
|
if (BestPos != NonScriptI &&
|
|
|
|
!compareSectionsNonScript<ELFT>(*NonScriptI, *BestPos))
|
|
|
|
++BestPos;
|
|
|
|
std::rotate(BestPos, NonScriptI, NonScriptI + 1);
|
2016-09-22 06:36:19 +08:00
|
|
|
++NonScriptI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-20 22:43:20 +08:00
|
|
|
// Create output section objects and add them to OutputSections.
|
|
|
|
template <class ELFT> void Writer<ELFT>::finalizeSections() {
|
2016-10-20 17:19:48 +08:00
|
|
|
Out<ELFT>::DebugInfo = findSection(".debug_info");
|
2016-08-09 12:25:20 +08:00
|
|
|
Out<ELFT>::PreinitArray = findSection(".preinit_array");
|
|
|
|
Out<ELFT>::InitArray = findSection(".init_array");
|
|
|
|
Out<ELFT>::FiniArray = findSection(".fini_array");
|
2015-10-03 03:37:55 +08:00
|
|
|
|
2015-12-26 17:48:00 +08:00
|
|
|
// The linker needs to define SECNAME_start, SECNAME_end and SECNAME_stop
|
|
|
|
// symbols for sections, so that the runtime can get the start and end
|
|
|
|
// addresses of each section by section name. Add such symbols.
|
2016-03-02 03:12:35 +08:00
|
|
|
if (!Config->Relocatable) {
|
|
|
|
addStartEndSymbols();
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-03-02 03:12:35 +08:00
|
|
|
addStartStopSymbols(Sec);
|
|
|
|
}
|
2016-03-05 02:34:14 +08:00
|
|
|
|
|
|
|
// Add _DYNAMIC symbol. Unlike GNU gold, our _DYNAMIC symbol has no type.
|
|
|
|
// It should be okay as no one seems to care about the type.
|
|
|
|
// Even the author of gold doesn't remember why gold behaves that way.
|
|
|
|
// https://sourceware.org/ml/binutils/2002-03/msg00360.html
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab)
|
2016-08-19 23:36:32 +08:00
|
|
|
Symtab<ELFT>::X->addSynthetic("_DYNAMIC", Out<ELFT>::Dynamic, 0,
|
|
|
|
STV_HIDDEN);
|
2015-10-19 23:21:42 +08:00
|
|
|
|
2016-02-05 05:33:05 +08:00
|
|
|
// Define __rel[a]_iplt_{start,end} symbols if needed.
|
|
|
|
addRelIpltSymbols();
|
|
|
|
|
2016-05-24 00:24:16 +08:00
|
|
|
if (!Out<ELFT>::EhFrame->empty()) {
|
|
|
|
OutputSections.push_back(Out<ELFT>::EhFrame);
|
|
|
|
Out<ELFT>::EhFrame->finalize();
|
|
|
|
}
|
2016-04-07 22:22:09 +08:00
|
|
|
|
2016-07-21 01:58:07 +08:00
|
|
|
// Scan relocations. This must be done after every symbol is declared so that
|
|
|
|
// we can correctly decide if a dynamic relocation is needed.
|
|
|
|
forEachRelSec(scanRelocations<ELFT>);
|
|
|
|
|
2015-12-26 18:22:16 +08:00
|
|
|
// Now that we have defined all possible symbols including linker-
|
|
|
|
// synthesized ones. Visit all symbols to give the finishing touches.
|
2016-08-09 11:38:23 +08:00
|
|
|
for (Symbol *S : Symtab<ELFT>::X->getSymbols()) {
|
ELF: New symbol table design.
This patch implements a new design for the symbol table that stores
SymbolBodies within a memory region of the Symbol object. Symbols are mutated
by constructing SymbolBodies in place over existing SymbolBodies, rather
than by mutating pointers. As mentioned in the initial proposal [1], this
memory layout helps reduce the cache miss rate by improving memory locality.
Performance numbers:
old(s) new(s)
Without debug info:
chrome 7.178 6.432 (-11.5%)
LLVMgold.so 0.505 0.502 (-0.5%)
clang 0.954 0.827 (-15.4%)
llvm-as 0.052 0.045 (-15.5%)
With debug info:
scylla 5.695 5.613 (-1.5%)
clang 14.396 14.143 (-1.8%)
Performance counter results show that the fewer required indirections is
indeed the cause of the improved performance. For example, when linking
chrome, stalled cycles decreases from 14,556,444,002 to 12,959,238,310, and
instructions per cycle increases from 0.78 to 0.83. We are also executing
many fewer instructions (15,516,401,933 down to 15,002,434,310), probably
because we spend less time allocating SymbolBodies.
The new mechanism by which symbols are added to the symbol table is by calling
add* functions on the SymbolTable.
In this patch, I handle local symbols by storing them inside "unparented"
SymbolBodies. This is suboptimal, but if we do want to try to avoid allocating
these SymbolBodies, we can probably do that separately.
I also removed a few members from the SymbolBody class that were only being
used to pass information from the input file to the symbol table.
This patch implements the new design for the ELF linker only. I intend to
prepare a similar patch for the COFF linker.
[1] http://lists.llvm.org/pipermail/llvm-dev/2016-April/098832.html
Differential Revision: http://reviews.llvm.org/D19752
llvm-svn: 268178
2016-05-01 12:55:03 +08:00
|
|
|
SymbolBody *Body = S->body();
|
2016-04-26 21:56:26 +08:00
|
|
|
|
2015-10-05 23:24:04 +08:00
|
|
|
if (!includeInSymtab<ELFT>(*Body))
|
2015-09-23 07:38:23 +08:00
|
|
|
continue;
|
2015-10-24 16:52:46 +08:00
|
|
|
if (Out<ELFT>::SymTab)
|
|
|
|
Out<ELFT>::SymTab->addSymbol(Body);
|
2015-09-23 07:38:23 +08:00
|
|
|
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab && S->includeInDynsym()) {
|
2015-10-21 05:47:58 +08:00
|
|
|
Out<ELFT>::DynSymTab->addSymbol(Body);
|
2016-04-28 04:22:31 +08:00
|
|
|
if (auto *SS = dyn_cast<SharedSymbol<ELFT>>(Body))
|
2016-07-17 11:11:46 +08:00
|
|
|
if (SS->file()->isNeeded())
|
2016-06-10 02:01:35 +08:00
|
|
|
Out<ELFT>::VerNeed->addSymbol(SS);
|
2016-04-28 04:22:31 +08:00
|
|
|
}
|
2015-09-23 07:38:23 +08:00
|
|
|
}
|
2016-01-29 06:56:29 +08:00
|
|
|
|
|
|
|
// Do not proceed if there was an undefined symbol.
|
|
|
|
if (HasError)
|
2016-04-02 01:24:19 +08:00
|
|
|
return;
|
2016-01-29 06:56:29 +08:00
|
|
|
|
2015-12-26 15:50:41 +08:00
|
|
|
// So far we have added sections from input object files.
|
|
|
|
// This function adds linker-created Out<ELFT>::* sections.
|
|
|
|
addPredefinedSections();
|
|
|
|
|
2016-11-10 17:48:29 +08:00
|
|
|
// We fill .got.plt section in scanRelocs(). This is the
|
|
|
|
// reason we don't add it earlier in createSections().
|
|
|
|
if (!In<ELFT>::GotPlt->empty()) {
|
|
|
|
addInputSec(In<ELFT>::GotPlt);
|
|
|
|
In<ELFT>::GotPlt->OutSec->assignOffsets();
|
|
|
|
}
|
|
|
|
|
2016-09-22 06:36:19 +08:00
|
|
|
sortSections();
|
2015-12-26 15:50:41 +08:00
|
|
|
|
2016-04-06 15:20:45 +08:00
|
|
|
unsigned I = 1;
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections) {
|
2016-04-06 15:20:45 +08:00
|
|
|
Sec->SectionIndex = I++;
|
2016-11-09 09:42:41 +08:00
|
|
|
Sec->ShName = Out<ELFT>::ShStrTab->addString(Sec->getName());
|
2016-04-06 15:20:45 +08:00
|
|
|
}
|
2015-12-26 15:50:41 +08:00
|
|
|
|
|
|
|
// Finalizers fix each section's size.
|
2016-01-26 05:32:04 +08:00
|
|
|
// .dynsym is finalized early since that may fill up .gnu.hash.
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab)
|
2015-12-26 15:50:41 +08:00
|
|
|
Out<ELFT>::DynSymTab->finalize();
|
|
|
|
|
2016-02-02 17:07:47 +08:00
|
|
|
// Fill other section headers. The dynamic table is finalized
|
|
|
|
// at the end because some tags like RELSZ depend on result
|
2016-11-02 10:18:01 +08:00
|
|
|
// of finalizing other sections.
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-11-02 10:18:01 +08:00
|
|
|
if (Sec != Out<ELFT>::Dynamic)
|
2016-01-26 05:32:04 +08:00
|
|
|
Sec->finalize();
|
2016-02-02 17:07:47 +08:00
|
|
|
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab)
|
2016-02-02 17:07:47 +08:00
|
|
|
Out<ELFT>::Dynamic->finalize();
|
Avoid doing binary search.
MergedInputSection::getOffset is the busiest function in LLD if string
merging is enabled and input files have lots of mergeable sections.
It is usually the case when creating executable with debug info,
so it is pretty common.
The reason why it is slow is because it has to do faily complex
computations. For non-mergeable sections, section contents are
contiguous in output, so in order to compute an output offset,
we only have to add the output section's base address to an input
offset. But for mergeable strings, section contents are split for
merging, so they are not contigous. We've got to do some lookups.
We used to do binary search on the list of section pieces.
It is slow because I think it's hostile to branch prediction.
This patch replaces it with hash table lookup. Seems it's working
pretty well. Below is "perf stat -r10" output when linking clang
with debug info. In this case this patch speeds up about 4%.
Before:
6584.153205 task-clock (msec) # 1.001 CPUs utilized ( +- 0.09% )
238 context-switches # 0.036 K/sec ( +- 6.59% )
0 cpu-migrations # 0.000 K/sec ( +- 50.92% )
1,067,675 page-faults # 0.162 M/sec ( +- 0.15% )
18,369,931,470 cycles # 2.790 GHz ( +- 0.09% )
9,640,680,143 stalled-cycles-frontend # 52.48% frontend cycles idle ( +- 0.18% )
<not supported> stalled-cycles-backend
21,206,747,787 instructions # 1.15 insns per cycle
# 0.45 stalled cycles per insn ( +- 0.04% )
3,817,398,032 branches # 579.786 M/sec ( +- 0.04% )
132,787,249 branch-misses # 3.48% of all branches ( +- 0.02% )
6.579106511 seconds time elapsed ( +- 0.09% )
After:
6312.317533 task-clock (msec) # 1.001 CPUs utilized ( +- 0.19% )
221 context-switches # 0.035 K/sec ( +- 4.11% )
1 cpu-migrations # 0.000 K/sec ( +- 45.21% )
1,280,775 page-faults # 0.203 M/sec ( +- 0.37% )
17,611,539,150 cycles # 2.790 GHz ( +- 0.19% )
10,285,148,569 stalled-cycles-frontend # 58.40% frontend cycles idle ( +- 0.30% )
<not supported> stalled-cycles-backend
18,794,779,900 instructions # 1.07 insns per cycle
# 0.55 stalled cycles per insn ( +- 0.03% )
3,287,450,865 branches # 520.799 M/sec ( +- 0.03% )
72,259,605 branch-misses # 2.20% of all branches ( +- 0.01% )
6.307411828 seconds time elapsed ( +- 0.19% )
Differential Revision: http://reviews.llvm.org/D20645
llvm-svn: 270999
2016-05-27 22:39:13 +08:00
|
|
|
|
|
|
|
// Now that all output offsets are fixed. Finalize mergeable sections
|
|
|
|
// to fix their maps from input offsets to output offsets.
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
Avoid doing binary search.
MergedInputSection::getOffset is the busiest function in LLD if string
merging is enabled and input files have lots of mergeable sections.
It is usually the case when creating executable with debug info,
so it is pretty common.
The reason why it is slow is because it has to do faily complex
computations. For non-mergeable sections, section contents are
contiguous in output, so in order to compute an output offset,
we only have to add the output section's base address to an input
offset. But for mergeable strings, section contents are split for
merging, so they are not contigous. We've got to do some lookups.
We used to do binary search on the list of section pieces.
It is slow because I think it's hostile to branch prediction.
This patch replaces it with hash table lookup. Seems it's working
pretty well. Below is "perf stat -r10" output when linking clang
with debug info. In this case this patch speeds up about 4%.
Before:
6584.153205 task-clock (msec) # 1.001 CPUs utilized ( +- 0.09% )
238 context-switches # 0.036 K/sec ( +- 6.59% )
0 cpu-migrations # 0.000 K/sec ( +- 50.92% )
1,067,675 page-faults # 0.162 M/sec ( +- 0.15% )
18,369,931,470 cycles # 2.790 GHz ( +- 0.09% )
9,640,680,143 stalled-cycles-frontend # 52.48% frontend cycles idle ( +- 0.18% )
<not supported> stalled-cycles-backend
21,206,747,787 instructions # 1.15 insns per cycle
# 0.45 stalled cycles per insn ( +- 0.04% )
3,817,398,032 branches # 579.786 M/sec ( +- 0.04% )
132,787,249 branch-misses # 3.48% of all branches ( +- 0.02% )
6.579106511 seconds time elapsed ( +- 0.09% )
After:
6312.317533 task-clock (msec) # 1.001 CPUs utilized ( +- 0.19% )
221 context-switches # 0.035 K/sec ( +- 4.11% )
1 cpu-migrations # 0.000 K/sec ( +- 45.21% )
1,280,775 page-faults # 0.203 M/sec ( +- 0.37% )
17,611,539,150 cycles # 2.790 GHz ( +- 0.19% )
10,285,148,569 stalled-cycles-frontend # 58.40% frontend cycles idle ( +- 0.30% )
<not supported> stalled-cycles-backend
18,794,779,900 instructions # 1.07 insns per cycle
# 0.55 stalled cycles per insn ( +- 0.03% )
3,287,450,865 branches # 520.799 M/sec ( +- 0.03% )
72,259,605 branch-misses # 2.20% of all branches ( +- 0.01% )
6.307411828 seconds time elapsed ( +- 0.19% )
Differential Revision: http://reviews.llvm.org/D20645
llvm-svn: 270999
2016-05-27 22:39:13 +08:00
|
|
|
Sec->finalizePieces();
|
2015-12-26 15:50:41 +08:00
|
|
|
}
|
|
|
|
|
2016-02-26 03:34:37 +08:00
|
|
|
template <class ELFT> bool Writer<ELFT>::needsGot() {
|
|
|
|
if (!Out<ELFT>::Got->empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// We add the .got section to the result for dynamic MIPS target because
|
|
|
|
// its address and properties are mentioned in the .dynamic section.
|
2016-07-27 05:11:30 +08:00
|
|
|
if (Config->EMachine == EM_MIPS && !Config->Relocatable)
|
2016-02-26 03:34:37 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// If we have a relocation that is relative to GOT (such as GOTOFFREL),
|
|
|
|
// we need to emit a GOT even if it's empty.
|
2016-05-24 11:36:07 +08:00
|
|
|
return Out<ELFT>::Got->HasGotOffRel;
|
2016-02-26 03:34:37 +08:00
|
|
|
}
|
|
|
|
|
2015-12-26 15:50:41 +08:00
|
|
|
// This function add Out<ELFT>::* sections to OutputSections.
|
|
|
|
template <class ELFT> void Writer<ELFT>::addPredefinedSections() {
|
2016-11-10 07:23:45 +08:00
|
|
|
auto Add = [&](OutputSectionBase *OS) {
|
2016-09-20 01:38:39 +08:00
|
|
|
if (OS)
|
|
|
|
OutputSections.push_back(OS);
|
2015-12-26 18:34:33 +08:00
|
|
|
};
|
|
|
|
|
2015-10-16 05:50:30 +08:00
|
|
|
// This order is not the same as the final output order
|
|
|
|
// because we sort the sections using their attributes below.
|
2016-10-20 17:19:48 +08:00
|
|
|
if (Out<ELFT>::GdbIndex && Out<ELFT>::DebugInfo)
|
|
|
|
Add(Out<ELFT>::GdbIndex);
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::SymTab);
|
|
|
|
Add(Out<ELFT>::ShStrTab);
|
|
|
|
Add(Out<ELFT>::StrTab);
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab) {
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::DynSymTab);
|
2016-06-20 19:55:12 +08:00
|
|
|
|
|
|
|
bool HasVerNeed = Out<ELFT>::VerNeed->getNeedNum() != 0;
|
|
|
|
if (Out<ELFT>::VerDef || HasVerNeed)
|
2016-04-28 04:22:31 +08:00
|
|
|
Add(Out<ELFT>::VerSym);
|
2016-06-20 21:22:54 +08:00
|
|
|
Add(Out<ELFT>::VerDef);
|
2016-06-20 19:55:12 +08:00
|
|
|
if (HasVerNeed)
|
2016-04-28 04:22:31 +08:00
|
|
|
Add(Out<ELFT>::VerNeed);
|
2016-06-20 19:55:12 +08:00
|
|
|
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::GnuHashTab);
|
|
|
|
Add(Out<ELFT>::HashTab);
|
|
|
|
Add(Out<ELFT>::Dynamic);
|
|
|
|
Add(Out<ELFT>::DynStrTab);
|
2015-10-08 03:18:16 +08:00
|
|
|
if (Out<ELFT>::RelaDyn->hasRelocs())
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::RelaDyn);
|
2016-02-26 07:54:49 +08:00
|
|
|
Add(Out<ELFT>::MipsRldMap);
|
2015-09-09 23:33:08 +08:00
|
|
|
}
|
2015-11-12 12:39:49 +08:00
|
|
|
|
2015-12-21 18:12:06 +08:00
|
|
|
// We always need to add rel[a].plt to output if it has entries.
|
|
|
|
// Even during static linking it can contain R_[*]_IRELATIVE relocations.
|
2016-08-09 12:31:21 +08:00
|
|
|
if (Out<ELFT>::RelaPlt && Out<ELFT>::RelaPlt->hasRelocs())
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::RelaPlt);
|
2015-12-21 18:12:06 +08:00
|
|
|
|
2016-02-26 03:34:37 +08:00
|
|
|
if (needsGot())
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::Got);
|
2015-10-08 03:18:16 +08:00
|
|
|
if (!Out<ELFT>::Plt->empty())
|
2015-12-26 18:34:33 +08:00
|
|
|
Add(Out<ELFT>::Plt);
|
2016-05-24 00:24:16 +08:00
|
|
|
if (!Out<ELFT>::EhFrame->empty())
|
2016-01-15 21:34:52 +08:00
|
|
|
Add(Out<ELFT>::EhFrameHdr);
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Out<ELFT>::Bss->Size > 0)
|
2016-05-24 11:16:51 +08:00
|
|
|
Add(Out<ELFT>::Bss);
|
2015-08-13 23:23:46 +08:00
|
|
|
}
|
|
|
|
|
2015-12-26 17:48:00 +08:00
|
|
|
// The linker is expected to define SECNAME_start and SECNAME_end
|
|
|
|
// symbols for a few sections. This function defines them.
|
|
|
|
template <class ELFT> void Writer<ELFT>::addStartEndSymbols() {
|
2016-11-10 07:23:45 +08:00
|
|
|
auto Define = [&](StringRef Start, StringRef End, OutputSectionBase *OS) {
|
2016-10-25 04:46:21 +08:00
|
|
|
// These symbols resolve to the image base if the section does not exist.
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>(Start, OS, 0);
|
|
|
|
addOptionalSynthetic<ELFT>(End, OS,
|
|
|
|
OS ? DefinedSynthetic<ELFT>::SectionEnd : 0);
|
2015-12-26 17:48:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Define("__preinit_array_start", "__preinit_array_end",
|
2016-08-09 12:25:20 +08:00
|
|
|
Out<ELFT>::PreinitArray);
|
|
|
|
Define("__init_array_start", "__init_array_end", Out<ELFT>::InitArray);
|
|
|
|
Define("__fini_array_start", "__fini_array_end", Out<ELFT>::FiniArray);
|
2016-10-27 18:28:53 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
if (OutputSectionBase *Sec = findSection(".ARM.exidx"))
|
2016-10-27 18:28:53 +08:00
|
|
|
Define("__exidx_start", "__exidx_end", Sec);
|
2015-12-26 17:48:00 +08:00
|
|
|
}
|
|
|
|
|
2015-10-16 01:11:03 +08:00
|
|
|
// If a section name is valid as a C identifier (which is rare because of
|
|
|
|
// the leading '.'), linkers are expected to define __start_<secname> and
|
|
|
|
// __stop_<secname> symbols. They are at beginning and end of the section,
|
|
|
|
// respectively. This is not requested by the ELF standard, but GNU ld and
|
|
|
|
// gold provide the feature, and used by many programs.
|
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
void Writer<ELFT>::addStartStopSymbols(OutputSectionBase *Sec) {
|
2015-10-16 01:11:03 +08:00
|
|
|
StringRef S = Sec->getName();
|
|
|
|
if (!isValidCIdentifier(S))
|
|
|
|
return;
|
2016-11-10 07:23:45 +08:00
|
|
|
addOptionalSynthetic<ELFT>(Saver.save("__start_" + S), Sec, 0, STV_DEFAULT);
|
|
|
|
addOptionalSynthetic<ELFT>(Saver.save("__stop_" + S), Sec,
|
|
|
|
DefinedSynthetic<ELFT>::SectionEnd, STV_DEFAULT);
|
2015-10-16 01:11:03 +08:00
|
|
|
}
|
|
|
|
|
2016-08-09 09:35:38 +08:00
|
|
|
template <class ELFT>
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *Writer<ELFT>::findSection(StringRef Name) {
|
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-08-09 09:35:38 +08:00
|
|
|
if (Sec->getName() == Name)
|
|
|
|
return Sec;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
template <class ELFT> static bool needsPtLoad(OutputSectionBase *Sec) {
|
2016-11-09 09:42:41 +08:00
|
|
|
if (!(Sec->Flags & SHF_ALLOC))
|
2016-02-11 07:29:38 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Don't allocate VA space for TLS NOBITS sections. The PT_TLS PHDR is
|
|
|
|
// responsible for allocating space for them, not the PT_LOAD that
|
|
|
|
// contains the TLS initialization image.
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Flags & SHF_TLS && Sec->Type == SHT_NOBITS)
|
2016-02-11 07:29:38 +08:00
|
|
|
return false;
|
|
|
|
return true;
|
2015-09-10 04:48:09 +08:00
|
|
|
}
|
|
|
|
|
2016-09-20 23:22:27 +08:00
|
|
|
// Linker scripts are responsible for aligning addresses. Unfortunately, most
|
|
|
|
// linker scripts are designed for creating two PT_LOADs only, one RX and one
|
|
|
|
// RW. This means that there is no alignment in the RO to RX transition and we
|
|
|
|
// cannot create a PT_LOAD there.
|
|
|
|
template <class ELFT>
|
|
|
|
static typename ELFT::uint computeFlags(typename ELFT::uint F) {
|
|
|
|
if (ScriptConfig->HasSections && !(F & PF_W))
|
|
|
|
return F | PF_X;
|
|
|
|
return F;
|
|
|
|
}
|
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// Decide which program headers to create and which sections to include in each
|
|
|
|
// one.
|
2016-10-20 16:36:42 +08:00
|
|
|
template <class ELFT> std::vector<PhdrEntry<ELFT>> Writer<ELFT>::createPhdrs() {
|
2016-07-21 03:36:39 +08:00
|
|
|
std::vector<Phdr> Ret;
|
|
|
|
auto AddHdr = [&](unsigned Type, unsigned Flags) -> Phdr * {
|
|
|
|
Ret.emplace_back(Type, Flags);
|
|
|
|
return &Ret.back();
|
2016-02-11 06:43:13 +08:00
|
|
|
};
|
2015-09-10 04:48:09 +08:00
|
|
|
|
2015-10-24 05:45:59 +08:00
|
|
|
// The first phdr entry is PT_PHDR which describes the program header itself.
|
2016-02-11 06:43:13 +08:00
|
|
|
Phdr &Hdr = *AddHdr(PT_PHDR, PF_R);
|
2016-07-21 03:36:41 +08:00
|
|
|
Hdr.add(Out<ELFT>::ProgramHeaders);
|
2015-08-13 23:23:46 +08:00
|
|
|
|
2015-10-24 05:45:59 +08:00
|
|
|
// PT_INTERP must be the second entry if exists.
|
2016-11-10 07:23:45 +08:00
|
|
|
if (OutputSectionBase *Sec = findSection(".interp")) {
|
2016-11-03 02:58:44 +08:00
|
|
|
Phdr &Hdr = *AddHdr(PT_INTERP, Sec->getPhdrFlags());
|
|
|
|
Hdr.add(Sec);
|
2016-02-11 06:43:13 +08:00
|
|
|
}
|
2015-09-12 02:49:42 +08:00
|
|
|
|
2015-10-24 05:45:59 +08:00
|
|
|
// Add the first PT_LOAD segment for regular output sections.
|
2016-09-20 23:22:27 +08:00
|
|
|
uintX_t Flags = computeFlags<ELFT>(PF_R);
|
2016-02-11 06:43:13 +08:00
|
|
|
Phdr *Load = AddHdr(PT_LOAD, Flags);
|
2016-09-30 02:50:34 +08:00
|
|
|
if (!ScriptConfig->HasSections) {
|
|
|
|
Load->add(Out<ELFT>::ElfHeader);
|
|
|
|
Load->add(Out<ELFT>::ProgramHeaders);
|
|
|
|
}
|
2015-09-10 23:41:34 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
Phdr TlsHdr(PT_TLS, PF_R);
|
|
|
|
Phdr RelRo(PT_GNU_RELRO, PF_R);
|
2016-03-01 21:23:29 +08:00
|
|
|
Phdr Note(PT_NOTE, PF_R);
|
2016-10-10 17:39:26 +08:00
|
|
|
Phdr ARMExidx(PT_ARM_EXIDX, PF_R);
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections) {
|
2016-11-09 09:42:41 +08:00
|
|
|
if (!(Sec->Flags & SHF_ALLOC))
|
2016-09-17 05:29:07 +08:00
|
|
|
break;
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2016-02-11 07:29:38 +08:00
|
|
|
// If we meet TLS section then we create TLS header
|
2016-09-21 00:57:02 +08:00
|
|
|
// and put all TLS sections inside for further use when
|
2016-02-11 07:29:38 +08:00
|
|
|
// assign addresses.
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Flags & SHF_TLS)
|
2016-07-21 03:36:41 +08:00
|
|
|
TlsHdr.add(Sec);
|
2016-02-11 07:29:38 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
if (!needsPtLoad<ELFT>(Sec))
|
2016-02-11 07:29:38 +08:00
|
|
|
continue;
|
|
|
|
|
2016-08-17 15:44:19 +08:00
|
|
|
// Segments are contiguous memory regions that has the same attributes
|
|
|
|
// (e.g. executable or writable). There is one phdr for each segment.
|
|
|
|
// Therefore, we need to create a new phdr when the next section has
|
|
|
|
// different flags or is loaded at a discontiguous address using AT linker
|
|
|
|
// script command.
|
2016-09-20 23:22:27 +08:00
|
|
|
uintX_t NewFlags = computeFlags<ELFT>(Sec->getPhdrFlags());
|
2016-10-06 17:39:28 +08:00
|
|
|
if (Script<ELFT>::X->hasLMA(Sec->getName()) || Flags != NewFlags) {
|
2016-03-10 05:37:22 +08:00
|
|
|
Load = AddHdr(PT_LOAD, NewFlags);
|
2016-02-11 06:43:13 +08:00
|
|
|
Flags = NewFlags;
|
2015-08-13 23:31:17 +08:00
|
|
|
}
|
2015-08-12 08:00:24 +08:00
|
|
|
|
2016-07-21 03:36:41 +08:00
|
|
|
Load->add(Sec);
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
if (isRelroSection<ELFT>(Sec))
|
2016-07-21 03:36:41 +08:00
|
|
|
RelRo.add(Sec);
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Type == SHT_NOTE)
|
2016-07-21 03:36:41 +08:00
|
|
|
Note.add(Sec);
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Config->EMachine == EM_ARM && Sec->Type == SHT_ARM_EXIDX)
|
2016-10-10 17:39:26 +08:00
|
|
|
ARMExidx.add(Sec);
|
2015-11-05 10:00:35 +08:00
|
|
|
}
|
2015-11-03 08:34:39 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// Add the TLS segment unless it's empty.
|
|
|
|
if (TlsHdr.First)
|
2016-07-21 03:36:39 +08:00
|
|
|
Ret.push_back(std::move(TlsHdr));
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2015-10-24 05:45:59 +08:00
|
|
|
// Add an entry for .dynamic.
|
2016-08-09 12:42:01 +08:00
|
|
|
if (Out<ELFT>::DynSymTab) {
|
2016-07-27 22:10:56 +08:00
|
|
|
Phdr &H = *AddHdr(PT_DYNAMIC, Out<ELFT>::Dynamic->getPhdrFlags());
|
2016-07-21 03:36:41 +08:00
|
|
|
H.add(Out<ELFT>::Dynamic);
|
2015-10-11 06:34:30 +08:00
|
|
|
}
|
2015-08-12 09:45:28 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// PT_GNU_RELRO includes all sections that should be marked as
|
|
|
|
// read-only by dynamic linker after proccessing relocations.
|
|
|
|
if (RelRo.First)
|
2016-07-21 03:36:39 +08:00
|
|
|
Ret.push_back(std::move(RelRo));
|
2015-11-24 18:15:50 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// PT_GNU_EH_FRAME is a special section pointing on .eh_frame_hdr.
|
2016-05-24 00:24:16 +08:00
|
|
|
if (!Out<ELFT>::EhFrame->empty() && Out<ELFT>::EhFrameHdr) {
|
2016-07-27 22:10:56 +08:00
|
|
|
Phdr &Hdr = *AddHdr(PT_GNU_EH_FRAME, Out<ELFT>::EhFrameHdr->getPhdrFlags());
|
2016-07-21 03:36:41 +08:00
|
|
|
Hdr.add(Out<ELFT>::EhFrameHdr);
|
2016-01-15 21:34:52 +08:00
|
|
|
}
|
|
|
|
|
2016-10-14 21:02:22 +08:00
|
|
|
// PT_OPENBSD_RANDOMIZE specifies the location and size of a part of the
|
|
|
|
// memory image of the program that must be filled with random data before any
|
|
|
|
// code in the object is executed.
|
2016-11-10 07:23:45 +08:00
|
|
|
if (OutputSectionBase *Sec = findSection(".openbsd.randomdata")) {
|
2016-10-14 21:02:22 +08:00
|
|
|
Phdr &Hdr = *AddHdr(PT_OPENBSD_RANDOMIZE, Sec->getPhdrFlags());
|
|
|
|
Hdr.add(Sec);
|
|
|
|
}
|
|
|
|
|
2016-10-10 17:39:26 +08:00
|
|
|
// PT_ARM_EXIDX is the ARM EHABI equivalent of PT_GNU_EH_FRAME
|
|
|
|
if (ARMExidx.First)
|
|
|
|
Ret.push_back(std::move(ARMExidx));
|
|
|
|
|
2015-11-22 06:19:32 +08:00
|
|
|
// PT_GNU_STACK is a special section to tell the loader to make the
|
|
|
|
// pages for the stack non-executable.
|
2016-10-12 01:46:48 +08:00
|
|
|
if (!Config->ZExecstack) {
|
2016-08-18 07:59:58 +08:00
|
|
|
Phdr &Hdr = *AddHdr(PT_GNU_STACK, PF_R | PF_W);
|
|
|
|
if (Config->ZStackSize != uint64_t(-1))
|
|
|
|
Hdr.H.p_memsz = Config->ZStackSize;
|
|
|
|
}
|
2016-03-01 21:23:29 +08:00
|
|
|
|
2016-10-14 18:34:36 +08:00
|
|
|
// PT_OPENBSD_WXNEEDED is a OpenBSD-specific header to mark the executable
|
|
|
|
// is expected to perform W^X violations, such as calling mprotect(2) or
|
|
|
|
// mmap(2) with PROT_WRITE | PROT_EXEC, which is prohibited by default on
|
|
|
|
// OpenBSD.
|
|
|
|
if (Config->ZWxneeded)
|
|
|
|
AddHdr(PT_OPENBSD_WXNEEDED, PF_X);
|
|
|
|
|
2016-03-01 21:23:29 +08:00
|
|
|
if (Note.First)
|
2016-07-21 03:36:39 +08:00
|
|
|
Ret.push_back(std::move(Note));
|
|
|
|
return Ret;
|
2016-02-11 06:43:13 +08:00
|
|
|
}
|
|
|
|
|
2016-03-31 03:41:51 +08:00
|
|
|
// The first section of each PT_LOAD and the first section after PT_GNU_RELRO
|
|
|
|
// have to be page aligned so that the dynamic linker can set the permissions.
|
|
|
|
template <class ELFT> void Writer<ELFT>::fixSectionAlignments() {
|
|
|
|
for (const Phdr &P : Phdrs)
|
|
|
|
if (P.H.p_type == PT_LOAD)
|
|
|
|
P.First->PageAlign = true;
|
|
|
|
|
|
|
|
for (const Phdr &P : Phdrs) {
|
|
|
|
if (P.H.p_type != PT_GNU_RELRO)
|
|
|
|
continue;
|
|
|
|
// Find the first section after PT_GNU_RELRO. If it is in a PT_LOAD we
|
|
|
|
// have to align it to a page.
|
|
|
|
auto End = OutputSections.end();
|
|
|
|
auto I = std::find(OutputSections.begin(), End, P.Last);
|
|
|
|
if (I == End || (I + 1) == End)
|
|
|
|
continue;
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *Sec = *(I + 1);
|
|
|
|
if (needsPtLoad<ELFT>(Sec))
|
2016-03-31 03:41:51 +08:00
|
|
|
Sec->PageAlign = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-06 15:20:45 +08:00
|
|
|
// We should set file offsets and VAs for elf header and program headers
|
|
|
|
// sections. These are special, we do not include them into output sections
|
|
|
|
// list, but have them to simplify the code.
|
|
|
|
template <class ELFT> void Writer<ELFT>::fixHeaders() {
|
2016-09-14 16:32:36 +08:00
|
|
|
uintX_t BaseVA = ScriptConfig->HasSections ? 0 : Config->ImageBase;
|
2016-11-09 09:42:41 +08:00
|
|
|
Out<ELFT>::ElfHeader->Addr = BaseVA;
|
|
|
|
uintX_t Off = Out<ELFT>::ElfHeader->Size;
|
|
|
|
Out<ELFT>::ProgramHeaders->Addr = Off + BaseVA;
|
|
|
|
Out<ELFT>::ProgramHeaders->Size = sizeof(Elf_Phdr) * Phdrs.size();
|
2016-04-06 15:20:45 +08:00
|
|
|
}
|
|
|
|
|
2016-04-02 01:07:17 +08:00
|
|
|
// Assign VAs (addresses at run-time) to output sections.
|
2016-02-11 06:43:13 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::assignAddresses() {
|
2016-09-23 00:47:21 +08:00
|
|
|
uintX_t VA = Config->ImageBase + getHeaderSize<ELFT>();
|
2016-04-06 15:20:45 +08:00
|
|
|
uintX_t ThreadBssOffset = 0;
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections) {
|
2016-11-09 09:42:41 +08:00
|
|
|
uintX_t Alignment = Sec->Addralign;
|
2016-03-31 03:41:51 +08:00
|
|
|
if (Sec->PageAlign)
|
2016-09-28 23:20:47 +08:00
|
|
|
Alignment = std::max<uintX_t>(Alignment, Config->MaxPageSize);
|
2016-02-11 06:43:13 +08:00
|
|
|
|
2016-09-14 21:07:13 +08:00
|
|
|
auto I = Config->SectionStartMap.find(Sec->getName());
|
|
|
|
if (I != Config->SectionStartMap.end())
|
|
|
|
VA = I->second;
|
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// We only assign VAs to allocated sections.
|
2016-11-10 07:23:45 +08:00
|
|
|
if (needsPtLoad<ELFT>(Sec)) {
|
2016-06-17 09:18:46 +08:00
|
|
|
VA = alignTo(VA, Alignment);
|
2016-11-09 09:42:41 +08:00
|
|
|
Sec->Addr = VA;
|
|
|
|
VA += Sec->Size;
|
|
|
|
} else if (Sec->Flags & SHF_TLS && Sec->Type == SHT_NOBITS) {
|
2016-02-11 07:29:38 +08:00
|
|
|
uintX_t TVA = VA + ThreadBssOffset;
|
2016-06-17 09:18:46 +08:00
|
|
|
TVA = alignTo(TVA, Alignment);
|
2016-11-09 09:42:41 +08:00
|
|
|
Sec->Addr = TVA;
|
|
|
|
ThreadBssOffset = TVA - VA + Sec->Size;
|
2016-02-11 06:43:13 +08:00
|
|
|
}
|
2015-10-11 07:25:39 +08:00
|
|
|
}
|
2016-04-02 01:07:17 +08:00
|
|
|
}
|
2015-10-11 07:25:39 +08:00
|
|
|
|
2016-04-27 17:16:28 +08:00
|
|
|
// Adjusts the file alignment for a given output section and returns
|
|
|
|
// its new file offset. The file offset must be the same with its
|
|
|
|
// virtual address (modulo the page size) so that the loader can load
|
|
|
|
// executables without any address adjustment.
|
|
|
|
template <class ELFT, class uintX_t>
|
2016-11-10 07:23:45 +08:00
|
|
|
static uintX_t getFileAlignment(uintX_t Off, OutputSectionBase *Sec) {
|
2016-11-09 09:42:41 +08:00
|
|
|
uintX_t Alignment = Sec->Addralign;
|
2016-04-27 17:16:28 +08:00
|
|
|
if (Sec->PageAlign)
|
2016-09-28 23:20:47 +08:00
|
|
|
Alignment = std::max<uintX_t>(Alignment, Config->MaxPageSize);
|
2016-06-17 09:18:46 +08:00
|
|
|
Off = alignTo(Off, Alignment);
|
2016-04-27 17:16:28 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *First = Sec->FirstInPtLoad;
|
2016-09-30 00:29:55 +08:00
|
|
|
// If the section is not in a PT_LOAD, we have no other constraint.
|
|
|
|
if (!First)
|
2016-04-27 17:16:28 +08:00
|
|
|
return Off;
|
2016-09-29 17:20:33 +08:00
|
|
|
|
|
|
|
// If two sections share the same PT_LOAD the file offset is calculated using
|
|
|
|
// this formula: Off2 = Off1 + (VA2 - VA1).
|
2016-09-30 00:29:55 +08:00
|
|
|
if (Sec == First)
|
2016-11-09 09:42:41 +08:00
|
|
|
return alignTo(Off, Target->MaxPageSize, Sec->Addr);
|
|
|
|
return First->Offset + Sec->Addr - First->Addr;
|
2016-04-27 17:16:28 +08:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:05:47 +08:00
|
|
|
template <class ELFT, class uintX_t>
|
2016-11-10 07:23:45 +08:00
|
|
|
void setOffset(OutputSectionBase *Sec, uintX_t &Off) {
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Type == SHT_NOBITS) {
|
|
|
|
Sec->Offset = Off;
|
2016-08-25 17:05:47 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Off = getFileAlignment<ELFT>(Off, Sec);
|
2016-11-09 09:42:41 +08:00
|
|
|
Sec->Offset = Off;
|
|
|
|
Off += Sec->Size;
|
2016-08-25 17:05:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void Writer<ELFT>::assignFileOffsetsBinary() {
|
|
|
|
uintX_t Off = 0;
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Flags & SHF_ALLOC)
|
2016-11-10 07:23:45 +08:00
|
|
|
setOffset<ELFT>(Sec, Off);
|
2016-08-25 17:05:47 +08:00
|
|
|
FileSize = alignTo(Off, sizeof(uintX_t));
|
|
|
|
}
|
|
|
|
|
2016-04-02 01:07:17 +08:00
|
|
|
// Assign file offsets to output sections.
|
|
|
|
template <class ELFT> void Writer<ELFT>::assignFileOffsets() {
|
2016-07-01 18:27:36 +08:00
|
|
|
uintX_t Off = 0;
|
2016-11-10 07:23:45 +08:00
|
|
|
setOffset<ELFT>(Out<ELFT>::ElfHeader, Off);
|
|
|
|
setOffset<ELFT>(Out<ELFT>::ProgramHeaders, Off);
|
2016-04-06 15:20:45 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
|
|
|
setOffset<ELFT>(Sec, Off);
|
2016-07-01 18:27:36 +08:00
|
|
|
|
2016-04-02 01:07:17 +08:00
|
|
|
SectionHeaderOff = alignTo(Off, sizeof(uintX_t));
|
2016-04-06 15:20:45 +08:00
|
|
|
FileSize = SectionHeaderOff + (OutputSections.size() + 1) * sizeof(Elf_Shdr);
|
2016-04-01 18:49:14 +08:00
|
|
|
}
|
|
|
|
|
2016-04-02 01:07:17 +08:00
|
|
|
// Finalize the program headers. We call this function after we assign
|
|
|
|
// file offsets and VAs to all sections.
|
|
|
|
template <class ELFT> void Writer<ELFT>::setPhdrs() {
|
2016-04-02 06:42:04 +08:00
|
|
|
for (Phdr &P : Phdrs) {
|
|
|
|
Elf_Phdr &H = P.H;
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *First = P.First;
|
|
|
|
OutputSectionBase *Last = P.Last;
|
2016-04-02 06:42:04 +08:00
|
|
|
if (First) {
|
2016-11-09 09:42:41 +08:00
|
|
|
H.p_filesz = Last->Offset - First->Offset;
|
|
|
|
if (Last->Type != SHT_NOBITS)
|
|
|
|
H.p_filesz += Last->Size;
|
|
|
|
H.p_memsz = Last->Addr + Last->Size - First->Addr;
|
|
|
|
H.p_offset = First->Offset;
|
|
|
|
H.p_vaddr = First->Addr;
|
2016-10-06 17:39:28 +08:00
|
|
|
if (!P.HasLMA)
|
|
|
|
H.p_paddr = First->getLMA();
|
2016-02-11 06:43:13 +08:00
|
|
|
}
|
2016-03-01 16:46:03 +08:00
|
|
|
if (H.p_type == PT_LOAD)
|
2016-09-28 23:20:47 +08:00
|
|
|
H.p_align = Config->MaxPageSize;
|
2016-03-01 16:46:03 +08:00
|
|
|
else if (H.p_type == PT_GNU_RELRO)
|
2016-02-11 06:43:13 +08:00
|
|
|
H.p_align = 1;
|
2016-08-17 15:44:19 +08:00
|
|
|
|
2016-02-11 06:43:13 +08:00
|
|
|
// The TLS pointer goes after PT_TLS. At least glibc will align it,
|
|
|
|
// so round up the size to make sure the offsets are correct.
|
2016-03-01 16:46:03 +08:00
|
|
|
if (H.p_type == PT_TLS) {
|
2016-02-11 06:43:13 +08:00
|
|
|
Out<ELFT>::TlsPhdr = &H;
|
2016-07-30 03:24:27 +08:00
|
|
|
if (H.p_memsz)
|
|
|
|
H.p_memsz = alignTo(H.p_memsz, H.p_align);
|
2015-10-24 05:45:59 +08:00
|
|
|
}
|
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2016-03-15 07:16:09 +08:00
|
|
|
template <class ELFT> static typename ELFT::uint getEntryAddr() {
|
2016-10-20 08:07:36 +08:00
|
|
|
if (Config->Entry.empty())
|
|
|
|
return Config->EntryAddr;
|
|
|
|
if (SymbolBody *B = Symtab<ELFT>::X->find(Config->Entry))
|
|
|
|
return B->getVA<ELFT>();
|
|
|
|
warn("entry symbol " + Config->Entry + " not found, assuming 0");
|
|
|
|
return 0;
|
2015-12-24 16:37:34 +08:00
|
|
|
}
|
|
|
|
|
2016-02-26 03:28:37 +08:00
|
|
|
template <class ELFT> static uint8_t getELFEncoding() {
|
|
|
|
if (ELFT::TargetEndianness == llvm::support::little)
|
|
|
|
return ELFDATA2LSB;
|
|
|
|
return ELFDATA2MSB;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t getELFType() {
|
2016-03-17 13:57:33 +08:00
|
|
|
if (Config->Pic)
|
2016-02-26 03:28:37 +08:00
|
|
|
return ET_DYN;
|
|
|
|
if (Config->Relocatable)
|
|
|
|
return ET_REL;
|
|
|
|
return ET_EXEC;
|
|
|
|
}
|
|
|
|
|
2015-12-26 18:52:26 +08:00
|
|
|
// This function is called after we have assigned address and size
|
|
|
|
// to each section. This function fixes some predefined absolute
|
|
|
|
// symbol values that depend on section address and size.
|
|
|
|
template <class ELFT> void Writer<ELFT>::fixAbsoluteSymbols() {
|
2016-08-23 02:44:04 +08:00
|
|
|
// __ehdr_start is the location of program headers.
|
|
|
|
if (ElfSym<ELFT>::EhdrStart)
|
2016-11-09 09:42:41 +08:00
|
|
|
ElfSym<ELFT>::EhdrStart->Value = Out<ELFT>::ProgramHeaders->Addr;
|
2016-08-23 02:44:04 +08:00
|
|
|
|
2016-06-20 21:30:37 +08:00
|
|
|
auto Set = [](DefinedRegular<ELFT> *S1, DefinedRegular<ELFT> *S2, uintX_t V) {
|
2016-04-22 04:50:15 +08:00
|
|
|
if (S1)
|
|
|
|
S1->Value = V;
|
|
|
|
if (S2)
|
|
|
|
S2->Value = V;
|
|
|
|
};
|
|
|
|
|
2016-03-02 03:18:07 +08:00
|
|
|
// _etext is the first location after the last read-only loadable segment.
|
|
|
|
// _edata is the first location after the last read-write loadable segment.
|
2016-04-01 18:23:32 +08:00
|
|
|
// _end is the first location after the uninitialized data region.
|
2016-04-02 06:42:04 +08:00
|
|
|
for (Phdr &P : Phdrs) {
|
|
|
|
Elf_Phdr &H = P.H;
|
|
|
|
if (H.p_type != PT_LOAD)
|
2016-02-26 22:36:36 +08:00
|
|
|
continue;
|
2016-04-22 04:50:15 +08:00
|
|
|
Set(ElfSym<ELFT>::End, ElfSym<ELFT>::End2, H.p_vaddr + H.p_memsz);
|
2016-04-14 22:37:59 +08:00
|
|
|
|
|
|
|
uintX_t Val = H.p_vaddr + H.p_filesz;
|
|
|
|
if (H.p_flags & PF_W)
|
2016-04-22 04:50:15 +08:00
|
|
|
Set(ElfSym<ELFT>::Edata, ElfSym<ELFT>::Edata2, Val);
|
2016-04-14 22:37:59 +08:00
|
|
|
else
|
2016-04-22 04:50:15 +08:00
|
|
|
Set(ElfSym<ELFT>::Etext, ElfSym<ELFT>::Etext2, Val);
|
2016-02-26 22:36:36 +08:00
|
|
|
}
|
2015-12-26 18:52:26 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::writeHeader() {
|
|
|
|
uint8_t *Buf = Buffer->getBufferStart();
|
2015-10-24 06:44:39 +08:00
|
|
|
memcpy(Buf, "\177ELF", 4);
|
|
|
|
|
2015-10-25 01:57:40 +08:00
|
|
|
// Write the ELF header.
|
2015-09-09 05:57:31 +08:00
|
|
|
auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf);
|
2015-08-05 23:08:40 +08:00
|
|
|
EHdr->e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
|
2016-02-26 03:28:37 +08:00
|
|
|
EHdr->e_ident[EI_DATA] = getELFEncoding<ELFT>();
|
2015-07-25 05:03:07 +08:00
|
|
|
EHdr->e_ident[EI_VERSION] = EV_CURRENT;
|
2016-10-27 22:00:51 +08:00
|
|
|
EHdr->e_ident[EI_OSABI] = Config->OSABI;
|
2016-02-26 03:28:37 +08:00
|
|
|
EHdr->e_type = getELFType();
|
2016-10-27 22:00:51 +08:00
|
|
|
EHdr->e_machine = Config->EMachine;
|
2015-07-25 05:03:07 +08:00
|
|
|
EHdr->e_version = EV_CURRENT;
|
2015-12-24 16:37:34 +08:00
|
|
|
EHdr->e_entry = getEntryAddr<ELFT>();
|
2015-07-29 08:30:10 +08:00
|
|
|
EHdr->e_shoff = SectionHeaderOff;
|
2015-09-09 05:57:31 +08:00
|
|
|
EHdr->e_ehsize = sizeof(Elf_Ehdr);
|
2015-10-11 06:34:30 +08:00
|
|
|
EHdr->e_phnum = Phdrs.size();
|
2015-09-09 05:57:31 +08:00
|
|
|
EHdr->e_shentsize = sizeof(Elf_Shdr);
|
2016-04-06 15:20:45 +08:00
|
|
|
EHdr->e_shnum = OutputSections.size() + 1;
|
2015-10-21 01:21:35 +08:00
|
|
|
EHdr->e_shstrndx = Out<ELFT>::ShStrTab->SectionIndex;
|
2015-10-25 01:57:40 +08:00
|
|
|
|
2016-09-14 04:51:32 +08:00
|
|
|
if (Config->EMachine == EM_ARM)
|
|
|
|
// We don't currently use any features incompatible with EF_ARM_EABI_VER5,
|
|
|
|
// but we don't have any firm guarantees of conformance. Linux AArch64
|
|
|
|
// kernels (as of 2016) require an EABI version to be set.
|
|
|
|
EHdr->e_flags = EF_ARM_EABI_VER5;
|
|
|
|
else if (Config->EMachine == EM_MIPS)
|
2016-07-21 04:30:41 +08:00
|
|
|
EHdr->e_flags = getMipsEFlags<ELFT>();
|
2016-03-14 03:29:17 +08:00
|
|
|
|
2016-02-25 16:23:37 +08:00
|
|
|
if (!Config->Relocatable) {
|
|
|
|
EHdr->e_phoff = sizeof(Elf_Ehdr);
|
|
|
|
EHdr->e_phentsize = sizeof(Elf_Phdr);
|
|
|
|
}
|
|
|
|
|
2015-10-25 01:57:40 +08:00
|
|
|
// Write the program header table.
|
2016-02-11 06:43:13 +08:00
|
|
|
auto *HBuf = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff);
|
|
|
|
for (Phdr &P : Phdrs)
|
|
|
|
*HBuf++ = P.H;
|
2015-09-09 06:55:28 +08:00
|
|
|
|
2015-10-25 01:57:40 +08:00
|
|
|
// Write the section header table. Note that the first table entry is null.
|
2016-02-26 07:58:21 +08:00
|
|
|
auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff);
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
|
|
|
Sec->writeHeaderTo<ELFT>(++SHdrs);
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2016-04-02 01:24:19 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::openFile() {
|
2015-08-13 08:31:46 +08:00
|
|
|
ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
|
2016-02-03 06:48:04 +08:00
|
|
|
FileOutputBuffer::create(Config->OutputFile, FileSize,
|
|
|
|
FileOutputBuffer::F_executable);
|
2016-07-15 09:38:54 +08:00
|
|
|
if (auto EC = BufferOrErr.getError())
|
|
|
|
error(EC, "failed to open " + Config->OutputFile);
|
2016-04-02 01:24:19 +08:00
|
|
|
else
|
2016-07-15 09:38:54 +08:00
|
|
|
Buffer = std::move(*BufferOrErr);
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:05:47 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::writeSectionsBinary() {
|
|
|
|
uint8_t *Buf = Buffer->getBufferStart();
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-11-09 09:42:41 +08:00
|
|
|
if (Sec->Flags & SHF_ALLOC)
|
|
|
|
Sec->writeTo(Buf + Sec->Offset);
|
2016-08-25 17:05:47 +08:00
|
|
|
}
|
|
|
|
|
2016-10-10 17:39:26 +08:00
|
|
|
// Convert the .ARM.exidx table entries that use relative PREL31 offsets to
|
|
|
|
// Absolute addresses. This form is internal to LLD and is only used to
|
|
|
|
// make reordering the table simpler.
|
|
|
|
static void ARMExidxEntryPrelToAbs(uint8_t *Loc, uint64_t EntryVA) {
|
|
|
|
uint64_t Addr = Target->getImplicitAddend(Loc, R_ARM_PREL31) + EntryVA;
|
|
|
|
bool InlineEntry =
|
|
|
|
(read32le(Loc + 4) == 1 || (read32le(Loc + 4) & 0x80000000));
|
|
|
|
if (InlineEntry)
|
|
|
|
// Set flag in unused bit of code address so that when we convert back we
|
|
|
|
// know which table entries to leave alone.
|
|
|
|
Addr |= 0x1;
|
|
|
|
else
|
|
|
|
write32le(Loc + 4,
|
|
|
|
Target->getImplicitAddend(Loc + 4, R_ARM_PREL31) + EntryVA + 4);
|
|
|
|
write32le(Loc, Addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the .ARM.exidx table entries from the internal to LLD form using
|
|
|
|
// absolute addresses back to relative PREL31 offsets.
|
|
|
|
static void ARMExidxEntryAbsToPrel(uint8_t *Loc, uint64_t EntryVA) {
|
|
|
|
uint64_t Off = read32le(Loc) - EntryVA;
|
|
|
|
// ARMExidxEntryPreltoAbs sets bit 0 if the table entry has inline data
|
|
|
|
// that is not an address
|
|
|
|
bool InlineEntry = Off & 0x1;
|
|
|
|
Target->relocateOne(Loc, R_ARM_PREL31, Off & ~0x1);
|
|
|
|
if (!InlineEntry)
|
|
|
|
Target->relocateOne(Loc + 4, R_ARM_PREL31,
|
|
|
|
read32le(Loc + 4) - (EntryVA + 4));
|
|
|
|
}
|
|
|
|
|
|
|
|
// The table formed by the .ARM.exidx OutputSection has entries with two
|
|
|
|
// 4-byte fields:
|
|
|
|
// | PREL31 offset to function | Action to take for function |
|
|
|
|
// The table must be ordered in ascending virtual address of the functions
|
|
|
|
// identified by the first field of the table. Instead of using the
|
|
|
|
// SHF_LINK_ORDER dependency to reorder the sections prior to relocation we
|
|
|
|
// sort the table post-relocation.
|
|
|
|
// Ref: Exception handling ABI for the ARM architecture
|
|
|
|
static void sortARMExidx(uint8_t *Buf, uint64_t OutSecVA, uint64_t Size) {
|
|
|
|
struct ARMExidxEntry {
|
|
|
|
ulittle32_t Target;
|
|
|
|
ulittle32_t Action;
|
|
|
|
};
|
|
|
|
ARMExidxEntry *Start = (ARMExidxEntry *)Buf;
|
|
|
|
size_t NumEnt = Size / sizeof(ARMExidxEntry);
|
|
|
|
for (uint64_t Off = 0; Off < Size; Off += 8)
|
|
|
|
ARMExidxEntryPrelToAbs(Buf + Off, OutSecVA + Off);
|
|
|
|
std::stable_sort(Start, Start + NumEnt,
|
|
|
|
[](const ARMExidxEntry &A, const ARMExidxEntry &B) {
|
|
|
|
return A.Target < B.Target;
|
|
|
|
});
|
|
|
|
for (uint64_t Off = 0; Off < Size; Off += 8)
|
|
|
|
ARMExidxEntryAbsToPrel(Buf + Off, OutSecVA + Off);
|
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// Write section contents to a mmap'ed file.
|
|
|
|
template <class ELFT> void Writer<ELFT>::writeSections() {
|
|
|
|
uint8_t *Buf = Buffer->getBufferStart();
|
[ELF2/PPC64] Resolve local-call relocations using the correct function-descriptor values
Under PPC64 ELF v1 ABI, the symbols associated with each function name don't
point directly to the code in the .text section (or similar), but rather to a
function descriptor structure in a special data section named .opd. The
elements in the .opd structure include a pointer to the actual code, and a the
relevant TOC base value. Both of these are themselves set by relocations.
When we have a local call, we need the relevant relocation to refer directly to
the target code, not to the function-descriptor in the .opd section. Only when
we have a .plt stub do we care about the address of the .opd function
descriptor itself.
So we make a few changes here:
1. Always write .opd first, so that its relocated data values are available
for later use when writing the text sections. Record a pointer to the .opd
structure, and its corresponding buffer.
2. When processing a relative branch relocation under ppc64, if the
destination points into the .opd section, read the code pointer out of the
function descriptor structure and use that instead.
This this, I can link, and run, a dynamically-compiled "hello world"
application on big-Endian PPC64/Linux (ELF v1 ABI) using lld.
llvm-svn: 250122
2015-10-13 07:16:53 +08:00
|
|
|
|
2016-11-10 05:36:56 +08:00
|
|
|
// Finalize MIPS .reginfo and .MIPS.options sections
|
|
|
|
// because they contain offsets to .got and _gp.
|
|
|
|
if (In<ELFT>::MipsReginfo)
|
|
|
|
In<ELFT>::MipsReginfo->finalize();
|
|
|
|
if (In<ELFT>::MipsOptions)
|
|
|
|
In<ELFT>::MipsOptions->finalize();
|
|
|
|
|
2016-08-09 09:35:37 +08:00
|
|
|
// PPC64 needs to process relocations in the .opd section
|
|
|
|
// before processing relocations in code-containing sections.
|
2016-08-09 09:35:38 +08:00
|
|
|
Out<ELFT>::Opd = findSection(".opd");
|
2016-08-09 09:35:37 +08:00
|
|
|
if (Out<ELFT>::Opd) {
|
2016-11-09 09:42:41 +08:00
|
|
|
Out<ELFT>::OpdBuf = Buf + Out<ELFT>::Opd->Offset;
|
|
|
|
Out<ELFT>::Opd->writeTo(Buf + Out<ELFT>::Opd->Offset);
|
2015-10-13 22:45:51 +08:00
|
|
|
}
|
[ELF2/PPC64] Resolve local-call relocations using the correct function-descriptor values
Under PPC64 ELF v1 ABI, the symbols associated with each function name don't
point directly to the code in the .text section (or similar), but rather to a
function descriptor structure in a special data section named .opd. The
elements in the .opd structure include a pointer to the actual code, and a the
relevant TOC base value. Both of these are themselves set by relocations.
When we have a local call, we need the relevant relocation to refer directly to
the target code, not to the function-descriptor in the .opd section. Only when
we have a .plt stub do we care about the address of the .opd function
descriptor itself.
So we make a few changes here:
1. Always write .opd first, so that its relocated data values are available
for later use when writing the text sections. Record a pointer to the .opd
structure, and its corresponding buffer.
2. When processing a relative branch relocation under ppc64, if the
destination points into the .opd section, read the code pointer out of the
function descriptor structure and use that instead.
This this, I can link, and run, a dynamically-compiled "hello world"
application on big-Endian PPC64/Linux (ELF v1 ABI) using lld.
llvm-svn: 250122
2015-10-13 07:16:53 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
for (OutputSectionBase *Sec : OutputSections)
|
2016-08-31 15:43:50 +08:00
|
|
|
if (Sec != Out<ELFT>::Opd && Sec != Out<ELFT>::EhFrameHdr)
|
2016-11-09 09:42:41 +08:00
|
|
|
Sec->writeTo(Buf + Sec->Offset);
|
2016-08-31 15:43:50 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
OutputSectionBase *ARMExidx = findSection(".ARM.exidx");
|
2016-10-10 17:39:26 +08:00
|
|
|
if (!Config->Relocatable)
|
|
|
|
if (auto *OS = dyn_cast_or_null<OutputSection<ELFT>>(ARMExidx))
|
2016-11-09 09:42:41 +08:00
|
|
|
sortARMExidx(Buf + OS->Offset, OS->Addr, OS->Size);
|
2016-10-10 17:39:26 +08:00
|
|
|
|
2016-08-31 15:43:50 +08:00
|
|
|
// The .eh_frame_hdr depends on .eh_frame section contents, therefore
|
|
|
|
// it should be written after .eh_frame is written.
|
|
|
|
if (!Out<ELFT>::EhFrame->empty() && Out<ELFT>::EhFrameHdr)
|
2016-11-09 09:42:41 +08:00
|
|
|
Out<ELFT>::EhFrameHdr->writeTo(Buf + Out<ELFT>::EhFrameHdr->Offset);
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
2015-10-10 05:07:25 +08:00
|
|
|
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
template <class ELFT> void Writer<ELFT>::writeBuildId() {
|
2016-11-01 17:49:24 +08:00
|
|
|
if (!In<ELFT>::BuildId || !In<ELFT>::BuildId->OutSec)
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
return;
|
|
|
|
|
2016-09-02 06:43:03 +08:00
|
|
|
// Compute a hash of all sections of the output file.
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
uint8_t *Start = Buffer->getBufferStart();
|
2016-09-02 06:43:03 +08:00
|
|
|
uint8_t *End = Start + FileSize;
|
2016-11-01 17:49:24 +08:00
|
|
|
In<ELFT>::BuildId->writeBuildId({Start, End});
|
ELF: Implement --build-id.
This patch implements --build-id. After the linker creates an output file
in the memory buffer, it computes the FNV1 hash of the resulting file
and set the hash to the .note section as a build-id.
GNU ld and gold have the same feature, but their default choice of the
hash function is different. Their default is SHA1.
We made a deliberate choice to not use a secure hash function for the
sake of performance. Computing a secure hash is slow -- for example,
MD5 throughput is usually 400 MB/s or so. SHA1 is slower than that.
As a result, if you pass --build-id to gold, then the linker becomes about
10% slower than that without the option. We observed a similar degradation
in an experimental implementation of build-id for LLD. On the other hand,
we observed only 1-2% performance degradation with the FNV hash.
Since build-id is not for digital certificate or anything, we think that
a very small probability of collision is acceptable.
We considered using other signals such as using input file timestamps as
inputs to a secure hash function. But such signals would have an issue
with build reproducibility (if you build a binary from the same source
tree using the same toolchain, the build id should become the same.)
GNU linkers accepts --build-id=<style> option where style is one of
"MD5", "SHA1", or an arbitrary hex string. That option is out of scope
of this patch.
http://reviews.llvm.org/D18091
llvm-svn: 263292
2016-03-12 04:51:53 +08:00
|
|
|
}
|
|
|
|
|
2016-08-09 11:38:23 +08:00
|
|
|
template void elf::writeResult<ELF32LE>();
|
|
|
|
template void elf::writeResult<ELF32BE>();
|
|
|
|
template void elf::writeResult<ELF64LE>();
|
|
|
|
template void elf::writeResult<ELF64BE>();
|
2016-07-19 17:25:43 +08:00
|
|
|
|
2016-07-19 20:33:46 +08:00
|
|
|
template struct elf::PhdrEntry<ELF32LE>;
|
|
|
|
template struct elf::PhdrEntry<ELF32BE>;
|
|
|
|
template struct elf::PhdrEntry<ELF64LE>;
|
|
|
|
template struct elf::PhdrEntry<ELF64BE>;
|
2016-07-19 17:25:43 +08:00
|
|
|
|
2016-11-10 07:23:45 +08:00
|
|
|
template bool elf::isRelroSection<ELF32LE>(const OutputSectionBase *);
|
|
|
|
template bool elf::isRelroSection<ELF32BE>(const OutputSectionBase *);
|
|
|
|
template bool elf::isRelroSection<ELF64LE>(const OutputSectionBase *);
|
|
|
|
template bool elf::isRelroSection<ELF64BE>(const OutputSectionBase *);
|
2016-07-19 17:25:43 +08:00
|
|
|
|
2016-07-26 06:26:28 +08:00
|
|
|
template void elf::reportDiscarded<ELF32LE>(InputSectionBase<ELF32LE> *);
|
|
|
|
template void elf::reportDiscarded<ELF32BE>(InputSectionBase<ELF32BE> *);
|
|
|
|
template void elf::reportDiscarded<ELF64LE>(InputSectionBase<ELF64LE> *);
|
|
|
|
template void elf::reportDiscarded<ELF64BE>(InputSectionBase<ELF64BE> *);
|