Skip to content

Commit

Permalink
ELF: Write .eh_frame_hdr explicitly after writing .eh_frame.
Browse files Browse the repository at this point in the history
This lets us remove the special case from Writer::writeSections(), and also
fixes a bug where .eh_frame_hdr isn't necessarily written in the correct
order if a linker script moves .eh_frame and .eh_frame_hdr into the same
output section.

Differential Revision: https://reviews.llvm.org/D58795

llvm-svn: 355153
  • Loading branch information
pcc committed Feb 28, 2019
1 parent 701593f commit 7fb9eab
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 40 deletions.
3 changes: 1 addition & 2 deletions lld/ELF/OutputSections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ using namespace llvm::ELF;
using namespace lld;
using namespace lld::elf;

uint8_t *Out::BufferStart;
uint8_t Out::First;
PhdrEntry *Out::TlsPhdr;
OutputSection *Out::ElfHeader;
Expand Down Expand Up @@ -222,8 +223,6 @@ template <class ELFT> void OutputSection::writeTo(uint8_t *Buf) {
if (Type == SHT_NOBITS)
return;

Loc = Buf;

// If -compress-debug-section is specified and if this is a debug seciton,
// we've already compressed section contents. If that's the case,
// just write it down.
Expand Down
4 changes: 1 addition & 3 deletions lld/ELF/OutputSections.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ class OutputSection final : public BaseCommand, public SectionBase {

void addSection(InputSection *IS);

// Location in the output buffer.
uint8_t *Loc = nullptr;

// The following members are normally only used in linker scripts.
MemoryRegion *MemRegion = nullptr;
MemoryRegion *LMARegion = nullptr;
Expand Down Expand Up @@ -128,6 +125,7 @@ std::vector<InputSection *> getInputSections(OutputSection* OS);
// globally accessible. Writer initializes them, so don't use them
// until Writer is initialized.
struct Out {
static uint8_t *BufferStart;
static uint8_t First;
static PhdrEntry *TlsPhdr;
static OutputSection *ElfHeader;
Expand Down
16 changes: 14 additions & 2 deletions lld/ELF/SyntheticSections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ void EhFrameSection::finalizeContents() {
// to get an FDE from an address to which FDE is applied. This function
// returns a list of such pairs.
std::vector<EhFrameSection::FdeData> EhFrameSection::getFdeData() const {
uint8_t *Buf = getParent()->Loc + OutSecOff;
uint8_t *Buf = Out::BufferStart + getParent()->Offset + OutSecOff;
std::vector<FdeData> Ret;

uint64_t VA = In.EhFrameHdr->getVA();
Expand Down Expand Up @@ -595,6 +595,9 @@ void EhFrameSection::writeTo(uint8_t *Buf) {
// getOffset() takes care of discontiguous section pieces.
for (EhInputSection *S : Sections)
S->relocateAlloc(Buf, nullptr);

if (In.EhFrameHdr && In.EhFrameHdr->getParent())
In.EhFrameHdr->write();
}

GotSection::GotSection()
Expand Down Expand Up @@ -2667,11 +2670,20 @@ bool GdbIndexSection::empty() const { return Chunks.empty(); }
EhFrameHeader::EhFrameHeader()
: SyntheticSection(SHF_ALLOC, SHT_PROGBITS, 4, ".eh_frame_hdr") {}

void EhFrameHeader::writeTo(uint8_t *Buf) {
// Unlike most sections, the EhFrameHeader section is written while writing
// another section, namely EhFrameSection, which calls the write() function
// below from its writeTo() function. This is necessary because the contents
// of EhFrameHeader depend on the relocated contents of EhFrameSection and we
// don't know which order the sections will be written in.
}

// .eh_frame_hdr contains a binary search table of pointers to FDEs.
// Each entry of the search table consists of two values,
// the starting PC from where FDEs covers, and the FDE's address.
// It is sorted by PC.
void EhFrameHeader::writeTo(uint8_t *Buf) {
void EhFrameHeader::write() {
uint8_t *Buf = Out::BufferStart + getParent()->Offset + OutSecOff;
typedef EhFrameSection::FdeData FdeData;

std::vector<FdeData> Fdes = In.EhFrame->getFdeData();
Expand Down
1 change: 1 addition & 0 deletions lld/ELF/SyntheticSections.h
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ class GdbIndexSection final : public SyntheticSection {
class EhFrameHeader final : public SyntheticSection {
public:
EhFrameHeader();
void write();
void writeTo(uint8_t *Buf) override;
size_t getSize() const override;
bool empty() const override;
Expand Down
2 changes: 1 addition & 1 deletion lld/ELF/Target.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ template <class ELFT> static ErrorPlace getErrPlace(const uint8_t *Loc) {
if (!IS->getParent())
continue;

uint8_t *ISLoc = IS->getParent()->Loc + IS->OutSecOff;
uint8_t *ISLoc = Out::BufferStart + IS->getParent()->Offset + IS->OutSecOff;
if (ISLoc <= Loc && Loc < ISLoc + IS->getSize())
return {IS, IS->template getLocation<ELFT>(Loc - ISLoc) + ": "};
}
Expand Down
51 changes: 19 additions & 32 deletions lld/ELF/Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2407,16 +2407,14 @@ static uint8_t getAbiVersion() {
}

template <class ELFT> void Writer<ELFT>::writeHeader() {
uint8_t *Buf = Buffer->getBufferStart();

// For executable segments, the trap instructions are written before writing
// the header. Setting Elf header bytes to zero ensures that any unused bytes
// in header are zero-cleared, instead of having trap instructions.
memset(Buf, 0, sizeof(Elf_Ehdr));
memcpy(Buf, "\177ELF", 4);
memset(Out::BufferStart, 0, sizeof(Elf_Ehdr));
memcpy(Out::BufferStart, "\177ELF", 4);

// Write the ELF header.
auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf);
auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Out::BufferStart);
EHdr->e_ident[EI_CLASS] = Config->Is64 ? ELFCLASS64 : ELFCLASS32;
EHdr->e_ident[EI_DATA] = Config->IsLE ? ELFDATA2LSB : ELFDATA2MSB;
EHdr->e_ident[EI_VERSION] = EV_CURRENT;
Expand All @@ -2438,7 +2436,7 @@ template <class ELFT> void Writer<ELFT>::writeHeader() {
}

// Write the program header table.
auto *HBuf = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff);
auto *HBuf = reinterpret_cast<Elf_Phdr *>(Out::BufferStart + EHdr->e_phoff);
for (PhdrEntry *P : Phdrs) {
HBuf->p_type = P->p_type;
HBuf->p_flags = P->p_flags;
Expand All @@ -2460,7 +2458,7 @@ template <class ELFT> void Writer<ELFT>::writeHeader() {
// the value. The sentinel values and fields are:
// e_shnum = 0, SHdrs[0].sh_size = number of sections.
// e_shstrndx = SHN_XINDEX, SHdrs[0].sh_link = .shstrtab section index.
auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff);
auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Out::BufferStart + EHdr->e_shoff);
size_t Num = OutputSections.size() + 1;
if (Num >= SHN_LORESERVE)
SHdrs->sh_size = Num;
Expand Down Expand Up @@ -2494,18 +2492,19 @@ template <class ELFT> void Writer<ELFT>::openFile() {
Expected<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
FileOutputBuffer::create(Config->OutputFile, FileSize, Flags);

if (!BufferOrErr)
if (!BufferOrErr) {
error("failed to open " + Config->OutputFile + ": " +
llvm::toString(BufferOrErr.takeError()));
else
Buffer = std::move(*BufferOrErr);
return;
}
Buffer = std::move(*BufferOrErr);
Out::BufferStart = Buffer->getBufferStart();
}

template <class ELFT> void Writer<ELFT>::writeSectionsBinary() {
uint8_t *Buf = Buffer->getBufferStart();
for (OutputSection *Sec : OutputSections)
if (Sec->Flags & SHF_ALLOC)
Sec->writeTo<ELFT>(Buf + Sec->Offset);
Sec->writeTo<ELFT>(Out::BufferStart + Sec->Offset);
}

static void fillTrap(uint8_t *I, uint8_t *End) {
Expand All @@ -2524,11 +2523,12 @@ template <class ELFT> void Writer<ELFT>::writeTrapInstr() {
return;

// Fill the last page.
uint8_t *Buf = Buffer->getBufferStart();
for (PhdrEntry *P : Phdrs)
if (P->p_type == PT_LOAD && (P->p_flags & PF_X))
fillTrap(Buf + alignDown(P->p_offset + P->p_filesz, Target->PageSize),
Buf + alignTo(P->p_offset + P->p_filesz, Target->PageSize));
fillTrap(Out::BufferStart +
alignDown(P->p_offset + P->p_filesz, Target->PageSize),
Out::BufferStart +
alignTo(P->p_offset + P->p_filesz, Target->PageSize));

// Round up the file size of the last segment to the page boundary iff it is
// an executable segment to ensure that other tools don't accidentally
Expand All @@ -2544,37 +2544,24 @@ template <class ELFT> void Writer<ELFT>::writeTrapInstr() {

// Write section contents to a mmap'ed file.
template <class ELFT> void Writer<ELFT>::writeSections() {
uint8_t *Buf = Buffer->getBufferStart();

OutputSection *EhFrameHdr = nullptr;
if (In.EhFrameHdr && !In.EhFrameHdr->empty())
EhFrameHdr = In.EhFrameHdr->getParent();

// In -r or -emit-relocs mode, write the relocation sections first as in
// ELf_Rel targets we might find out that we need to modify the relocated
// section while doing it.
for (OutputSection *Sec : OutputSections)
if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA)
Sec->writeTo<ELFT>(Buf + Sec->Offset);
Sec->writeTo<ELFT>(Out::BufferStart + Sec->Offset);

for (OutputSection *Sec : OutputSections)
if (Sec != EhFrameHdr && Sec->Type != SHT_REL && Sec->Type != SHT_RELA)
Sec->writeTo<ELFT>(Buf + Sec->Offset);

// The .eh_frame_hdr depends on .eh_frame section contents, therefore
// it should be written after .eh_frame is written.
if (EhFrameHdr)
EhFrameHdr->writeTo<ELFT>(Buf + EhFrameHdr->Offset);
if (Sec->Type != SHT_REL && Sec->Type != SHT_RELA)
Sec->writeTo<ELFT>(Out::BufferStart + Sec->Offset);
}

template <class ELFT> void Writer<ELFT>::writeBuildId() {
if (!In.BuildId || !In.BuildId->getParent())
return;

// Compute a hash of all sections of the output file.
uint8_t *Start = Buffer->getBufferStart();
uint8_t *End = Start + FileSize;
In.BuildId->writeBuildId({Start, End});
In.BuildId->writeBuildId({Out::BufferStart, FileSize});
}

template void elf::writeResult<ELF32LE>();
Expand Down
20 changes: 20 additions & 0 deletions lld/test/ELF/linkerscript/eh-frame-merge.s
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
# RUN: echo "SECTIONS { .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame) } }" > %t.script
# RUN: ld.lld -o %t --no-threads --eh-frame-hdr --script %t.script %t.o
# RUN: llvm-readobj -s -u %t | FileCheck %s

# CHECK: Name: .dah
# CHECK-NOT: Section
# CHECK: Address: 0x4D

# CHECK: initial_location: 0x4d

.global _start
_start:
nop

.section .dah,"ax",@progbits
.cfi_startproc
nop
.cfi_endproc

0 comments on commit 7fb9eab

Please sign in to comment.