1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 18:40:59 +03:00
mold/input_sections.cc
2020-11-04 19:53:55 +09:00

158 lines
4.0 KiB
C++

#include "mold.h"
using namespace llvm;
using namespace llvm::ELF;
InputSection::InputSection(ObjectFile *file, const ELF64LE::Shdr &shdr, StringRef name)
: file(file), shdr(shdr) {
this->name = name;
this->output_section = OutputSection::get_instance(name, shdr.sh_flags, shdr.sh_type);
u64 align = (shdr.sh_addralign == 0) ? 1 : shdr.sh_addralign;
if (align > UINT32_MAX)
error(toString(file) + ": section sh_addralign is too large");
if (__builtin_popcount(align) != 1)
error(toString(file) + ": section sh_addralign is not a power of two");
}
void InputSection::copy_to(u8 *buf) {
if (shdr.sh_type == SHT_NOBITS || shdr.sh_size == 0)
return;
ArrayRef<u8> data = check(file->obj.getSectionContents(shdr));
buf = buf + output_section->shdr.sh_offset + offset;
memcpy(buf, &data[0], data.size());
}
void InputSection::scan_relocations() {
for (const ELF64LE::Rela &rel : rels) {
Symbol *sym = file->symbols[rel.getSymbol(false)];
if (!sym->file)
continue;
switch (rel.getType(false)) {
case R_X86_64_GOT32:
case R_X86_64_GOT64:
case R_X86_64_GOTOFF64:
case R_X86_64_GOTPC32:
case R_X86_64_GOTPC32_TLSDESC:
case R_X86_64_GOTPC64:
case R_X86_64_GOTPCREL:
case R_X86_64_GOTPCRELX:
case R_X86_64_REX_GOTPCRELX: {
std::lock_guard lock(sym->mu);
if (!sym->needs_got) {
sym->needs_got = true;
file->num_got++;
}
break;
}
case R_X86_64_GOTTPOFF: {
std::lock_guard lock(sym->mu);
if (!sym->needs_gottp) {
sym->needs_gottp = true;
file->num_got++;
}
break;
}
case R_X86_64_PLT32: {
if (config.is_static && sym->type != STT_GNU_IFUNC)
break;
std::lock_guard lock(sym->mu);
if (!sym->needs_plt) {
sym->needs_plt = true;
file->num_plt++;
file->num_gotplt++;
file->num_relplt++;
}
break;
}
}
}
}
void InputSection::relocate(u8 *buf) {
for (const ELF64LE::Rela &rel : rels) {
Symbol *sym = file->symbols[rel.getSymbol(false)];
u8 *loc = buf + output_section->shdr.sh_offset + offset + rel.r_offset;
u64 G = sym->got_offset;
u64 GOT = out::got->shdr.sh_addr;
u64 S = sym->addr;
u64 A = rel.r_addend;
u64 P = output_section->shdr.sh_addr + offset + rel.r_offset;
u64 L = out::plt->shdr.sh_addr + sym->plt_offset;
switch (rel.getType(false)) {
case R_X86_64_NONE:
break;
case R_X86_64_64:
*(u64 *)loc = S + A;
break;
case R_X86_64_PC32:
*(u32 *)loc = S + A - P;
break;
case R_X86_64_GOT32:
*(u64 *)loc = G + A;
break;
case R_X86_64_PLT32:
if (!config.is_static || sym->type == STT_GNU_IFUNC)
*(u32 *)loc = L + A - P;
else
*(u32 *)loc = S + A - P; // todo
break;
case R_X86_64_GOTPCREL:
*(u32 *)loc = G + GOT + A - P;
break;
case R_X86_64_32:
case R_X86_64_32S:
*(u32 *)loc = S + A;
break;
case R_X86_64_16:
*(u16 *)loc = S + A;
break;
case R_X86_64_PC16:
*(u16 *)loc = S + A - P;
break;
case R_X86_64_8:
*loc = S + A;
break;
case R_X86_64_PC8:
*loc = S + A - P;
break;
case R_X86_64_TLSGD:
case R_X86_64_TLSLD:
case R_X86_64_DTPOFF32:
// TODO
break;
case R_X86_64_GOTTPOFF:
*(u32 *)loc = sym->gottp_offset + GOT + A - P;
break;
case R_X86_64_TPOFF32:
*(u32 *)loc = S - out::tls_end;
break;
case R_X86_64_PC64:
*(u64 *)loc = S + A - P;
break;
case R_X86_64_GOTPC32:
*(u32 *)loc = GOT + A - P;
break;
case R_X86_64_GOTPCRELX:
case R_X86_64_REX_GOTPCRELX:
*(u32 *)loc = G + GOT + A - P;
break;
default:
error(toString(this) + ": unknown relocation: " +
std::to_string(rel.getType(false)));
}
static Counter counter("relocs");
counter.inc();
}
}
std::string toString(InputSection *isec) {
return (toString(isec->file) + ":(" + isec->name + ")").str();
}