#include "SyntheticSections.h"
#include "Config.h"
#include "DWARF.h"
#include "EhFrame.h"
#include "InputFiles.h"
#include "LinkerScript.h"
#include "OutputSections.h"
#include "SymbolTable.h"
#include "Symbols.h"
#include "Target.h"
#include "Thunks.h"
#include "Writer.h"
#include "lld/Common/Version.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/ADT/SetOperations.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/BinaryFormat/Dwarf.h"
#include "llvm/BinaryFormat/ELF.h"
#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
#include "llvm/DebugInfo/DWARF/DWARFDebugPubTable.h"
#include "llvm/Support/DJB.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/LEB128.h"
#include "llvm/Support/Parallel.h"
#include "llvm/Support/TimeProfiler.h"
#include <cinttypes>
#include <cstdlib>
using namespace llvm;
using namespace llvm::dwarf;
using namespace llvm::ELF;
using namespace llvm::object;
using namespace llvm::support;
using namespace lld;
using namespace lld::elf;
using llvm::support::endian::read32le;
using llvm::support::endian::write32le;
using llvm::support::endian::write64le;
static uint64_t readUint(Ctx &ctx, uint8_t *buf) {
return ctx.arg.is64 ? read64(ctx, buf) : read32(ctx, buf);
}
static void writeUint(Ctx &ctx, uint8_t *buf, uint64_t val) {
if (ctx.arg.is64)
write64(ctx, buf, val);
else
write32(ctx, buf, val);
}
static ArrayRef<uint8_t> getVersion(Ctx &ctx) {
StringRef s = getenv("LLD_VERSION");
if (s.empty())
s = ctx.saver.save(Twine("Linker: ") + getLLDVersion());
return {(const uint8_t *)s.data(), s.size() + 1};
}
MergeInputSection *elf::createCommentSection(Ctx &ctx) {
auto *sec =
make<MergeInputSection>(ctx, ".comment", SHT_PROGBITS,
SHF_MERGE | SHF_STRINGS, 1, getVersion(ctx));
sec->splitIntoPieces();
return sec;
}
template <class ELFT>
MipsAbiFlagsSection<ELFT>::MipsAbiFlagsSection(Ctx &ctx,
Elf_Mips_ABIFlags flags)
: SyntheticSection(ctx, ".MIPS.abiflags", SHT_MIPS_ABIFLAGS, SHF_ALLOC, 8),
flags(flags) {
this->entsize = sizeof(Elf_Mips_ABIFlags);
}
template <class ELFT> void MipsAbiFlagsSection<ELFT>::writeTo(uint8_t *buf) {
memcpy(buf, &flags, sizeof(flags));
}
template <class ELFT>
std::unique_ptr<MipsAbiFlagsSection<ELFT>>
MipsAbiFlagsSection<ELFT>::create(Ctx &ctx) {
Elf_Mips_ABIFlags flags = {};
bool create = false;
for (InputSectionBase *sec : ctx.inputSections) {
if (sec->type != SHT_MIPS_ABIFLAGS)
continue;
sec->markDead();
create = true;
const size_t size = sec->content().size();
if (size < sizeof(Elf_Mips_ABIFlags)) {
Err(ctx) << sec->file << ": invalid size of .MIPS.abiflags section: got "
<< size << " instead of " << sizeof(Elf_Mips_ABIFlags);
return nullptr;
}
auto *s =
reinterpret_cast<const Elf_Mips_ABIFlags *>(sec->content().data());
if (s->version != 0) {
Err(ctx) << sec->file << ": unexpected .MIPS.abiflags version "
<< s->version;
return nullptr;
}
flags.isa_level = std::max(flags.isa_level, s->isa_level);
flags.isa_rev = std::max(flags.isa_rev, s->isa_rev);
flags.isa_ext = std::max(flags.isa_ext, s->isa_ext);
flags.gpr_size = std::max(flags.gpr_size, s->gpr_size);
flags.cpr1_size = std::max(flags.cpr1_size, s->cpr1_size);
flags.cpr2_size = std::max(flags.cpr2_size, s->cpr2_size);
flags.ases |= s->ases;
flags.flags1 |= s->flags1;
flags.flags2 |= s->flags2;
flags.fp_abi =
elf::getMipsFpAbiFlag(ctx, sec->file, flags.fp_abi, s->fp_abi);
};
if (create)
return std::make_unique<MipsAbiFlagsSection<ELFT>>(ctx, flags);
return nullptr;
}
template <class ELFT>
MipsOptionsSection<ELFT>::MipsOptionsSection(Ctx &ctx, Elf_Mips_RegInfo reginfo)
: SyntheticSection(ctx, ".MIPS.options", SHT_MIPS_OPTIONS, SHF_ALLOC, 8),
reginfo(reginfo) {
this->entsize = sizeof(Elf_Mips_Options) + sizeof(Elf_Mips_RegInfo);
}
template <class ELFT> void MipsOptionsSection<ELFT>::writeTo(uint8_t *buf) {
auto *options = reinterpret_cast<Elf_Mips_Options *>(buf);
options->kind = ODK_REGINFO;
options->size = getSize();
if (!ctx.arg.relocatable)
reginfo.ri_gp_value = ctx.in.mipsGot->getGp();
memcpy(buf + sizeof(Elf_Mips_Options), ®info, sizeof(reginfo));
}
template <class ELFT>
std::unique_ptr<MipsOptionsSection<ELFT>>
MipsOptionsSection<ELFT>::create(Ctx &ctx) {
if (!ELFT::Is64Bits)
return nullptr;
SmallVector<InputSectionBase *, 0> sections;
for (InputSectionBase *sec : ctx.inputSections)
if (sec->type == SHT_MIPS_OPTIONS)
sections.push_back(sec);
if (sections.empty())
return nullptr;
Elf_Mips_RegInfo reginfo = {};
for (InputSectionBase *sec : sections) {
sec->markDead();
ArrayRef<uint8_t> d = sec->content();
while (!d.empty()) {
if (d.size() < sizeof(Elf_Mips_Options)) {
Err(ctx) << sec->file << ": invalid size of .MIPS.options section";
break;
}
auto *opt = reinterpret_cast<const Elf_Mips_Options *>(d.data());
if (opt->kind == ODK_REGINFO) {
reginfo.ri_gprmask |= opt->getRegInfo().ri_gprmask;
sec->getFile<ELFT>()->mipsGp0 = opt->getRegInfo().ri_gp_value;
break;
}
if (!opt->size) {
Err(ctx) << sec->file << ": zero option descriptor size";
break;
}
d = d.slice(opt->size);
}
};
return std::make_unique<MipsOptionsSection<ELFT>>(ctx, reginfo);
}
template <class ELFT>
MipsReginfoSection<ELFT>::MipsReginfoSection(Ctx &ctx, Elf_Mips_RegInfo reginfo)
: SyntheticSection(ctx, ".reginfo", SHT_MIPS_REGINFO, SHF_ALLOC, 4),
reginfo(reginfo) {
this->entsize = sizeof(Elf_Mips_RegInfo);
}
template <class ELFT> void MipsReginfoSection<ELFT>::writeTo(uint8_t *buf) {
if (!ctx.arg.relocatable)
reginfo.ri_gp_value = ctx.in.mipsGot->getGp();
memcpy(buf, ®info, sizeof(reginfo));
}
template <class ELFT>
std::unique_ptr<MipsReginfoSection<ELFT>>
MipsReginfoSection<ELFT>::create(Ctx &ctx) {
if (ELFT::Is64Bits)
return nullptr;
SmallVector<InputSectionBase *, 0> sections;
for (InputSectionBase *sec : ctx.inputSections)
if (sec->type == SHT_MIPS_REGINFO)
sections.push_back(sec);
if (sections.empty())
return nullptr;
Elf_Mips_RegInfo reginfo = {};
for (InputSectionBase *sec : sections) {
sec->markDead();
if (sec->content().size() != sizeof(Elf_Mips_RegInfo)) {
Err(ctx) << sec->file << ": invalid size of .reginfo section";
return nullptr;
}
auto *r = reinterpret_cast<const Elf_Mips_RegInfo *>(sec->content().data());
reginfo.ri_gprmask |= r->ri_gprmask;
sec->getFile<ELFT>()->mipsGp0 = r->ri_gp_value;
};
return std::make_unique<MipsReginfoSection<ELFT>>(ctx, reginfo);
}
InputSection *elf::createInterpSection(Ctx &ctx) {
StringRef s = ctx.saver.save(ctx.arg.dynamicLinker);
ArrayRef<uint8_t> contents = {(const uint8_t *)s.data(), s.size() + 1};
return make<InputSection>(ctx.internalFile, ".interp", SHT_PROGBITS,
SHF_ALLOC,
1, 0, contents);
}
Defined *elf::addSyntheticLocal(Ctx &ctx, StringRef name, uint8_t type,
uint64_t value, uint64_t size,
InputSectionBase §ion) {
Defined *s = makeDefined(ctx, section.file, name, STB_LOCAL, STV_DEFAULT,
type, value, size, §ion);
if (ctx.in.symTab)
ctx.in.symTab->addSymbol(s);
if (ctx.arg.emachine == EM_ARM && !ctx.arg.isLE && ctx.arg.armBe8 &&
(section.flags & SHF_EXECINSTR))
addArmSyntheticSectionMappingSymbol(s);
return s;
}
static size_t getHashSize(Ctx &ctx) {
switch (ctx.arg.buildId) {
case BuildIdKind::Fast:
return 8;
case BuildIdKind::Md5:
case BuildIdKind::Uuid:
return 16;
case BuildIdKind::Sha1:
return 20;
case BuildIdKind::Hexstring:
return ctx.arg.buildIdVector.size();
default:
llvm_unreachable("unknown BuildIdKind");
}
}
GnuPropertySection::GnuPropertySection(Ctx &ctx)
: SyntheticSection(ctx, ".note.gnu.property", SHT_NOTE, SHF_ALLOC,
ctx.arg.wordsize) {}
void GnuPropertySection::writeTo(uint8_t *buf) {
uint32_t featureAndType;
switch (ctx.arg.emachine) {
case EM_386:
case EM_X86_64:
featureAndType = GNU_PROPERTY_X86_FEATURE_1_AND;
break;
case EM_AARCH64:
featureAndType = GNU_PROPERTY_AARCH64_FEATURE_1_AND;
break;
case EM_RISCV:
featureAndType = GNU_PROPERTY_RISCV_FEATURE_1_AND;
break;
default:
llvm_unreachable(
"target machine does not support .note.gnu.property section");
}
write32(ctx, buf, 4);
write32(ctx, buf + 4, getSize() - 16);
write32(ctx, buf + 8, NT_GNU_PROPERTY_TYPE_0);
memcpy(buf + 12, "GNU", 4);
unsigned offset = 16;
if (ctx.arg.andFeatures != 0) {
write32(ctx, buf + offset + 0, featureAndType);
write32(ctx, buf + offset + 4, 4);
write32(ctx, buf + offset + 8, ctx.arg.andFeatures);
if (ctx.arg.is64)
write32(ctx, buf + offset + 12, 0);
offset += 16;
}
if (ctx.aarch64PauthAbiCoreInfo) {
write32(ctx, buf + offset + 0, GNU_PROPERTY_AARCH64_FEATURE_PAUTH);
write32(ctx, buf + offset + 4, AArch64PauthAbiCoreInfo::size());
write64(ctx, buf + offset + 8, ctx.aarch64PauthAbiCoreInfo->platform);
write64(ctx, buf + offset + 16, ctx.aarch64PauthAbiCoreInfo->version);
}
}
size_t GnuPropertySection::getSize() const {
uint32_t contentSize = 0;
if (ctx.arg.andFeatures != 0)
contentSize += ctx.arg.is64 ? 16 : 12;
if (ctx.aarch64PauthAbiCoreInfo)
contentSize += 4 + 4 + AArch64PauthAbiCoreInfo::size();
assert(contentSize != 0);
return contentSize + 16;
}
BuildIdSection::BuildIdSection(Ctx &ctx)
: SyntheticSection(ctx, ".note.gnu.build-id", SHT_NOTE, SHF_ALLOC, 4),
hashSize(getHashSize(ctx)) {}
void BuildIdSection::writeTo(uint8_t *buf) {
write32(ctx, buf, 4);
write32(ctx, buf + 4, hashSize);
write32(ctx, buf + 8, NT_GNU_BUILD_ID);
memcpy(buf + 12, "GNU", 4);
hashBuf = buf + 16;
}
void BuildIdSection::writeBuildId(ArrayRef<uint8_t> buf) {
assert(buf.size() == hashSize);
memcpy(hashBuf, buf.data(), hashSize);
}
BssSection::BssSection(Ctx &ctx, StringRef name, uint64_t size,
uint32_t alignment)
: SyntheticSection(ctx, name, SHT_NOBITS, SHF_ALLOC | SHF_WRITE,
alignment) {
this->bss = true;
this->size = size;
}
EhFrameSection::EhFrameSection(Ctx &ctx)
: SyntheticSection(ctx, ".eh_frame", SHT_PROGBITS, SHF_ALLOC, 1) {}
CieRecord *EhFrameSection::addCie(EhSectionPiece &cie,
ArrayRef<Relocation> rels) {
Symbol *personality = nullptr;
unsigned firstRelI = cie.firstRelocation;
if (firstRelI != (unsigned)-1)
personality = rels[firstRelI].sym;
CieRecord *&rec = cieMap[{cie.data(), personality}];
if (!rec) {
rec = make<CieRecord>();
rec->cie = &cie;
cieRecords.push_back(rec);
}
return rec;
}
Defined *EhFrameSection::isFdeLive(EhSectionPiece &fde,
ArrayRef<Relocation> rels) {
unsigned firstRelI = fde.firstRelocation;
if (firstRelI == (unsigned)-1)
return nullptr;
if (auto *d = dyn_cast<Defined>(rels[firstRelI].sym))
if (!d->folded && d->section && d->section->partition == partition)
return d;
return nullptr;
}
template <endianness e> void EhFrameSection::addRecords(EhInputSection *sec) {
auto rels = sec->rels;
offsetToCie.clear();
for (EhSectionPiece &cie : sec->cies)
offsetToCie[cie.inputOff] = addCie(cie, rels);
for (EhSectionPiece &fde : sec->fdes) {
uint32_t id = endian::read32<e>(fde.data().data() + 4);
CieRecord *rec = offsetToCie[fde.inputOff + 4 - id];
if (!rec)
Fatal(ctx) << sec << ": invalid CIE reference";
if (!isFdeLive(fde, rels))
continue;
rec->fdes.push_back(&fde);
numFdes++;
}
}
template <class ELFT>
void EhFrameSection::iterateFDEWithLSDAAux(
EhInputSection &sec, DenseSet<size_t> &ciesWithLSDA,
llvm::function_ref<void(InputSection &)> fn) {
for (EhSectionPiece &cie : sec.cies)
if (hasLSDA(cie))
ciesWithLSDA.insert(cie.inputOff);
for (EhSectionPiece &fde : sec.fdes) {
uint32_t id = endian::read32<ELFT::Endianness>(fde.data().data() + 4);
if (!ciesWithLSDA.contains(fde.inputOff + 4 - id))
continue;
if (Defined *d = isFdeLive(fde, sec.rels))
if (auto *s = dyn_cast_or_null<InputSection>(d->section))
fn(*s);
}
}
template <class ELFT>
void EhFrameSection::iterateFDEWithLSDA(
llvm::function_ref<void(InputSection &)> fn) {
DenseSet<size_t> ciesWithLSDA;
for (EhInputSection *sec : sections) {
ciesWithLSDA.clear();
iterateFDEWithLSDAAux<ELFT>(*sec, ciesWithLSDA, fn);
}
}
static void writeCieFde(Ctx &ctx, uint8_t *buf, ArrayRef<uint8_t> d) {
memcpy(buf, d.data(), d.size());
write32(ctx, buf, d.size() - 4);
}
void EhFrameSection::finalizeContents() {
assert(!this->size);
switch (ctx.arg.ekind) {
case ELFNoneKind:
llvm_unreachable("invalid ekind");
case ELF32LEKind:
case ELF64LEKind:
for (EhInputSection *sec : sections)
if (sec->isLive())
addRecords<endianness::little>(sec);
break;
case ELF32BEKind:
case ELF64BEKind:
for (EhInputSection *sec : sections)
if (sec->isLive())
addRecords<endianness::big>(sec);
break;
}
size_t off = 0;
for (CieRecord *rec : cieRecords) {
rec->cie->outputOff = off;
off += rec->cie->size;
for (EhSectionPiece *fde : rec->fdes) {
fde->outputOff = off;
off += fde->size;
}
}
off += 4;
this->size = off;
}
SmallVector<EhFrameSection::FdeData, 0> EhFrameSection::getFdeData() const {
uint8_t *buf = ctx.bufferStart + getParent()->offset + outSecOff;
SmallVector<FdeData, 0> ret;
uint64_t va = getPartition(ctx).ehFrameHdr->getVA();
for (CieRecord *rec : cieRecords) {
uint8_t enc = getFdeEncoding(rec->cie);
for (EhSectionPiece *fde : rec->fdes) {
uint64_t pc = getFdePc(buf, fde->outputOff, enc);
uint64_t fdeVA = getParent()->addr + fde->outputOff;
if (!isInt<32>(pc - va)) {
Err(ctx) << fde->sec << ": PC offset is too large: 0x"
<< Twine::utohexstr(pc - va);
continue;
}
ret.push_back({uint32_t(pc - va), uint32_t(fdeVA - va)});
}
}
auto less = [](const FdeData &a, const FdeData &b) {
return a.pcRel < b.pcRel;
};
llvm::stable_sort(ret, less);
auto eq = [](const FdeData &a, const FdeData &b) {
return a.pcRel == b.pcRel;
};
ret.erase(llvm::unique(ret, eq), ret.end());
return ret;
}
static uint64_t readFdeAddr(Ctx &ctx, uint8_t *buf, int size) {
switch (size) {
case DW_EH_PE_udata2:
return read16(ctx, buf);
case DW_EH_PE_sdata2:
return (int16_t)read16(ctx, buf);
case DW_EH_PE_udata4:
return read32(ctx, buf);
case DW_EH_PE_sdata4:
return (int32_t)read32(ctx, buf);
case DW_EH_PE_udata8:
case DW_EH_PE_sdata8:
return read64(ctx, buf);
case DW_EH_PE_absptr:
return readUint(ctx, buf);
}
Err(ctx) << "unknown FDE size encoding";
return 0;
}
uint64_t EhFrameSection::getFdePc(uint8_t *buf, size_t fdeOff,
uint8_t enc) const {
size_t off = fdeOff + 8;
uint64_t addr = readFdeAddr(ctx, buf + off, enc & 0xf);
if ((enc & 0x70) == DW_EH_PE_absptr)
return ctx.arg.is64 ? addr : uint32_t(addr);
if ((enc & 0x70) == DW_EH_PE_pcrel)
return addr + getParent()->addr + off + outSecOff;
Err(ctx) << "unknown FDE size relative encoding";
return 0;
}
void EhFrameSection::writeTo(uint8_t *buf) {
for (CieRecord *rec : cieRecords) {
size_t cieOffset = rec->cie->outputOff;
writeCieFde(ctx, buf + cieOffset, rec->cie->data());
for (EhSectionPiece *fde : rec->fdes) {
size_t off = fde->outputOff;
writeCieFde(ctx, buf + off, fde->data());
write32(ctx, buf + off + 4, off + 4 - cieOffset);
}
}
for (EhInputSection *s : sections)
ctx.target->relocateEh(*s, buf);
if (getPartition(ctx).ehFrameHdr && getPartition(ctx).ehFrameHdr->getParent())
getPartition(ctx).ehFrameHdr->write();
}
GotSection::GotSection(Ctx &ctx)
: SyntheticSection(ctx, ".got", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE,
ctx.target->gotEntrySize) {
numEntries = ctx.target->gotHeaderEntriesNum;
}
void GotSection::addConstant(const Relocation &r) { relocations.push_back(r); }
void GotSection::addEntry(const Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().gotIdx = numEntries++;
}
void GotSection::addAuthEntry(const Symbol &sym) {
authEntries.push_back(
{(numEntries - 1) * ctx.target->gotEntrySize, sym.isFunc()});
}
bool GotSection::addTlsDescEntry(const Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().tlsDescIdx = numEntries;
numEntries += 2;
return true;
}
void GotSection::addTlsDescAuthEntry() {
authEntries.push_back({(numEntries - 2) * ctx.target->gotEntrySize, true});
authEntries.push_back({(numEntries - 1) * ctx.target->gotEntrySize, false});
}
bool GotSection::addDynTlsEntry(const Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().tlsGdIdx = numEntries;
numEntries += 2;
return true;
}
bool GotSection::addTlsIndex() {
if (tlsIndexOff != uint32_t(-1))
return false;
tlsIndexOff = numEntries * ctx.target->gotEntrySize;
numEntries += 2;
return true;
}
uint32_t GotSection::getTlsDescOffset(const Symbol &sym) const {
return sym.getTlsDescIdx(ctx) * ctx.target->gotEntrySize;
}
uint64_t GotSection::getTlsDescAddr(const Symbol &sym) const {
return getVA() + getTlsDescOffset(sym);
}
uint64_t GotSection::getGlobalDynAddr(const Symbol &b) const {
return this->getVA() + b.getTlsGdIdx(ctx) * ctx.target->gotEntrySize;
}
uint64_t GotSection::getGlobalDynOffset(const Symbol &b) const {
return b.getTlsGdIdx(ctx) * ctx.target->gotEntrySize;
}
void GotSection::finalizeContents() {
if (ctx.arg.emachine == EM_PPC64 &&
numEntries <= ctx.target->gotHeaderEntriesNum &&
!ctx.sym.globalOffsetTable)
size = 0;
else
size = numEntries * ctx.target->gotEntrySize;
}
bool GotSection::isNeeded() const {
return hasGotOffRel || numEntries > ctx.target->gotHeaderEntriesNum;
}
void GotSection::writeTo(uint8_t *buf) {
if (size == 0)
return;
ctx.target->writeGotHeader(buf);
ctx.target->relocateAlloc(*this, buf);
for (const AuthEntryInfo &authEntry : authEntries) {
uint8_t *dest = buf + authEntry.offset;
uint64_t key = authEntry.isSymbolFunc ? 0b00 : 0b10;
uint64_t addrDiversity = 1;
write64(ctx, dest, (addrDiversity << 63) | (key << 60));
}
}
static uint64_t getMipsPageCount(uint64_t size) {
return (size + 0xfffe) / 0xffff + 1;
}
MipsGotSection::MipsGotSection(Ctx &ctx)
: SyntheticSection(ctx, ".got", SHT_PROGBITS,
SHF_ALLOC | SHF_WRITE | SHF_MIPS_GPREL, 16) {}
void MipsGotSection::addEntry(InputFile &file, Symbol &sym, int64_t addend,
RelExpr expr) {
FileGot &g = getGot(file);
if (expr == RE_MIPS_GOT_LOCAL_PAGE) {
if (const OutputSection *os = sym.getOutputSection())
g.pagesMap.insert({os, {&sym}});
else
g.local16.insert({{nullptr, getMipsPageAddr(sym.getVA(ctx, addend))}, 0});
} else if (sym.isTls())
g.tls.insert({&sym, 0});
else if (sym.isPreemptible && expr == R_ABS)
g.relocs.insert({&sym, 0});
else if (sym.isPreemptible)
g.global.insert({&sym, 0});
else if (expr == RE_MIPS_GOT_OFF32)
g.local32.insert({{&sym, addend}, 0});
else
g.local16.insert({{&sym, addend}, 0});
}
void MipsGotSection::addDynTlsEntry(InputFile &file, Symbol &sym) {
getGot(file).dynTlsSymbols.insert({&sym, 0});
}
void MipsGotSection::addTlsIndex(InputFile &file) {
getGot(file).dynTlsSymbols.insert({nullptr, 0});
}
size_t MipsGotSection::FileGot::getEntriesNum() const {
return getPageEntriesNum() + local16.size() + global.size() + relocs.size() +
tls.size() + dynTlsSymbols.size() * 2;
}
size_t MipsGotSection::FileGot::getPageEntriesNum() const {
size_t num = 0;
for (const std::pair<const OutputSection *, FileGot::PageBlock> &p : pagesMap)
num += p.second.count;
return num;
}
size_t MipsGotSection::FileGot::getIndexedEntriesNum() const {
size_t count = getPageEntriesNum() + local16.size() + global.size();
if (!tls.empty() || !dynTlsSymbols.empty())
count += relocs.size() + tls.size() + dynTlsSymbols.size() * 2;
return count;
}
MipsGotSection::FileGot &MipsGotSection::getGot(InputFile &f) {
if (f.mipsGotIndex == uint32_t(-1)) {
gots.emplace_back();
gots.back().file = &f;
f.mipsGotIndex = gots.size() - 1;
}
return gots[f.mipsGotIndex];
}
uint64_t MipsGotSection::getPageEntryOffset(const InputFile *f,
const Symbol &sym,
int64_t addend) const {
const FileGot &g = gots[f->mipsGotIndex];
uint64_t index = 0;
if (const OutputSection *outSec = sym.getOutputSection()) {
uint64_t secAddr = getMipsPageAddr(outSec->addr);
uint64_t symAddr = getMipsPageAddr(sym.getVA(ctx, addend));
index = g.pagesMap.lookup(outSec).firstIndex + (symAddr - secAddr) / 0xffff;
} else {
index =
g.local16.lookup({nullptr, getMipsPageAddr(sym.getVA(ctx, addend))});
}
return index * ctx.arg.wordsize;
}
uint64_t MipsGotSection::getSymEntryOffset(const InputFile *f, const Symbol &s,
int64_t addend) const {
const FileGot &g = gots[f->mipsGotIndex];
Symbol *sym = const_cast<Symbol *>(&s);
if (sym->isTls())
return g.tls.lookup(sym) * ctx.arg.wordsize;
if (sym->isPreemptible)
return g.global.lookup(sym) * ctx.arg.wordsize;
return g.local16.lookup({sym, addend}) * ctx.arg.wordsize;
}
uint64_t MipsGotSection::getTlsIndexOffset(const InputFile *f) const {
const FileGot &g = gots[f->mipsGotIndex];
return g.dynTlsSymbols.lookup(nullptr) * ctx.arg.wordsize;
}
uint64_t MipsGotSection::getGlobalDynOffset(const InputFile *f,
const Symbol &s) const {
const FileGot &g = gots[f->mipsGotIndex];
Symbol *sym = const_cast<Symbol *>(&s);
return g.dynTlsSymbols.lookup(sym) * ctx.arg.wordsize;
}
const Symbol *MipsGotSection::getFirstGlobalEntry() const {
if (gots.empty())
return nullptr;
const FileGot &primGot = gots.front();
if (!primGot.global.empty())
return primGot.global.front().first;
if (!primGot.relocs.empty())
return primGot.relocs.front().first;
return nullptr;
}
unsigned MipsGotSection::getLocalEntriesNum() const {
if (gots.empty())
return headerEntriesNum;
return headerEntriesNum + gots.front().getPageEntriesNum() +
gots.front().local16.size();
}
bool MipsGotSection::tryMergeGots(FileGot &dst, FileGot &src, bool isPrimary) {
FileGot tmp = dst;
set_union(tmp.pagesMap, src.pagesMap);
set_union(tmp.local16, src.local16);
set_union(tmp.global, src.global);
set_union(tmp.relocs, src.relocs);
set_union(tmp.tls, src.tls);
set_union(tmp.dynTlsSymbols, src.dynTlsSymbols);
size_t count = isPrimary ? headerEntriesNum : 0;
count += tmp.getIndexedEntriesNum();
if (count * ctx.arg.wordsize > ctx.arg.mipsGotSize)
return false;
std::swap(tmp, dst);
return true;
}
void MipsGotSection::finalizeContents() { updateAllocSize(ctx); }
bool MipsGotSection::updateAllocSize(Ctx &ctx) {
size = headerEntriesNum * ctx.arg.wordsize;
for (const FileGot &g : gots)
size += g.getEntriesNum() * ctx.arg.wordsize;
return false;
}
void MipsGotSection::build() {
if (gots.empty())
return;
std::vector<FileGot> mergedGots(1);
for (FileGot &got : gots) {
for (auto &p: got.global)
if (!p.first->isPreemptible)
got.local16.insert({{p.first, 0}, 0});
got.global.remove_if([&](const std::pair<Symbol *, size_t> &p) {
return !p.first->isPreemptible;
});
}
for (FileGot &got : gots) {
got.relocs.remove_if([&](const std::pair<Symbol *, size_t> &p) {
return got.global.count(p.first);
});
set_union(got.local16, got.local32);
got.local32.clear();
}
FileGot *primGot = &mergedGots.front();
for (FileGot &got : gots) {
set_union(primGot->relocs, got.global);
set_union(primGot->relocs, got.relocs);
got.relocs.clear();
}
for (FileGot &got : gots) {
for (std::pair<const OutputSection *, FileGot::PageBlock> &p :
got.pagesMap) {
const OutputSection *os = p.first;
uint64_t secSize = 0;
for (SectionCommand *cmd : os->commands) {
if (auto *isd = dyn_cast<InputSectionDescription>(cmd))
for (InputSection *isec : isd->sections) {
uint64_t off = alignToPowerOf2(secSize, isec->addralign);
secSize = off + isec->getSize();
}
}
p.second.count = getMipsPageCount(secSize);
}
}
for (FileGot &srcGot : gots) {
InputFile *file = srcGot.file;
if (tryMergeGots(mergedGots.front(), srcGot, true)) {
file->mipsGotIndex = 0;
} else {
if (mergedGots.size() == 1 ||
!tryMergeGots(mergedGots.back(), srcGot, false)) {
mergedGots.emplace_back();
std::swap(mergedGots.back(), srcGot);
}
file->mipsGotIndex = mergedGots.size() - 1;
}
}
std::swap(gots, mergedGots);
primGot = &gots.front();
primGot->relocs.remove_if([&](const std::pair<Symbol *, size_t> &p) {
return primGot->global.count(p.first);
});
size_t index = headerEntriesNum;
for (FileGot &got : gots) {
got.startIndex = &got == primGot ? 0 : index;
for (std::pair<const OutputSection *, FileGot::PageBlock> &p :
got.pagesMap) {
p.second.firstIndex = index;
index += p.second.count;
}
for (auto &p: got.local16)
p.second = index++;
for (auto &p: got.global)
p.second = index++;
for (auto &p: got.relocs)
p.second = index++;
for (auto &p: got.tls)
p.second = index++;
for (auto &p: got.dynTlsSymbols) {
p.second = index;
index += 2;
}
}
for (auto &p : primGot->global) {
if (p.first->auxIdx == 0)
p.first->allocateAux(ctx);
ctx.symAux.back().gotIdx = p.second;
}
for (auto &p : primGot->relocs) {
if (p.first->auxIdx == 0)
p.first->allocateAux(ctx);
ctx.symAux.back().gotIdx = p.second;
}
for (FileGot &got : gots) {
for (std::pair<Symbol *, size_t> &p : got.tls) {
Symbol *s = p.first;
uint64_t offset = p.second * ctx.arg.wordsize;
if (s->isPreemptible || ctx.arg.shared)
ctx.mainPart->relaDyn->addReloc(
{ctx.target->tlsGotRel, this, offset, true, *s, 0, R_ABS});
}
for (std::pair<Symbol *, size_t> &p : got.dynTlsSymbols) {
Symbol *s = p.first;
uint64_t offset = p.second * ctx.arg.wordsize;
if (s == nullptr) {
if (!ctx.arg.shared)
continue;
ctx.mainPart->relaDyn->addReloc(
{ctx.target->tlsModuleIndexRel, this, offset});
} else {
if (!s->isPreemptible && !ctx.arg.shared)
continue;
ctx.mainPart->relaDyn->addSymbolReloc(ctx.target->tlsModuleIndexRel,
*this, offset, *s);
if (!s->isPreemptible)
continue;
offset += ctx.arg.wordsize;
ctx.mainPart->relaDyn->addSymbolReloc(ctx.target->tlsOffsetRel, *this,
offset, *s);
}
}
if (&got == primGot)
continue;
for (const std::pair<Symbol *, size_t> &p : got.global) {
uint64_t offset = p.second * ctx.arg.wordsize;
ctx.mainPart->relaDyn->addSymbolReloc(ctx.target->relativeRel, *this,
offset, *p.first);
}
if (!ctx.arg.isPic)
continue;
for (const std::pair<const OutputSection *, FileGot::PageBlock> &l :
got.pagesMap) {
size_t pageCount = l.second.count;
for (size_t pi = 0; pi < pageCount; ++pi) {
uint64_t offset = (l.second.firstIndex + pi) * ctx.arg.wordsize;
ctx.mainPart->relaDyn->addReloc(
{ctx.target->relativeRel, this, offset, false, *l.second.repSym,
int64_t(pi * 0x10000), RE_MIPS_OSEC_LOCAL_PAGE});
}
}
for (const std::pair<GotEntry, size_t> &p : got.local16) {
uint64_t offset = p.second * ctx.arg.wordsize;
ctx.mainPart->relaDyn->addReloc({ctx.target->relativeRel, this, offset,
false, *p.first.first, p.first.second,
R_ABS});
}
}
}
bool MipsGotSection::isNeeded() const {
return !ctx.arg.relocatable;
}
uint64_t MipsGotSection::getGp(const InputFile *f) const {
if (!f || f->mipsGotIndex == uint32_t(-1) || f->mipsGotIndex == 0)
return ctx.sym.mipsGp->getVA(ctx, 0);
return getVA() + gots[f->mipsGotIndex].startIndex * ctx.arg.wordsize + 0x7ff0;
}
void MipsGotSection::writeTo(uint8_t *buf) {
writeUint(ctx, buf + ctx.arg.wordsize,
(uint64_t)1 << (ctx.arg.wordsize * 8 - 1));
for (const FileGot &g : gots) {
auto write = [&](size_t i, const Symbol *s, int64_t a) {
uint64_t va = a;
if (s)
va = s->getVA(ctx, a);
writeUint(ctx, buf + i * ctx.arg.wordsize, va);
};
for (const std::pair<const OutputSection *, FileGot::PageBlock> &l :
g.pagesMap) {
size_t pageCount = l.second.count;
uint64_t firstPageAddr = getMipsPageAddr(l.first->addr);
for (size_t pi = 0; pi < pageCount; ++pi)
write(l.second.firstIndex + pi, nullptr, firstPageAddr + pi * 0x10000);
}
for (const std::pair<GotEntry, size_t> &p : g.local16)
write(p.second, p.first.first, p.first.second);
if (&g == &gots.front())
for (const std::pair<Symbol *, size_t> &p : g.global)
write(p.second, p.first, 0);
for (const std::pair<Symbol *, size_t> &p : g.relocs)
write(p.second, p.first, 0);
for (const std::pair<Symbol *, size_t> &p : g.tls)
write(p.second, p.first,
p.first->isPreemptible || ctx.arg.shared ? 0 : -0x7000);
for (const std::pair<Symbol *, size_t> &p : g.dynTlsSymbols) {
if (p.first == nullptr && !ctx.arg.shared)
write(p.second, nullptr, 1);
else if (p.first && !p.first->isPreemptible) {
if (!ctx.arg.shared)
write(p.second, nullptr, 1);
write(p.second + 1, p.first, -0x8000);
}
}
}
}
GotPltSection::GotPltSection(Ctx &ctx)
: SyntheticSection(ctx, ".got.plt", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE,
ctx.target->gotEntrySize) {
if (ctx.arg.emachine == EM_PPC) {
name = ".plt";
} else if (ctx.arg.emachine == EM_PPC64) {
type = SHT_NOBITS;
name = ".plt";
}
}
void GotPltSection::addEntry(Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1 &&
ctx.symAux.back().pltIdx == entries.size());
entries.push_back(&sym);
}
size_t GotPltSection::getSize() const {
return (ctx.target->gotPltHeaderEntriesNum + entries.size()) *
ctx.target->gotEntrySize;
}
void GotPltSection::writeTo(uint8_t *buf) {
ctx.target->writeGotPltHeader(buf);
buf += ctx.target->gotPltHeaderEntriesNum * ctx.target->gotEntrySize;
for (const Symbol *b : entries) {
ctx.target->writeGotPlt(buf, *b);
buf += ctx.target->gotEntrySize;
}
}
bool GotPltSection::isNeeded() const {
return !entries.empty() || hasGotPltOffRel;
}
static StringRef getIgotPltName(Ctx &ctx) {
if (ctx.arg.emachine == EM_ARM)
return ".got";
if (ctx.arg.emachine == EM_PPC64)
return ".plt";
return ".got.plt";
}
IgotPltSection::IgotPltSection(Ctx &ctx)
: SyntheticSection(ctx, getIgotPltName(ctx),
ctx.arg.emachine == EM_PPC64 ? SHT_NOBITS : SHT_PROGBITS,
SHF_ALLOC | SHF_WRITE, ctx.target->gotEntrySize) {}
void IgotPltSection::addEntry(Symbol &sym) {
assert(ctx.symAux.back().pltIdx == entries.size());
entries.push_back(&sym);
}
size_t IgotPltSection::getSize() const {
return entries.size() * ctx.target->gotEntrySize;
}
void IgotPltSection::writeTo(uint8_t *buf) {
for (const Symbol *b : entries) {
ctx.target->writeIgotPlt(buf, *b);
buf += ctx.target->gotEntrySize;
}
}
StringTableSection::StringTableSection(Ctx &ctx, StringRef name, bool dynamic)
: SyntheticSection(ctx, name, SHT_STRTAB, dynamic ? (uint64_t)SHF_ALLOC : 0,
1),
dynamic(dynamic) {
strings.push_back("");
stringMap.try_emplace(CachedHashStringRef(""), 0);
size = 1;
}
unsigned StringTableSection::addString(StringRef s, bool hashIt) {
if (hashIt) {
auto r = stringMap.try_emplace(CachedHashStringRef(s), size);
if (!r.second)
return r.first->second;
}
if (s.empty())
return 0;
unsigned ret = this->size;
this->size = this->size + s.size() + 1;
strings.push_back(s);
return ret;
}
void StringTableSection::writeTo(uint8_t *buf) {
for (StringRef s : strings) {
memcpy(buf, s.data(), s.size());
buf[s.size()] = '\0';
buf += s.size() + 1;
}
}
static unsigned getVerDefNum(Ctx &ctx) {
return namedVersionDefs(ctx).size() + 1;
}
template <class ELFT>
DynamicSection<ELFT>::DynamicSection(Ctx &ctx)
: SyntheticSection(ctx, ".dynamic", SHT_DYNAMIC, SHF_ALLOC | SHF_WRITE,
ctx.arg.wordsize) {
this->entsize = ELFT::Is64Bits ? 16 : 8;
if (ctx.arg.emachine == EM_MIPS || ctx.arg.zRodynamic)
this->flags = SHF_ALLOC;
}
static uint64_t addRelaSz(Ctx &ctx, const RelocationBaseSection &relaDyn) {
size_t size = relaDyn.getSize();
if (ctx.in.relaPlt->getParent() == relaDyn.getParent())
size += ctx.in.relaPlt->getSize();
return size;
}
static uint64_t addPltRelSz(Ctx &ctx) { return ctx.in.relaPlt->getSize(); }
template <class ELFT>
std::vector<std::pair<int32_t, uint64_t>>
DynamicSection<ELFT>::computeContents() {
elf::Partition &part = getPartition(ctx);
bool isMain = part.name.empty();
std::vector<std::pair<int32_t, uint64_t>> entries;
auto addInt = [&](int32_t tag, uint64_t val) {
entries.emplace_back(tag, val);
};
auto addInSec = [&](int32_t tag, const InputSection &sec) {
entries.emplace_back(tag, sec.getVA());
};
for (StringRef s : ctx.arg.filterList)
addInt(DT_FILTER, part.dynStrTab->addString(s));
for (StringRef s : ctx.arg.auxiliaryList)
addInt(DT_AUXILIARY, part.dynStrTab->addString(s));
if (!ctx.arg.rpath.empty())
addInt(ctx.arg.enableNewDtags ? DT_RUNPATH : DT_RPATH,
part.dynStrTab->addString(ctx.arg.rpath));
for (SharedFile *file : ctx.sharedFiles)
if (file->isNeeded)
addInt(DT_NEEDED, part.dynStrTab->addString(file->soName));
if (isMain) {
if (!ctx.arg.soName.empty())
addInt(DT_SONAME, part.dynStrTab->addString(ctx.arg.soName));
} else {
if (!ctx.arg.soName.empty())
addInt(DT_NEEDED, part.dynStrTab->addString(ctx.arg.soName));
addInt(DT_SONAME, part.dynStrTab->addString(part.name));
}
uint32_t dtFlags = 0;
uint32_t dtFlags1 = 0;
if (ctx.arg.bsymbolic == BsymbolicKind::All)
dtFlags |= DF_SYMBOLIC;
if (ctx.arg.zGlobal)
dtFlags1 |= DF_1_GLOBAL;
if (ctx.arg.zInitfirst)
dtFlags1 |= DF_1_INITFIRST;
if (ctx.arg.zInterpose)
dtFlags1 |= DF_1_INTERPOSE;
if (ctx.arg.zNodefaultlib)
dtFlags1 |= DF_1_NODEFLIB;
if (ctx.arg.zNodelete)
dtFlags1 |= DF_1_NODELETE;
if (ctx.arg.zNodlopen)
dtFlags1 |= DF_1_NOOPEN;
if (ctx.arg.pie)
dtFlags1 |= DF_1_PIE;
if (ctx.arg.zNow) {
dtFlags |= DF_BIND_NOW;
dtFlags1 |= DF_1_NOW;
}
if (ctx.arg.zOrigin) {
dtFlags |= DF_ORIGIN;
dtFlags1 |= DF_1_ORIGIN;
}
if (!ctx.arg.zText)
dtFlags |= DF_TEXTREL;
if (ctx.hasTlsIe && ctx.arg.shared)
dtFlags |= DF_STATIC_TLS;
if (dtFlags)
addInt(DT_FLAGS, dtFlags);
if (dtFlags1)
addInt(DT_FLAGS_1, dtFlags1);
if (!ctx.arg.shared && !ctx.arg.relocatable && !ctx.arg.zRodynamic)
addInt(DT_DEBUG, 0);
if (part.relaDyn->isNeeded()) {
addInSec(part.relaDyn->dynamicTag, *part.relaDyn);
entries.emplace_back(part.relaDyn->sizeDynamicTag,
addRelaSz(ctx, *part.relaDyn));
bool isRela = ctx.arg.isRela;
addInt(isRela ? DT_RELAENT : DT_RELENT,
isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel));
if (ctx.arg.emachine != EM_MIPS) {
size_t numRelativeRels = part.relaDyn->getRelativeRelocCount();
if (ctx.arg.zCombreloc && numRelativeRels)
addInt(isRela ? DT_RELACOUNT : DT_RELCOUNT, numRelativeRels);
}
}
if (part.relrDyn && part.relrDyn->getParent() &&
!part.relrDyn->relocs.empty()) {
addInSec(ctx.arg.useAndroidRelrTags ? DT_ANDROID_RELR : DT_RELR,
*part.relrDyn);
addInt(ctx.arg.useAndroidRelrTags ? DT_ANDROID_RELRSZ : DT_RELRSZ,
part.relrDyn->getParent()->size);
addInt(ctx.arg.useAndroidRelrTags ? DT_ANDROID_RELRENT : DT_RELRENT,
sizeof(Elf_Relr));
}
if (part.relrAuthDyn && part.relrAuthDyn->getParent() &&
!part.relrAuthDyn->relocs.empty()) {
addInSec(DT_AARCH64_AUTH_RELR, *part.relrAuthDyn);
addInt(DT_AARCH64_AUTH_RELRSZ, part.relrAuthDyn->getParent()->size);
addInt(DT_AARCH64_AUTH_RELRENT, sizeof(Elf_Relr));
}
if (isMain && ctx.in.relaPlt->isNeeded()) {
addInSec(DT_JMPREL, *ctx.in.relaPlt);
entries.emplace_back(DT_PLTRELSZ, addPltRelSz(ctx));
switch (ctx.arg.emachine) {
case EM_MIPS:
addInSec(DT_MIPS_PLTGOT, *ctx.in.gotPlt);
break;
case EM_S390:
addInSec(DT_PLTGOT, *ctx.in.got);
break;
case EM_SPARCV9:
addInSec(DT_PLTGOT, *ctx.in.plt);
break;
case EM_AARCH64:
if (llvm::find_if(ctx.in.relaPlt->relocs, [&ctx = ctx](
const DynamicReloc &r) {
return r.type == ctx.target->pltRel &&
r.sym->stOther & STO_AARCH64_VARIANT_PCS;
}) != ctx.in.relaPlt->relocs.end())
addInt(DT_AARCH64_VARIANT_PCS, 0);
addInSec(DT_PLTGOT, *ctx.in.gotPlt);
break;
case EM_RISCV:
if (llvm::any_of(ctx.in.relaPlt->relocs, [&ctx = ctx](
const DynamicReloc &r) {
return r.type == ctx.target->pltRel &&
(r.sym->stOther & STO_RISCV_VARIANT_CC);
}))
addInt(DT_RISCV_VARIANT_CC, 0);
[[fallthrough]];
default:
addInSec(DT_PLTGOT, *ctx.in.gotPlt);
break;
}
addInt(DT_PLTREL, ctx.arg.isRela ? DT_RELA : DT_REL);
}
if (ctx.arg.emachine == EM_AARCH64) {
if (ctx.arg.andFeatures & GNU_PROPERTY_AARCH64_FEATURE_1_BTI)
addInt(DT_AARCH64_BTI_PLT, 0);
if (ctx.arg.zPacPlt)
addInt(DT_AARCH64_PAC_PLT, 0);
if (hasMemtag(ctx)) {
addInt(DT_AARCH64_MEMTAG_MODE, ctx.arg.androidMemtagMode == NT_MEMTAG_LEVEL_ASYNC);
addInt(DT_AARCH64_MEMTAG_HEAP, ctx.arg.androidMemtagHeap);
addInt(DT_AARCH64_MEMTAG_STACK, ctx.arg.androidMemtagStack);
if (ctx.mainPart->memtagGlobalDescriptors->isNeeded()) {
addInSec(DT_AARCH64_MEMTAG_GLOBALS,
*ctx.mainPart->memtagGlobalDescriptors);
addInt(DT_AARCH64_MEMTAG_GLOBALSSZ,
ctx.mainPart->memtagGlobalDescriptors->getSize());
}
}
}
addInSec(DT_SYMTAB, *part.dynSymTab);
addInt(DT_SYMENT, sizeof(Elf_Sym));
addInSec(DT_STRTAB, *part.dynStrTab);
addInt(DT_STRSZ, part.dynStrTab->getSize());
if (!ctx.arg.zText)
addInt(DT_TEXTREL, 0);
if (part.gnuHashTab && part.gnuHashTab->getParent())
addInSec(DT_GNU_HASH, *part.gnuHashTab);
if (part.hashTab && part.hashTab->getParent())
addInSec(DT_HASH, *part.hashTab);
if (isMain) {
if (ctx.out.preinitArray) {
addInt(DT_PREINIT_ARRAY, ctx.out.preinitArray->addr);
addInt(DT_PREINIT_ARRAYSZ, ctx.out.preinitArray->size);
}
if (ctx.out.initArray) {
addInt(DT_INIT_ARRAY, ctx.out.initArray->addr);
addInt(DT_INIT_ARRAYSZ, ctx.out.initArray->size);
}
if (ctx.out.finiArray) {
addInt(DT_FINI_ARRAY, ctx.out.finiArray->addr);
addInt(DT_FINI_ARRAYSZ, ctx.out.finiArray->size);
}
if (Symbol *b = ctx.symtab->find(ctx.arg.init))
if (b->isDefined())
addInt(DT_INIT, b->getVA(ctx));
if (Symbol *b = ctx.symtab->find(ctx.arg.fini))
if (b->isDefined())
addInt(DT_FINI, b->getVA(ctx));
}
if (part.verSym && part.verSym->isNeeded())
addInSec(DT_VERSYM, *part.verSym);
if (part.verDef && part.verDef->isLive()) {
addInSec(DT_VERDEF, *part.verDef);
addInt(DT_VERDEFNUM, getVerDefNum(ctx));
}
if (part.verNeed && part.verNeed->isNeeded()) {
addInSec(DT_VERNEED, *part.verNeed);
unsigned needNum = 0;
for (SharedFile *f : ctx.sharedFiles)
if (!f->vernauxs.empty())
++needNum;
addInt(DT_VERNEEDNUM, needNum);
}
if (ctx.arg.emachine == EM_MIPS) {
addInt(DT_MIPS_RLD_VERSION, 1);
addInt(DT_MIPS_FLAGS, RHF_NOTPOT);
addInt(DT_MIPS_BASE_ADDRESS, ctx.target->getImageBase());
addInt(DT_MIPS_SYMTABNO, part.dynSymTab->getNumSymbols());
addInt(DT_MIPS_LOCAL_GOTNO, ctx.in.mipsGot->getLocalEntriesNum());
if (const Symbol *b = ctx.in.mipsGot->getFirstGlobalEntry())
addInt(DT_MIPS_GOTSYM, b->dynsymIndex);
else
addInt(DT_MIPS_GOTSYM, part.dynSymTab->getNumSymbols());
addInSec(DT_PLTGOT, *ctx.in.mipsGot);
if (ctx.in.mipsRldMap) {
if (!ctx.arg.pie)
addInSec(DT_MIPS_RLD_MAP, *ctx.in.mipsRldMap);
addInt(DT_MIPS_RLD_MAP_REL,
ctx.in.mipsRldMap->getVA() - (getVA() + entries.size() * entsize));
}
}
if (ctx.arg.emachine == EM_PPC)
addInSec(DT_PPC_GOT, *ctx.in.got);
if (ctx.arg.emachine == EM_PPC64 && ctx.in.plt->isNeeded()) {
addInt(DT_PPC64_GLINK,
ctx.in.plt->getVA() + ctx.target->pltHeaderSize - 32);
}
if (ctx.arg.emachine == EM_PPC64)
addInt(DT_PPC64_OPT, ctx.target->ppc64DynamicSectionOpt);
addInt(DT_NULL, 0);
return entries;
}
template <class ELFT> void DynamicSection<ELFT>::finalizeContents() {
if (OutputSection *sec = getPartition(ctx).dynStrTab->getParent())
getParent()->link = sec->sectionIndex;
this->size = computeContents().size() * this->entsize;
}
template <class ELFT> void DynamicSection<ELFT>::writeTo(uint8_t *buf) {
auto *p = reinterpret_cast<Elf_Dyn *>(buf);
for (std::pair<int32_t, uint64_t> kv : computeContents()) {
p->d_tag = kv.first;
p->d_un.d_val = kv.second;
++p;
}
}
uint64_t DynamicReloc::getOffset() const {
return inputSec->getVA(offsetInSec);
}
int64_t DynamicReloc::computeAddend(Ctx &ctx) const {
assert(!isFinal && "addend already computed");
uint64_t ca = inputSec->getRelocTargetVA(
ctx, Relocation{expr, type, 0, addend, sym}, getOffset());
return ctx.arg.is64 ? ca : SignExtend64<32>(ca);
}
uint32_t DynamicReloc::getSymIndex(SymbolTableBaseSection *symTab) const {
if (!needsDynSymIndex())
return 0;
size_t index = symTab->getSymbolIndex(*sym);
assert((index != 0 ||
(type != symTab->ctx.target->gotRel &&
type != symTab->ctx.target->pltRel) ||
!symTab->ctx.mainPart->dynSymTab->getParent()) &&
"GOT or PLT relocation must refer to symbol in dynamic symbol table");
return index;
}
RelocationBaseSection::RelocationBaseSection(Ctx &ctx, StringRef name,
uint32_t type, int32_t dynamicTag,
int32_t sizeDynamicTag,
bool combreloc,
unsigned concurrency)
: SyntheticSection(ctx, name, type, SHF_ALLOC, ctx.arg.wordsize),
dynamicTag(dynamicTag), sizeDynamicTag(sizeDynamicTag),
relocsVec(concurrency), combreloc(combreloc) {}
void RelocationBaseSection::addSymbolReloc(
RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym,
int64_t addend, std::optional<RelType> addendRelType) {
addReloc(true, dynType, isec, offsetInSec, sym, addend, R_ADDEND,
addendRelType ? *addendRelType : ctx.target->noneRel);
}
void RelocationBaseSection::addAddendOnlyRelocIfNonPreemptible(
RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym,
RelType addendRelType) {
if (sym.isPreemptible)
addReloc({dynType, &isec, offsetInSec, true, sym, 0, R_ADDEND});
else
addReloc(false, dynType, isec, offsetInSec, sym, 0, R_ABS, addendRelType);
}
void RelocationBaseSection::mergeRels() {
size_t newSize = relocs.size();
for (const auto &v : relocsVec)
newSize += v.size();
relocs.reserve(newSize);
for (const auto &v : relocsVec)
llvm::append_range(relocs, v);
relocsVec.clear();
}
void RelocationBaseSection::partitionRels() {
if (!combreloc)
return;
const RelType relativeRel = ctx.target->relativeRel;
numRelativeRelocs =
std::stable_partition(relocs.begin(), relocs.end(),
[=](auto &r) { return r.type == relativeRel; }) -
relocs.begin();
}
void RelocationBaseSection::finalizeContents() {
SymbolTableBaseSection *symTab = getPartition(ctx).dynSymTab.get();
if (symTab && symTab->getParent())
getParent()->link = symTab->getParent()->sectionIndex;
else
getParent()->link = 0;
if (ctx.in.relaPlt.get() == this && ctx.in.gotPlt->getParent()) {
getParent()->flags |= ELF::SHF_INFO_LINK;
getParent()->info = ctx.in.gotPlt->getParent()->sectionIndex;
}
}
void DynamicReloc::finalize(Ctx &ctx, SymbolTableBaseSection *symt) {
r_offset = getOffset();
r_sym = getSymIndex(symt);
addend = computeAddend(ctx);
isFinal = true;
}
void RelocationBaseSection::computeRels() {
SymbolTableBaseSection *symTab = getPartition(ctx).dynSymTab.get();
parallelForEach(relocs, [&ctx = ctx, symTab](DynamicReloc &rel) {
rel.finalize(ctx, symTab);
});
auto irelative = std::stable_partition(
relocs.begin() + numRelativeRelocs, relocs.end(),
[t = ctx.target->iRelativeRel](auto &r) { return r.type != t; });
if (combreloc) {
auto nonRelative = relocs.begin() + numRelativeRelocs;
parallelSort(relocs.begin(), nonRelative,
[&](auto &a, auto &b) { return a.r_offset < b.r_offset; });
llvm::sort(nonRelative, irelative, [&](auto &a, auto &b) {
return std::tie(a.r_sym, a.r_offset) < std::tie(b.r_sym, b.r_offset);
});
}
}
template <class ELFT>
RelocationSection<ELFT>::RelocationSection(Ctx &ctx, StringRef name,
bool combreloc, unsigned concurrency)
: RelocationBaseSection(ctx, name, ctx.arg.isRela ? SHT_RELA : SHT_REL,
ctx.arg.isRela ? DT_RELA : DT_REL,
ctx.arg.isRela ? DT_RELASZ : DT_RELSZ, combreloc,
concurrency) {
this->entsize = ctx.arg.isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
}
template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) {
computeRels();
for (const DynamicReloc &rel : relocs) {
auto *p = reinterpret_cast<Elf_Rela *>(buf);
p->r_offset = rel.r_offset;
p->setSymbolAndType(rel.r_sym, rel.type, ctx.arg.isMips64EL);
if (ctx.arg.isRela)
p->r_addend = rel.addend;
buf += ctx.arg.isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
}
}
RelrBaseSection::RelrBaseSection(Ctx &ctx, unsigned concurrency,
bool isAArch64Auth)
: SyntheticSection(
ctx, isAArch64Auth ? ".relr.auth.dyn" : ".relr.dyn",
isAArch64Auth
? SHT_AARCH64_AUTH_RELR
: (ctx.arg.useAndroidRelrTags ? SHT_ANDROID_RELR : SHT_RELR),
SHF_ALLOC, ctx.arg.wordsize),
relocsVec(concurrency) {}
void RelrBaseSection::mergeRels() {
size_t newSize = relocs.size();
for (const auto &v : relocsVec)
newSize += v.size();
relocs.reserve(newSize);
for (const auto &v : relocsVec)
llvm::append_range(relocs, v);
relocsVec.clear();
}
template <class ELFT>
AndroidPackedRelocationSection<ELFT>::AndroidPackedRelocationSection(
Ctx &ctx, StringRef name, unsigned concurrency)
: RelocationBaseSection(
ctx, name, ctx.arg.isRela ? SHT_ANDROID_RELA : SHT_ANDROID_REL,
ctx.arg.isRela ? DT_ANDROID_RELA : DT_ANDROID_REL,
ctx.arg.isRela ? DT_ANDROID_RELASZ : DT_ANDROID_RELSZ,
false, concurrency) {
this->entsize = 1;
}
template <class ELFT>
bool AndroidPackedRelocationSection<ELFT>::updateAllocSize(Ctx &ctx) {
size_t oldSize = relocData.size();
relocData = {'A', 'P', 'S', '2'};
raw_svector_ostream os(relocData);
auto add = [&](int64_t v) { encodeSLEB128(v, os); };
add(relocs.size());
add(0);
std::vector<Elf_Rela> relatives, nonRelatives;
for (const DynamicReloc &rel : relocs) {
Elf_Rela r;
r.r_offset = rel.getOffset();
r.setSymbolAndType(rel.getSymIndex(getPartition(ctx).dynSymTab.get()),
rel.type, false);
r.r_addend = ctx.arg.isRela ? rel.computeAddend(ctx) : 0;
if (r.getType(ctx.arg.isMips64EL) == ctx.target->relativeRel)
relatives.push_back(r);
else
nonRelatives.push_back(r);
}
llvm::sort(relatives, [](const Elf_Rel &a, const Elf_Rel &b) {
return a.r_offset < b.r_offset;
});
std::vector<Elf_Rela> ungroupedRelatives;
std::vector<std::vector<Elf_Rela>> relativeGroups;
for (auto i = relatives.begin(), e = relatives.end(); i != e;) {
std::vector<Elf_Rela> group;
do {
group.push_back(*i++);
} while (i != e && (i - 1)->r_offset + ctx.arg.wordsize == i->r_offset);
if (group.size() < 8)
ungroupedRelatives.insert(ungroupedRelatives.end(), group.begin(),
group.end());
else
relativeGroups.emplace_back(std::move(group));
}
llvm::sort(nonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) {
return std::tie(a.r_info, a.r_addend, a.r_offset) <
std::tie(b.r_info, b.r_addend, b.r_offset);
});
std::vector<Elf_Rela> ungroupedNonRelatives;
std::vector<std::vector<Elf_Rela>> nonRelativeGroups;
for (auto i = nonRelatives.begin(), e = nonRelatives.end(); i != e;) {
auto j = i + 1;
while (j != e && i->r_info == j->r_info &&
(!ctx.arg.isRela || i->r_addend == j->r_addend))
++j;
if (j - i < 3 || (ctx.arg.isRela && i->r_addend != 0))
ungroupedNonRelatives.insert(ungroupedNonRelatives.end(), i, j);
else
nonRelativeGroups.emplace_back(i, j);
i = j;
}
llvm::sort(ungroupedNonRelatives, [](const Elf_Rela &a, const Elf_Rela &b) {
return a.r_offset < b.r_offset;
});
unsigned hasAddendIfRela =
ctx.arg.isRela ? RELOCATION_GROUP_HAS_ADDEND_FLAG : 0;
uint64_t offset = 0;
uint64_t addend = 0;
for (std::vector<Elf_Rela> &g : relativeGroups) {
add(1);
add(RELOCATION_GROUPED_BY_OFFSET_DELTA_FLAG |
RELOCATION_GROUPED_BY_INFO_FLAG | hasAddendIfRela);
add(g[0].r_offset - offset);
add(ctx.target->relativeRel);
if (ctx.arg.isRela) {
add(g[0].r_addend - addend);
addend = g[0].r_addend;
}
add(g.size() - 1);
add(RELOCATION_GROUPED_BY_OFFSET_DELTA_FLAG |
RELOCATION_GROUPED_BY_INFO_FLAG | hasAddendIfRela);
add(ctx.arg.wordsize);
add(ctx.target->relativeRel);
if (ctx.arg.isRela) {
for (const auto &i : llvm::drop_begin(g)) {
add(i.r_addend - addend);
addend = i.r_addend;
}
}
offset = g.back().r_offset;
}
if (!ungroupedRelatives.empty()) {
add(ungroupedRelatives.size());
add(RELOCATION_GROUPED_BY_INFO_FLAG | hasAddendIfRela);
add(ctx.target->relativeRel);
for (Elf_Rela &r : ungroupedRelatives) {
add(r.r_offset - offset);
offset = r.r_offset;
if (ctx.arg.isRela) {
add(r.r_addend - addend);
addend = r.r_addend;
}
}
}
for (ArrayRef<Elf_Rela> g : nonRelativeGroups) {
add(g.size());
add(RELOCATION_GROUPED_BY_INFO_FLAG);
add(g[0].r_info);
for (const Elf_Rela &r : g) {
add(r.r_offset - offset);
offset = r.r_offset;
}
addend = 0;
}
if (!ungroupedNonRelatives.empty()) {
add(ungroupedNonRelatives.size());
add(hasAddendIfRela);
for (Elf_Rela &r : ungroupedNonRelatives) {
add(r.r_offset - offset);
offset = r.r_offset;
add(r.r_info);
if (ctx.arg.isRela) {
add(r.r_addend - addend);
addend = r.r_addend;
}
}
}
if (relocData.size() < oldSize)
relocData.append(oldSize - relocData.size(), 0);
return relocData.size() != oldSize;
}
template <class ELFT>
RelrSection<ELFT>::RelrSection(Ctx &ctx, unsigned concurrency,
bool isAArch64Auth)
: RelrBaseSection(ctx, concurrency, isAArch64Auth) {
this->entsize = ctx.arg.wordsize;
}
template <class ELFT> bool RelrSection<ELFT>::updateAllocSize(Ctx &ctx) {
size_t oldSize = relrRelocs.size();
relrRelocs.clear();
const size_t wordsize = sizeof(typename ELFT::uint);
const size_t nBits = wordsize * 8 - 1;
std::unique_ptr<uint64_t[]> offsets(new uint64_t[relocs.size()]);
for (auto [i, r] : llvm::enumerate(relocs))
offsets[i] = r.getOffset();
llvm::sort(offsets.get(), offsets.get() + relocs.size());
for (size_t i = 0, e = relocs.size(); i != e;) {
relrRelocs.push_back(Elf_Relr(offsets[i]));
uint64_t base = offsets[i] + wordsize;
++i;
for (;;) {
uint64_t bitmap = 0;
for (; i != e; ++i) {
uint64_t d = offsets[i] - base;
if (d >= nBits * wordsize || d % wordsize)
break;
bitmap |= uint64_t(1) << (d / wordsize);
}
if (!bitmap)
break;
relrRelocs.push_back(Elf_Relr((bitmap << 1) | 1));
base += nBits * wordsize;
}
}
if (relrRelocs.size() < oldSize) {
Log(ctx) << ".relr.dyn needs " << (oldSize - relrRelocs.size())
<< " padding word(s)";
relrRelocs.resize(oldSize, Elf_Relr(1));
}
return relrRelocs.size() != oldSize;
}
SymbolTableBaseSection::SymbolTableBaseSection(Ctx &ctx,
StringTableSection &strTabSec)
: SyntheticSection(ctx, strTabSec.isDynamic() ? ".dynsym" : ".symtab",
strTabSec.isDynamic() ? SHT_DYNSYM : SHT_SYMTAB,
strTabSec.isDynamic() ? (uint64_t)SHF_ALLOC : 0,
ctx.arg.wordsize),
strTabSec(strTabSec) {}
static void sortMipsSymbols(Ctx &ctx, SmallVector<SymbolTableEntry, 0> &syms) {
llvm::stable_sort(syms,
[&](const SymbolTableEntry &l, const SymbolTableEntry &r) {
if (l.sym->isInGot(ctx) && r.sym->isInGot(ctx))
return l.sym->getGotIdx(ctx) < r.sym->getGotIdx(ctx);
if (!l.sym->isInGot(ctx) && !r.sym->isInGot(ctx))
return false;
return !l.sym->isInGot(ctx);
});
}
void SymbolTableBaseSection::finalizeContents() {
if (OutputSection *sec = strTabSec.getParent())
getParent()->link = sec->sectionIndex;
if (this->type != SHT_DYNSYM) {
sortSymTabSymbols();
return;
}
getParent()->info = 1;
if (getPartition(ctx).gnuHashTab) {
getPartition(ctx).gnuHashTab->addSymbols(symbols);
} else if (ctx.arg.emachine == EM_MIPS) {
sortMipsSymbols(ctx, symbols);
}
if (this == ctx.mainPart->dynSymTab.get()) {
size_t i = 0;
for (const SymbolTableEntry &s : symbols)
s.sym->dynsymIndex = ++i;
}
}
void SymbolTableBaseSection::sortSymTabSymbols() {
auto e = std::stable_partition(
symbols.begin(), symbols.end(),
[](const SymbolTableEntry &s) { return s.sym->isLocal(); });
size_t numLocals = e - symbols.begin();
getParent()->info = numLocals + 1;
MapVector<InputFile *, SmallVector<SymbolTableEntry, 0>> arr;
for (const SymbolTableEntry &s : llvm::make_range(symbols.begin(), e))
arr[s.sym->file].push_back(s);
auto i = symbols.begin();
for (auto &p : arr)
for (SymbolTableEntry &entry : p.second)
*i++ = entry;
}
void SymbolTableBaseSection::addSymbol(Symbol *b) {
assert(this->type != SHT_DYNSYM || !b->isLocal());
symbols.push_back({b, strTabSec.addString(b->getName(), false)});
}
size_t SymbolTableBaseSection::getSymbolIndex(const Symbol &sym) {
if (this == ctx.mainPart->dynSymTab.get())
return sym.dynsymIndex;
llvm::call_once(onceFlag, [&] {
symbolIndexMap.reserve(symbols.size());
size_t i = 0;
for (const SymbolTableEntry &e : symbols) {
if (e.sym->type == STT_SECTION)
sectionIndexMap[e.sym->getOutputSection()] = ++i;
else
symbolIndexMap[e.sym] = ++i;
}
});
if (sym.type == STT_SECTION)
return sectionIndexMap.lookup(sym.getOutputSection());
return symbolIndexMap.lookup(&sym);
}
template <class ELFT>
SymbolTableSection<ELFT>::SymbolTableSection(Ctx &ctx,
StringTableSection &strTabSec)
: SymbolTableBaseSection(ctx, strTabSec) {
this->entsize = sizeof(Elf_Sym);
}
static BssSection *getCommonSec(bool relocatable, Symbol *sym) {
if (relocatable)
if (auto *d = dyn_cast<Defined>(sym))
return dyn_cast_or_null<BssSection>(d->section);
return nullptr;
}
static uint32_t getSymSectionIndex(Symbol *sym) {
assert(!(sym->hasFlag(NEEDS_COPY) && sym->isObject()));
if (!isa<Defined>(sym) || sym->hasFlag(NEEDS_COPY))
return SHN_UNDEF;
if (const OutputSection *os = sym->getOutputSection())
return os->sectionIndex >= SHN_LORESERVE ? (uint32_t)SHN_XINDEX
: os->sectionIndex;
return SHN_ABS;
}
template <class ELFT> void SymbolTableSection<ELFT>::writeTo(uint8_t *buf) {
buf += sizeof(Elf_Sym);
auto *eSym = reinterpret_cast<Elf_Sym *>(buf);
bool relocatable = ctx.arg.relocatable;
for (SymbolTableEntry &ent : symbols) {
Symbol *sym = ent.sym;
bool isDefinedHere = type == SHT_SYMTAB || sym->partition == partition;
eSym->st_name = ent.strTabOffset;
eSym->setBindingAndType(sym->binding, sym->type);
eSym->st_other = sym->stOther;
if (BssSection *commonSec = getCommonSec(relocatable, sym)) {
eSym->st_shndx = SHN_COMMON;
eSym->st_value = commonSec->addralign;
eSym->st_size = cast<Defined>(sym)->size;
} else {
const uint32_t shndx = getSymSectionIndex(sym);
if (isDefinedHere) {
eSym->st_shndx = shndx;
eSym->st_value = sym->getVA(ctx);
eSym->st_size = shndx != SHN_UNDEF ? cast<Defined>(sym)->size : 0;
} else {
eSym->st_shndx = 0;
eSym->st_value = 0;
eSym->st_size = 0;
}
}
++eSym;
}
if (ctx.arg.emachine == EM_MIPS) {
auto *eSym = reinterpret_cast<Elf_Sym *>(buf);
for (SymbolTableEntry &ent : symbols) {
Symbol *sym = ent.sym;
if (sym->isInPlt(ctx) && sym->hasFlag(NEEDS_COPY))
eSym->st_other |= STO_MIPS_PLT;
if (isMicroMips(ctx)) {
if (sym->isDefined() &&
((sym->stOther & STO_MIPS_MICROMIPS) || sym->hasFlag(NEEDS_COPY))) {
if (!strTabSec.isDynamic())
eSym->st_value &= ~1;
eSym->st_other |= STO_MIPS_MICROMIPS;
}
}
if (ctx.arg.relocatable)
if (auto *d = dyn_cast<Defined>(sym))
if (isMipsPIC<ELFT>(d))
eSym->st_other |= STO_MIPS_PIC;
++eSym;
}
}
}
SymtabShndxSection::SymtabShndxSection(Ctx &ctx)
: SyntheticSection(ctx, ".symtab_shndx", SHT_SYMTAB_SHNDX, 0, 4) {
this->entsize = 4;
}
void SymtabShndxSection::writeTo(uint8_t *buf) {
buf += 4;
bool relocatable = ctx.arg.relocatable;
for (const SymbolTableEntry &entry : ctx.in.symTab->getSymbols()) {
if (!getCommonSec(relocatable, entry.sym) &&
getSymSectionIndex(entry.sym) == SHN_XINDEX)
write32(ctx, buf, entry.sym->getOutputSection()->sectionIndex);
buf += 4;
}
}
bool SymtabShndxSection::isNeeded() const {
size_t size = 0;
for (SectionCommand *cmd : ctx.script->sectionCommands)
if (isa<OutputDesc>(cmd))
++size;
return size >= SHN_LORESERVE;
}
void SymtabShndxSection::finalizeContents() {
getParent()->link = ctx.in.symTab->getParent()->sectionIndex;
}
size_t SymtabShndxSection::getSize() const {
return ctx.in.symTab->getNumSymbols() * 4;
}
GnuHashTableSection::GnuHashTableSection(Ctx &ctx)
: SyntheticSection(ctx, ".gnu.hash", SHT_GNU_HASH, SHF_ALLOC,
ctx.arg.wordsize) {}
void GnuHashTableSection::finalizeContents() {
if (OutputSection *sec = getPartition(ctx).dynSymTab->getParent())
getParent()->link = sec->sectionIndex;
if (symbols.empty()) {
maskWords = 1;
} else {
uint64_t numBits = symbols.size() * 12;
maskWords = NextPowerOf2(numBits / (ctx.arg.wordsize * 8));
}
size = 16;
size += ctx.arg.wordsize * maskWords;
size += nBuckets * 4;
size += symbols.size() * 4;
}
void GnuHashTableSection::writeTo(uint8_t *buf) {
write32(ctx, buf, nBuckets);
write32(ctx, buf + 4,
getPartition(ctx).dynSymTab->getNumSymbols() - symbols.size());
write32(ctx, buf + 8, maskWords);
write32(ctx, buf + 12, Shift2);
buf += 16;
const unsigned c = ctx.arg.is64 ? 64 : 32;
for (const Entry &sym : symbols) {
size_t i = (sym.hash / c) & (maskWords - 1);
uint64_t val = readUint(ctx, buf + i * ctx.arg.wordsize);
val |= uint64_t(1) << (sym.hash % c);
val |= uint64_t(1) << ((sym.hash >> Shift2) % c);
writeUint(ctx, buf + i * ctx.arg.wordsize, val);
}
buf += ctx.arg.wordsize * maskWords;
uint32_t *buckets = reinterpret_cast<uint32_t *>(buf);
uint32_t oldBucket = -1;
uint32_t *values = buckets + nBuckets;
for (auto i = symbols.begin(), e = symbols.end(); i != e; ++i) {
uint32_t hash = i->hash;
bool isLastInChain = (i + 1) == e || i->bucketIdx != (i + 1)->bucketIdx;
hash = isLastInChain ? hash | 1 : hash & ~1;
write32(ctx, values++, hash);
if (i->bucketIdx == oldBucket)
continue;
write32(ctx, buckets + i->bucketIdx,
getPartition(ctx).dynSymTab->getSymbolIndex(*i->sym));
oldBucket = i->bucketIdx;
}
}
void GnuHashTableSection::addSymbols(SmallVectorImpl<SymbolTableEntry> &v) {
auto mid =
std::stable_partition(v.begin(), v.end(), [&](const SymbolTableEntry &s) {
return !s.sym->isDefined() || s.sym->partition != partition;
});
nBuckets = std::max<size_t>((v.end() - mid) / 4, 1);
if (mid == v.end())
return;
for (SymbolTableEntry &ent : llvm::make_range(mid, v.end())) {
Symbol *b = ent.sym;
uint32_t hash = hashGnu(b->getName());
uint32_t bucketIdx = hash % nBuckets;
symbols.push_back({b, ent.strTabOffset, hash, bucketIdx});
}
llvm::sort(symbols, [](const Entry &l, const Entry &r) {
return std::tie(l.bucketIdx, l.strTabOffset) <
std::tie(r.bucketIdx, r.strTabOffset);
});
v.erase(mid, v.end());
for (const Entry &ent : symbols)
v.push_back({ent.sym, ent.strTabOffset});
}
HashTableSection::HashTableSection(Ctx &ctx)
: SyntheticSection(ctx, ".hash", SHT_HASH, SHF_ALLOC, 4) {
this->entsize = 4;
}
void HashTableSection::finalizeContents() {
SymbolTableBaseSection *symTab = getPartition(ctx).dynSymTab.get();
if (OutputSection *sec = symTab->getParent())
getParent()->link = sec->sectionIndex;
unsigned numEntries = 2;
numEntries += symTab->getNumSymbols();
numEntries += symTab->getNumSymbols();
this->size = numEntries * 4;
}
void HashTableSection::writeTo(uint8_t *buf) {
SymbolTableBaseSection *symTab = getPartition(ctx).dynSymTab.get();
unsigned numSymbols = symTab->getNumSymbols();
uint32_t *p = reinterpret_cast<uint32_t *>(buf);
write32(ctx, p++, numSymbols);
write32(ctx, p++, numSymbols);
uint32_t *buckets = p;
uint32_t *chains = p + numSymbols;
for (const SymbolTableEntry &s : symTab->getSymbols()) {
Symbol *sym = s.sym;
StringRef name = sym->getName();
unsigned i = sym->dynsymIndex;
uint32_t hash = hashSysV(name) % numSymbols;
chains[i] = buckets[hash];
write32(ctx, buckets + hash, i);
}
}
PltSection::PltSection(Ctx &ctx)
: SyntheticSection(ctx, ".plt", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR,
16),
headerSize(ctx.target->pltHeaderSize) {
if (ctx.arg.emachine == EM_AARCH64)
this->flags |= SHF_AARCH64_PURECODE;
if (ctx.arg.emachine == EM_PPC64) {
name = ".glink";
addralign = 4;
}
if ((ctx.arg.emachine == EM_386 || ctx.arg.emachine == EM_X86_64) &&
(ctx.arg.andFeatures & GNU_PROPERTY_X86_FEATURE_1_IBT))
name = ".plt.sec";
if (ctx.arg.emachine == EM_SPARCV9)
this->flags |= SHF_WRITE;
}
void PltSection::writeTo(uint8_t *buf) {
ctx.target->writePltHeader(buf);
size_t off = headerSize;
for (const Symbol *sym : entries) {
ctx.target->writePlt(buf + off, *sym, getVA() + off);
off += ctx.target->pltEntrySize;
}
}
void PltSection::addEntry(Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().pltIdx = entries.size();
entries.push_back(&sym);
}
size_t PltSection::getSize() const {
return headerSize + entries.size() * ctx.target->pltEntrySize;
}
bool PltSection::isNeeded() const {
return !entries.empty() || (ctx.arg.zRetpolineplt && ctx.in.iplt->isNeeded());
}
void PltSection::addSymbols() {
ctx.target->addPltHeaderSymbols(*this);
size_t off = headerSize;
for (size_t i = 0; i < entries.size(); ++i) {
ctx.target->addPltSymbols(*this, off);
off += ctx.target->pltEntrySize;
}
}
IpltSection::IpltSection(Ctx &ctx)
: SyntheticSection(ctx, ".iplt", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR,
16) {
if (ctx.arg.emachine == EM_AARCH64)
this->flags |= SHF_AARCH64_PURECODE;
if (ctx.arg.emachine == EM_PPC || ctx.arg.emachine == EM_PPC64) {
name = ".glink";
addralign = 4;
}
}
void IpltSection::writeTo(uint8_t *buf) {
uint32_t off = 0;
for (const Symbol *sym : entries) {
ctx.target->writeIplt(buf + off, *sym, getVA() + off);
off += ctx.target->ipltEntrySize;
}
}
size_t IpltSection::getSize() const {
return entries.size() * ctx.target->ipltEntrySize;
}
void IpltSection::addEntry(Symbol &sym) {
assert(sym.auxIdx == ctx.symAux.size() - 1);
ctx.symAux.back().pltIdx = entries.size();
entries.push_back(&sym);
}
void IpltSection::addSymbols() {
size_t off = 0;
for (size_t i = 0, e = entries.size(); i != e; ++i) {
ctx.target->addPltSymbols(*this, off);
off += ctx.target->pltEntrySize;
}
}
PPC32GlinkSection::PPC32GlinkSection(Ctx &ctx) : PltSection(ctx) {
name = ".glink";
addralign = 4;
}
void PPC32GlinkSection::writeTo(uint8_t *buf) {
writePPC32GlinkSection(ctx, buf, entries.size());
}
size_t PPC32GlinkSection::getSize() const {
return headerSize + entries.size() * ctx.target->pltEntrySize + footerSize;
}
IBTPltSection::IBTPltSection(Ctx &ctx)
: SyntheticSection(ctx, ".plt", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR,
16) {}
void IBTPltSection::writeTo(uint8_t *buf) {
ctx.target->writeIBTPlt(buf, ctx.in.plt->getNumEntries());
}
size_t IBTPltSection::getSize() const {
return 16 + ctx.in.plt->getNumEntries() * ctx.target->pltEntrySize;
}
bool IBTPltSection::isNeeded() const { return ctx.in.plt->getNumEntries() > 0; }
RelroPaddingSection::RelroPaddingSection(Ctx &ctx)
: SyntheticSection(ctx, ".relro_padding", SHT_NOBITS, SHF_ALLOC | SHF_WRITE,
1) {}
PaddingSection::PaddingSection(Ctx &ctx, uint64_t amount, OutputSection *parent)
: SyntheticSection(ctx, ".padding", SHT_PROGBITS, SHF_ALLOC, 1) {
size = amount;
this->parent = parent;
}
void PaddingSection::writeTo(uint8_t *buf) {
std::array<uint8_t, 4> filler = getParent()->getFiller(ctx);
uint8_t *end = buf + size;
for (; buf + 4 <= end; buf += 4)
memcpy(buf, &filler[0], 4);
memcpy(buf, &filler[0], end - buf);
}
static uint32_t computeGdbHash(StringRef s) {
uint32_t h = 0;
for (uint8_t c : s)
h = h * 67 + toLower(c) - 113;
return h;
}
DebugNamesBaseSection::DebugNamesBaseSection(Ctx &ctx)
: SyntheticSection(ctx, ".debug_names", SHT_PROGBITS, 0, 4) {}
static uint32_t getDebugNamesHeaderSize(uint32_t augmentationStringSize) {
return 4 +
2 +
2 +
4 +
4 +
4 +
4 +
4 +
4 +
4 +
augmentationStringSize;
}
static Expected<DebugNamesBaseSection::IndexEntry *>
readEntry(uint64_t &offset, const DWARFDebugNames::NameIndex &ni,
uint64_t entriesBase, DWARFDataExtractor &namesExtractor,
const LLDDWARFSection &namesSec) {
auto ie = makeThreadLocal<DebugNamesBaseSection::IndexEntry>();
ie->poolOffset = offset;
Error err = Error::success();
uint64_t ulebVal = namesExtractor.getULEB128(&offset, &err);
if (err)
return createStringError(inconvertibleErrorCode(),
"invalid abbrev code: %s",
llvm::toString(std::move(err)).c_str());
if (!isUInt<32>(ulebVal))
return createStringError(inconvertibleErrorCode(),
"abbrev code too large for DWARF32: %" PRIu64,
ulebVal);
ie->abbrevCode = static_cast<uint32_t>(ulebVal);
auto it = ni.getAbbrevs().find_as(ie->abbrevCode);
if (it == ni.getAbbrevs().end())
return createStringError(inconvertibleErrorCode(),
"abbrev code not found in abbrev table: %" PRIu32,
ie->abbrevCode);
DebugNamesBaseSection::AttrValue attr, cuAttr = {0, 0};
for (DWARFDebugNames::AttributeEncoding a : it->Attributes) {
if (a.Index == dwarf::DW_IDX_parent) {
if (a.Form == dwarf::DW_FORM_ref4) {
attr.attrValue = namesExtractor.getU32(&offset, &err);
attr.attrSize = 4;
ie->parentOffset = entriesBase + attr.attrValue;
} else if (a.Form != DW_FORM_flag_present)
return createStringError(inconvertibleErrorCode(),
"invalid form for DW_IDX_parent");
} else {
switch (a.Form) {
case DW_FORM_data1:
case DW_FORM_ref1: {
attr.attrValue = namesExtractor.getU8(&offset, &err);
attr.attrSize = 1;
break;
}
case DW_FORM_data2:
case DW_FORM_ref2: {
attr.attrValue = namesExtractor.getU16(&offset, &err);
attr.attrSize = 2;
break;
}
case DW_FORM_data4:
case DW_FORM_ref4: {
attr.attrValue = namesExtractor.getU32(&offset, &err);
attr.attrSize = 4;
break;
}
default:
return createStringError(
inconvertibleErrorCode(),
"unrecognized form encoding %d in abbrev table", a.Form);
}
}
if (err)
return createStringError(inconvertibleErrorCode(),
"error while reading attributes: %s",
llvm::toString(std::move(err)).c_str());
if (a.Index == DW_IDX_compile_unit)
cuAttr = attr;
else if (a.Form != DW_FORM_flag_present)
ie->attrValues.push_back(attr);
}
ie->attrValues.push_back(cuAttr);
return ie;
}
void DebugNamesBaseSection::parseDebugNames(
Ctx &ctx, InputChunk &inputChunk, OutputChunk &chunk,
DWARFDataExtractor &namesExtractor, DataExtractor &strExtractor,
function_ref<SmallVector<uint32_t, 0>(
uint32_t numCus, const DWARFDebugNames::Header &,
const DWARFDebugNames::DWARFDebugNamesOffsets &)>
readOffsets) {
const LLDDWARFSection &namesSec = inputChunk.section;
DenseMap<uint32_t, IndexEntry *> offsetMap;
uint32_t numCus = 0;
for (const DWARFDebugNames::NameIndex &ni : *inputChunk.llvmDebugNames) {
NameData &nd = inputChunk.nameData.emplace_back();
nd.hdr = ni.getHeader();
if (nd.hdr.Format != DwarfFormat::DWARF32) {
Err(ctx) << namesSec.sec
<< ": found DWARF64, which is currently unsupported";
return;
}
if (nd.hdr.Version != 5) {
Err(ctx) << namesSec.sec << ": unsupported version: " << nd.hdr.Version;
return;
}
uint32_t dwarfSize = dwarf::getDwarfOffsetByteSize(DwarfFormat::DWARF32);
DWARFDebugNames::DWARFDebugNamesOffsets locs = ni.getOffsets();
if (locs.EntriesBase > namesExtractor.getData().size()) {
Err(ctx) << namesSec.sec << ": entry pool start is beyond end of section";
return;
}
SmallVector<uint32_t, 0> entryOffsets = readOffsets(numCus, nd.hdr, locs);
offsetMap.clear();
nd.nameEntries.resize(nd.hdr.NameCount);
for (auto i : seq(nd.hdr.NameCount)) {
NameEntry &ne = nd.nameEntries[i];
uint64_t strOffset = locs.StringOffsetsBase + i * dwarfSize;
ne.stringOffset = strOffset;
uint64_t strp = namesExtractor.getRelocatedValue(dwarfSize, &strOffset);
StringRef name = strExtractor.getCStrRef(&strp);
ne.name = name.data();
ne.hashValue = caseFoldingDjbHash(name);
uint64_t offset = locs.EntriesBase + entryOffsets[i];
while (offset < namesSec.Data.size() && namesSec.Data[offset] != 0) {
Expected<IndexEntry *> ieOrErr =
readEntry(offset, ni, locs.EntriesBase, namesExtractor, namesSec);
if (!ieOrErr) {
Err(ctx) << namesSec.sec << ": " << ieOrErr.takeError();
return;
}
ne.indexEntries.push_back(std::move(*ieOrErr));
}
if (offset >= namesSec.Data.size())
Err(ctx) << namesSec.sec << ": index entry is out of bounds";
for (IndexEntry &ie : ne.entries())
offsetMap[ie.poolOffset] = &ie;
}
for (NameEntry &ne : nd.nameEntries)
for (IndexEntry &ie : ne.entries())
ie.parentEntry = offsetMap.lookup(ie.parentOffset);
numCus += nd.hdr.CompUnitCount;
}
}
std::pair<uint8_t, dwarf::Form> static getMergedCuCountForm(
uint32_t compUnitCount) {
if (compUnitCount > UINT16_MAX)
return {4, DW_FORM_data4};
if (compUnitCount > UINT8_MAX)
return {2, DW_FORM_data2};
return {1, DW_FORM_data1};
}
void DebugNamesBaseSection::computeHdrAndAbbrevTable(
MutableArrayRef<InputChunk> inputChunks) {
TimeTraceScope timeScope("Merge .debug_names", "hdr and abbrev table");
size_t numCu = 0;
hdr.Format = DwarfFormat::DWARF32;
hdr.Version = 5;
hdr.CompUnitCount = 0;
hdr.LocalTypeUnitCount = 0;
hdr.ForeignTypeUnitCount = 0;
hdr.AugmentationStringSize = 0;
for (auto i : seq(numChunks)) {
InputChunk &inputChunk = inputChunks[i];
inputChunk.baseCuIdx = numCu;
numCu += chunks[i].compUnits.size();
for (const NameData &nd : inputChunk.nameData) {
hdr.CompUnitCount += nd.hdr.CompUnitCount;
if (nd.hdr.LocalTypeUnitCount || nd.hdr.ForeignTypeUnitCount)
Warn(ctx) << inputChunk.section.sec
<< ": type units are not implemented";
if (i == 0) {
hdr.AugmentationStringSize = nd.hdr.AugmentationStringSize;
hdr.AugmentationString = nd.hdr.AugmentationString;
} else if (hdr.AugmentationString != nd.hdr.AugmentationString) {
hdr.AugmentationStringSize = 0;
hdr.AugmentationString.clear();
}
}
}
FoldingSet<Abbrev> abbrevSet;
dwarf::Form cuAttrForm = getMergedCuCountForm(hdr.CompUnitCount).second;
for (InputChunk &inputChunk : inputChunks) {
for (auto [i, ni] : enumerate(*inputChunk.llvmDebugNames)) {
for (const DWARFDebugNames::Abbrev &oldAbbrev : ni.getAbbrevs()) {
Abbrev abbrev;
DWARFDebugNames::AttributeEncoding cuAttr(DW_IDX_compile_unit,
cuAttrForm);
abbrev.code = oldAbbrev.Code;
abbrev.tag = oldAbbrev.Tag;
for (DWARFDebugNames::AttributeEncoding a : oldAbbrev.Attributes) {
if (a.Index == DW_IDX_compile_unit)
cuAttr.Index = a.Index;
else
abbrev.attributes.push_back({a.Index, a.Form});
}
abbrev.attributes.push_back(cuAttr);
FoldingSetNodeID id;
abbrev.Profile(id);
uint32_t newCode;
void *insertPos;
if (Abbrev *existing = abbrevSet.FindNodeOrInsertPos(id, insertPos)) {
newCode = existing->code;
} else {
Abbrev *abbrev2 =
new (abbrevAlloc.Allocate()) Abbrev(std::move(abbrev));
abbrevSet.InsertNode(abbrev2, insertPos);
abbrevTable.push_back(abbrev2);
newCode = abbrevTable.size();
abbrev2->code = newCode;
}
inputChunk.nameData[i].abbrevCodeMap[oldAbbrev.Code] = newCode;
}
}
}
raw_svector_ostream os(abbrevTableBuf);
for (Abbrev *abbrev : abbrevTable) {
encodeULEB128(abbrev->code, os);
encodeULEB128(abbrev->tag, os);
for (DWARFDebugNames::AttributeEncoding a : abbrev->attributes) {
encodeULEB128(a.Index, os);
encodeULEB128(a.Form, os);
}
os.write("\0", 2);
}
os.write(0);
hdr.AbbrevTableSize = abbrevTableBuf.size();
}
void DebugNamesBaseSection::Abbrev::Profile(FoldingSetNodeID &id) const {
id.AddInteger(tag);
for (const DWARFDebugNames::AttributeEncoding &attr : attributes) {
id.AddInteger(attr.Index);
id.AddInteger(attr.Form);
}
}
std::pair<uint32_t, uint32_t> DebugNamesBaseSection::computeEntryPool(
MutableArrayRef<InputChunk> inputChunks) {
TimeTraceScope timeScope("Merge .debug_names", "entry pool");
const size_t concurrency =
bit_floor(std::min<size_t>(ctx.arg.threadCount, numShards));
const size_t shift = 32 - countr_zero(numShards);
const uint8_t cuAttrSize = getMergedCuCountForm(hdr.CompUnitCount).first;
DenseMap<CachedHashStringRef, size_t> maps[numShards];
parallelFor(0, concurrency, [&](size_t threadId) {
for (auto i : seq(numChunks)) {
InputChunk &inputChunk = inputChunks[i];
for (auto j : seq(inputChunk.nameData.size())) {
NameData &nd = inputChunk.nameData[j];
for (NameEntry &ne : nd.nameEntries) {
auto shardId = ne.hashValue >> shift;
if ((shardId & (concurrency - 1)) != threadId)
continue;
ne.chunkIdx = i;
for (IndexEntry &ie : ne.entries()) {
ie.abbrevCode = nd.abbrevCodeMap[ie.abbrevCode];
auto &back = ie.attrValues.back();
back.attrValue += inputChunk.baseCuIdx + j;
back.attrSize = cuAttrSize;
}
auto &nameVec = nameVecs[shardId];
auto [it, inserted] = maps[shardId].try_emplace(
CachedHashStringRef(ne.name, ne.hashValue), nameVec.size());
if (inserted)
nameVec.push_back(std::move(ne));
else
nameVec[it->second].indexEntries.append(std::move(ne.indexEntries));
}
}
}
});
uint32_t offsets[numShards];
parallelFor(0, numShards, [&](size_t shard) {
uint32_t offset = 0;
for (NameEntry &ne : nameVecs[shard]) {
ne.entryOffset = offset;
for (IndexEntry &ie : ne.entries()) {
ie.poolOffset = offset;
offset += getULEB128Size(ie.abbrevCode);
for (AttrValue value : ie.attrValues)
offset += value.attrSize;
}
++offset;
}
offsets[shard] = offset;
});
std::partial_sum(offsets, std::end(offsets), offsets);
parallelFor(1, numShards, [&](size_t shard) {
uint32_t offset = offsets[shard - 1];
for (NameEntry &ne : nameVecs[shard]) {
ne.entryOffset += offset;
for (IndexEntry &ie : ne.entries())
ie.poolOffset += offset;
}
});
parallelFor(0, numShards, [&](size_t shard) {
for (NameEntry &ne : nameVecs[shard]) {
for (IndexEntry &ie : ne.entries()) {
if (!ie.parentEntry)
continue;
const Abbrev *abbrev = abbrevTable[ie.abbrevCode - 1];
for (const auto &[a, v] : zip_equal(abbrev->attributes, ie.attrValues))
if (a.Index == DW_IDX_parent && a.Form == DW_FORM_ref4)
v.attrValue = ie.parentEntry->poolOffset;
}
}
});
uint32_t num = 0;
for (auto &map : maps)
num += map.size();
return {offsets[numShards - 1], num};
}
void DebugNamesBaseSection::init(
function_ref<void(InputFile *, InputChunk &, OutputChunk &)> parseFile) {
TimeTraceScope timeScope("Merge .debug_names");
SetVector<InputFile *> files;
for (InputSectionBase *s : ctx.inputSections) {
InputSection *isec = dyn_cast<InputSection>(s);
if (!isec)
continue;
if (!(s->flags & SHF_ALLOC) && s->name == ".debug_names") {
s->markDead();
inputSections.push_back(isec);
files.insert(isec->file);
}
}
auto inputChunksPtr = std::make_unique<InputChunk[]>(files.size());
MutableArrayRef<InputChunk> inputChunks(inputChunksPtr.get(), files.size());
numChunks = files.size();
chunks = std::make_unique<OutputChunk[]>(files.size());
{
TimeTraceScope timeScope("Merge .debug_names", "parse");
parallelFor(0, files.size(), [&](size_t i) {
parseFile(files[i], inputChunks[i], chunks[i]);
});
}
computeHdrAndAbbrevTable(inputChunks);
uint32_t entryPoolSize;
std::tie(entryPoolSize, hdr.NameCount) = computeEntryPool(inputChunks);
hdr.BucketCount = dwarf::getDebugNamesBucketCount(hdr.NameCount);
uint32_t hdrSize = getDebugNamesHeaderSize(hdr.AugmentationStringSize);
size = findDebugNamesOffsets(hdrSize, hdr).EntriesBase + entryPoolSize;
hdr.UnitLength = size - 4;
}
template <class ELFT>
DebugNamesSection<ELFT>::DebugNamesSection(Ctx &ctx)
: DebugNamesBaseSection(ctx) {
init([&](InputFile *f, InputChunk &inputChunk, OutputChunk &chunk) {
auto *file = cast<ObjFile<ELFT>>(f);
DWARFContext dwarf(std::make_unique<LLDDwarfObj<ELFT>>(file));
auto &dobj = static_cast<const LLDDwarfObj<ELFT> &>(dwarf.getDWARFObj());
chunk.infoSec = dobj.getInfoSection();
DWARFDataExtractor namesExtractor(dobj, dobj.getNamesSection(),
ELFT::Endianness == endianness::little,
ELFT::Is64Bits ? 8 : 4);
DataExtractor strExtractor(dobj.getStrSection(),
ELFT::Endianness == endianness::little,
ELFT::Is64Bits ? 8 : 4);
inputChunk.section = dobj.getNamesSection();
inputChunk.llvmDebugNames.emplace(namesExtractor, strExtractor);
if (Error e = inputChunk.llvmDebugNames->extract()) {
Err(ctx) << dobj.getNamesSection().sec << ": " << std::move(e);
}
parseDebugNames(
ctx, inputChunk, chunk, namesExtractor, strExtractor,
[&chunk, namesData = dobj.getNamesSection().Data.data()](
uint32_t numCus, const DWARFDebugNames::Header &hdr,
const DWARFDebugNames::DWARFDebugNamesOffsets &locs) {
chunk.compUnits.resize_for_overwrite(numCus + hdr.CompUnitCount);
for (auto i : seq(hdr.CompUnitCount))
chunk.compUnits[numCus + i] = locs.CUsBase + i * 4;
const char *p = namesData + locs.EntryOffsetsBase;
SmallVector<uint32_t, 0> entryOffsets;
entryOffsets.resize_for_overwrite(hdr.NameCount);
for (uint32_t &offset : entryOffsets)
offset = endian::readNext<uint32_t, ELFT::Endianness, unaligned>(p);
return entryOffsets;
});
});
}
template <class ELFT>
template <class RelTy>
void DebugNamesSection<ELFT>::getNameRelocs(
const InputFile &file, DenseMap<uint32_t, uint32_t> &relocs,
Relocs<RelTy> rels) {
for (const RelTy &rel : rels) {
Symbol &sym = file.getRelocTargetSym(rel);
relocs[rel.r_offset] = sym.getVA(ctx, getAddend<ELFT>(rel));
}
}
template <class ELFT> void DebugNamesSection<ELFT>::finalizeContents() {
auto relocs = std::make_unique<DenseMap<uint32_t, uint32_t>[]>(numChunks);
parallelFor(0, numChunks, [&](size_t i) {
InputSection *sec = inputSections[i];
invokeOnRelocs(*sec, getNameRelocs, *sec->file, relocs.get()[i]);
OutputChunk &chunk = chunks.get()[i];
for (auto [j, cuOffset] : enumerate(chunk.compUnits))
cuOffset = relocs.get()[i].lookup(cuOffset);
});
parallelForEach(nameVecs, [&](auto &nameVec) {
for (NameEntry &ne : nameVec)
ne.stringOffset = relocs.get()[ne.chunkIdx].lookup(ne.stringOffset);
});
}
template <class ELFT> void DebugNamesSection<ELFT>::writeTo(uint8_t *buf) {
[[maybe_unused]] const uint8_t *const beginBuf = buf;
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.UnitLength);
endian::writeNext<uint16_t, ELFT::Endianness>(buf, hdr.Version);
buf += 2;
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.CompUnitCount);
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.LocalTypeUnitCount);
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.ForeignTypeUnitCount);
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.BucketCount);
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.NameCount);
endian::writeNext<uint32_t, ELFT::Endianness>(buf, hdr.AbbrevTableSize);
endian::writeNext<uint32_t, ELFT::Endianness>(buf,
hdr.AugmentationStringSize);
memcpy(buf, hdr.AugmentationString.c_str(), hdr.AugmentationString.size());
buf += hdr.AugmentationStringSize;
for (auto &chunk : getChunks())
for (uint32_t cuOffset : chunk.compUnits)
endian::writeNext<uint32_t, ELFT::Endianness>(buf, cuOffset);
SmallVector<SmallVector<NameEntry *, 0>, 0> buckets(hdr.BucketCount);
for (auto &nameVec : nameVecs)
for (NameEntry &ne : nameVec)
buckets[ne.hashValue % hdr.BucketCount].push_back(&ne);
uint32_t bucketIdx = 1;
for (const SmallVector<NameEntry *, 0> &bucket : buckets) {
if (!bucket.empty())
endian::write32<ELFT::Endianness>(buf, bucketIdx);
buf += 4;
bucketIdx += bucket.size();
}
for (const SmallVector<NameEntry *, 0> &bucket : buckets)
for (const NameEntry *e : bucket)
endian::writeNext<uint32_t, ELFT::Endianness>(buf, e->hashValue);
for (const SmallVector<NameEntry *, 0> &bucket : buckets)
for (const NameEntry *ne : bucket)
endian::writeNext<uint32_t, ELFT::Endianness>(buf, ne->stringOffset);
for (const SmallVector<NameEntry *, 0> &bucket : buckets)
for (const NameEntry *ne : bucket)
endian::writeNext<uint32_t, ELFT::Endianness>(buf, ne->entryOffset);
buf = llvm::copy(abbrevTableBuf, buf);
for (auto &nameVec : nameVecs) {
for (NameEntry &ne : nameVec) {
for (const IndexEntry &ie : ne.entries()) {
buf += encodeULEB128(ie.abbrevCode, buf);
for (AttrValue value : ie.attrValues) {
switch (value.attrSize) {
case 1:
*buf++ = value.attrValue;
break;
case 2:
endian::writeNext<uint16_t, ELFT::Endianness>(buf, value.attrValue);
break;
case 4:
endian::writeNext<uint32_t, ELFT::Endianness>(buf, value.attrValue);
break;
default:
llvm_unreachable("invalid attrSize");
}
}
}
++buf;
}
}
assert(uint64_t(buf - beginBuf) == size);
}
GdbIndexSection::GdbIndexSection(Ctx &ctx)
: SyntheticSection(ctx, ".gdb_index", SHT_PROGBITS, 0, 1) {}
size_t GdbIndexSection::computeSymtabSize() const {
return std::max<size_t>(NextPowerOf2(symbols.size() * 4 / 3), 1024);
}
static SmallVector<GdbIndexSection::CuEntry, 0>
readCuList(DWARFContext &dwarf) {
SmallVector<GdbIndexSection::CuEntry, 0> ret;
for (std::unique_ptr<DWARFUnit> &cu : dwarf.compile_units())
ret.push_back({cu->getOffset(), cu->getLength() + 4});
return ret;
}
static SmallVector<GdbIndexSection::AddressEntry, 0>
readAddressAreas(Ctx &ctx, DWARFContext &dwarf, InputSection *sec) {
SmallVector<GdbIndexSection::AddressEntry, 0> ret;
uint32_t cuIdx = 0;
for (std::unique_ptr<DWARFUnit> &cu : dwarf.compile_units()) {
if (Error e = cu->tryExtractDIEsIfNeeded(false)) {
Warn(ctx) << sec << ": " << std::move(e);
return {};
}
Expected<DWARFAddressRangesVector> ranges = cu->collectAddressRanges();
if (!ranges) {
Warn(ctx) << sec << ": " << ranges.takeError();
return {};
}
ArrayRef<InputSectionBase *> sections = sec->file->getSections();
for (DWARFAddressRange &r : *ranges) {
if (r.SectionIndex == -1ULL)
continue;
InputSectionBase *s = sections[r.SectionIndex];
if (s && s != &InputSection::discarded && s->isLive())
if (r.LowPC != r.HighPC)
ret.push_back({cast<InputSection>(s), r.LowPC, r.HighPC, cuIdx});
}
++cuIdx;
}
return ret;
}
template <class ELFT>
static SmallVector<GdbIndexSection::NameAttrEntry, 0>
readPubNamesAndTypes(Ctx &ctx, const LLDDwarfObj<ELFT> &obj,
const SmallVectorImpl<GdbIndexSection::CuEntry> &cus) {
const LLDDWARFSection &pubNames = obj.getGnuPubnamesSection();
const LLDDWARFSection &pubTypes = obj.getGnuPubtypesSection();
SmallVector<GdbIndexSection::NameAttrEntry, 0> ret;
for (const LLDDWARFSection *pub : {&pubNames, &pubTypes}) {
DWARFDataExtractor data(obj, *pub, ELFT::Endianness == endianness::little,
ELFT::Is64Bits ? 8 : 4);
DWARFDebugPubTable table;
table.extract(data, true, [&](Error e) {
Warn(ctx) << pub->sec << ": " << std::move(e);
});
for (const DWARFDebugPubTable::Set &set : table.getData()) {
uint32_t i = llvm::partition_point(cus,
[&](GdbIndexSection::CuEntry cu) {
return cu.cuOffset < set.Offset;
}) -
cus.begin();
for (const DWARFDebugPubTable::Entry &ent : set.Entries)
ret.push_back({{ent.Name, computeGdbHash(ent.Name)},
(ent.Descriptor.toBits() << 24) | i});
}
}
return ret;
}
static std::pair<SmallVector<GdbIndexSection::GdbSymbol, 0>, size_t>
createSymbols(
Ctx &ctx,
ArrayRef<SmallVector<GdbIndexSection::NameAttrEntry, 0>> nameAttrs,
const SmallVector<GdbIndexSection::GdbChunk, 0> &chunks) {
using GdbSymbol = GdbIndexSection::GdbSymbol;
using NameAttrEntry = GdbIndexSection::NameAttrEntry;
uint32_t cuIdx = 0;
std::unique_ptr<uint32_t[]> cuIdxs(new uint32_t[chunks.size()]);
for (uint32_t i = 0, e = chunks.size(); i != e; ++i) {
cuIdxs[i] = cuIdx;
cuIdx += chunks[i].compilationUnits.size();
}
constexpr size_t numShards = 32;
const size_t concurrency =
llvm::bit_floor(std::min<size_t>(ctx.arg.threadCount, numShards));
const size_t shift = 32 - llvm::countr_zero(numShards);
auto map =
std::make_unique<DenseMap<CachedHashStringRef, size_t>[]>(numShards);
auto symbols = std::make_unique<SmallVector<GdbSymbol, 0>[]>(numShards);
parallelFor(0, concurrency, [&](size_t threadId) {
uint32_t i = 0;
for (ArrayRef<NameAttrEntry> entries : nameAttrs) {
for (const NameAttrEntry &ent : entries) {
size_t shardId = ent.name.hash() >> shift;
if ((shardId & (concurrency - 1)) != threadId)
continue;
uint32_t v = ent.cuIndexAndAttrs + cuIdxs[i];
auto [it, inserted] =
map[shardId].try_emplace(ent.name, symbols[shardId].size());
if (inserted)
symbols[shardId].push_back({ent.name, {v}, 0, 0});
else
symbols[shardId][it->second].cuVector.push_back(v);
}
++i;
}
});
size_t numSymbols = 0;
for (ArrayRef<GdbSymbol> v : ArrayRef(symbols.get(), numShards))
numSymbols += v.size();
SmallVector<GdbSymbol, 0> ret;
ret.reserve(numSymbols);
for (SmallVector<GdbSymbol, 0> &vec :
MutableArrayRef(symbols.get(), numShards))
for (GdbSymbol &sym : vec)
ret.push_back(std::move(sym));
size_t off = 0;
for (GdbSymbol &sym : ret) {
sym.cuVectorOff = off;
off += (sym.cuVector.size() + 1) * 4;
}
for (GdbSymbol &sym : ret) {
sym.nameOff = off;
off += sym.name.size() + 1;
}
if (!isUInt<32>(off))
Err(ctx) << "--gdb-index: constant pool size (" << off
<< ") exceeds UINT32_MAX";
return {ret, off};
}
template <class ELFT>
std::unique_ptr<GdbIndexSection> GdbIndexSection::create(Ctx &ctx) {
llvm::TimeTraceScope timeScope("Create gdb index");
SetVector<InputFile *> files;
for (InputSectionBase *s : ctx.inputSections) {
InputSection *isec = dyn_cast<InputSection>(s);
if (!isec)
continue;
if (s->name == ".debug_gnu_pubnames" || s->name == ".debug_gnu_pubtypes")
s->markDead();
else if (isec->name == ".debug_info")
files.insert(isec->file);
}
llvm::erase_if(ctx.inputSections, [](InputSectionBase *s) {
if (auto *isec = dyn_cast<InputSection>(s))
if (InputSectionBase *rel = isec->getRelocatedSection())
return !rel->isLive();
return !s->isLive();
});
SmallVector<GdbChunk, 0> chunks(files.size());
SmallVector<SmallVector<NameAttrEntry, 0>, 0> nameAttrs(files.size());
parallelFor(0, files.size(), [&](size_t i) {
ObjFile<ELFT> *file = cast<ObjFile<ELFT>>(files[i]);
DWARFContext dwarf(std::make_unique<LLDDwarfObj<ELFT>>(file));
auto &dobj = static_cast<const LLDDwarfObj<ELFT> &>(dwarf.getDWARFObj());
chunks[i].sec = dobj.getInfoSection();
chunks[i].compilationUnits = readCuList(dwarf);
chunks[i].addressAreas = readAddressAreas(ctx, dwarf, chunks[i].sec);
nameAttrs[i] =
readPubNamesAndTypes<ELFT>(ctx, dobj, chunks[i].compilationUnits);
});
auto ret = std::make_unique<GdbIndexSection>(ctx);
ret->chunks = std::move(chunks);
std::tie(ret->symbols, ret->size) =
createSymbols(ctx, nameAttrs, ret->chunks);
ret->size += sizeof(GdbIndexHeader) + ret->computeSymtabSize() * 8;
for (GdbChunk &chunk : ret->chunks)
ret->size +=
chunk.compilationUnits.size() * 16 + chunk.addressAreas.size() * 20;
return ret;
}
void GdbIndexSection::writeTo(uint8_t *buf) {
auto *hdr = reinterpret_cast<GdbIndexHeader *>(buf);
uint8_t *start = buf;
hdr->version = 7;
buf += sizeof(*hdr);
hdr->cuListOff = buf - start;
for (GdbChunk &chunk : chunks) {
for (CuEntry &cu : chunk.compilationUnits) {
write64le(buf, chunk.sec->outSecOff + cu.cuOffset);
write64le(buf + 8, cu.cuLength);
buf += 16;
}
}
hdr->cuTypesOff = buf - start;
hdr->addressAreaOff = buf - start;
uint32_t cuOff = 0;
for (GdbChunk &chunk : chunks) {
for (AddressEntry &e : chunk.addressAreas) {
const uint64_t baseAddr = e.section->repl->getVA(0);
write64le(buf, baseAddr + e.lowAddress);
write64le(buf + 8, baseAddr + e.highAddress);
write32le(buf + 16, e.cuIndex + cuOff);
buf += 20;
}
cuOff += chunk.compilationUnits.size();
}
hdr->symtabOff = buf - start;
size_t symtabSize = computeSymtabSize();
uint32_t mask = symtabSize - 1;
for (GdbSymbol &sym : symbols) {
uint32_t h = sym.name.hash();
uint32_t i = h & mask;
uint32_t step = ((h * 17) & mask) | 1;
while (read32le(buf + i * 8))
i = (i + step) & mask;
write32le(buf + i * 8, sym.nameOff);
write32le(buf + i * 8 + 4, sym.cuVectorOff);
}
buf += symtabSize * 8;
hdr->constantPoolOff = buf - start;
parallelForEach(symbols, [&](GdbSymbol &sym) {
memcpy(buf + sym.nameOff, sym.name.data(), sym.name.size());
});
for (GdbSymbol &sym : symbols) {
write32le(buf, sym.cuVector.size());
buf += 4;
for (uint32_t val : sym.cuVector) {
write32le(buf, val);
buf += 4;
}
}
}
bool GdbIndexSection::isNeeded() const { return !chunks.empty(); }
EhFrameHeader::EhFrameHeader(Ctx &ctx)
: SyntheticSection(ctx, ".eh_frame_hdr", SHT_PROGBITS, SHF_ALLOC, 4) {}
void EhFrameHeader::writeTo(uint8_t *buf) {
}
void EhFrameHeader::write() {
uint8_t *buf = ctx.bufferStart + getParent()->offset + outSecOff;
using FdeData = EhFrameSection::FdeData;
SmallVector<FdeData, 0> fdes = getPartition(ctx).ehFrame->getFdeData();
buf[0] = 1;
buf[1] = DW_EH_PE_pcrel | DW_EH_PE_sdata4;
buf[2] = DW_EH_PE_udata4;
buf[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4;
write32(ctx, buf + 4,
getPartition(ctx).ehFrame->getParent()->addr - this->getVA() - 4);
write32(ctx, buf + 8, fdes.size());
buf += 12;
for (FdeData &fde : fdes) {
write32(ctx, buf, fde.pcRel);
write32(ctx, buf + 4, fde.fdeVARel);
buf += 8;
}
}
size_t EhFrameHeader::getSize() const {
return 12 + getPartition(ctx).ehFrame->numFdes * 8;
}
bool EhFrameHeader::isNeeded() const {
return isLive() && getPartition(ctx).ehFrame->isNeeded();
}
VersionDefinitionSection::VersionDefinitionSection(Ctx &ctx)
: SyntheticSection(ctx, ".gnu.version_d", SHT_GNU_verdef, SHF_ALLOC,
sizeof(uint32_t)) {}
StringRef VersionDefinitionSection::getFileDefName() {
if (!getPartition(ctx).name.empty())
return getPartition(ctx).name;
if (!ctx.arg.soName.empty())
return ctx.arg.soName;
return ctx.arg.outputFile;
}
void VersionDefinitionSection::finalizeContents() {
fileDefNameOff = getPartition(ctx).dynStrTab->addString(getFileDefName());
for (const VersionDefinition &v : namedVersionDefs(ctx))
verDefNameOffs.push_back(getPartition(ctx).dynStrTab->addString(v.name));
if (OutputSection *sec = getPartition(ctx).dynStrTab->getParent())
getParent()->link = sec->sectionIndex;
getParent()->info = getVerDefNum(ctx);
}
void VersionDefinitionSection::writeOne(uint8_t *buf, uint32_t index,
StringRef name, size_t nameOff) {
uint16_t flags = index == 1 ? VER_FLG_BASE : 0;
write16(ctx, buf, 1);
write16(ctx, buf + 2, flags);
write16(ctx, buf + 4, index);
write16(ctx, buf + 6, 1);
write32(ctx, buf + 8, hashSysV(name));
write32(ctx, buf + 12, 20);
write32(ctx, buf + 16, 28);
write32(ctx, buf + 20, nameOff);
write32(ctx, buf + 24, 0);
}
void VersionDefinitionSection::writeTo(uint8_t *buf) {
writeOne(buf, 1, getFileDefName(), fileDefNameOff);
auto nameOffIt = verDefNameOffs.begin();
for (const VersionDefinition &v : namedVersionDefs(ctx)) {
buf += EntrySize;
writeOne(buf, v.id, v.name, *nameOffIt++);
}
write32(ctx, buf + 16, 0);
}
size_t VersionDefinitionSection::getSize() const {
return EntrySize * getVerDefNum(ctx);
}
VersionTableSection::VersionTableSection(Ctx &ctx)
: SyntheticSection(ctx, ".gnu.version", SHT_GNU_versym, SHF_ALLOC,
sizeof(uint16_t)) {
this->entsize = 2;
}
void VersionTableSection::finalizeContents() {
if (OutputSection *osec = getPartition(ctx).dynSymTab->getParent())
getParent()->link = osec->sectionIndex;
}
size_t VersionTableSection::getSize() const {
return (getPartition(ctx).dynSymTab->getSymbols().size() + 1) * 2;
}
void VersionTableSection::writeTo(uint8_t *buf) {
buf += 2;
for (const SymbolTableEntry &s : getPartition(ctx).dynSymTab->getSymbols()) {
assert(!s.sym->isLazy());
write16(ctx, buf, s.sym->isUndefined() ? 0 : s.sym->versionId);
buf += 2;
}
}
bool VersionTableSection::isNeeded() const {
return isLive() &&
(getPartition(ctx).verDef || getPartition(ctx).verNeed->isNeeded());
}
void elf::addVerneed(Ctx &ctx, Symbol &ss) {
auto &file = cast<SharedFile>(*ss.file);
if (ss.versionId == VER_NDX_GLOBAL)
return;
if (file.vernauxs.empty())
file.vernauxs.resize(file.verdefs.size());
if (file.vernauxs[ss.versionId] == 0)
file.vernauxs[ss.versionId] = ++ctx.vernauxNum + getVerDefNum(ctx);
ss.versionId = file.vernauxs[ss.versionId];
}
template <class ELFT>
VersionNeedSection<ELFT>::VersionNeedSection(Ctx &ctx)
: SyntheticSection(ctx, ".gnu.version_r", SHT_GNU_verneed, SHF_ALLOC,
sizeof(uint32_t)) {}
template <class ELFT> void VersionNeedSection<ELFT>::finalizeContents() {
for (SharedFile *f : ctx.sharedFiles) {
if (f->vernauxs.empty())
continue;
verneeds.emplace_back();
Verneed &vn = verneeds.back();
vn.nameStrTab = getPartition(ctx).dynStrTab->addString(f->soName);
bool isLibc = ctx.arg.relrGlibc && f->soName.starts_with("libc.so.");
bool isGlibc2 = false;
for (unsigned i = 0; i != f->vernauxs.size(); ++i) {
if (f->vernauxs[i] == 0)
continue;
auto *verdef =
reinterpret_cast<const typename ELFT::Verdef *>(f->verdefs[i]);
StringRef ver(f->getStringTable().data() + verdef->getAux()->vda_name);
if (isLibc && ver.starts_with("GLIBC_2."))
isGlibc2 = true;
vn.vernauxs.push_back({verdef->vd_hash, f->vernauxs[i],
getPartition(ctx).dynStrTab->addString(ver)});
}
if (isGlibc2) {
const char *ver = "GLIBC_ABI_DT_RELR";
vn.vernauxs.push_back({hashSysV(ver),
++ctx.vernauxNum + getVerDefNum(ctx),
getPartition(ctx).dynStrTab->addString(ver)});
}
}
if (OutputSection *sec = getPartition(ctx).dynStrTab->getParent())
getParent()->link = sec->sectionIndex;
getParent()->info = verneeds.size();
}
template <class ELFT> void VersionNeedSection<ELFT>::writeTo(uint8_t *buf) {
auto *verneed = reinterpret_cast<Elf_Verneed *>(buf);
auto *vernaux = reinterpret_cast<Elf_Vernaux *>(verneed + verneeds.size());
for (auto &vn : verneeds) {
verneed->vn_version = 1;
verneed->vn_cnt = vn.vernauxs.size();
verneed->vn_file = vn.nameStrTab;
verneed->vn_aux =
reinterpret_cast<char *>(vernaux) - reinterpret_cast<char *>(verneed);
verneed->vn_next = sizeof(Elf_Verneed);
++verneed;
for (auto &vna : vn.vernauxs) {
vernaux->vna_hash = vna.hash;
vernaux->vna_flags = 0;
vernaux->vna_other = vna.verneedIndex;
vernaux->vna_name = vna.nameStrTab;
vernaux->vna_next = sizeof(Elf_Vernaux);
++vernaux;
}
vernaux[-1].vna_next = 0;
}
verneed[-1].vn_next = 0;
}
template <class ELFT> size_t VersionNeedSection<ELFT>::getSize() const {
return verneeds.size() * sizeof(Elf_Verneed) +
ctx.vernauxNum * sizeof(Elf_Vernaux);
}
template <class ELFT> bool VersionNeedSection<ELFT>::isNeeded() const {
return isLive() && ctx.vernauxNum != 0;
}
void MergeSyntheticSection::addSection(MergeInputSection *ms) {
ms->parent = this;
sections.push_back(ms);
assert(addralign == ms->addralign || !(ms->flags & SHF_STRINGS));
addralign = std::max(addralign, ms->addralign);
}
MergeTailSection::MergeTailSection(Ctx &ctx, StringRef name, uint32_t type,
uint64_t flags, uint32_t alignment)
: MergeSyntheticSection(ctx, name, type, flags, alignment),
builder(StringTableBuilder::RAW, llvm::Align(alignment)) {}
size_t MergeTailSection::getSize() const { return builder.getSize(); }
void MergeTailSection::writeTo(uint8_t *buf) { builder.write(buf); }
void MergeTailSection::finalizeContents() {
for (MergeInputSection *sec : sections)
for (size_t i = 0, e = sec->pieces.size(); i != e; ++i)
if (sec->pieces[i].live)
builder.add(sec->getData(i));
builder.finalize();
for (MergeInputSection *sec : sections)
for (size_t i = 0, e = sec->pieces.size(); i != e; ++i)
if (sec->pieces[i].live)
sec->pieces[i].outputOff = builder.getOffset(sec->getData(i));
}
void MergeNoTailSection::writeTo(uint8_t *buf) {
parallelFor(0, numShards,
[&](size_t i) { shards[i].write(buf + shardOffsets[i]); });
}
void MergeNoTailSection::finalizeContents() {
for (size_t i = 0; i < numShards; ++i)
shards.emplace_back(StringTableBuilder::RAW, llvm::Align(addralign));
const size_t concurrency =
llvm::bit_floor(std::min<size_t>(ctx.arg.threadCount, numShards));
parallelFor(0, concurrency, [&](size_t threadId) {
for (MergeInputSection *sec : sections) {
for (size_t i = 0, e = sec->pieces.size(); i != e; ++i) {
if (!sec->pieces[i].live)
continue;
size_t shardId = getShardId(sec->pieces[i].hash);
if ((shardId & (concurrency - 1)) == threadId)
sec->pieces[i].outputOff = shards[shardId].add(sec->getData(i));
}
}
});
size_t off = 0;
for (size_t i = 0; i < numShards; ++i) {
shards[i].finalizeInOrder();
if (shards[i].getSize() > 0)
off = alignToPowerOf2(off, addralign);
shardOffsets[i] = off;
off += shards[i].getSize();
}
size = off;
parallelForEach(sections, [&](MergeInputSection *sec) {
for (SectionPiece &piece : sec->pieces)
if (piece.live)
piece.outputOff += shardOffsets[getShardId(piece.hash)];
});
}
template <class ELFT> void elf::splitSections(Ctx &ctx) {
llvm::TimeTraceScope timeScope("Split sections");
parallelForEach(ctx.objectFiles, [](ELFFileBase *file) {
for (InputSectionBase *sec : file->getSections()) {
if (!sec)
continue;
if (auto *s = dyn_cast<MergeInputSection>(sec))
s->splitIntoPieces();
else if (auto *eh = dyn_cast<EhInputSection>(sec))
eh->split<ELFT>();
}
});
}
void elf::combineEhSections(Ctx &ctx) {
llvm::TimeTraceScope timeScope("Combine EH sections");
for (EhInputSection *sec : ctx.ehInputSections) {
EhFrameSection &eh = *sec->getPartition(ctx).ehFrame;
sec->parent = &eh;
eh.addralign = std::max(eh.addralign, sec->addralign);
eh.sections.push_back(sec);
llvm::append_range(eh.dependentSections, sec->dependentSections);
}
if (!ctx.mainPart->armExidx)
return;
llvm::erase_if(ctx.inputSections, [&](InputSectionBase *s) {
if (!s->isLive() || s->partition == 255)
return false;
Partition &part = s->getPartition(ctx);
return s->kind() == SectionBase::Regular && part.armExidx &&
part.armExidx->addSection(cast<InputSection>(s));
});
}
MipsRldMapSection::MipsRldMapSection(Ctx &ctx)
: SyntheticSection(ctx, ".rld_map", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE,
ctx.arg.wordsize) {}
ARMExidxSyntheticSection::ARMExidxSyntheticSection(Ctx &ctx)
: SyntheticSection(ctx, ".ARM.exidx", SHT_ARM_EXIDX,
SHF_ALLOC | SHF_LINK_ORDER, ctx.arg.wordsize) {}
static InputSection *findExidxSection(InputSection *isec) {
for (InputSection *d : isec->dependentSections)
if (d->type == SHT_ARM_EXIDX && d->isLive())
return d;
return nullptr;
}
static bool isValidExidxSectionDep(InputSection *isec) {
return (isec->flags & SHF_ALLOC) && (isec->flags & SHF_EXECINSTR) &&
isec->getSize() > 0;
}
bool ARMExidxSyntheticSection::addSection(InputSection *isec) {
if (isec->type == SHT_ARM_EXIDX) {
if (InputSection *dep = isec->getLinkOrderDep())
if (isValidExidxSectionDep(dep)) {
exidxSections.push_back(isec);
size += 8;
}
return true;
}
if (isValidExidxSectionDep(isec)) {
executableSections.push_back(isec);
return false;
}
if (ctx.arg.emitRelocs && isec->type == SHT_REL)
if (InputSectionBase *ex = isec->getRelocatedSection())
if (isa<InputSection>(ex) && ex->type == SHT_ARM_EXIDX)
return true;
return false;
}
static bool isExtabRef(uint32_t unwind) {
return (unwind & 0x80000000) == 0 && unwind != 0x1;
}
static bool isDuplicateArmExidxSec(Ctx &ctx, InputSection *prev,
InputSection *cur) {
uint32_t prevUnwind = 1;
if (prev)
prevUnwind =
read32(ctx, prev->content().data() + prev->content().size() - 4);
if (isExtabRef(prevUnwind))
return false;
if (cur == nullptr)
return prevUnwind == 1;
for (uint32_t offset = 4; offset < (uint32_t)cur->content().size(); offset +=8) {
uint32_t curUnwind = read32(ctx, cur->content().data() + offset);
if (isExtabRef(curUnwind) || curUnwind != prevUnwind)
return false;
}
return true;
}
void ARMExidxSyntheticSection::finalizeContents() {
if (!originalExecutableSections.empty())
executableSections = originalExecutableSections;
else if (ctx.arg.enableNonContiguousRegions)
originalExecutableSections = executableSections;
auto isDiscarded = [](const InputSection *isec) { return !isec->isLive(); };
llvm::erase_if(exidxSections, isDiscarded);
auto isDiscardedOrOutOfRange = [this](InputSection *isec) {
if (!isec->isLive())
return true;
if (findExidxSection(isec))
return false;
int64_t off = static_cast<int64_t>(isec->getVA() - getVA());
return off != llvm::SignExtend64(off, 31);
};
llvm::erase_if(executableSections, isDiscardedOrOutOfRange);
auto compareByFilePosition = [](const InputSection *a,
const InputSection *b) {
OutputSection *aOut = a->getParent();
OutputSection *bOut = b->getParent();
if (aOut != bOut)
return aOut->addr < bOut->addr;
return a->outSecOff < b->outSecOff;
};
llvm::stable_sort(executableSections, compareByFilePosition);
sentinel = executableSections.back();
if (ctx.arg.mergeArmExidx) {
SmallVector<InputSection *, 0> selectedSections;
selectedSections.reserve(executableSections.size());
selectedSections.push_back(executableSections[0]);
size_t prev = 0;
for (size_t i = 1; i < executableSections.size(); ++i) {
InputSection *ex1 = findExidxSection(executableSections[prev]);
InputSection *ex2 = findExidxSection(executableSections[i]);
if (!isDuplicateArmExidxSec(ctx, ex1, ex2)) {
selectedSections.push_back(executableSections[i]);
prev = i;
}
}
executableSections = std::move(selectedSections);
}
size_t offset = 0;
size = 0;
for (InputSection *isec : executableSections) {
if (InputSection *d = findExidxSection(isec)) {
d->outSecOff = offset;
d->parent = getParent();
offset += d->getSize();
} else {
offset += 8;
}
}
size = offset + 8;
}
InputSection *ARMExidxSyntheticSection::getLinkOrderDep() const {
return executableSections.front();
}
void ARMExidxSyntheticSection::writeTo(uint8_t *buf) {
uint64_t offset = 0;
for (InputSection *isec : executableSections) {
assert(isec->getParent() != nullptr);
if (InputSection *d = findExidxSection(isec)) {
for (int dataOffset = 0; dataOffset != (int)d->content().size();
dataOffset += 4)
write32(ctx, buf + offset + dataOffset,
read32(ctx, d->content().data() + dataOffset));
d->outSecOff = offset + outSecOff;
ctx.target->relocateAlloc(*d, buf + offset);
offset += d->getSize();
} else {
write32(ctx, buf + offset + 0, 0x0);
write32(ctx, buf + offset + 4, 0x1);
uint64_t s = isec->getVA();
uint64_t p = getVA() + offset;
ctx.target->relocateNoSym(buf + offset, R_ARM_PREL31, s - p);
offset += 8;
}
}
write32(ctx, buf + offset + 0, 0x0);
write32(ctx, buf + offset + 4, 0x1);
uint64_t s = sentinel->getVA(sentinel->getSize());
uint64_t p = getVA() + offset;
ctx.target->relocateNoSym(buf + offset, R_ARM_PREL31, s - p);
assert(size == offset + 8);
}
bool ARMExidxSyntheticSection::isNeeded() const {
return llvm::any_of(exidxSections,
[](InputSection *isec) { return isec->isLive(); });
}
ThunkSection::ThunkSection(Ctx &ctx, OutputSection *os, uint64_t off)
: SyntheticSection(ctx, ".text.thunk", SHT_PROGBITS,
SHF_ALLOC | SHF_EXECINSTR,
ctx.arg.emachine == EM_PPC64 ? 16 : 4) {
this->parent = os;
this->outSecOff = off;
}
size_t ThunkSection::getSize() const {
if (roundUpSizeForErrata)
return alignTo(size, 4096);
return size;
}
void ThunkSection::addThunk(Thunk *t) {
thunks.push_back(t);
t->addSymbols(*this);
}
void ThunkSection::writeTo(uint8_t *buf) {
for (Thunk *t : thunks)
t->writeTo(buf + t->offset);
}
InputSection *ThunkSection::getTargetInputSection() const {
if (thunks.empty())
return nullptr;
const Thunk *t = thunks.front();
return t->getTargetInputSection();
}
bool ThunkSection::assignOffsets() {
uint64_t off = 0;
bool changed = false;
for (Thunk *t : thunks) {
if (t->alignment > addralign) {
addralign = t->alignment;
changed = true;
}
off = alignToPowerOf2(off, t->alignment);
t->setOffset(off);
uint32_t size = t->size();
t->getThunkTargetSym()->size = size;
off += size;
}
if (off != size)
changed = true;
size = off;
return changed;
}
PPC32Got2Section::PPC32Got2Section(Ctx &ctx)
: SyntheticSection(ctx, ".got2", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE, 4) {}
bool PPC32Got2Section::isNeeded() const {
for (SectionCommand *cmd : getParent()->commands)
if (auto *isd = dyn_cast<InputSectionDescription>(cmd))
for (InputSection *isec : isd->sections)
if (isec != this)
return true;
return false;
}
void PPC32Got2Section::finalizeContents() {
for (SectionCommand *cmd : getParent()->commands)
if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) {
for (InputSection *isec : isd->sections) {
if (isec != this && isec->file)
isec->file->ppc32Got2 = isec;
}
}
}
PPC64LongBranchTargetSection::PPC64LongBranchTargetSection(Ctx &ctx)
: SyntheticSection(ctx, ".branch_lt",
ctx.arg.isPic ? SHT_NOBITS : SHT_PROGBITS,
SHF_ALLOC | SHF_WRITE, 8) {}
uint64_t PPC64LongBranchTargetSection::getEntryVA(const Symbol *sym,
int64_t addend) {
return getVA() + entry_index.find({sym, addend})->second * 8;
}
std::optional<uint32_t>
PPC64LongBranchTargetSection::addEntry(const Symbol *sym, int64_t addend) {
auto res =
entry_index.try_emplace(std::make_pair(sym, addend), entries.size());
if (!res.second)
return std::nullopt;
entries.emplace_back(sym, addend);
return res.first->second;
}
size_t PPC64LongBranchTargetSection::getSize() const {
return entries.size() * 8;
}
void PPC64LongBranchTargetSection::writeTo(uint8_t *buf) {
if (ctx.arg.isPic)
return;
for (auto entry : entries) {
const Symbol *sym = entry.first;
int64_t addend = entry.second;
assert(sym->getVA(ctx));
write64(ctx, buf,
sym->getVA(ctx, addend) +
getPPC64GlobalEntryToLocalEntryOffset(ctx, sym->stOther));
buf += 8;
}
}
bool PPC64LongBranchTargetSection::isNeeded() const {
return !finalized || !entries.empty();
}
static uint8_t getAbiVersion(Ctx &ctx) {
if (ctx.arg.emachine == EM_MIPS) {
if (!ctx.arg.isPic && !ctx.arg.relocatable &&
(ctx.arg.eflags & (EF_MIPS_PIC | EF_MIPS_CPIC)) == EF_MIPS_CPIC)
return 1;
return 0;
}
if (ctx.arg.emachine == EM_AMDGPU && !ctx.objectFiles.empty()) {
uint8_t ver = ctx.objectFiles[0]->abiVersion;
for (InputFile *file : ArrayRef(ctx.objectFiles).slice(1))
if (file->abiVersion != ver)
Err(ctx) << "incompatible ABI version: " << file;
return ver;
}
return 0;
}
template <typename ELFT>
void elf::writeEhdr(Ctx &ctx, uint8_t *buf, Partition &part) {
memcpy(buf, "\177ELF", 4);
auto *eHdr = reinterpret_cast<typename ELFT::Ehdr *>(buf);
eHdr->e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
eHdr->e_ident[EI_DATA] =
ELFT::Endianness == endianness::little ? ELFDATA2LSB : ELFDATA2MSB;
eHdr->e_ident[EI_VERSION] = EV_CURRENT;
eHdr->e_ident[EI_OSABI] = ctx.arg.osabi;
eHdr->e_ident[EI_ABIVERSION] = getAbiVersion(ctx);
eHdr->e_machine = ctx.arg.emachine;
eHdr->e_version = EV_CURRENT;
eHdr->e_flags = ctx.arg.eflags;
eHdr->e_ehsize = sizeof(typename ELFT::Ehdr);
eHdr->e_phnum = part.phdrs.size();
eHdr->e_shentsize = sizeof(typename ELFT::Shdr);
if (!ctx.arg.relocatable) {
eHdr->e_phoff = sizeof(typename ELFT::Ehdr);
eHdr->e_phentsize = sizeof(typename ELFT::Phdr);
}
}
template <typename ELFT> void elf::writePhdrs(uint8_t *buf, Partition &part) {
auto *hBuf = reinterpret_cast<typename ELFT::Phdr *>(buf);
for (std::unique_ptr<PhdrEntry> &p : part.phdrs) {
hBuf->p_type = p->p_type;
hBuf->p_flags = p->p_flags;
hBuf->p_offset = p->p_offset;
hBuf->p_vaddr = p->p_vaddr;
hBuf->p_paddr = p->p_paddr;
hBuf->p_filesz = p->p_filesz;
hBuf->p_memsz = p->p_memsz;
hBuf->p_align = p->p_align;
++hBuf;
}
}
template <typename ELFT>
PartitionElfHeaderSection<ELFT>::PartitionElfHeaderSection(Ctx &ctx)
: SyntheticSection(ctx, "", SHT_LLVM_PART_EHDR, SHF_ALLOC, 1) {}
template <typename ELFT>
size_t PartitionElfHeaderSection<ELFT>::getSize() const {
return sizeof(typename ELFT::Ehdr);
}
template <typename ELFT>
void PartitionElfHeaderSection<ELFT>::writeTo(uint8_t *buf) {
writeEhdr<ELFT>(ctx, buf, getPartition(ctx));
auto *eHdr = reinterpret_cast<typename ELFT::Ehdr *>(buf);
eHdr->e_type = ET_DYN;
}
template <typename ELFT>
PartitionProgramHeadersSection<ELFT>::PartitionProgramHeadersSection(Ctx &ctx)
: SyntheticSection(ctx, ".phdrs", SHT_LLVM_PART_PHDR, SHF_ALLOC, 1) {}
template <typename ELFT>
size_t PartitionProgramHeadersSection<ELFT>::getSize() const {
return sizeof(typename ELFT::Phdr) * getPartition(ctx).phdrs.size();
}
template <typename ELFT>
void PartitionProgramHeadersSection<ELFT>::writeTo(uint8_t *buf) {
writePhdrs<ELFT>(buf, getPartition(ctx));
}
PartitionIndexSection::PartitionIndexSection(Ctx &ctx)
: SyntheticSection(ctx, ".rodata", SHT_PROGBITS, SHF_ALLOC, 4) {}
size_t PartitionIndexSection::getSize() const {
return 12 * (ctx.partitions.size() - 1);
}
void PartitionIndexSection::finalizeContents() {
for (size_t i = 1; i != ctx.partitions.size(); ++i)
ctx.partitions[i].nameStrTab =
ctx.mainPart->dynStrTab->addString(ctx.partitions[i].name);
}
void PartitionIndexSection::writeTo(uint8_t *buf) {
uint64_t va = getVA();
for (size_t i = 1; i != ctx.partitions.size(); ++i) {
write32(ctx, buf,
ctx.mainPart->dynStrTab->getVA() + ctx.partitions[i].nameStrTab -
va);
write32(ctx, buf + 4, ctx.partitions[i].elfHeader->getVA() - (va + 4));
SyntheticSection *next = i == ctx.partitions.size() - 1
? ctx.in.partEnd.get()
: ctx.partitions[i + 1].elfHeader.get();
write32(ctx, buf + 8, next->getVA() - ctx.partitions[i].elfHeader->getVA());
va += 12;
buf += 12;
}
}
static bool needsInterpSection(Ctx &ctx) {
return !ctx.arg.relocatable && !ctx.arg.shared &&
!ctx.arg.dynamicLinker.empty() && ctx.script->needsInterpSection();
}
bool elf::hasMemtag(Ctx &ctx) {
return ctx.arg.emachine == EM_AARCH64 &&
ctx.arg.androidMemtagMode != ELF::NT_MEMTAG_LEVEL_NONE;
}
bool elf::canHaveMemtagGlobals(Ctx &ctx) {
return hasMemtag(ctx) &&
(ctx.arg.relocatable || ctx.arg.shared || needsInterpSection(ctx));
}
constexpr char kMemtagAndroidNoteName[] = "Android";
void MemtagAndroidNote::writeTo(uint8_t *buf) {
static_assert(
sizeof(kMemtagAndroidNoteName) == 8,
"Android 11 & 12 have an ABI that the note name is 8 bytes long. Keep it "
"that way for backwards compatibility.");
write32(ctx, buf, sizeof(kMemtagAndroidNoteName));
write32(ctx, buf + 4, sizeof(uint32_t));
write32(ctx, buf + 8, ELF::NT_ANDROID_TYPE_MEMTAG);
memcpy(buf + 12, kMemtagAndroidNoteName, sizeof(kMemtagAndroidNoteName));
buf += 12 + alignTo(sizeof(kMemtagAndroidNoteName), 4);
uint32_t value = 0;
value |= ctx.arg.androidMemtagMode;
if (ctx.arg.androidMemtagHeap)
value |= ELF::NT_MEMTAG_HEAP;
if (ctx.arg.androidMemtagStack)
value |= ELF::NT_MEMTAG_STACK;
write32(ctx, buf, value);
}
size_t MemtagAndroidNote::getSize() const {
return sizeof(llvm::ELF::Elf64_Nhdr) +
alignTo(sizeof(kMemtagAndroidNoteName), 4) +
sizeof(uint32_t);
}
void PackageMetadataNote::writeTo(uint8_t *buf) {
write32(ctx, buf, 4);
write32(ctx, buf + 4, ctx.arg.packageMetadata.size() + 1);
write32(ctx, buf + 8, FDO_PACKAGING_METADATA);
memcpy(buf + 12, "FDO", 4);
memcpy(buf + 16, ctx.arg.packageMetadata.data(),
ctx.arg.packageMetadata.size());
}
size_t PackageMetadataNote::getSize() const {
return sizeof(llvm::ELF::Elf64_Nhdr) + 4 +
alignTo(ctx.arg.packageMetadata.size() + 1, 4);
}
static size_t computeOrWriteULEB128(uint64_t v, uint8_t *buf, size_t offset) {
if (buf)
return encodeULEB128(v, buf + offset);
return getULEB128Size(v);
}
constexpr uint64_t kMemtagStepSizeBits = 3;
constexpr uint64_t kMemtagGranuleSize = 16;
static size_t
createMemtagGlobalDescriptors(Ctx &ctx,
const SmallVector<const Symbol *, 0> &symbols,
uint8_t *buf = nullptr) {
size_t sectionSize = 0;
uint64_t lastGlobalEnd = 0;
for (const Symbol *sym : symbols) {
if (!includeInSymtab(ctx, *sym))
continue;
const uint64_t addr = sym->getVA(ctx);
const uint64_t size = sym->getSize();
if (addr <= kMemtagGranuleSize && buf != nullptr)
Err(ctx) << "address of the tagged symbol \"" << sym->getName()
<< "\" falls in the ELF header. This is indicative of a "
"compiler/linker bug";
if (addr % kMemtagGranuleSize != 0)
Err(ctx) << "address of the tagged symbol \"" << sym->getName()
<< "\" at 0x" << Twine::utohexstr(addr)
<< "\" is not granule (16-byte) aligned";
if (size == 0)
Err(ctx) << "size of the tagged symbol \"" << sym->getName()
<< "\" is not allowed to be zero";
if (size % kMemtagGranuleSize != 0)
Err(ctx) << "size of the tagged symbol \"" << sym->getName()
<< "\" (size 0x" << Twine::utohexstr(size)
<< ") is not granule (16-byte) aligned";
const uint64_t sizeToEncode = size / kMemtagGranuleSize;
const uint64_t stepToEncode = ((addr - lastGlobalEnd) / kMemtagGranuleSize)
<< kMemtagStepSizeBits;
if (sizeToEncode < (1 << kMemtagStepSizeBits)) {
sectionSize += computeOrWriteULEB128(stepToEncode | sizeToEncode, buf, sectionSize);
} else {
sectionSize += computeOrWriteULEB128(stepToEncode, buf, sectionSize);
sectionSize += computeOrWriteULEB128(sizeToEncode - 1, buf, sectionSize);
}
lastGlobalEnd = addr + size;
}
return sectionSize;
}
bool MemtagGlobalDescriptors::updateAllocSize(Ctx &ctx) {
size_t oldSize = getSize();
llvm::stable_sort(symbols, [&ctx = ctx](const Symbol *s1, const Symbol *s2) {
return s1->getVA(ctx) < s2->getVA(ctx);
});
return oldSize != getSize();
}
void MemtagGlobalDescriptors::writeTo(uint8_t *buf) {
createMemtagGlobalDescriptors(ctx, symbols, buf);
}
size_t MemtagGlobalDescriptors::getSize() const {
return createMemtagGlobalDescriptors(ctx, symbols);
}
static OutputSection *findSection(Ctx &ctx, StringRef name) {
for (SectionCommand *cmd : ctx.script->sectionCommands)
if (auto *osd = dyn_cast<OutputDesc>(cmd))
if (osd->osec.name == name)
return &osd->osec;
return nullptr;
}
static Defined *addOptionalRegular(Ctx &ctx, StringRef name, SectionBase *sec,
uint64_t val, uint8_t stOther = STV_HIDDEN) {
Symbol *s = ctx.symtab->find(name);
if (!s || s->isDefined() || s->isCommon())
return nullptr;
s->resolve(ctx, Defined{ctx, ctx.internalFile, StringRef(), STB_GLOBAL,
stOther, STT_NOTYPE, val,
0, sec});
s->isUsedInRegularObj = true;
return cast<Defined>(s);
}
template <class ELFT> void elf::createSyntheticSections(Ctx &ctx) {
if (needsInterpSection(ctx)) {
for (size_t i = 1; i <= ctx.partitions.size(); ++i) {
InputSection *sec = createInterpSection(ctx);
sec->partition = i;
ctx.inputSections.push_back(sec);
}
}
auto add = [&](SyntheticSection &sec) { ctx.inputSections.push_back(&sec); };
if (ctx.arg.zSectionHeader)
ctx.in.shStrTab =
std::make_unique<StringTableSection>(ctx, ".shstrtab", false);
ctx.out.programHeaders =
std::make_unique<OutputSection>(ctx, "", 0, SHF_ALLOC);
ctx.out.programHeaders->addralign = ctx.arg.wordsize;
if (ctx.arg.strip != StripPolicy::All) {
ctx.in.strTab = std::make_unique<StringTableSection>(ctx, ".strtab", false);
ctx.in.symTab =
std::make_unique<SymbolTableSection<ELFT>>(ctx, *ctx.in.strTab);
ctx.in.symTabShndx = std::make_unique<SymtabShndxSection>(ctx);
}
ctx.in.bss = std::make_unique<BssSection>(ctx, ".bss", 0, 1);
add(*ctx.in.bss);
bool hasDataRelRo =
ctx.script->hasSectionsCommand && findSection(ctx, ".data.rel.ro");
ctx.in.bssRelRo = std::make_unique<BssSection>(
ctx, hasDataRelRo ? ".data.rel.ro.bss" : ".bss.rel.ro", 0, 1);
add(*ctx.in.bssRelRo);
if (ctx.arg.emachine == EM_MIPS) {
if (!ctx.arg.shared && ctx.hasDynsym) {
ctx.in.mipsRldMap = std::make_unique<MipsRldMapSection>(ctx);
add(*ctx.in.mipsRldMap);
}
if ((ctx.in.mipsAbiFlags = MipsAbiFlagsSection<ELFT>::create(ctx)))
add(*ctx.in.mipsAbiFlags);
if ((ctx.in.mipsOptions = MipsOptionsSection<ELFT>::create(ctx)))
add(*ctx.in.mipsOptions);
if ((ctx.in.mipsReginfo = MipsReginfoSection<ELFT>::create(ctx)))
add(*ctx.in.mipsReginfo);
}
StringRef relaDynName = ctx.arg.isRela ? ".rela.dyn" : ".rel.dyn";
const unsigned threadCount = ctx.arg.threadCount;
for (Partition &part : ctx.partitions) {
auto add = [&](SyntheticSection &sec) {
sec.partition = part.getNumber(ctx);
ctx.inputSections.push_back(&sec);
};
if (!part.name.empty()) {
part.elfHeader = std::make_unique<PartitionElfHeaderSection<ELFT>>(ctx);
part.elfHeader->name = part.name;
add(*part.elfHeader);
part.programHeaders =
std::make_unique<PartitionProgramHeadersSection<ELFT>>(ctx);
add(*part.programHeaders);
}
if (ctx.arg.buildId != BuildIdKind::None) {
part.buildId = std::make_unique<BuildIdSection>(ctx);
add(*part.buildId);
}
part.dynStrTab = std::make_unique<StringTableSection>(ctx, ".dynstr", true);
part.dynSymTab =
std::make_unique<SymbolTableSection<ELFT>>(ctx, *part.dynStrTab);
if (ctx.arg.relocatable)
continue;
part.dynamic = std::make_unique<DynamicSection<ELFT>>(ctx);
if (hasMemtag(ctx)) {
part.memtagAndroidNote = std::make_unique<MemtagAndroidNote>(ctx);
add(*part.memtagAndroidNote);
if (canHaveMemtagGlobals(ctx)) {
part.memtagGlobalDescriptors =
std::make_unique<MemtagGlobalDescriptors>(ctx);
add(*part.memtagGlobalDescriptors);
}
}
if (ctx.arg.androidPackDynRelocs)
part.relaDyn = std::make_unique<AndroidPackedRelocationSection<ELFT>>(
ctx, relaDynName, threadCount);
else
part.relaDyn = std::make_unique<RelocationSection<ELFT>>(
ctx, relaDynName, ctx.arg.zCombreloc, threadCount);
if (ctx.hasDynsym) {
add(*part.dynSymTab);
part.verSym = std::make_unique<VersionTableSection>(ctx);
add(*part.verSym);
if (!namedVersionDefs(ctx).empty()) {
part.verDef = std::make_unique<VersionDefinitionSection>(ctx);
add(*part.verDef);
}
part.verNeed = std::make_unique<VersionNeedSection<ELFT>>(ctx);
add(*part.verNeed);
if (ctx.arg.gnuHash) {
part.gnuHashTab = std::make_unique<GnuHashTableSection>(ctx);
add(*part.gnuHashTab);
}
if (ctx.arg.sysvHash) {
part.hashTab = std::make_unique<HashTableSection>(ctx);
add(*part.hashTab);
}
add(*part.dynamic);
add(*part.dynStrTab);
}
add(*part.relaDyn);
if (ctx.arg.relrPackDynRelocs) {
part.relrDyn = std::make_unique<RelrSection<ELFT>>(ctx, threadCount);
add(*part.relrDyn);
part.relrAuthDyn = std::make_unique<RelrSection<ELFT>>(
ctx, threadCount, true);
add(*part.relrAuthDyn);
}
if (ctx.arg.ehFrameHdr) {
part.ehFrameHdr = std::make_unique<EhFrameHeader>(ctx);
add(*part.ehFrameHdr);
}
part.ehFrame = std::make_unique<EhFrameSection>(ctx);
add(*part.ehFrame);
if (ctx.arg.emachine == EM_ARM) {
part.armExidx = std::make_unique<ARMExidxSyntheticSection>(ctx);
add(*part.armExidx);
}
if (!ctx.arg.packageMetadata.empty()) {
part.packageMetadataNote = std::make_unique<PackageMetadataNote>(ctx);
add(*part.packageMetadataNote);
}
}
if (ctx.partitions.size() != 1) {
ctx.in.partEnd =
std::make_unique<BssSection>(ctx, ".part.end", ctx.arg.maxPageSize, 1);
ctx.in.partEnd->partition = 255;
add(*ctx.in.partEnd);
ctx.in.partIndex = std::make_unique<PartitionIndexSection>(ctx);
addOptionalRegular(ctx, "__part_index_begin", ctx.in.partIndex.get(), 0);
addOptionalRegular(ctx, "__part_index_end", ctx.in.partIndex.get(),
ctx.in.partIndex->getSize());
add(*ctx.in.partIndex);
}
if (ctx.arg.emachine == EM_MIPS) {
ctx.in.mipsGot = std::make_unique<MipsGotSection>(ctx);
add(*ctx.in.mipsGot);
} else {
ctx.in.got = std::make_unique<GotSection>(ctx);
add(*ctx.in.got);
}
if (ctx.arg.emachine == EM_PPC) {
ctx.in.ppc32Got2 = std::make_unique<PPC32Got2Section>(ctx);
add(*ctx.in.ppc32Got2);
}
if (ctx.arg.emachine == EM_PPC64) {
ctx.in.ppc64LongBranchTarget =
std::make_unique<PPC64LongBranchTargetSection>(ctx);
add(*ctx.in.ppc64LongBranchTarget);
}
ctx.in.gotPlt = std::make_unique<GotPltSection>(ctx);
add(*ctx.in.gotPlt);
ctx.in.igotPlt = std::make_unique<IgotPltSection>(ctx);
add(*ctx.in.igotPlt);
if (ctx.arg.zRelro &&
((ctx.script->phdrsCommands.empty() && !ctx.script->hasSectionsCommand) ||
ctx.script->seenRelroEnd)) {
ctx.in.relroPadding = std::make_unique<RelroPaddingSection>(ctx);
add(*ctx.in.relroPadding);
}
if (ctx.arg.emachine == EM_ARM) {
ctx.in.armCmseSGSection = std::make_unique<ArmCmseSGSection>(ctx);
add(*ctx.in.armCmseSGSection);
}
if (ctx.sym.globalOffsetTable && ctx.arg.emachine != EM_MIPS) {
if (ctx.target->gotBaseSymInGotPlt)
ctx.in.gotPlt->hasGotPltOffRel = true;
else
ctx.in.got->hasGotOffRel = true;
}
ctx.in.relaPlt = std::make_unique<RelocationSection<ELFT>>(
ctx, ctx.arg.isRela ? ".rela.plt" : ".rel.plt", false,
1);
add(*ctx.in.relaPlt);
if ((ctx.arg.emachine == EM_386 || ctx.arg.emachine == EM_X86_64) &&
(ctx.arg.andFeatures & GNU_PROPERTY_X86_FEATURE_1_IBT)) {
ctx.in.ibtPlt = std::make_unique<IBTPltSection>(ctx);
add(*ctx.in.ibtPlt);
}
if (ctx.arg.emachine == EM_PPC)
ctx.in.plt = std::make_unique<PPC32GlinkSection>(ctx);
else
ctx.in.plt = std::make_unique<PltSection>(ctx);
add(*ctx.in.plt);
ctx.in.iplt = std::make_unique<IpltSection>(ctx);
add(*ctx.in.iplt);
if (ctx.arg.andFeatures || ctx.aarch64PauthAbiCoreInfo) {
ctx.in.gnuProperty = std::make_unique<GnuPropertySection>(ctx);
add(*ctx.in.gnuProperty);
}
if (ctx.arg.debugNames) {
ctx.in.debugNames = std::make_unique<DebugNamesSection<ELFT>>(ctx);
add(*ctx.in.debugNames);
}
if (ctx.arg.gdbIndex) {
ctx.in.gdbIndex = GdbIndexSection::create<ELFT>(ctx);
add(*ctx.in.gdbIndex);
}
if (ctx.arg.relocatable) {
ctx.in.gnuStack = std::make_unique<GnuStackSection>(ctx);
add(*ctx.in.gnuStack);
}
if (ctx.in.symTab)
add(*ctx.in.symTab);
if (ctx.in.symTabShndx)
add(*ctx.in.symTabShndx);
if (ctx.in.shStrTab)
add(*ctx.in.shStrTab);
if (ctx.in.strTab)
add(*ctx.in.strTab);
}
template void elf::splitSections<ELF32LE>(Ctx &);
template void elf::splitSections<ELF32BE>(Ctx &);
template void elf::splitSections<ELF64LE>(Ctx &);
template void elf::splitSections<ELF64BE>(Ctx &);
template void EhFrameSection::iterateFDEWithLSDA<ELF32LE>(
function_ref<void(InputSection &)>);
template void EhFrameSection::iterateFDEWithLSDA<ELF32BE>(
function_ref<void(InputSection &)>);
template void EhFrameSection::iterateFDEWithLSDA<ELF64LE>(
function_ref<void(InputSection &)>);
template void EhFrameSection::iterateFDEWithLSDA<ELF64BE>(
function_ref<void(InputSection &)>);
template class elf::SymbolTableSection<ELF32LE>;
template class elf::SymbolTableSection<ELF32BE>;
template class elf::SymbolTableSection<ELF64LE>;
template class elf::SymbolTableSection<ELF64BE>;
template void elf::writeEhdr<ELF32LE>(Ctx &, uint8_t *Buf, Partition &Part);
template void elf::writeEhdr<ELF32BE>(Ctx &, uint8_t *Buf, Partition &Part);
template void elf::writeEhdr<ELF64LE>(Ctx &, uint8_t *Buf, Partition &Part);
template void elf::writeEhdr<ELF64BE>(Ctx &, uint8_t *Buf, Partition &Part);
template void elf::writePhdrs<ELF32LE>(uint8_t *Buf, Partition &Part);
template void elf::writePhdrs<ELF32BE>(uint8_t *Buf, Partition &Part);
template void elf::writePhdrs<ELF64LE>(uint8_t *Buf, Partition &Part);
template void elf::writePhdrs<ELF64BE>(uint8_t *Buf, Partition &Part);
template void elf::createSyntheticSections<ELF32LE>(Ctx &);
template void elf::createSyntheticSections<ELF32BE>(Ctx &);
template void elf::createSyntheticSections<ELF64LE>(Ctx &);
template void elf::createSyntheticSections<ELF64BE>(Ctx &);