1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00
mold/output_chunks.cc
2020-11-02 15:56:41 +09:00

238 lines
6.2 KiB
C++

#include "mold.h"
using namespace llvm::ELF;
OutputEhdr *out::ehdr;
OutputShdr *out::shdr;
OutputPhdr *out::phdr;
InterpSection *out::interp;
GotSection *out::got;
GotSection *out::gotplt;
PltSection *out::plt;
RelPltSection *out::relplt;
ShstrtabSection *out::shstrtab;
SymtabSection *out::symtab;
StrtabSection *out::strtab;
u64 out::tls_end;
Symbol *out::__bss_start;
Symbol *out::__ehdr_start;
Symbol *out::__rela_iplt_start;
Symbol *out::__rela_iplt_end;
Symbol *out::end;
Symbol *out::_end;
Symbol *out::etext;
Symbol *out::_etext;
Symbol *out::edata;
Symbol *out::_edata;
std::vector<OutputSection *> OutputSection::instances;
void OutputEhdr::relocate(u8 *buf) {
auto *hdr = (ELF64LE::Ehdr *)buf;
memset(hdr, 0, sizeof(*hdr));
memcpy(&hdr->e_ident, "\177ELF", 4);
hdr->e_ident[EI_CLASS] = ELFCLASS64;
hdr->e_ident[EI_DATA] = ELFDATA2LSB;
hdr->e_ident[EI_VERSION] = EV_CURRENT;
hdr->e_ident[EI_OSABI] = 0;
hdr->e_ident[EI_ABIVERSION] = 0;
hdr->e_type = ET_EXEC;
hdr->e_machine = EM_X86_64;
hdr->e_version = EV_CURRENT;
hdr->e_entry = Symbol::intern("_start")->addr;
hdr->e_phoff = out::phdr->shdr.sh_offset;
hdr->e_shoff = out::shdr->shdr.sh_offset;
hdr->e_flags = 0;
hdr->e_ehsize = sizeof(ELF64LE::Ehdr);
hdr->e_phentsize = sizeof(ELF64LE::Phdr);
hdr->e_phnum = out::phdr->get_size() / sizeof(ELF64LE::Phdr);
hdr->e_shentsize = sizeof(ELF64LE::Shdr);
hdr->e_shnum = out::shdr->entries.size();
hdr->e_shstrndx = out::shstrtab->shndx;
}
static u32 to_phdr_flags(u64 sh_flags) {
u32 ret = PF_R;
if (sh_flags & SHF_WRITE)
ret |= PF_W;
if (sh_flags & SHF_EXECINSTR)
ret |= PF_X;
return ret;
}
void OutputPhdr::construct(std::vector<OutputChunk *> &chunks) {
auto add = [&](u32 type, u32 flags, u32 align, std::vector<OutputChunk *> members) {
ELF64LE::Phdr phdr = {};
phdr.p_type = type;
phdr.p_flags = flags;
phdr.p_align = align;
entries.push_back({phdr, members});
};
// Create a PT_PHDR for the program header itself.
add(PT_PHDR, PF_R, 8, {out::phdr});
// Create an PT_INTERP.
if (out::interp)
add(PT_INTERP, PF_R, 1, {out::interp});
// Create PT_LOAD segments.
bool first = true;
bool last_was_bss;
for (OutputChunk *chunk : chunks) {
if (!(chunk->shdr.sh_flags & SHF_ALLOC))
break;
u32 flags = to_phdr_flags(chunk->shdr.sh_flags);
bool this_is_bss =
(chunk->shdr.sh_type == SHT_NOBITS && !(chunk->shdr.sh_flags & SHF_TLS));
if (first) {
add(PT_LOAD, flags, PAGE_SIZE, {chunk});
last_was_bss = this_is_bss;
first = false;
continue;
}
if (entries.back().phdr.p_flags != flags || (last_was_bss && !this_is_bss))
add(PT_LOAD, flags, PAGE_SIZE, {chunk});
else
entries.back().members.push_back(chunk);
last_was_bss = this_is_bss;
}
// Create a PT_TLS.
for (int i = 0; i < chunks.size(); i++) {
if (chunks[i]->shdr.sh_flags & SHF_TLS) {
std::vector<OutputChunk *> vec = {chunks[i++]};
while (i < chunks.size() && (chunks[i]->shdr.sh_flags & SHF_TLS))
vec.push_back(chunks[i++]);
add(PT_TLS, to_phdr_flags(chunks[i]->shdr.sh_flags), 1, vec);
}
}
for (Phdr &ent : entries)
for (OutputChunk *chunk : ent.members)
ent.phdr.p_align = std::max(ent.phdr.p_align, chunk->shdr.sh_addralign);
for (Phdr &ent : entries)
if (ent.phdr.p_type == PT_LOAD)
ent.members.front()->starts_new_ptload = true;
}
void OutputPhdr::copy_to(u8 *buf) {
for (Phdr &ent : entries) {
OutputChunk *front = ent.members.front();
OutputChunk *back = ent.members.back();
ent.phdr.p_offset = front->shdr.sh_offset;
ent.phdr.p_filesz = back->is_bss()
? back->shdr.sh_offset - front->shdr.sh_offset
: back->shdr.sh_offset - front->shdr.sh_offset + back->get_size();
ent.phdr.p_vaddr = front->shdr.sh_addr;
ent.phdr.p_memsz =
back->shdr.sh_addr + back->get_size() - front->shdr.sh_addr;
}
auto *p = (ELF64LE::Phdr *)(buf + shdr.sh_offset);
for (Phdr &ent : entries)
*p++ = ent.phdr;
}
static StringRef get_output_name(StringRef name) {
static StringRef common_names[] = {
".text.", ".data.rel.ro.", ".data.", ".rodata.", ".bss.rel.ro.",
".bss.", ".init_array.", ".fini_array.", ".tbss.", ".tdata.",
};
for (StringRef s : common_names)
if (name.startswith(s) || name == s.drop_back())
return s.drop_back();
return name;
}
OutputSection *
OutputSection::get_instance(StringRef name, u64 flags, u32 type) {
name = get_output_name(name);
flags = flags & ~SHF_GROUP;
auto find = [&]() -> OutputSection * {
for (OutputSection *osec : OutputSection::instances)
if (name == osec->name && flags == (osec->shdr.sh_flags & ~SHF_GROUP) &&
type == osec->shdr.sh_type)
return osec;
return nullptr;
};
// Search for an exiting output section.
static std::shared_mutex mu;
std::shared_lock shared_lock(mu);
if (OutputSection *osec = find())
return osec;
shared_lock.unlock();
// Create a new output section.
std::unique_lock unique_lock(mu);
if (OutputSection *osec = find())
return osec;
return new OutputSection(name, flags, type);
}
void GotSection::relocate(u8 *buf) {
buf += shdr.sh_offset;
for (auto pair : symbols) {
Kind kind = pair.first;
Symbol *sym = pair.second;
switch (kind) {
case REGULAR:
*(u64 *)buf = sym->addr;
break;
case TPOFF:
*(u64 *)buf = sym->addr - out::tls_end;
break;
case IREL:
break;
default:
error("unreachable");
}
buf += 8;
}
}
void PltSection::relocate(u8 *buf) {
buf += shdr.sh_offset;
for (int i = 0; i < symbols.size(); i++) {
buf[i * 16] = 0xff;
buf[i * 16 + 1] = 0x25;
u64 P = shdr.sh_addr + i * 16 + 6;
u64 S = out::gotplt->shdr.sh_addr + i * 8;
*(u32 *)(buf + i * 16 + 2) = S - P;
}
}
void RelPltSection::relocate(u8 *buf) {
auto *rel = (ELF64LE::Rela *)(buf + shdr.sh_offset);
for (int i = 0; i < out::gotplt->symbols.size(); i++) {
GotSection::Kind kind = out::gotplt->symbols[i].first;
Symbol *sym = out::gotplt->symbols[i].second;
if (kind == GotSection::IREL) {
rel->r_offset = out::gotplt->shdr.sh_addr + i * 8;
rel->setType(R_X86_64_IRELATIVE, false);
rel->r_addend = sym->addr;
rel++;
}
}
}