2020-10-20 08:54:35 +03:00
|
|
|
#include "mold.h"
|
2020-10-04 12:00:33 +03:00
|
|
|
|
2020-11-03 14:49:30 +03:00
|
|
|
#include "llvm/BinaryFormat/Magic.h"
|
|
|
|
|
2020-11-04 04:39:17 +03:00
|
|
|
#include <cstring>
|
|
|
|
|
2020-10-04 12:00:33 +03:00
|
|
|
using namespace llvm;
|
2020-10-09 14:47:45 +03:00
|
|
|
using namespace llvm::ELF;
|
2020-10-04 12:00:33 +03:00
|
|
|
|
2020-10-14 12:42:54 +03:00
|
|
|
ObjectFile::ObjectFile(MemoryBufferRef mb, StringRef archive_name)
|
2020-11-01 07:54:56 +03:00
|
|
|
: mb(mb), name(mb.getBufferIdentifier()), archive_name(archive_name),
|
2020-11-05 06:34:59 +03:00
|
|
|
obj(check(ELFFile<ELF64LE>::create(mb.getBuffer()))),
|
|
|
|
is_in_archive(archive_name != "") {}
|
2020-10-04 12:00:33 +03:00
|
|
|
|
2020-10-09 14:47:45 +03:00
|
|
|
static const ELF64LE::Shdr
|
2020-10-29 10:27:11 +03:00
|
|
|
*findSection(ArrayRef<ELF64LE::Shdr> sections, u32 type) {
|
2020-10-09 14:47:45 +03:00
|
|
|
for (const ELF64LE::Shdr &sec : sections)
|
|
|
|
if (sec.sh_type == type)
|
|
|
|
return &sec;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-10-19 14:05:34 +03:00
|
|
|
void ObjectFile::initialize_sections() {
|
|
|
|
StringRef section_strtab = CHECK(obj.getSectionStringTable(elf_sections), this);
|
2020-10-19 14:17:32 +03:00
|
|
|
sections.resize(elf_sections.size());
|
|
|
|
|
|
|
|
for (int i = 0; i < elf_sections.size(); i++) {
|
|
|
|
const ELF64LE::Shdr &shdr = elf_sections[i];
|
|
|
|
|
2020-10-22 16:42:09 +03:00
|
|
|
if ((shdr.sh_flags & SHF_EXCLUDE) && !(shdr.sh_flags & SHF_ALLOC))
|
|
|
|
continue;
|
|
|
|
|
2020-10-19 14:17:32 +03:00
|
|
|
switch (shdr.sh_type) {
|
|
|
|
case SHT_GROUP: {
|
|
|
|
// Get the signature of this section group.
|
|
|
|
if (shdr.sh_info >= elf_syms.size())
|
|
|
|
error(toString(this) + ": invalid symbol index");
|
|
|
|
const ELF64LE::Sym &sym = elf_syms[shdr.sh_info];
|
2020-10-26 15:44:08 +03:00
|
|
|
StringRef signature = CHECK(sym.getName(symbol_strtab), this);
|
2020-10-27 14:15:57 +03:00
|
|
|
|
2020-10-19 15:32:57 +03:00
|
|
|
// Get comdat group members.
|
|
|
|
ArrayRef<ELF64LE::Word> entries =
|
|
|
|
CHECK(obj.template getSectionContentsAsArray<ELF64LE::Word>(shdr), this);
|
|
|
|
if (entries.empty())
|
|
|
|
error(toString(this) + ": empty SHT_GROUP");
|
|
|
|
if (entries[0] == 0)
|
|
|
|
continue;
|
|
|
|
if (entries[0] != GRP_COMDAT)
|
|
|
|
error(toString(this) + ": unsupported SHT_GROUP format");
|
2020-10-19 14:17:32 +03:00
|
|
|
|
2020-10-23 02:40:54 +03:00
|
|
|
static ConcurrentMap<ComdatGroup> map;
|
2020-10-26 09:37:12 +03:00
|
|
|
ComdatGroup *group = map.insert(signature, ComdatGroup(nullptr, 0));
|
2020-10-23 02:40:54 +03:00
|
|
|
comdat_groups.push_back({group, i});
|
2020-11-03 11:48:15 +03:00
|
|
|
|
2020-11-03 11:52:39 +03:00
|
|
|
static Counter counter("comdats");
|
2020-11-03 11:48:15 +03:00
|
|
|
counter.inc();
|
2020-10-19 15:32:57 +03:00
|
|
|
break;
|
2020-10-19 14:17:32 +03:00
|
|
|
}
|
2020-10-19 16:55:52 +03:00
|
|
|
case SHT_SYMTAB_SHNDX:
|
|
|
|
error(toString(this) + ": SHT_SYMTAB_SHNDX section is not supported");
|
|
|
|
break;
|
|
|
|
case SHT_SYMTAB:
|
|
|
|
case SHT_STRTAB:
|
|
|
|
case SHT_REL:
|
|
|
|
case SHT_RELA:
|
|
|
|
case SHT_NULL:
|
|
|
|
break;
|
2020-10-19 14:17:32 +03:00
|
|
|
default: {
|
2020-11-03 11:52:39 +03:00
|
|
|
static Counter counter("regular_sections");
|
|
|
|
counter.inc();
|
2020-10-27 07:52:10 +03:00
|
|
|
#if 0
|
2020-10-22 18:52:36 +03:00
|
|
|
if ((shdr.sh_flags & SHF_STRINGS) && !(shdr.sh_flags & SHF_WRITE) &&
|
|
|
|
shdr.sh_entsize == 1) {
|
2020-10-22 18:34:46 +03:00
|
|
|
read_string_pieces(shdr);
|
|
|
|
break;
|
|
|
|
}
|
2020-10-27 07:52:10 +03:00
|
|
|
#endif
|
2020-10-22 18:34:46 +03:00
|
|
|
|
2020-10-19 14:17:32 +03:00
|
|
|
StringRef name = CHECK(obj.getSectionName(shdr, section_strtab), this);
|
2020-10-25 03:29:03 +03:00
|
|
|
this->sections[i] = new InputSection(this, shdr, name);
|
2020-10-19 14:17:32 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-10-13 14:35:35 +03:00
|
|
|
}
|
2020-10-20 04:32:32 +03:00
|
|
|
|
2020-11-03 15:09:21 +03:00
|
|
|
for (const ELF64LE::Shdr &shdr : elf_sections) {
|
2020-10-20 04:32:32 +03:00
|
|
|
if (shdr.sh_type != SHT_RELA)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (shdr.sh_info >= sections.size())
|
|
|
|
error(toString(this) + ": invalid relocated section index: " +
|
|
|
|
Twine(shdr.sh_info));
|
|
|
|
|
|
|
|
InputSection *target = sections[shdr.sh_info];
|
2020-10-23 07:23:12 +03:00
|
|
|
if (target) {
|
2020-10-20 04:32:32 +03:00
|
|
|
target->rels = CHECK(obj.relas(shdr), this);
|
2020-11-03 11:52:39 +03:00
|
|
|
|
|
|
|
if (target->shdr.sh_flags & SHF_ALLOC) {
|
2020-11-03 15:09:21 +03:00
|
|
|
static Counter counter("relocs_alloc");
|
2020-11-03 11:52:39 +03:00
|
|
|
counter.inc(target->rels.size());
|
|
|
|
}
|
2020-10-23 07:23:12 +03:00
|
|
|
}
|
2020-10-20 04:32:32 +03:00
|
|
|
}
|
2020-10-19 14:05:34 +03:00
|
|
|
}
|
2020-10-09 14:47:45 +03:00
|
|
|
|
2020-10-19 14:05:34 +03:00
|
|
|
void ObjectFile::initialize_symbols() {
|
2020-11-03 11:52:39 +03:00
|
|
|
static Counter counter("all_syms");
|
|
|
|
counter.inc(elf_syms.size());
|
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
symbols.reserve(elf_syms.size());
|
2020-10-27 14:15:57 +03:00
|
|
|
local_symbols.reserve(first_global);
|
|
|
|
|
2020-11-03 09:43:23 +03:00
|
|
|
// First symbol entry is always null
|
|
|
|
local_symbols.emplace_back("");
|
|
|
|
symbols.push_back(&local_symbols.back());
|
|
|
|
|
|
|
|
for (int i = 1; i < first_global; i++) {
|
2020-10-27 14:15:57 +03:00
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
|
|
|
StringRef name = CHECK(esym.getName(symbol_strtab), this);
|
2020-11-03 09:19:54 +03:00
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
local_symbols.emplace_back(name);
|
2020-11-03 09:08:05 +03:00
|
|
|
Symbol &sym = local_symbols.back();
|
|
|
|
|
|
|
|
sym.file = this;
|
|
|
|
sym.type = esym.getType();
|
2020-11-03 09:11:23 +03:00
|
|
|
sym.addr = esym.st_value;
|
2020-11-03 09:08:05 +03:00
|
|
|
|
2020-11-03 16:36:16 +03:00
|
|
|
if (!esym.isAbsolute()) {
|
|
|
|
if (esym.isCommon())
|
2020-11-03 09:08:05 +03:00
|
|
|
error("common local symbol?");
|
|
|
|
sym.input_section = sections[esym.st_shndx];
|
|
|
|
}
|
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
symbols.push_back(&local_symbols.back());
|
2020-10-27 16:22:07 +03:00
|
|
|
|
2020-10-27 19:57:57 +03:00
|
|
|
if (esym.getType() != STT_SECTION) {
|
2020-10-27 16:22:07 +03:00
|
|
|
local_strtab_size += name.size() + 1;
|
2020-10-27 19:57:57 +03:00
|
|
|
local_symtab_size += sizeof(ELF64LE::Sym);
|
|
|
|
}
|
2020-10-27 14:15:57 +03:00
|
|
|
}
|
|
|
|
|
2020-10-27 10:40:05 +03:00
|
|
|
for (int i = first_global; i < elf_syms.size(); i++) {
|
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
|
|
|
StringRef name = CHECK(esym.getName(symbol_strtab), this);
|
|
|
|
symbols.push_back(Symbol::intern(name));
|
|
|
|
|
2020-11-03 16:36:16 +03:00
|
|
|
if (esym.isCommon())
|
2020-10-27 02:45:20 +03:00
|
|
|
has_common_symbol = true;
|
2020-10-09 17:26:26 +03:00
|
|
|
}
|
2020-10-10 06:18:11 +03:00
|
|
|
}
|
|
|
|
|
2020-10-29 10:27:11 +03:00
|
|
|
void ObjectFile::remove_comdat_members(u32 section_idx) {
|
2020-10-23 02:40:54 +03:00
|
|
|
const ELF64LE::Shdr &shdr = elf_sections[section_idx];
|
|
|
|
ArrayRef<ELF64LE::Word> entries =
|
|
|
|
CHECK(obj.template getSectionContentsAsArray<ELF64LE::Word>(shdr), this);
|
2020-10-29 10:27:11 +03:00
|
|
|
for (u32 i : entries)
|
2020-10-23 02:40:54 +03:00
|
|
|
sections[i] = nullptr;
|
|
|
|
}
|
|
|
|
|
2020-10-22 18:34:46 +03:00
|
|
|
void ObjectFile::read_string_pieces(const ELF64LE::Shdr &shdr) {
|
2020-10-22 18:52:36 +03:00
|
|
|
static ConcurrentMap<StringPiece> map1;
|
|
|
|
static ConcurrentMap<StringPiece> map2;
|
|
|
|
|
|
|
|
bool is_alloc = shdr.sh_type & SHF_ALLOC;
|
|
|
|
ConcurrentMap<StringPiece> &map = is_alloc ? map1 : map2;
|
2020-10-22 18:34:46 +03:00
|
|
|
|
2020-10-29 16:32:55 +03:00
|
|
|
ArrayRef<u8> arr = CHECK(obj.getSectionContents(shdr), this);
|
2020-10-22 18:34:46 +03:00
|
|
|
StringRef data((const char *)&arr[0], arr.size());
|
|
|
|
|
|
|
|
while (!data.empty()) {
|
|
|
|
size_t end = data.find('\0');
|
|
|
|
if (end == StringRef::npos)
|
|
|
|
error(toString(this) + ": string is not null terminated");
|
|
|
|
|
|
|
|
StringRef substr = data.substr(0, end + 1);
|
|
|
|
StringPiece *piece = map.insert(substr, StringPiece(substr));
|
2020-10-22 18:52:36 +03:00
|
|
|
|
|
|
|
if (is_alloc)
|
|
|
|
merged_strings_alloc.push_back(piece);
|
|
|
|
else
|
|
|
|
merged_strings_noalloc.push_back(piece);
|
|
|
|
|
2020-10-22 18:34:46 +03:00
|
|
|
data = data.substr(end + 1);
|
2020-10-26 08:46:07 +03:00
|
|
|
// num_string_pieces++;
|
2020-10-22 18:34:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-19 14:05:34 +03:00
|
|
|
void ObjectFile::parse() {
|
2020-11-03 15:27:14 +03:00
|
|
|
is_dso = (identify_magic(mb.getBuffer()) == file_magic::elf_shared_object);
|
2020-10-19 14:17:32 +03:00
|
|
|
|
|
|
|
elf_sections = CHECK(obj.sections(), this);
|
|
|
|
symtab_sec = findSection(elf_sections, is_dso ? SHT_DYNSYM : SHT_SYMTAB);
|
2020-10-26 15:44:08 +03:00
|
|
|
|
|
|
|
if (symtab_sec) {
|
|
|
|
first_global = symtab_sec->sh_info;
|
|
|
|
elf_syms = CHECK(obj.symbols(symtab_sec), this);
|
|
|
|
symbol_strtab = CHECK(obj.getStringTableForSymtab(*symtab_sec, elf_sections), this);
|
|
|
|
}
|
2020-10-19 14:17:32 +03:00
|
|
|
|
2020-11-05 07:16:33 +03:00
|
|
|
|
2020-11-04 10:54:53 +03:00
|
|
|
if (is_dso)
|
|
|
|
sections.resize(elf_sections.size());
|
|
|
|
else
|
|
|
|
initialize_sections();
|
|
|
|
|
2020-10-26 15:44:08 +03:00
|
|
|
if (symtab_sec)
|
|
|
|
initialize_symbols();
|
2020-11-05 07:05:27 +03:00
|
|
|
|
|
|
|
if (Counter::enabled) {
|
|
|
|
static Counter defined("defined_syms");
|
|
|
|
static Counter undefined("undefined_syms");
|
|
|
|
|
|
|
|
for (const ELF64LE::Sym &esym : elf_syms) {
|
|
|
|
if (esym.isDefined())
|
|
|
|
defined.inc();
|
|
|
|
else
|
|
|
|
undefined.inc();
|
|
|
|
}
|
|
|
|
}
|
2020-10-19 14:05:34 +03:00
|
|
|
}
|
|
|
|
|
2020-11-05 07:16:33 +03:00
|
|
|
void ObjectFile::maybe_override_symbol(const ELF64LE::Sym &esym, Symbol &sym) {
|
|
|
|
InputSection *isec = nullptr;
|
|
|
|
if (!esym.isAbsolute() && !esym.isCommon())
|
|
|
|
isec = sections[esym.st_shndx];
|
|
|
|
|
|
|
|
bool is_weak = (esym.getBinding() == STB_WEAK);
|
|
|
|
|
|
|
|
std::lock_guard lock(sym.mu);
|
|
|
|
|
|
|
|
bool is_new = !sym.file;
|
|
|
|
bool win = sym.is_placeholder || (sym.is_weak && !is_weak);
|
|
|
|
bool tie_but_higher_priority =
|
|
|
|
!is_new && !win && this->priority < sym.file->priority;
|
|
|
|
|
|
|
|
if (is_new || win || tie_but_higher_priority) {
|
|
|
|
sym.file = this;
|
|
|
|
sym.input_section = isec;
|
|
|
|
sym.addr = esym.st_value;
|
|
|
|
sym.type = esym.getType();
|
|
|
|
sym.visibility = esym.getVisibility();
|
|
|
|
sym.is_placeholder = false;
|
|
|
|
sym.is_weak = is_weak;
|
|
|
|
sym.is_dso = is_dso;
|
|
|
|
}
|
|
|
|
|
2020-11-05 07:18:17 +03:00
|
|
|
if (UNLIKELY(sym.traced) && sym.file == this)
|
2020-11-05 07:16:33 +03:00
|
|
|
llvm::outs() << "trace: " << toString(sym.file) << ": definition of "
|
|
|
|
<< sym.name << "\n";
|
|
|
|
}
|
|
|
|
|
2020-11-05 06:20:16 +03:00
|
|
|
void ObjectFile::resolve_symbols() {
|
2020-11-03 08:53:32 +03:00
|
|
|
for (int i = first_global; i < symbols.size(); i++) {
|
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
2020-11-05 02:59:20 +03:00
|
|
|
if (!esym.isDefined())
|
|
|
|
continue;
|
|
|
|
|
2020-10-27 10:35:14 +03:00
|
|
|
Symbol &sym = *symbols[i];
|
|
|
|
|
2020-11-05 07:16:33 +03:00
|
|
|
if (is_in_archive) {
|
|
|
|
std::lock_guard lock(sym.mu);
|
|
|
|
bool is_new = !sym.file;
|
|
|
|
bool tie_but_higher_priority =
|
|
|
|
sym.is_placeholder && this->priority < sym.file->priority;
|
2020-10-27 10:35:14 +03:00
|
|
|
|
2020-11-05 07:16:33 +03:00
|
|
|
if (is_new || tie_but_higher_priority) {
|
|
|
|
sym.file = this;
|
|
|
|
sym.is_placeholder = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
maybe_override_symbol(esym, sym);
|
2020-10-26 09:15:03 +03:00
|
|
|
}
|
2020-10-13 14:35:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 13:34:32 +03:00
|
|
|
void
|
2020-11-05 06:20:16 +03:00
|
|
|
ObjectFile::mark_live_archive_members(tbb::parallel_do_feeder<ObjectFile *> &feeder) {
|
2020-10-18 15:03:51 +03:00
|
|
|
if (is_alive.exchange(true))
|
2020-10-18 14:19:57 +03:00
|
|
|
return;
|
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
for (int i = first_global; i < symbols.size(); i++) {
|
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
2020-10-27 10:36:53 +03:00
|
|
|
Symbol &sym = *symbols[i];
|
|
|
|
|
2020-11-05 07:16:33 +03:00
|
|
|
if (esym.isDefined()) {
|
|
|
|
if (is_in_archive)
|
|
|
|
maybe_override_symbol(esym, sym);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-11-05 02:59:20 +03:00
|
|
|
if (UNLIKELY(sym.traced))
|
|
|
|
llvm::outs() << "trace: " << toString(this)
|
|
|
|
<< ": reference to " << sym.name << "\n";
|
|
|
|
|
|
|
|
if (esym.getBinding() != STB_WEAK && sym.file &&
|
2020-11-05 06:34:59 +03:00
|
|
|
sym.file->is_in_archive && !sym.file->is_alive) {
|
2020-11-05 02:59:20 +03:00
|
|
|
feeder.add(sym.file);
|
|
|
|
|
|
|
|
if (UNLIKELY(sym.traced))
|
|
|
|
llvm::outs() << "trace: " << toString(this) << " keeps "
|
|
|
|
<< toString(sym.file) << " for " << sym.name << "\n";
|
2020-10-28 13:27:23 +03:00
|
|
|
}
|
2020-10-09 16:29:25 +03:00
|
|
|
}
|
2020-10-09 14:47:45 +03:00
|
|
|
}
|
|
|
|
|
2020-10-30 10:00:25 +03:00
|
|
|
void ObjectFile::hanlde_undefined_weak_symbols() {
|
|
|
|
if (!is_alive)
|
|
|
|
return;
|
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
for (int i = first_global; i < symbols.size(); i++) {
|
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
2020-10-30 10:00:25 +03:00
|
|
|
Symbol &sym = *symbols[i];
|
|
|
|
|
|
|
|
if (esym.isUndefined() && esym.getBinding() == STB_WEAK) {
|
|
|
|
std::lock_guard lock(sym.mu);
|
|
|
|
|
2020-11-01 19:12:22 +03:00
|
|
|
bool is_new = !sym.file || !sym.file->is_alive;
|
2020-10-30 10:00:25 +03:00
|
|
|
bool tie_but_higher_priority =
|
2020-11-01 06:45:30 +03:00
|
|
|
!is_new && sym.is_undef_weak && this->priority < sym.file->priority;
|
2020-10-30 10:00:25 +03:00
|
|
|
|
|
|
|
if (is_new || tie_but_higher_priority) {
|
|
|
|
sym.file = this;
|
|
|
|
sym.input_section = nullptr;
|
2020-10-30 12:01:44 +03:00
|
|
|
sym.addr = 0;
|
2020-10-30 10:00:25 +03:00
|
|
|
sym.visibility = esym.getVisibility();
|
|
|
|
sym.is_undef_weak = true;
|
2020-11-05 02:59:20 +03:00
|
|
|
|
|
|
|
if (UNLIKELY(sym.traced))
|
|
|
|
llvm::outs() << "trace: " << toString(this)
|
|
|
|
<< ": unresolved weak symbol " << sym.name << "\n";
|
2020-10-30 10:00:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-19 15:50:33 +03:00
|
|
|
void ObjectFile::eliminate_duplicate_comdat_groups() {
|
2020-10-23 02:40:54 +03:00
|
|
|
for (auto &pair : comdat_groups) {
|
|
|
|
ComdatGroup *g = pair.first;
|
2020-10-29 10:27:11 +03:00
|
|
|
u32 section_idx = pair.second;
|
2020-10-23 02:40:54 +03:00
|
|
|
|
2020-10-23 06:43:22 +03:00
|
|
|
ObjectFile *other = g->file;
|
|
|
|
if (other && other->priority < this->priority) {
|
|
|
|
this->remove_comdat_members(section_idx);
|
2020-10-27 14:15:57 +03:00
|
|
|
continue;
|
2020-10-23 06:43:22 +03:00
|
|
|
}
|
2020-10-23 06:41:17 +03:00
|
|
|
|
2020-10-23 06:43:22 +03:00
|
|
|
ObjectFile *file;
|
2020-10-29 10:27:11 +03:00
|
|
|
u32 idx;
|
2020-10-23 06:41:17 +03:00
|
|
|
|
2020-10-23 06:24:25 +03:00
|
|
|
{
|
2020-10-28 13:51:49 +03:00
|
|
|
std::lock_guard lock(g->mu);
|
2020-10-23 06:24:25 +03:00
|
|
|
if (g->file == nullptr) {
|
|
|
|
g->file = this;
|
|
|
|
g->section_idx = section_idx;
|
2020-10-23 06:24:52 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-10-23 06:43:22 +03:00
|
|
|
if (g->file.load()->priority < this->priority) {
|
2020-10-23 06:24:25 +03:00
|
|
|
file = this;
|
|
|
|
idx = section_idx;
|
|
|
|
} else {
|
|
|
|
file = g->file;
|
|
|
|
idx = g->section_idx;
|
2020-10-23 06:41:17 +03:00
|
|
|
g->file = this;
|
|
|
|
g->section_idx = section_idx;
|
2020-10-23 06:24:25 +03:00
|
|
|
}
|
2020-10-19 15:50:33 +03:00
|
|
|
}
|
2020-10-23 02:40:54 +03:00
|
|
|
|
2020-10-23 06:24:52 +03:00
|
|
|
file->remove_comdat_members(idx);
|
2020-10-19 15:50:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 06:50:25 +03:00
|
|
|
void ObjectFile::convert_common_symbols() {
|
|
|
|
if (!has_common_symbol)
|
|
|
|
return;
|
2020-10-27 07:52:10 +03:00
|
|
|
|
2020-10-29 07:31:41 +03:00
|
|
|
static OutputSection *bss =
|
|
|
|
OutputSection::get_instance(".bss", SHF_WRITE | SHF_ALLOC, SHT_NOBITS);
|
|
|
|
|
2020-10-27 07:52:10 +03:00
|
|
|
for (int i = first_global; i < elf_syms.size(); i++) {
|
2020-11-03 16:36:16 +03:00
|
|
|
if (!elf_syms[i].isCommon())
|
2020-10-27 07:52:10 +03:00
|
|
|
continue;
|
|
|
|
|
2020-11-03 08:53:32 +03:00
|
|
|
Symbol *sym = symbols[i];
|
2020-10-27 10:32:01 +03:00
|
|
|
if (sym->file != this)
|
2020-10-27 07:52:10 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
auto *shdr = new ELF64LE::Shdr;
|
|
|
|
memset(shdr, 0, sizeof(*shdr));
|
|
|
|
shdr->sh_flags = SHF_ALLOC;
|
|
|
|
shdr->sh_type = SHT_NOBITS;
|
2020-10-29 07:31:41 +03:00
|
|
|
shdr->sh_size = elf_syms[i].st_size;
|
2020-10-27 07:52:10 +03:00
|
|
|
shdr->sh_addralign = 1;
|
|
|
|
|
|
|
|
auto *isec = new InputSection(this, *shdr, ".bss");
|
2020-10-29 07:31:41 +03:00
|
|
|
isec->output_section = bss;
|
2020-10-27 07:52:10 +03:00
|
|
|
sections.push_back(isec);
|
|
|
|
|
2020-10-27 10:32:01 +03:00
|
|
|
sym->input_section = isec;
|
2020-10-30 12:01:44 +03:00
|
|
|
sym->addr = 0;
|
2020-10-27 07:52:10 +03:00
|
|
|
}
|
2020-10-27 06:50:25 +03:00
|
|
|
}
|
|
|
|
|
2020-11-06 06:01:52 +03:00
|
|
|
void ObjectFile::scan_relocations() {
|
2020-11-06 02:49:41 +03:00
|
|
|
for (InputSection *isec : sections)
|
|
|
|
if (isec)
|
2020-11-06 06:01:52 +03:00
|
|
|
isec->scan_relocations();
|
2020-11-06 02:49:41 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 16:11:38 +03:00
|
|
|
void ObjectFile::fix_sym_addrs() {
|
|
|
|
for (Symbol *sym : symbols) {
|
|
|
|
if (sym->file != this)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (InputSection *isec = sym->input_section) {
|
|
|
|
OutputSection *osec = isec->output_section;
|
|
|
|
sym->addr += osec->shdr.sh_addr + isec->offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 14:58:28 +03:00
|
|
|
void ObjectFile::compute_symtab() {
|
2020-10-27 16:22:07 +03:00
|
|
|
for (int i = first_global; i < elf_syms.size(); i++) {
|
|
|
|
const ELF64LE::Sym &esym = elf_syms[i];
|
2020-11-03 08:53:32 +03:00
|
|
|
Symbol &sym = *symbols[i];
|
2020-10-27 16:22:07 +03:00
|
|
|
|
|
|
|
if (esym.getType() != STT_SECTION && sym.file == this) {
|
|
|
|
global_strtab_size += sym.name.size() + 1;
|
2020-10-27 16:08:49 +03:00
|
|
|
global_symtab_size += sizeof(ELF64LE::Sym);
|
2020-10-27 14:58:28 +03:00
|
|
|
}
|
|
|
|
}
|
2020-10-27 14:15:57 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 09:57:05 +03:00
|
|
|
void ObjectFile::write_symtab(u8 *buf, u64 symtab_off, u64 strtab_off,
|
|
|
|
u32 start, u32 end) {
|
2020-10-29 16:32:55 +03:00
|
|
|
u8 *symtab = buf + out::symtab->shdr.sh_offset;
|
|
|
|
u8 *strtab = buf + out::strtab->shdr.sh_offset;
|
2020-10-27 15:38:52 +03:00
|
|
|
|
2020-11-03 09:57:05 +03:00
|
|
|
for (int i = start; i < end; i++) {
|
2020-11-03 09:43:23 +03:00
|
|
|
Symbol &sym = *symbols[i];
|
2020-11-03 09:57:05 +03:00
|
|
|
if (sym.type == STT_SECTION || sym.file != this)
|
2020-10-27 16:22:07 +03:00
|
|
|
continue;
|
|
|
|
|
2020-11-03 09:43:23 +03:00
|
|
|
auto &esym = *(ELF64LE::Sym *)(symtab + symtab_off);
|
|
|
|
esym.st_name = strtab_off;
|
2020-11-03 16:11:38 +03:00
|
|
|
esym.st_value = sym.addr;
|
2020-11-03 09:43:23 +03:00
|
|
|
esym.st_size = elf_syms[i].st_size;
|
|
|
|
esym.st_info = elf_syms[i].st_info;
|
2020-11-04 08:03:01 +03:00
|
|
|
|
|
|
|
if (sym.input_section)
|
|
|
|
esym.st_shndx = sym.input_section->output_section->shndx;
|
2020-11-04 08:41:40 +03:00
|
|
|
else if (sym.shndx)
|
|
|
|
esym.st_shndx = sym.shndx;
|
2020-11-04 08:03:01 +03:00
|
|
|
else
|
|
|
|
esym.st_shndx = SHN_ABS;
|
2020-11-03 09:43:23 +03:00
|
|
|
|
2020-10-27 15:38:52 +03:00
|
|
|
symtab_off += sizeof(ELF64LE::Sym);
|
|
|
|
|
2020-11-03 09:52:26 +03:00
|
|
|
memcpy(strtab + strtab_off, sym.name.data(), sym.name.size());
|
|
|
|
strtab_off += sym.name.size() + 1;
|
2020-10-27 15:38:52 +03:00
|
|
|
}
|
2020-10-27 15:45:19 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 09:57:05 +03:00
|
|
|
void ObjectFile::write_local_symtab(u8 *buf, u64 symtab_off, u64 strtab_off) {
|
|
|
|
write_symtab(buf, symtab_off, strtab_off, 1, first_global);
|
|
|
|
}
|
2020-10-27 15:38:52 +03:00
|
|
|
|
2020-11-03 09:57:05 +03:00
|
|
|
void ObjectFile::write_global_symtab(u8 *buf, u64 symtab_off, u64 strtab_off) {
|
|
|
|
write_symtab(buf, symtab_off, strtab_off, first_global, elf_syms.size());
|
2020-10-27 15:38:52 +03:00
|
|
|
}
|
|
|
|
|
2020-11-04 04:43:05 +03:00
|
|
|
bool is_c_identifier(StringRef name) {
|
2020-11-04 04:39:17 +03:00
|
|
|
if (name == "")
|
|
|
|
return false;
|
|
|
|
if (!isalpha(name[0]) && name[0] != '_')
|
|
|
|
return false;
|
|
|
|
for (int i = 1; i < name.size(); i++)
|
|
|
|
if (!isalnum(name[i]) && name[i] != '_')
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectFile *ObjectFile::create_internal_file(ArrayRef<OutputChunk *> output_chunks) {
|
2020-11-03 13:33:46 +03:00
|
|
|
// Create a dummy object file.
|
|
|
|
constexpr int bufsz = 256;
|
|
|
|
char *buf = new char[bufsz];
|
|
|
|
std::unique_ptr<MemoryBuffer> mb =
|
|
|
|
MemoryBuffer::getMemBuffer(StringRef(buf, bufsz));
|
|
|
|
|
|
|
|
auto *obj = new ObjectFile(mb->getMemBufferRef(), "");
|
|
|
|
obj->name = "<internal>";
|
|
|
|
mb.release();
|
|
|
|
|
|
|
|
// Create linker-synthesized symbols.
|
2020-11-04 01:12:13 +03:00
|
|
|
auto *elf_syms = new std::vector<ELF64LE::Sym>(1);
|
2020-11-04 01:16:59 +03:00
|
|
|
obj->symbols.push_back(new Symbol(""));
|
2020-11-05 02:23:11 +03:00
|
|
|
obj->is_alive = true;
|
2020-11-03 13:33:46 +03:00
|
|
|
|
2020-11-04 01:19:27 +03:00
|
|
|
auto add = [&](StringRef name, u8 binding) {
|
2020-11-03 13:33:46 +03:00
|
|
|
Symbol *sym = Symbol::intern(name);
|
|
|
|
sym->file = obj;
|
|
|
|
obj->symbols.push_back(sym);
|
|
|
|
|
|
|
|
ELF64LE::Sym esym = {};
|
|
|
|
esym.setType(STT_NOTYPE);
|
2020-11-04 01:19:27 +03:00
|
|
|
esym.setBinding(binding);
|
2020-11-03 13:33:46 +03:00
|
|
|
elf_syms->push_back(esym);
|
|
|
|
return sym;
|
|
|
|
};
|
|
|
|
|
2020-11-06 04:36:44 +03:00
|
|
|
// Add local symbols
|
2020-11-04 01:19:27 +03:00
|
|
|
out::__ehdr_start = add("__ehdr_start", STB_LOCAL);
|
|
|
|
out::__rela_iplt_start = add("__rela_iplt_start", STB_LOCAL);
|
|
|
|
out::__rela_iplt_end = add("__rela_iplt_end", STB_LOCAL);
|
|
|
|
out::__init_array_start = add("__init_array_start", STB_LOCAL);
|
|
|
|
out::__init_array_end = add("__init_array_end", STB_LOCAL);
|
|
|
|
out::__fini_array_start = add("__fini_array_start", STB_LOCAL);
|
|
|
|
out::__fini_array_end = add("__fini_array_end", STB_LOCAL);
|
2020-11-04 01:27:27 +03:00
|
|
|
out::__preinit_array_start = add("__preinit_array_start", STB_LOCAL);
|
|
|
|
out::__preinit_array_end = add("__preinit_array_end", STB_LOCAL);
|
2020-11-06 04:11:19 +03:00
|
|
|
|
2020-11-06 04:36:44 +03:00
|
|
|
// Update metadata
|
|
|
|
for (Symbol *sym : obj->symbols)
|
|
|
|
obj->local_strtab_size += sym->name.size() + 1;
|
|
|
|
obj->local_symtab_size = sizeof(ELF64LE::Sym) * obj->symbols.size();
|
|
|
|
obj->first_global = obj->symbols.size();
|
|
|
|
|
|
|
|
// Add global symbols
|
2020-11-06 04:11:19 +03:00
|
|
|
out::__bss_start = add("__bss_start", STB_GLOBAL);
|
2020-11-04 07:17:05 +03:00
|
|
|
out::_end = add("_end", STB_GLOBAL);
|
|
|
|
out::_etext = add("_etext", STB_GLOBAL);
|
|
|
|
out::_edata = add("_edata", STB_GLOBAL);
|
|
|
|
|
|
|
|
if (!Symbol::intern("end")->file)
|
|
|
|
out::end = add("end", STB_GLOBAL);
|
|
|
|
if (!Symbol::intern("etext")->file)
|
|
|
|
out::etext = add("etext", STB_GLOBAL);
|
|
|
|
if (!Symbol::intern("edata")->file)
|
|
|
|
out::edata = add("edata", STB_GLOBAL);
|
2020-11-04 01:16:59 +03:00
|
|
|
|
2020-11-04 04:39:17 +03:00
|
|
|
for (OutputChunk *chunk : output_chunks) {
|
2020-11-04 04:43:05 +03:00
|
|
|
if (!is_c_identifier(chunk->name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto *start = new std::string(("__start_" + chunk->name).str());
|
|
|
|
auto *stop = new std::string(("__stop_" + chunk->name).str());
|
|
|
|
add(*start, STB_GLOBAL);
|
|
|
|
add(*stop, STB_GLOBAL);
|
2020-11-04 04:39:17 +03:00
|
|
|
}
|
|
|
|
|
2020-11-04 01:16:59 +03:00
|
|
|
obj->elf_syms = *elf_syms;
|
2020-11-03 13:33:46 +03:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2020-10-09 14:47:45 +03:00
|
|
|
std::string toString(ObjectFile *obj) {
|
2020-11-01 07:54:56 +03:00
|
|
|
StringRef s = obj->name;
|
2020-10-14 13:04:36 +03:00
|
|
|
if (obj->archive_name == "")
|
|
|
|
return s.str();
|
|
|
|
return (obj->archive_name + ":" + s).str();
|
2020-10-09 14:47:45 +03:00
|
|
|
}
|