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"
|
2015-09-22 05:38:08 +08:00
|
|
|
#include "OutputSections.h"
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "SymbolTable.h"
|
2015-09-23 02:19:46 +08:00
|
|
|
#include "Target.h"
|
2015-08-12 08:00:24 +08:00
|
|
|
|
2015-08-06 07:24:46 +08:00
|
|
|
#include "llvm/Support/FileOutputBuffer.h"
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::ELF;
|
|
|
|
using namespace llvm::object;
|
|
|
|
|
|
|
|
using namespace lld;
|
|
|
|
using namespace lld::elf2;
|
|
|
|
|
|
|
|
static const int PageSize = 4096;
|
|
|
|
|
2015-09-11 21:20:07 +08:00
|
|
|
// On freebsd x86_64 the first page cannot be mmaped.
|
|
|
|
// On linux that is controled by vm.mmap_min_addr. At least on some x86_64
|
|
|
|
// installs that is 65536, so the first 15 pages cannot be used.
|
|
|
|
// Given that, the smallest value that can be used in here is 0x10000.
|
2015-09-10 23:41:34 +08:00
|
|
|
// If using 2MB pages, the smallest page aligned address that works is
|
|
|
|
// 0x200000, but it looks like every OS uses 4k pages for executables.
|
|
|
|
// FIXME: This is architecture and OS dependent.
|
|
|
|
static const int VAStart = 0x10000;
|
|
|
|
|
2015-08-06 07:24:46 +08:00
|
|
|
namespace {
|
2015-09-09 03:43:27 +08:00
|
|
|
|
2015-10-03 05:23:17 +08:00
|
|
|
static uint32_t toPHDRFlags(uint64_t Flags) {
|
2015-09-18 03:58:07 +08:00
|
|
|
uint32_t Ret = PF_R;
|
|
|
|
if (Flags & SHF_WRITE)
|
|
|
|
Ret |= PF_W;
|
|
|
|
if (Flags & SHF_EXECINSTR)
|
|
|
|
Ret |= PF_X;
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2015-10-03 06:17:07 +08:00
|
|
|
template <class ELFT> struct ProgramHeader {
|
|
|
|
typedef typename ELFFile<ELFT>::uintX_t uintX_t;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Phdr Elf_Phdr;
|
2015-09-18 03:58:07 +08:00
|
|
|
|
2015-10-03 05:23:17 +08:00
|
|
|
ProgramHeader(uintX_t Type, uintX_t Flags, uintX_t FileOff, uintX_t VA) {
|
2015-10-03 06:17:07 +08:00
|
|
|
std::memset(&Header, 0, sizeof(Elf_Phdr));
|
2015-10-03 05:13:19 +08:00
|
|
|
Header.p_type = Type;
|
|
|
|
Header.p_flags = Flags;
|
2015-09-18 03:58:07 +08:00
|
|
|
Header.p_align = PageSize;
|
2015-10-03 05:23:17 +08:00
|
|
|
Header.p_offset = FileOff;
|
|
|
|
Header.p_vaddr = VA;
|
|
|
|
Header.p_paddr = VA;
|
2015-09-18 03:58:07 +08:00
|
|
|
}
|
|
|
|
|
2015-10-03 06:17:07 +08:00
|
|
|
void setValuesFromSection(OutputSectionBase<ELFT::Is64Bits> &Sec) {
|
2015-10-03 05:23:17 +08:00
|
|
|
Header.p_flags = toPHDRFlags(Sec.getFlags());
|
2015-09-18 03:58:07 +08:00
|
|
|
Header.p_offset = Sec.getFileOff();
|
|
|
|
Header.p_vaddr = Sec.getVA();
|
|
|
|
Header.p_paddr = Header.p_vaddr;
|
|
|
|
Header.p_filesz = Sec.getSize();
|
|
|
|
Header.p_memsz = Header.p_filesz;
|
|
|
|
Header.p_align = Sec.getAlign();
|
|
|
|
}
|
|
|
|
|
2015-10-03 06:17:07 +08:00
|
|
|
Elf_Phdr Header;
|
2015-09-18 03:58:07 +08:00
|
|
|
bool Closed = false;
|
|
|
|
};
|
|
|
|
|
2015-08-06 07:24:46 +08:00
|
|
|
// The writer writes a SymbolTable result to a file.
|
|
|
|
template <class ELFT> class Writer {
|
|
|
|
public:
|
2015-09-09 05:57:31 +08:00
|
|
|
typedef typename ELFFile<ELFT>::uintX_t uintX_t;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Ehdr Elf_Ehdr;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Phdr Elf_Phdr;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Sym Elf_Sym;
|
2015-09-17 04:45:57 +08:00
|
|
|
typedef typename ELFFile<ELFT>::Elf_Sym_Range Elf_Sym_Range;
|
2015-09-16 23:54:15 +08:00
|
|
|
typedef typename ELFFile<ELFT>::Elf_Rela Elf_Rela;
|
2015-09-09 23:33:08 +08:00
|
|
|
Writer(SymbolTable *T)
|
2015-09-24 02:25:05 +08:00
|
|
|
: SymTabSec(*T, StrTabSec, BssSec), DynSymSec(*T, DynStrSec, BssSec),
|
2015-10-06 05:23:08 +08:00
|
|
|
RelaDynSec(DynSymSec, GotSec, BssSec, T->shouldUseRela()),
|
2015-10-07 07:56:53 +08:00
|
|
|
GotSec(BssSec), PltSec(GotSec), HashSec(DynSymSec),
|
2015-10-06 05:23:08 +08:00
|
|
|
DynamicSec(*T, HashSec, RelaDynSec, BssSec),
|
2015-09-24 02:25:05 +08:00
|
|
|
BssSec(PltSec, GotSec, BssSec, ".bss", SHT_NOBITS,
|
|
|
|
SHF_ALLOC | SHF_WRITE) {}
|
2015-08-06 07:24:46 +08:00
|
|
|
void run();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createSections();
|
2015-09-17 22:02:10 +08:00
|
|
|
template <bool isRela>
|
2015-09-22 01:47:00 +08:00
|
|
|
void scanRelocs(const InputSection<ELFT> &C,
|
2015-09-17 22:02:10 +08:00
|
|
|
iterator_range<const Elf_Rel_Impl<ELFT, isRela> *> Rels);
|
2015-09-22 01:47:00 +08:00
|
|
|
void scanRelocs(const InputSection<ELFT> &C);
|
2015-08-06 07:24:46 +08:00
|
|
|
void assignAddresses();
|
|
|
|
void openFile(StringRef OutputPath);
|
|
|
|
void writeHeader();
|
|
|
|
void writeSections();
|
2015-09-12 02:49:42 +08:00
|
|
|
bool needsInterpSection() const {
|
|
|
|
return !SymTabSec.getSymTable().getSharedFiles().empty() &&
|
|
|
|
!Config->DynamicLinker.empty();
|
|
|
|
}
|
2015-10-07 04:39:09 +08:00
|
|
|
bool isOutputDynamic() const {
|
2015-09-12 06:42:45 +08:00
|
|
|
return !SymTabSec.getSymTable().getSharedFiles().empty() || Config->Shared;
|
|
|
|
}
|
2015-10-07 04:39:09 +08:00
|
|
|
bool needsDynamicSections() const { return isOutputDynamic(); }
|
2015-09-12 06:42:45 +08:00
|
|
|
unsigned getVAStart() const { return Config->Shared ? 0 : VAStart; }
|
2015-08-06 07:24:46 +08:00
|
|
|
|
|
|
|
std::unique_ptr<llvm::FileOutputBuffer> Buffer;
|
2015-09-18 03:58:07 +08:00
|
|
|
|
2015-08-14 06:21:37 +08:00
|
|
|
llvm::SpecificBumpPtrAllocator<OutputSection<ELFT>> CAlloc;
|
2015-08-14 06:14:37 +08:00
|
|
|
std::vector<OutputSectionBase<ELFT::Is64Bits> *> OutputSections;
|
2015-09-09 01:39:39 +08:00
|
|
|
unsigned getNumSections() const { return OutputSections.size() + 1; }
|
2015-08-06 07:24:46 +08:00
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
llvm::BumpPtrAllocator PAlloc;
|
2015-10-03 06:17:07 +08:00
|
|
|
std::vector<ProgramHeader<ELFT> *> PHDRs;
|
|
|
|
ProgramHeader<ELFT> FileHeaderPHDR{PT_LOAD, PF_R, 0, 0};
|
|
|
|
ProgramHeader<ELFT> InterpPHDR{PT_INTERP, 0, 0, 0};
|
|
|
|
ProgramHeader<ELFT> DynamicPHDR{PT_DYNAMIC, 0, 0, 0};
|
2015-09-18 03:58:07 +08:00
|
|
|
|
2015-08-12 07:14:13 +08:00
|
|
|
uintX_t FileSize;
|
2015-09-10 04:48:09 +08:00
|
|
|
uintX_t ProgramHeaderOff;
|
2015-08-06 07:24:46 +08:00
|
|
|
uintX_t SectionHeaderOff;
|
2015-08-14 06:14:37 +08:00
|
|
|
|
2015-09-15 04:32:41 +08:00
|
|
|
StringTableSection<ELFT::Is64Bits> StrTabSec = { /*dynamic=*/false };
|
|
|
|
StringTableSection<ELFT::Is64Bits> DynStrSec = { /*dynamic=*/true };
|
2015-08-14 06:14:37 +08:00
|
|
|
|
2015-09-22 05:38:08 +08:00
|
|
|
lld::elf2::SymbolTableSection<ELFT> SymTabSec;
|
|
|
|
lld::elf2::SymbolTableSection<ELFT> DynSymSec;
|
2015-09-09 03:43:27 +08:00
|
|
|
|
2015-09-16 23:54:15 +08:00
|
|
|
RelocationSection<ELFT> RelaDynSec;
|
|
|
|
|
2015-09-18 22:40:19 +08:00
|
|
|
GotSection<ELFT> GotSec;
|
2015-09-21 23:11:29 +08:00
|
|
|
PltSection<ELFT> PltSec;
|
2015-09-18 22:40:19 +08:00
|
|
|
|
2015-09-15 04:20:34 +08:00
|
|
|
HashTableSection<ELFT> HashSec;
|
|
|
|
|
2015-09-15 06:08:55 +08:00
|
|
|
DynamicSection<ELFT> DynamicSec;
|
|
|
|
|
2015-09-12 02:49:42 +08:00
|
|
|
InterpSection<ELFT::Is64Bits> InterpSec;
|
|
|
|
|
2015-09-24 02:25:05 +08:00
|
|
|
OutputSection<ELFT> BssSec;
|
2015-08-06 07:24:46 +08:00
|
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf2 {
|
|
|
|
|
2015-08-04 22:29:01 +08:00
|
|
|
template <class ELFT>
|
2015-08-06 07:51:50 +08:00
|
|
|
void writeResult(SymbolTable *Symtab) { Writer<ELFT>(Symtab).run(); }
|
2015-08-06 07:24:46 +08:00
|
|
|
|
2015-08-06 07:51:50 +08:00
|
|
|
template void writeResult<ELF32LE>(SymbolTable *);
|
|
|
|
template void writeResult<ELF32BE>(SymbolTable *);
|
|
|
|
template void writeResult<ELF64LE>(SymbolTable *);
|
|
|
|
template void writeResult<ELF64BE>(SymbolTable *);
|
2015-08-06 07:24:46 +08:00
|
|
|
|
|
|
|
} // namespace elf2
|
|
|
|
} // namespace lld
|
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() {
|
2015-07-25 05:03:07 +08:00
|
|
|
createSections();
|
|
|
|
assignAddresses();
|
2015-08-06 07:51:50 +08:00
|
|
|
openFile(Config->OutputFile);
|
2015-07-25 05:03:07 +08:00
|
|
|
writeHeader();
|
|
|
|
writeSections();
|
|
|
|
error(Buffer->commit());
|
|
|
|
}
|
|
|
|
|
2015-08-14 01:04:50 +08:00
|
|
|
namespace {
|
|
|
|
template <bool Is64Bits> struct SectionKey {
|
|
|
|
typedef typename std::conditional<Is64Bits, uint64_t, uint32_t>::type uintX_t;
|
|
|
|
StringRef Name;
|
2015-10-03 05:13:19 +08:00
|
|
|
uint32_t Type;
|
|
|
|
uintX_t Flags;
|
2015-08-14 01:04:50 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
namespace llvm {
|
|
|
|
template <bool Is64Bits> struct DenseMapInfo<SectionKey<Is64Bits>> {
|
|
|
|
static SectionKey<Is64Bits> getEmptyKey() {
|
|
|
|
return SectionKey<Is64Bits>{DenseMapInfo<StringRef>::getEmptyKey(), 0, 0};
|
|
|
|
}
|
|
|
|
static SectionKey<Is64Bits> getTombstoneKey() {
|
|
|
|
return SectionKey<Is64Bits>{DenseMapInfo<StringRef>::getTombstoneKey(), 0,
|
|
|
|
0};
|
|
|
|
}
|
|
|
|
static unsigned getHashValue(const SectionKey<Is64Bits> &Val) {
|
2015-10-03 05:13:19 +08:00
|
|
|
return hash_combine(Val.Name, Val.Type, Val.Flags);
|
2015-08-14 01:04:50 +08:00
|
|
|
}
|
|
|
|
static bool isEqual(const SectionKey<Is64Bits> &LHS,
|
|
|
|
const SectionKey<Is64Bits> &RHS) {
|
|
|
|
return DenseMapInfo<StringRef>::isEqual(LHS.Name, RHS.Name) &&
|
2015-10-03 05:13:19 +08:00
|
|
|
LHS.Type == RHS.Type && LHS.Flags == RHS.Flags;
|
2015-08-14 01:04:50 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-09-16 23:54:15 +08:00
|
|
|
// The reason we have to do this early scan is as follows
|
|
|
|
// * To mmap the output file, we need to know the size
|
|
|
|
// * For that, we need to know how many dynamic relocs we will have.
|
|
|
|
// It might be possible to avoid this by outputting the file with write:
|
|
|
|
// * Write the allocated output sections, computing addresses.
|
|
|
|
// * Apply relocations, recording which ones require a dynamic reloc.
|
|
|
|
// * Write the dynamic relocations.
|
|
|
|
// * Write the rest of the file.
|
2015-09-17 22:02:10 +08:00
|
|
|
template <class ELFT>
|
|
|
|
template <bool isRela>
|
|
|
|
void Writer<ELFT>::scanRelocs(
|
2015-09-22 01:47:00 +08:00
|
|
|
const InputSection<ELFT> &C,
|
2015-09-17 22:02:10 +08:00
|
|
|
iterator_range<const Elf_Rel_Impl<ELFT, isRela> *> Rels) {
|
|
|
|
typedef Elf_Rel_Impl<ELFT, isRela> RelType;
|
|
|
|
const ObjectFile<ELFT> &File = *C.getFile();
|
2015-09-24 23:11:50 +08:00
|
|
|
bool IsMips64EL = File.getObj().isMips64EL();
|
2015-09-17 22:02:10 +08:00
|
|
|
for (const RelType &RI : Rels) {
|
|
|
|
uint32_t SymIndex = RI.getSymbol(IsMips64EL);
|
2015-09-18 22:40:19 +08:00
|
|
|
SymbolBody *Body = File.getSymbolBody(SymIndex);
|
2015-09-21 23:11:29 +08:00
|
|
|
uint32_t Type = RI.getType(IsMips64EL);
|
2015-10-06 03:30:12 +08:00
|
|
|
if (Body) {
|
|
|
|
if (Target->relocNeedsPlt(Type, *Body)) {
|
|
|
|
if (Body->isInPlt())
|
|
|
|
continue;
|
|
|
|
PltSec.addEntry(Body);
|
|
|
|
}
|
|
|
|
if (Target->relocNeedsGot(Type, *Body)) {
|
|
|
|
if (Body->isInGot())
|
|
|
|
continue;
|
|
|
|
GotSec.addEntry(Body);
|
|
|
|
}
|
|
|
|
}
|
2015-10-07 07:56:53 +08:00
|
|
|
if (canBePreempted(Body)) {
|
|
|
|
Body->setUsedInDynamicReloc();
|
|
|
|
RelaDynSec.addReloc({C, RI});
|
|
|
|
} else if (Config->Shared && !Target->isRelRelative(Type)) {
|
2015-10-06 03:30:12 +08:00
|
|
|
RelaDynSec.addReloc({C, RI});
|
2015-10-07 07:56:53 +08:00
|
|
|
}
|
2015-09-17 22:02:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-16 23:54:15 +08:00
|
|
|
template <class ELFT>
|
2015-09-22 01:47:00 +08:00
|
|
|
void Writer<ELFT>::scanRelocs(const InputSection<ELFT> &C) {
|
2015-09-24 23:11:50 +08:00
|
|
|
ObjectFile<ELFT> *File = C.getFile();
|
|
|
|
ELFFile<ELFT> &EObj = File->getObj();
|
2015-09-16 23:54:15 +08:00
|
|
|
|
|
|
|
if (!(C.getSectionHdr()->sh_flags & SHF_ALLOC))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (const Elf_Shdr *RelSec : C.RelocSections) {
|
2015-09-17 22:02:10 +08:00
|
|
|
if (RelSec->sh_type == SHT_RELA)
|
2015-09-24 23:11:50 +08:00
|
|
|
scanRelocs(C, EObj.relas(RelSec));
|
2015-09-17 22:02:10 +08:00
|
|
|
else
|
2015-09-24 23:11:50 +08:00
|
|
|
scanRelocs(C, EObj.rels(RelSec));
|
2015-09-16 23:54:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-23 22:37:01 +08:00
|
|
|
template <class ELFT>
|
2015-10-01 22:46:54 +08:00
|
|
|
static void reportUndefined(const SymbolTable &S, const SymbolBody &Sym) {
|
2015-09-23 22:37:01 +08:00
|
|
|
typedef typename ELFFile<ELFT>::Elf_Sym Elf_Sym;
|
|
|
|
typedef typename ELFFile<ELFT>::Elf_Sym_Range Elf_Sym_Range;
|
|
|
|
|
2015-10-02 04:14:45 +08:00
|
|
|
if (Config->Shared && !Config->NoUndefined)
|
2015-10-02 01:24:24 +08:00
|
|
|
return;
|
|
|
|
|
2015-09-23 22:37:01 +08:00
|
|
|
const Elf_Sym &SymE = cast<ELFSymbolBody<ELFT>>(Sym).Sym;
|
|
|
|
ELFFileBase *SymFile = nullptr;
|
|
|
|
|
|
|
|
for (const std::unique_ptr<ObjectFileBase> &F : S.getObjectFiles()) {
|
|
|
|
const auto &File = cast<ObjectFile<ELFT>>(*F);
|
2015-09-24 23:11:50 +08:00
|
|
|
Elf_Sym_Range Syms = File.getObj().symbols(File.getSymbolTable());
|
2015-09-23 22:37:01 +08:00
|
|
|
if (&SymE > Syms.begin() && &SymE < Syms.end())
|
|
|
|
SymFile = F.get();
|
|
|
|
}
|
2015-09-26 03:24:57 +08:00
|
|
|
|
|
|
|
std::string Message = "undefined symbol: " + Sym.getName().str();
|
2015-09-23 22:37:01 +08:00
|
|
|
if (SymFile)
|
2015-09-26 03:24:57 +08:00
|
|
|
Message += " in " + SymFile->getName().str();
|
|
|
|
if (Config->NoInhibitExec)
|
|
|
|
warning(Message);
|
2015-09-23 22:37:01 +08:00
|
|
|
else
|
2015-09-26 03:24:57 +08:00
|
|
|
error(Message);
|
2015-09-23 22:37:01 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// Create output section objects and add them to OutputSections.
|
|
|
|
template <class ELFT> void Writer<ELFT>::createSections() {
|
2015-08-14 06:21:37 +08:00
|
|
|
SmallDenseMap<SectionKey<ELFT::Is64Bits>, OutputSection<ELFT> *> Map;
|
2015-09-24 02:25:05 +08:00
|
|
|
|
|
|
|
OutputSections.push_back(&BssSec);
|
|
|
|
Map[{BssSec.getName(), BssSec.getType(), BssSec.getFlags()}] = &BssSec;
|
|
|
|
|
2015-09-26 02:56:53 +08:00
|
|
|
SymbolTable &Symtab = SymTabSec.getSymTable();
|
2015-09-16 23:54:15 +08:00
|
|
|
for (const std::unique_ptr<ObjectFileBase> &FileB : Symtab.getObjectFiles()) {
|
|
|
|
auto &File = cast<ObjectFile<ELFT>>(*FileB);
|
2015-09-17 04:45:57 +08:00
|
|
|
if (!Config->DiscardAll) {
|
|
|
|
Elf_Sym_Range Syms = File.getLocalSymbols();
|
|
|
|
for (const Elf_Sym &Sym : Syms) {
|
|
|
|
ErrorOr<StringRef> SymName = Sym.getName(File.getStringTable());
|
2015-10-06 00:25:43 +08:00
|
|
|
if (SymName && shouldKeepInSymtab<ELFT>(*SymName, Sym))
|
2015-09-17 04:45:57 +08:00
|
|
|
SymTabSec.addSymbol(*SymName, true);
|
|
|
|
}
|
|
|
|
}
|
2015-09-22 08:16:19 +08:00
|
|
|
for (InputSection<ELFT> *C : File.getSections()) {
|
2015-09-16 23:54:15 +08:00
|
|
|
if (!C)
|
|
|
|
continue;
|
|
|
|
const Elf_Shdr *H = C->getSectionHdr();
|
2015-09-25 23:08:44 +08:00
|
|
|
SectionKey<ELFT::Is64Bits> Key{C->getSectionName(), H->sh_type,
|
|
|
|
H->sh_flags};
|
|
|
|
OutputSection<ELFT> *&Sec = Map[Key];
|
|
|
|
if (!Sec) {
|
|
|
|
Sec = new (CAlloc.Allocate()) OutputSection<ELFT>(
|
2015-10-03 05:13:19 +08:00
|
|
|
PltSec, GotSec, BssSec, Key.Name, Key.Type, Key.Flags);
|
2015-09-25 23:08:44 +08:00
|
|
|
OutputSections.push_back(Sec);
|
|
|
|
}
|
2015-09-22 08:16:19 +08:00
|
|
|
Sec->addSection(C);
|
2015-09-16 23:54:15 +08:00
|
|
|
scanRelocs(*C);
|
|
|
|
}
|
2015-09-01 08:16:38 +08:00
|
|
|
}
|
|
|
|
|
2015-10-03 03:37:55 +08:00
|
|
|
DynamicSec.PreInitArraySec =
|
|
|
|
Map.lookup({".preinit_array", SHT_PREINIT_ARRAY, SHF_WRITE | SHF_ALLOC});
|
|
|
|
DynamicSec.InitArraySec =
|
|
|
|
Map.lookup({".init_array", SHT_INIT_ARRAY, SHF_WRITE | SHF_ALLOC});
|
|
|
|
DynamicSec.FiniArraySec =
|
|
|
|
Map.lookup({".fini_array", SHT_FINI_ARRAY, SHF_WRITE | SHF_ALLOC});
|
|
|
|
|
2015-10-07 03:57:05 +08:00
|
|
|
auto AddStartEnd = [&Symtab](StringRef Start, StringRef End,
|
2015-10-06 10:13:54 +08:00
|
|
|
OutputSection<ELFT> *OS) {
|
2015-10-06 09:16:17 +08:00
|
|
|
if (OS) {
|
2015-10-06 10:13:54 +08:00
|
|
|
Symtab.addSyntheticSym<ELFT>(Start, *OS, 0);
|
|
|
|
Symtab.addSyntheticSym<ELFT>(End, *OS, OS->getSize());
|
|
|
|
} else {
|
|
|
|
Symtab.addIgnoredSym<ELFT>(Start);
|
|
|
|
Symtab.addIgnoredSym<ELFT>(End);
|
2015-10-06 09:16:17 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-10-07 03:57:05 +08:00
|
|
|
AddStartEnd("__preinit_array_start", "__preinit_array_end",
|
|
|
|
DynamicSec.PreInitArraySec);
|
|
|
|
AddStartEnd("__init_array_start", "__init_array_end",
|
|
|
|
DynamicSec.InitArraySec);
|
|
|
|
AddStartEnd("__fini_array_start", "__fini_array_end",
|
|
|
|
DynamicSec.FiniArraySec);
|
2015-09-26 02:56:53 +08:00
|
|
|
|
2015-10-07 04:39:09 +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
|
|
|
|
// to avoid the undefined symbol error.
|
|
|
|
if (!isOutputDynamic())
|
|
|
|
Symtab.addIgnoredSym<ELFT>("__tls_get_addr");
|
|
|
|
|
2015-09-23 07:38:23 +08:00
|
|
|
// FIXME: Try to avoid the extra walk over all global symbols.
|
|
|
|
std::vector<DefinedCommon<ELFT> *> CommonSymbols;
|
|
|
|
for (auto &P : Symtab.getSymbols()) {
|
|
|
|
StringRef Name = P.first;
|
|
|
|
SymbolBody *Body = P.second->Body;
|
2015-10-05 17:43:57 +08:00
|
|
|
if (auto *U = dyn_cast<Undefined<ELFT>>(Body)) {
|
|
|
|
if (!U->isWeak() && !U->canKeepUndefined())
|
|
|
|
reportUndefined<ELFT>(Symtab, *Body);
|
|
|
|
}
|
2015-09-23 07:38:23 +08:00
|
|
|
|
|
|
|
if (auto *C = dyn_cast<DefinedCommon<ELFT>>(Body))
|
|
|
|
CommonSymbols.push_back(C);
|
2015-10-05 23:24:04 +08:00
|
|
|
if (!includeInSymtab<ELFT>(*Body))
|
2015-09-23 07:38:23 +08:00
|
|
|
continue;
|
|
|
|
SymTabSec.addSymbol(Name);
|
|
|
|
|
|
|
|
if (needsDynamicSections() && includeInDynamicSymtab(*Body))
|
|
|
|
HashSec.addSymbol(Body);
|
|
|
|
}
|
|
|
|
|
2015-09-01 08:16:38 +08:00
|
|
|
// Sort the common symbols by alignment as an heuristic to pack them better.
|
2015-09-25 11:48:25 +08:00
|
|
|
std::stable_sort(
|
|
|
|
CommonSymbols.begin(), CommonSymbols.end(),
|
|
|
|
[](const DefinedCommon<ELFT> *A, const DefinedCommon<ELFT> *B) {
|
|
|
|
return A->MaxAlignment > B->MaxAlignment;
|
|
|
|
});
|
|
|
|
|
2015-09-24 02:25:05 +08:00
|
|
|
uintX_t Off = BssSec.getSize();
|
2015-09-01 08:16:38 +08:00
|
|
|
for (DefinedCommon<ELFT> *C : CommonSymbols) {
|
2015-09-01 06:07:18 +08:00
|
|
|
const Elf_Sym &Sym = C->Sym;
|
2015-09-01 09:19:12 +08:00
|
|
|
uintX_t Align = C->MaxAlignment;
|
2015-09-01 06:07:18 +08:00
|
|
|
Off = RoundUpToAlignment(Off, Align);
|
2015-09-01 06:55:21 +08:00
|
|
|
C->OffsetInBSS = Off;
|
2015-09-01 06:07:18 +08:00
|
|
|
Off += Sym.st_size;
|
|
|
|
}
|
2015-09-01 08:16:38 +08:00
|
|
|
|
2015-09-24 02:25:05 +08:00
|
|
|
BssSec.setSize(Off);
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-09-11 08:30:13 +08:00
|
|
|
OutputSections.push_back(&SymTabSec);
|
2015-09-09 02:08:57 +08:00
|
|
|
|
2015-09-12 06:42:45 +08:00
|
|
|
if (needsDynamicSections()) {
|
2015-09-12 02:49:42 +08:00
|
|
|
if (needsInterpSection())
|
|
|
|
OutputSections.push_back(&InterpSec);
|
2015-09-11 08:30:13 +08:00
|
|
|
OutputSections.push_back(&DynSymSec);
|
2015-09-15 04:20:34 +08:00
|
|
|
OutputSections.push_back(&HashSec);
|
2015-09-09 03:43:27 +08:00
|
|
|
OutputSections.push_back(&DynamicSec);
|
2015-09-09 23:33:08 +08:00
|
|
|
OutputSections.push_back(&DynStrSec);
|
2015-09-17 17:54:29 +08:00
|
|
|
if (RelaDynSec.hasRelocs())
|
2015-09-16 23:54:15 +08:00
|
|
|
OutputSections.push_back(&RelaDynSec);
|
2015-09-09 23:33:08 +08:00
|
|
|
}
|
2015-09-24 04:08:25 +08:00
|
|
|
if (!GotSec.empty())
|
|
|
|
OutputSections.push_back(&GotSec);
|
|
|
|
if (!PltSec.empty())
|
|
|
|
OutputSections.push_back(&PltSec);
|
2015-09-09 03:43:27 +08:00
|
|
|
|
2015-09-25 11:48:25 +08:00
|
|
|
std::stable_sort(
|
|
|
|
OutputSections.begin(), OutputSections.end(),
|
|
|
|
[](OutputSectionBase<ELFT::Is64Bits> *A,
|
|
|
|
OutputSectionBase<ELFT::Is64Bits> *B) {
|
2015-10-02 05:15:02 +08:00
|
|
|
uintX_t AFlags = A->getFlags();
|
|
|
|
uintX_t BFlags = B->getFlags();
|
|
|
|
|
|
|
|
// Allocatable sections go first to reduce the total PT_LOAD size and
|
|
|
|
// so debug info doesn't change addresses in actual code.
|
|
|
|
bool AIsAlloc = AFlags & SHF_ALLOC;
|
|
|
|
bool BIsAlloc = BFlags & SHF_ALLOC;
|
|
|
|
if (AIsAlloc != BIsAlloc)
|
|
|
|
return AIsAlloc;
|
|
|
|
|
|
|
|
// We don't have any special requirements for the relative order of
|
|
|
|
// two non allocatable sections.
|
|
|
|
if (!AIsAlloc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
bool AIsWritable = AFlags & SHF_WRITE;
|
|
|
|
bool BIsWritable = BFlags & SHF_WRITE;
|
|
|
|
if (AIsWritable != BIsWritable)
|
|
|
|
return BIsWritable;
|
|
|
|
|
|
|
|
// For a corresponding reason, put non exec sections first (the program
|
|
|
|
// header PT_LOAD is not executable).
|
|
|
|
bool AIsExec = AFlags & SHF_EXECINSTR;
|
|
|
|
bool BIsExec = BFlags & SHF_EXECINSTR;
|
|
|
|
if (AIsExec != BIsExec)
|
|
|
|
return BIsExec;
|
|
|
|
|
|
|
|
// If we got here we know that both A and B and in the same PT_LOAD.
|
|
|
|
// The last requirement we have is to put nobits section last. The
|
|
|
|
// 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.
|
|
|
|
return A->getType() != SHT_NOBITS && B->getType() == SHT_NOBITS;
|
2015-09-25 11:48:25 +08:00
|
|
|
});
|
|
|
|
|
2015-10-02 05:15:02 +08:00
|
|
|
// Always put StrTabSec last so that no section names are added to it after
|
|
|
|
// it's finalized.
|
|
|
|
OutputSections.push_back(&StrTabSec);
|
|
|
|
|
2015-09-09 02:08:57 +08:00
|
|
|
for (unsigned I = 0, N = OutputSections.size(); I < N; ++I)
|
|
|
|
OutputSections[I]->setSectionIndex(I + 1);
|
2015-10-02 05:15:02 +08:00
|
|
|
|
|
|
|
// Fill the DynStrSec early.
|
|
|
|
DynamicSec.finalize();
|
2015-08-13 23:23:46 +08:00
|
|
|
}
|
|
|
|
|
2015-09-10 04:48:09 +08:00
|
|
|
template <class ELFT>
|
2015-10-03 05:23:17 +08:00
|
|
|
static bool needsPHDR(OutputSectionBase<ELFT::Is64Bits> *Sec) {
|
2015-09-18 03:58:07 +08:00
|
|
|
return Sec->getFlags() & SHF_ALLOC;
|
2015-09-10 04:48:09 +08:00
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// Visits all sections to assign incremental, non-overlapping RVAs and
|
|
|
|
// file offsets.
|
|
|
|
template <class ELFT> void Writer<ELFT>::assignAddresses() {
|
2015-09-18 03:58:07 +08:00
|
|
|
assert(!OutputSections.empty() && "No output sections to layout!");
|
2015-09-12 06:42:45 +08:00
|
|
|
uintX_t VA = getVAStart();
|
2015-09-10 23:41:34 +08:00
|
|
|
uintX_t FileOff = 0;
|
2015-09-10 06:53:55 +08:00
|
|
|
|
2015-09-10 23:41:34 +08:00
|
|
|
FileOff += sizeof(Elf_Ehdr);
|
|
|
|
VA += sizeof(Elf_Ehdr);
|
2015-09-10 04:48:09 +08:00
|
|
|
|
|
|
|
// Reserve space for PHDRs.
|
|
|
|
ProgramHeaderOff = FileOff;
|
|
|
|
FileOff = RoundUpToAlignment(FileOff, PageSize);
|
2015-09-10 23:41:34 +08:00
|
|
|
VA = RoundUpToAlignment(VA, PageSize);
|
2015-08-13 23:23:46 +08:00
|
|
|
|
2015-09-12 02:49:42 +08:00
|
|
|
if (needsInterpSection())
|
2015-09-18 03:58:07 +08:00
|
|
|
PHDRs.push_back(&InterpPHDR);
|
2015-09-12 02:49:42 +08:00
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
// Create a PHDR for the file header.
|
|
|
|
PHDRs.push_back(&FileHeaderPHDR);
|
|
|
|
FileHeaderPHDR.Header.p_vaddr = getVAStart();
|
|
|
|
FileHeaderPHDR.Header.p_paddr = getVAStart();
|
|
|
|
FileHeaderPHDR.Header.p_align = PageSize;
|
2015-09-10 23:41:34 +08:00
|
|
|
|
2015-08-14 06:14:37 +08:00
|
|
|
for (OutputSectionBase<ELFT::Is64Bits> *Sec : OutputSections) {
|
2015-09-09 23:33:08 +08:00
|
|
|
StrTabSec.add(Sec->getName());
|
2015-08-14 06:14:37 +08:00
|
|
|
Sec->finalize();
|
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
if (Sec->getSize()) {
|
2015-10-03 05:23:17 +08:00
|
|
|
uintX_t Flags = toPHDRFlags(Sec->getFlags());
|
2015-10-03 06:17:07 +08:00
|
|
|
ProgramHeader<ELFT> *Last = PHDRs.back();
|
2015-10-03 05:23:17 +08:00
|
|
|
if (Last->Header.p_flags != Flags || !needsPHDR<ELFT>(Sec)) {
|
2015-09-18 03:58:07 +08:00
|
|
|
// Flags changed. End current PHDR and potentially create a new one.
|
2015-10-03 05:23:17 +08:00
|
|
|
if (!Last->Closed) {
|
|
|
|
Last->Header.p_filesz = FileOff - Last->Header.p_offset;
|
|
|
|
Last->Header.p_memsz = VA - Last->Header.p_vaddr;
|
|
|
|
Last->Closed = true;
|
2015-09-18 03:58:07 +08:00
|
|
|
}
|
|
|
|
|
2015-10-03 05:23:17 +08:00
|
|
|
if (needsPHDR<ELFT>(Sec)) {
|
2015-09-18 03:58:07 +08:00
|
|
|
VA = RoundUpToAlignment(VA, PageSize);
|
|
|
|
FileOff = RoundUpToAlignment(FileOff, PageSize);
|
2015-10-03 06:17:07 +08:00
|
|
|
PHDRs.push_back(new (PAlloc)
|
|
|
|
ProgramHeader<ELFT>(PT_LOAD, Flags, FileOff, VA));
|
2015-09-18 03:58:07 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-10 04:48:09 +08:00
|
|
|
}
|
|
|
|
|
2015-08-14 04:24:18 +08:00
|
|
|
uintX_t Align = Sec->getAlign();
|
|
|
|
uintX_t Size = Sec->getSize();
|
2015-08-13 23:31:17 +08:00
|
|
|
if (Sec->getFlags() & SHF_ALLOC) {
|
2015-09-15 03:00:35 +08:00
|
|
|
VA = RoundUpToAlignment(VA, Align);
|
2015-08-13 23:31:17 +08:00
|
|
|
Sec->setVA(VA);
|
2015-09-15 03:00:35 +08:00
|
|
|
VA += Size;
|
2015-08-13 23:31:17 +08:00
|
|
|
}
|
2015-09-15 03:00:35 +08:00
|
|
|
FileOff = RoundUpToAlignment(FileOff, Align);
|
2015-07-25 05:03:07 +08:00
|
|
|
Sec->setFileOffset(FileOff);
|
2015-09-01 04:23:57 +08:00
|
|
|
if (Sec->getType() != SHT_NOBITS)
|
2015-09-15 03:00:35 +08:00
|
|
|
FileOff += Size;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
2015-08-12 08:00:24 +08:00
|
|
|
|
2015-09-10 04:48:09 +08:00
|
|
|
// Add a PHDR for the dynamic table.
|
2015-09-12 06:42:45 +08:00
|
|
|
if (needsDynamicSections())
|
2015-09-18 03:58:07 +08:00
|
|
|
PHDRs.push_back(&DynamicPHDR);
|
2015-09-10 04:48:09 +08:00
|
|
|
|
2015-08-12 09:45:28 +08:00
|
|
|
FileOff += OffsetToAlignment(FileOff, ELFT::Is64Bits ? 8 : 4);
|
|
|
|
|
2015-07-29 08:30:10 +08:00
|
|
|
// Add space for section headers.
|
|
|
|
SectionHeaderOff = FileOff;
|
2015-09-09 05:57:31 +08:00
|
|
|
FileOff += getNumSections() * sizeof(Elf_Shdr);
|
2015-09-10 04:48:09 +08:00
|
|
|
FileSize = FileOff;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void Writer<ELFT>::writeHeader() {
|
|
|
|
uint8_t *Buf = Buffer->getBufferStart();
|
2015-09-09 05:57:31 +08:00
|
|
|
auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf);
|
2015-07-25 05:03:07 +08:00
|
|
|
EHdr->e_ident[EI_MAG0] = 0x7F;
|
|
|
|
EHdr->e_ident[EI_MAG1] = 0x45;
|
|
|
|
EHdr->e_ident[EI_MAG2] = 0x4C;
|
|
|
|
EHdr->e_ident[EI_MAG3] = 0x46;
|
2015-08-05 23:08:40 +08:00
|
|
|
EHdr->e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
|
|
|
|
EHdr->e_ident[EI_DATA] = ELFT::TargetEndianness == llvm::support::little
|
|
|
|
? ELFDATA2LSB
|
|
|
|
: ELFDATA2MSB;
|
2015-07-25 05:03:07 +08:00
|
|
|
EHdr->e_ident[EI_VERSION] = EV_CURRENT;
|
2015-09-25 09:59:13 +08:00
|
|
|
|
|
|
|
const SymbolTable &Symtab = SymTabSec.getSymTable();
|
|
|
|
auto &FirstObj = cast<ObjectFile<ELFT>>(*Symtab.getFirstELF());
|
|
|
|
EHdr->e_ident[EI_OSABI] = FirstObj.getOSABI();
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-09-09 06:55:28 +08:00
|
|
|
// FIXME: Generalize the segment construction similar to how we create
|
|
|
|
// output sections.
|
|
|
|
|
2015-09-12 06:42:45 +08:00
|
|
|
EHdr->e_type = Config->Shared ? ET_DYN : ET_EXEC;
|
2015-09-04 04:03:54 +08:00
|
|
|
EHdr->e_machine = FirstObj.getEMachine();
|
2015-07-25 05:03:07 +08:00
|
|
|
EHdr->e_version = EV_CURRENT;
|
2015-09-12 06:42:45 +08:00
|
|
|
SymbolBody *Entry = Symtab.getEntrySym();
|
2015-09-26 02:19:03 +08:00
|
|
|
EHdr->e_entry =
|
|
|
|
Entry ? getSymVA(cast<ELFSymbolBody<ELFT>>(*Entry), BssSec) : 0;
|
2015-09-10 04:48:09 +08:00
|
|
|
EHdr->e_phoff = ProgramHeaderOff;
|
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);
|
|
|
|
EHdr->e_phentsize = sizeof(Elf_Phdr);
|
2015-09-18 03:58:07 +08:00
|
|
|
EHdr->e_phnum = PHDRs.size();
|
2015-09-09 05:57:31 +08:00
|
|
|
EHdr->e_shentsize = sizeof(Elf_Shdr);
|
2015-09-09 01:39:39 +08:00
|
|
|
EHdr->e_shnum = getNumSections();
|
2015-09-09 23:33:08 +08:00
|
|
|
EHdr->e_shstrndx = StrTabSec.getSectionIndex();
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
// If nothing was merged into the file header PT_LOAD, set the size correctly.
|
2015-10-03 06:17:07 +08:00
|
|
|
if (FileHeaderPHDR.Header.p_filesz == PageSize) {
|
|
|
|
uint64_t Size = sizeof(Elf_Ehdr) + sizeof(Elf_Phdr) * PHDRs.size();
|
|
|
|
FileHeaderPHDR.Header.p_filesz = Size;
|
|
|
|
FileHeaderPHDR.Header.p_memsz = Size;
|
|
|
|
}
|
2015-09-12 02:49:42 +08:00
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
if (needsInterpSection())
|
|
|
|
InterpPHDR.setValuesFromSection(InterpSec);
|
|
|
|
if (needsDynamicSections())
|
|
|
|
DynamicPHDR.setValuesFromSection(DynamicSec);
|
2015-07-29 08:30:10 +08:00
|
|
|
|
2015-09-18 03:58:07 +08:00
|
|
|
auto PHdrs = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff);
|
2015-10-03 06:17:07 +08:00
|
|
|
for (ProgramHeader<ELFT> *PHDR : PHDRs)
|
|
|
|
*PHdrs++ = PHDR->Header;
|
2015-09-09 06:55:28 +08:00
|
|
|
|
2015-09-09 05:57:31 +08:00
|
|
|
auto SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff);
|
2015-07-29 08:30:10 +08:00
|
|
|
// First entry is null.
|
|
|
|
++SHdrs;
|
2015-08-14 06:14:37 +08:00
|
|
|
for (OutputSectionBase<ELFT::Is64Bits> *Sec : OutputSections) {
|
2015-09-09 23:33:08 +08:00
|
|
|
Sec->setNameOffset(StrTabSec.getFileOff(Sec->getName()));
|
2015-08-14 02:37:23 +08:00
|
|
|
Sec->template writeHeaderTo<ELFT::TargetEndianness>(SHdrs++);
|
2015-08-12 08:00:24 +08:00
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void Writer<ELFT>::openFile(StringRef Path) {
|
2015-08-13 08:31:46 +08:00
|
|
|
ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
|
|
|
|
FileOutputBuffer::create(Path, FileSize, FileOutputBuffer::F_executable);
|
|
|
|
error(BufferOrErr, Twine("failed to open ") + Path);
|
|
|
|
Buffer = std::move(*BufferOrErr);
|
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();
|
2015-08-14 06:14:37 +08:00
|
|
|
for (OutputSectionBase<ELFT::Is64Bits> *Sec : OutputSections)
|
2015-08-14 13:17:30 +08:00
|
|
|
Sec->writeTo(Buf + Sec->getFileOff());
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|