1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00
mold/main.cc
Rui Ueyama 439ace2597 wip
2021-03-01 16:24:54 +09:00

1113 lines
32 KiB
C++

#include "mold.h"
#include <functional>
#include <map>
#include <signal.h>
#include <tbb/global_control.h>
#include <tbb/parallel_do.h>
#include <tbb/parallel_for_each.h>
#include <tbb/task_group.h>
#include <unordered_set>
static tbb::task_group parser_tg;
static bool preloading;
static bool is_text_file(MemoryMappedFile *mb) {
return mb->size() >= 4 &&
isprint(mb->data()[0]) &&
isprint(mb->data()[1]) &&
isprint(mb->data()[2]) &&
isprint(mb->data()[3]);
}
enum class FileType { UNKNOWN, OBJ, DSO, AR, THIN_AR, TEXT };
static FileType get_file_type(MemoryMappedFile *mb) {
if (mb->size() >= 20 && memcmp(mb->data(), "\177ELF", 4) == 0) {
ElfEhdr &ehdr = *(ElfEhdr *)mb->data();
if (ehdr.e_type == ET_REL)
return FileType::OBJ;
if (ehdr.e_type == ET_DYN)
return FileType::DSO;
return FileType::UNKNOWN;
}
if (mb->size() >= 8 && memcmp(mb->data(), "!<arch>\n", 8) == 0)
return FileType::AR;
if (mb->size() >= 8 && memcmp(mb->data(), "!<thin>\n", 8) == 0)
return FileType::THIN_AR;
if (is_text_file(mb))
return FileType::TEXT;
return FileType::UNKNOWN;
}
static ObjectFile *new_object_file(MemoryMappedFile *mb,
std::string archive_name,
ReadContext &ctx) {
bool in_lib = (!archive_name.empty() && !ctx.whole_archive);
ObjectFile *file = new ObjectFile(mb, archive_name, in_lib);
parser_tg.run([=]() { file->parse(); });
return file;
}
static SharedFile *new_shared_file(MemoryMappedFile *mb, bool as_needed) {
SharedFile *file = new SharedFile(mb, as_needed);
parser_tg.run([=]() { file->parse(); });
return file;
}
template <typename T>
class FileCache {
public:
void store(MemoryMappedFile *mb, T *obj) {
Key k(mb->name, mb->size(), mb->mtime);
cache[k].push_back(obj);
}
std::vector<T *> get(MemoryMappedFile *mb) {
Key k(mb->name, mb->size(), mb->mtime);
std::vector<T *> objs = cache[k];
cache[k].clear();
return objs;
}
T *get_one(MemoryMappedFile *mb) {
std::vector<T *> objs = get(mb);
return objs.empty() ? nullptr : objs[0];
}
private:
typedef std::tuple<std::string, i64, i64> Key;
std::map<Key, std::vector<T *>> cache;
};
void read_file(MemoryMappedFile *mb, ReadContext &ctx) {
static FileCache<ObjectFile> obj_cache;
static FileCache<SharedFile> dso_cache;
if (preloading) {
switch (get_file_type(mb)) {
case FileType::OBJ:
obj_cache.store(mb, new_object_file(mb, "", ctx));
return;
case FileType::DSO:
dso_cache.store(mb, new_shared_file(mb, ctx.as_needed));
return;
case FileType::AR:
for (MemoryMappedFile *child : read_fat_archive_members(mb))
obj_cache.store(mb, new_object_file(child, mb->name, ctx));
return;
case FileType::THIN_AR:
for (MemoryMappedFile *child : read_thin_archive_members(mb))
obj_cache.store(child, new_object_file(child, mb->name, ctx));
return;
case FileType::TEXT:
parse_linker_script(mb, ctx);
return;
}
Fatal() << mb->name << ": unknown file type";
}
switch (get_file_type(mb)) {
case FileType::OBJ:
if (ObjectFile *obj = obj_cache.get_one(mb))
out::objs.push_back(obj);
else
out::objs.push_back(new_object_file(mb, "", ctx));
return;
case FileType::DSO:
if (SharedFile *obj = dso_cache.get_one(mb))
out::dsos.push_back(obj);
else
out::dsos.push_back(new_shared_file(mb, ctx.as_needed));
return;
case FileType::AR:
if (std::vector<ObjectFile *> objs = obj_cache.get(mb); !objs.empty()) {
append(out::objs, objs);
} else {
for (MemoryMappedFile *child : read_archive_members(mb))
out::objs.push_back(new_object_file(child, mb->name, ctx));
}
return;
case FileType::THIN_AR:
for (MemoryMappedFile *child : read_thin_archive_members(mb)) {
if (ObjectFile *obj = obj_cache.get_one(child))
out::objs.push_back(obj);
else
out::objs.push_back(new_object_file(child, mb->name, ctx));
}
return;
case FileType::TEXT:
parse_linker_script(mb, ctx);
return;
}
Fatal() << mb->name << ": unknown file type";
}
template <typename T>
static std::vector<std::span<T>> split(std::vector<T> &input, i64 unit) {
assert(input.size() > 0);
std::span<T> span(input);
std::vector<std::span<T>> vec;
while (span.size() >= unit) {
vec.push_back(span.subspan(0, unit));
span = span.subspan(unit);
}
if (!span.empty())
vec.push_back(span);
return vec;
}
static void resolve_symbols() {
Timer t("resolve_symbols");
// Register defined symbols
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->resolve_symbols();
});
tbb::parallel_for_each(out::dsos, [](SharedFile *file) {
file->resolve_symbols();
});
// Mark reachable objects and DSOs to decide which files to include
// into an output.
std::vector<ObjectFile *> roots;
for (ObjectFile *file : out::objs)
if (file->is_alive)
roots.push_back(file);
for (std::string_view name : config.undefined)
if (InputFile *file = Symbol::intern(name)->file)
if (!file->is_alive.exchange(true) && !file->is_dso)
roots.push_back((ObjectFile *)file);
tbb::parallel_do(roots,
[&](ObjectFile *file,
tbb::parallel_do_feeder<ObjectFile *> &feeder) {
file->mark_live_objects(
[&](ObjectFile *obj) { feeder.add(obj); });
});
// Eliminate unused archive members and as-needed DSOs.
erase(out::objs, [](InputFile *file) { return !file->is_alive; });
erase(out::dsos, [](InputFile *file) { return !file->is_alive; });
}
static void eliminate_comdats() {
Timer t("comdat");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->resolve_comdat_groups();
});
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->eliminate_duplicate_comdat_groups();
});
}
static void handle_mergeable_strings() {
Timer t("resolve_strings");
// Resolve mergeable string fragments
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
for (MergeableSection *isec : file->mergeable_sections) {
for (SectionFragment *frag : isec->fragments) {
if (!frag->is_alive)
continue;
MergeableSection *cur = frag->isec;
while (!cur || cur->file->priority > isec->file->priority)
if (frag->isec.compare_exchange_weak(cur, isec))
break;
}
}
});
// Calculate the total bytes of mergeable strings for each input section.
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
for (MergeableSection *isec : file->mergeable_sections) {
i64 offset = 0;
for (SectionFragment *frag : isec->fragments) {
if (frag->isec == isec && frag->offset == -1) {
offset = align_to(offset, frag->alignment);
frag->offset = offset;
offset += frag->data.size();
}
}
isec->size = offset;
}
});
// Assign each mergeable input section a unique index.
for (ObjectFile *file : out::objs) {
for (MergeableSection *isec : file->mergeable_sections) {
i64 offset = isec->parent.shdr.sh_size;
i64 alignment = isec->shdr->sh_addralign;
isec->padding = align_to(offset, alignment) - offset;
isec->offset = offset + isec->padding;
isec->parent.shdr.sh_size = offset + isec->padding + isec->size;
isec->parent.shdr.sh_addralign =
std::max(isec->parent.shdr.sh_addralign, isec->shdr->sh_addralign);
}
}
}
// So far, each input section has a pointer to its corresponding
// output section, but there's no reverse edge to get a list of
// input sections from an output section. This function creates it.
//
// An output section may contain millions of input sections.
// So, we append input sections to output sections in parallel.
static void bin_sections() {
Timer t("bin_sections");
i64 unit = (out::objs.size() + 127) / 128;
std::vector<std::span<ObjectFile *>> slices = split(out::objs, unit);
i64 num_osec = OutputSection::instances.size();
std::vector<std::vector<std::vector<InputSection *>>> groups(slices.size());
for (i64 i = 0; i < groups.size(); i++)
groups[i].resize(num_osec);
tbb::parallel_for((i64)0, (i64)slices.size(), [&](i64 i) {
for (ObjectFile *file : slices[i])
for (InputSection *isec : file->sections)
if (isec)
groups[i][isec->output_section->idx].push_back(isec);
});
std::vector<i64> sizes(num_osec);
for (std::span<std::vector<InputSection *>> group : groups)
for (i64 i = 0; i < group.size(); i++)
sizes[i] += group[i].size();
tbb::parallel_for((i64)0, num_osec, [&](i64 j) {
OutputSection::instances[j]->members.reserve(sizes[j]);
for (i64 i = 0; i < groups.size(); i++)
append(OutputSection::instances[j]->members, groups[i][j]);
});
}
static void check_duplicate_symbols() {
Timer t("check_dup_syms");
tbb::parallel_for_each(out::objs, [&](ObjectFile *file) {
for (i64 i = file->first_global; i < file->elf_syms.size(); i++) {
const ElfSym &esym = file->elf_syms[i];
Symbol &sym = *file->symbols[i];
bool is_weak = (esym.st_bind == STB_WEAK);
bool is_eliminated =
!esym.is_abs() && !esym.is_common() && !file->sections[esym.st_shndx];
if (esym.is_defined() && !is_weak && !is_eliminated && sym.file != file)
Error() << "duplicate symbol: " << *file << ": " << *sym.file
<< ": " << sym;
}
});
Error::checkpoint();
}
static void set_isec_offsets() {
Timer t("isec_offsets");
tbb::parallel_for_each(OutputSection::instances, [&](OutputSection *osec) {
if (osec->members.empty())
return;
std::vector<std::span<InputSection *>> slices = split(osec->members, 10000);
std::vector<i64> size(slices.size());
std::vector<i64> alignments(slices.size());
tbb::parallel_for((i64)0, (i64)slices.size(), [&](i64 i) {
i64 off = 0;
i64 align = 1;
for (InputChunk *isec : slices[i]) {
off = align_to(off, isec->shdr->sh_addralign);
isec->offset = off;
off += isec->shdr->sh_size;
align = std::max<i64>(align, isec->shdr->sh_addralign);
}
size[i] = off;
alignments[i] = align;
});
i64 align = *std::max_element(alignments.begin(), alignments.end());
std::vector<i64> start(slices.size());
for (i64 i = 1; i < slices.size(); i++)
start[i] = align_to(start[i - 1] + size[i - 1], align);
tbb::parallel_for((i64)1, (i64)slices.size(), [&](i64 i) {
for (InputChunk *isec : slices[i])
isec->offset += start[i];
});
osec->shdr.sh_size = start.back() + size.back();
osec->shdr.sh_addralign = align;
});
}
static void export_dynamic() {
if (config.export_dynamic || config.shared) {
Timer t("export_dynamic");
tbb::parallel_for((i64)0, (i64)out::objs.size(), [&](i64 i) {
ObjectFile *file = out::objs[i];
for (Symbol *sym : std::span(file->symbols).subspan(file->first_global))
if (sym->file == file && sym->esym->st_visibility == STV_DEFAULT)
sym->flags |= NEEDS_DYNSYM;
});
}
}
static void scan_rels() {
Timer t("scan_rels");
// Scan relocations to find dynamic symbols.
tbb::parallel_for_each(out::objs, [&](ObjectFile *file) {
file->scan_relocations();
});
// Exit if there was a relocation that refers an undefined symbol.
Error::checkpoint();
// Export symbols referenced by DSOs.
tbb::parallel_for_each(out::dsos, [&](SharedFile *file) {
for (Symbol *sym : file->undefs)
if (sym->file && !sym->file->is_dso)
sym->flags |= NEEDS_DYNSYM;
});
// Aggregate dynamic symbols to a single vector.
std::vector<InputFile *> files;
append(files, out::objs);
append(files, out::dsos);
std::vector<std::vector<Symbol *>> vec(files.size());
tbb::parallel_for((i64)0, (i64)files.size(), [&](i64 i) {
for (Symbol *sym : files[i]->symbols)
if (sym->flags && sym->file == files[i])
vec[i].push_back(sym);
});
// Assign offsets in additional tables for each dynamic symbol.
for (Symbol *sym : flatten(vec)) {
if (sym->is_imported() || (sym->flags & NEEDS_DYNSYM))
out::dynsym->add_symbol(sym);
if (sym->flags & NEEDS_GOT)
out::got->add_got_symbol(sym);
if (sym->flags & NEEDS_PLT) {
if (sym->flags & NEEDS_GOT)
out::pltgot->add_symbol(sym);
else
out::plt->add_symbol(sym);
}
if (sym->flags & NEEDS_GOTTPOFF)
out::got->add_gottpoff_symbol(sym);
if (sym->flags & NEEDS_TLSGD)
out::got->add_tlsgd_symbol(sym);
if (sym->flags & NEEDS_TLSLD)
out::got->add_tlsld();
if (sym->flags & NEEDS_COPYREL) {
assert(sym->file->is_dso);
SharedFile *file = (SharedFile *)sym->file;
sym->is_readonly = file->is_readonly(sym);
if (sym->is_readonly)
out::copyrel_relro->add_symbol(sym);
else
out::copyrel->add_symbol(sym);
for (Symbol *alias : file->find_aliases(sym)) {
alias->has_copyrel = true;
alias->value = sym->value;
alias->is_readonly = sym->is_readonly;
out::dynsym->add_symbol(alias);
}
}
}
}
static void fill_symbol_versions() {
Timer t("fill_symbol_versions");
// Create a list of versioned symbols and sort by file and version.
std::vector<Symbol *> syms(out::dynsym->symbols.begin() + 1,
out::dynsym->symbols.end());
erase(syms, [](Symbol *sym){ return sym->ver_idx < 2; });
if (syms.empty())
return;
sort(syms, [](Symbol *a, Symbol *b) {
return std::tuple(((SharedFile *)a->file)->soname, a->ver_idx) <
std::tuple(((SharedFile *)b->file)->soname, b->ver_idx);
});
// Compute sizes of .gnu.version and .gnu.version_r sections.
out::versym->contents.resize(out::dynsym->symbols.size(), 1);
out::versym->contents[0] = 0;
i64 sz = sizeof(ElfVerneed) + sizeof(ElfVernaux);
for (i64 i = 1; i < syms.size(); i++) {
if (syms[i - 1]->file != syms[i]->file)
sz += sizeof(ElfVerneed) + sizeof(ElfVernaux);
else if (syms[i - 1]->ver_idx != syms[i]->ver_idx)
sz += sizeof(ElfVernaux);
}
out::verneed->contents.resize(sz);
// Fill .gnu.versoin_r.
u8 *buf = (u8 *)&out::verneed->contents[0];
u16 version = 1;
ElfVerneed *verneed = nullptr;
ElfVernaux *aux = nullptr;
auto add_aux = [&](Symbol *sym) {
SharedFile *file = (SharedFile *)sym->file;
std::string_view verstr = file->version_strings[sym->ver_idx];
verneed->vn_cnt++;
if (aux)
aux->vna_next = sizeof(ElfVernaux);
aux = (ElfVernaux *)buf;
buf += sizeof(*aux);
aux->vna_hash = elf_hash(verstr);
aux->vna_other = ++version;
aux->vna_name = out::dynstr->add_string(verstr);
};
auto add_verneed = [&](Symbol *sym) {
SharedFile *file = (SharedFile *)sym->file;
out::verneed->shdr.sh_info++;
if (verneed)
verneed->vn_next = buf - (u8 *)verneed;
verneed = (ElfVerneed *)buf;
buf += sizeof(*verneed);
verneed->vn_version = 1;
verneed->vn_file = out::dynstr->find_string(file->soname);
verneed->vn_aux = sizeof(ElfVerneed);
aux = nullptr;
add_aux(sym);
};
add_verneed(syms[0]);
out::versym->contents[syms[0]->dynsym_idx] = version;
for (i64 i = 1; i < syms.size(); i++) {
if (syms[i - 1]->file != syms[i]->file)
add_verneed(syms[i]);
else if (syms[i - 1]->ver_idx != syms[i]->ver_idx)
add_aux(syms[i]);
out::versym->contents[syms[i]->dynsym_idx] = version;
}
}
static void clear_padding(i64 filesize) {
Timer t("clear_padding");
auto zero = [](OutputChunk *chunk, i64 next_start) {
i64 pos = chunk->shdr.sh_offset;
if (chunk->shdr.sh_type != SHT_NOBITS)
pos += chunk->shdr.sh_size;
memset(out::buf + pos, 0, next_start - pos);
};
for (i64 i = 1; i < out::chunks.size(); i++)
zero(out::chunks[i - 1], out::chunks[i]->shdr.sh_offset);
zero(out::chunks.back(), filesize);
}
// We want to sort output sections in the following order.
//
// note
// alloc readonly data
// alloc readonly code
// alloc writable tdata
// alloc writable tbss
// alloc writable data
// alloc writable bss
// nonalloc
static i64 get_section_rank(const ElfShdr &shdr) {
bool note = shdr.sh_type == SHT_NOTE;
bool alloc = shdr.sh_flags & SHF_ALLOC;
bool writable = shdr.sh_flags & SHF_WRITE;
bool exec = shdr.sh_flags & SHF_EXECINSTR;
bool tls = shdr.sh_flags & SHF_TLS;
bool nobits = shdr.sh_type == SHT_NOBITS;
return (!note << 6) | (!alloc << 5) | (writable << 4) |
(exec << 3) | (!tls << 2) | nobits;
}
static i64 set_osec_offsets(std::span<OutputChunk *> chunks) {
Timer t("osec_offset");
i64 fileoff = 0;
i64 vaddr = config.image_base;
for (OutputChunk *chunk : chunks) {
if (chunk->starts_new_ptload)
vaddr = align_to(vaddr, PAGE_SIZE);
if (vaddr % PAGE_SIZE > fileoff % PAGE_SIZE)
fileoff += vaddr % PAGE_SIZE - fileoff % PAGE_SIZE;
else if (vaddr % PAGE_SIZE < fileoff % PAGE_SIZE)
fileoff = align_to(fileoff, PAGE_SIZE) + vaddr % PAGE_SIZE;
fileoff = align_to(fileoff, chunk->shdr.sh_addralign);
vaddr = align_to(vaddr, chunk->shdr.sh_addralign);
chunk->shdr.sh_offset = fileoff;
if (chunk->shdr.sh_flags & SHF_ALLOC)
chunk->shdr.sh_addr = vaddr;
bool is_bss = chunk->shdr.sh_type == SHT_NOBITS;
if (!is_bss)
fileoff += chunk->shdr.sh_size;
bool is_tbss = is_bss && (chunk->shdr.sh_flags & SHF_TLS);
if (!is_tbss)
vaddr += chunk->shdr.sh_size;
}
return fileoff;
}
static void fix_synthetic_symbols(std::span<OutputChunk *> chunks) {
auto start = [](Symbol *sym, OutputChunk *chunk) {
if (sym && chunk) {
sym->shndx = chunk->shndx;
sym->value = chunk->shdr.sh_addr;
}
};
auto stop = [](Symbol *sym, OutputChunk *chunk) {
if (sym && chunk) {
sym->shndx = chunk->shndx;
sym->value = chunk->shdr.sh_addr + chunk->shdr.sh_size;
}
};
// __bss_start
for (OutputChunk *chunk : chunks) {
if (chunk->kind == OutputChunk::REGULAR && chunk->name == ".bss") {
start(out::__bss_start, chunk);
break;
}
}
// __ehdr_start
for (OutputChunk *chunk : chunks) {
if (chunk->shndx == 1) {
out::__ehdr_start->shndx = 1;
out::__ehdr_start->value = out::ehdr->shdr.sh_addr;
break;
}
}
// __rela_iplt_start and __rela_iplt_end
start(out::__rela_iplt_start, out::relplt);
stop(out::__rela_iplt_end, out::relplt);
// __{init,fini}_array_{start,end}
for (OutputChunk *chunk : chunks) {
switch (chunk->shdr.sh_type) {
case SHT_INIT_ARRAY:
start(out::__init_array_start, chunk);
stop(out::__init_array_end, chunk);
break;
case SHT_FINI_ARRAY:
start(out::__fini_array_start, chunk);
stop(out::__fini_array_end, chunk);
break;
}
}
// _end, end, _etext, etext, _edata and edata
for (OutputChunk *chunk : chunks) {
if (chunk->kind == OutputChunk::HEADER)
continue;
if (chunk->shdr.sh_flags & SHF_ALLOC)
stop(out::_end, chunk);
if (chunk->shdr.sh_flags & SHF_EXECINSTR)
stop(out::_etext, chunk);
if (chunk->shdr.sh_type != SHT_NOBITS && chunk->shdr.sh_flags & SHF_ALLOC)
stop(out::_edata, chunk);
}
// _DYNAMIC
start(out::_DYNAMIC, out::dynamic);
// _GLOBAL_OFFSET_TABLE_
start(out::_GLOBAL_OFFSET_TABLE_, out::gotplt);
// __GNU_EH_FRAME_HDR
start(out::__GNU_EH_FRAME_HDR, out::eh_frame_hdr);
// __start_ and __stop_ symbols
for (OutputChunk *chunk : chunks) {
if (is_c_identifier(chunk->name)) {
start(Symbol::intern_alloc("__start_" + std::string(chunk->name)), chunk);
stop(Symbol::intern_alloc("__stop_" + std::string(chunk->name)), chunk);
}
}
}
void cleanup() {
if (OutputFile::tmpfile)
unlink(OutputFile::tmpfile);
if (socket_tmpfile)
unlink(socket_tmpfile);
}
static void signal_handler(int) {
cleanup();
_exit(1);
}
MemoryMappedFile *find_library(std::string name,
std::span<std::string_view> lib_paths) {
for (std::string_view dir : lib_paths) {
std::string root = dir.starts_with("/") ? config.sysroot : "";
std::string stem = root + std::string(dir) + "/lib" + name;
if (!config.is_static)
if (MemoryMappedFile *mb = MemoryMappedFile::open(stem + ".so"))
return mb;
if (MemoryMappedFile *mb = MemoryMappedFile::open(stem + ".a"))
return mb;
}
Fatal() << "library not found: " << name;
}
static void read_input_files(std::span<std::string_view> args) {
ReadContext ctx;
while (!args.empty()) {
std::string_view arg;
if (read_flag(args, "as-needed")) {
ctx.as_needed = true;
} else if (read_flag(args, "no-as-needed")) {
ctx.as_needed = false;
} else if (read_flag(args, "whole-archive")) {
ctx.whole_archive = true;
} else if (read_flag(args, "no-whole-archive")) {
ctx.whole_archive = false;
} else if (read_arg(args, arg, "l")) {
read_file(find_library(std::string(arg), config.library_paths), ctx);
} else {
read_file(MemoryMappedFile::must_open(std::string(args[0])), ctx);
args = args.subspan(1);
}
}
parser_tg.wait();
}
static void show_stats() {
for (ObjectFile *obj : out::objs) {
static Counter defined("defined_syms");
defined += obj->first_global - 1;
static Counter undefined("undefined_syms");
undefined += obj->symbols.size() - obj->first_global;
}
Counter num_input_sections("input_sections");
for (ObjectFile *file : out::objs)
num_input_sections += file->sections.size();
Counter num_output_chunks("output_out::chunks", out::chunks.size());
Counter num_objs("num_objs", out::objs.size());
Counter num_dsos("num_dsos", out::dsos.size());
Counter::print();
}
int main(int argc, char **argv) {
Timer t_all("all");
// Parse non-positional command line options
std::vector<std::string_view> arg_vector = expand_response_files(argv + 1);
std::vector<std::string_view> file_args;
config = parse_nonpositional_args(arg_vector, file_args);
if (config.output == "")
Fatal() << "-o option is missing";
if (!config.preload)
if (i64 code; resume_daemon(argv, &code))
exit(code);
tbb::global_control tbb_cont(tbb::global_control::max_allowed_parallelism,
config.thread_count);
signal(SIGINT, signal_handler);
signal(SIGTERM, signal_handler);
// Preload input files
std::function<void()> on_complete;
if (config.preload) {
std::function<void()> wait_for_client;
daemonize(argv, &wait_for_client, &on_complete);
preloading = true;
read_input_files(file_args);
wait_for_client();
} else if (config.fork) {
on_complete = fork_child();
}
if (config.pic)
config.image_base = 0;
for (std::string_view arg : config.trace_symbol)
Symbol::intern(arg)->traced = true;
for (std::string_view arg : config.version_script)
parse_version_script(std::string(arg));
// Parse input files
{
Timer t("parse");
preloading = false;
read_input_files(file_args);
}
// Uniquify shared object files with soname
{
std::vector<SharedFile *> vec;
std::unordered_set<std::string_view> seen;
for (SharedFile *file : out::dsos)
if (seen.insert(file->soname).second)
vec.push_back(file);
out::dsos = vec;
}
Timer t_total("total");
Timer t_before_copy("before_copy");
out::ehdr = new OutputEhdr;
out::shdr = new OutputShdr;
out::phdr = new OutputPhdr;
out::got = new GotSection;
out::gotplt = new GotPltSection;
out::relplt = new RelPltSection;
out::strtab = new StrtabSection;
out::shstrtab = new ShstrtabSection;
out::plt = new PltSection;
out::pltgot = new PltGotSection;
if (!config.strip_all)
out::symtab = new SymtabSection;
out::dynsym = new DynsymSection;
out::dynstr = new DynstrSection;
out::eh_frame = new EhFrameSection;
out::copyrel = new CopyrelSection(".bss");
out::copyrel_relro = new CopyrelSection(".bss.rel.ro");
if (config.build_id != BuildIdKind::NONE)
out::buildid = new BuildIdSection;
if (config.eh_frame_hdr)
out::eh_frame_hdr = new EhFrameHdrSection;
if (config.hash_style_sysv)
out::hash = new HashSection;
if (config.hash_style_gnu)
out::gnu_hash = new GnuHashSection;
if (!config.is_static) {
out::interp = new InterpSection;
out::dynamic = new DynamicSection;
out::reldyn = new RelDynSection;
out::versym = new VersymSection;
out::verneed = new VerneedSection;
}
out::chunks.push_back(out::got);
out::chunks.push_back(out::plt);
out::chunks.push_back(out::gotplt);
out::chunks.push_back(out::pltgot);
out::chunks.push_back(out::relplt);
out::chunks.push_back(out::reldyn);
out::chunks.push_back(out::dynamic);
out::chunks.push_back(out::dynsym);
out::chunks.push_back(out::dynstr);
out::chunks.push_back(out::shstrtab);
out::chunks.push_back(out::symtab);
out::chunks.push_back(out::strtab);
out::chunks.push_back(out::hash);
out::chunks.push_back(out::gnu_hash);
out::chunks.push_back(out::eh_frame_hdr);
out::chunks.push_back(out::eh_frame);
out::chunks.push_back(out::copyrel);
out::chunks.push_back(out::copyrel_relro);
out::chunks.push_back(out::versym);
out::chunks.push_back(out::verneed);
out::chunks.push_back(out::buildid);
// Set priorities to files. File priority 1 is reserved for the internal file.
i64 priority = 2;
for (ObjectFile *file : out::objs)
if (!file->is_in_lib)
file->priority = priority++;
for (ObjectFile *file : out::objs)
if (file->is_in_lib)
file->priority = priority++;
for (SharedFile *file : out::dsos)
file->priority = priority++;
// Resolve symbols and fix the set of object files that are
// included to the final output.
resolve_symbols();
if (config.trace) {
for (ObjectFile *file : out::objs)
SyncOut() << *file;
for (SharedFile *file : out::dsos)
SyncOut() << *file;
}
// Remove redundant comdat sections (e.g. duplicate inline functions).
eliminate_comdats();
// Create .bss sections for common symbols.
{
Timer t("common");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->convert_common_symbols();
});
}
// Garbage-collect unreachable sections.
if (config.gc_sections)
gc_sections();
// Merge identical read-only sections.
if (config.icf)
icf_sections();
// Merge string constants in SHF_MERGE sections.
handle_mergeable_strings();
// Bin input sections into output sections
bin_sections();
// Assign offsets within an output section to input sections.
set_isec_offsets();
// Sections are added to the section lists in an arbitrary order because
// they are created in parallel. Sort them to to make the output deterministic.
auto section_compare = [](OutputChunk *x, OutputChunk *y) {
return std::tuple(x->name, x->shdr.sh_type, x->shdr.sh_flags) <
std::tuple(y->name, y->shdr.sh_type, y->shdr.sh_flags);
};
sort(OutputSection::instances, section_compare);
sort(MergedSection::instances, section_compare);
// Add sections to the section lists
for (OutputSection *osec : OutputSection::instances)
if (osec->shdr.sh_size)
out::chunks.push_back(osec);
for (MergedSection *osec : MergedSection::instances)
if (osec->shdr.sh_size)
out::chunks.push_back(osec);
erase(out::chunks, [](OutputChunk *c) { return !c; });
// Sort the sections by section flags so that we'll have to create
// as few segments as possible.
sort(out::chunks, [](OutputChunk *a, OutputChunk *b) {
return get_section_rank(a->shdr) < get_section_rank(b->shdr);
});
// Create a dummy file containing linker-synthesized symbols
// (e.g. `__bss_start`).
out::internal_obj = new ObjectFile;
out::internal_obj->resolve_symbols();
out::objs.push_back(out::internal_obj);
// Convert weak symbols to absolute symbols with value 0.
{
Timer t("undef_weak");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->handle_undefined_weak_symbols();
});
}
// If we are linking a .so file, remaining undefined symbols does
// not cause a linker error. Instead, they are treated as if they
// were imported symbols.
if (config.shared) {
Timer t("claim_unresolved_symbols");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->claim_unresolved_symbols();
});
}
// Beyond this point, no new symbols will be added to the result.
// Make sure that all symbols have been resolved.
if (!config.allow_multiple_definition)
check_duplicate_symbols();
// Copy shared object name strings to .dynstr.
for (SharedFile *file : out::dsos)
out::dynstr->add_string(file->soname);
// Copy DT_RUNPATH string to .dynstr.
out::dynstr->add_string(config.rpaths);
// Copy DT_SONAME string to .dynstr.
if (!config.soname.empty())
out::dynstr->add_string(config.soname);
// Add headers and sections that have to be at the beginning
// or the ending of a file.
out::chunks.insert(out::chunks.begin(), out::ehdr);
out::chunks.insert(out::chunks.begin() + 1, out::phdr);
if (out::interp)
out::chunks.insert(out::chunks.begin() + 2, out::interp);
out::chunks.push_back(out::shdr);
// Put symbols to .dynsym.
export_dynamic();
// Scan relocations to find symbols that need entries in .got, .plt,
// .got.plt, .dynsym, .dynstr, etc.
scan_rels();
// Sort .dynsym contents. Beyond this point, no symbol should be
// added to .dynsym.
out::dynsym->sort_symbols();
// Fill .gnu.version and .gnu.version_r section contents.
fill_symbol_versions();
// Compute .symtab and .strtab sizes for each file.
{
Timer t("compute_symtab");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->compute_symtab();
});
}
// .eh_frame is a special section from the linker's point of view,
// as it's contents are parsed, consumed and reconstructed by the
// linker, unlike other sections that consist of just opaque bytes.
// Here, we transplant .eh_frame sections from a regular output
// section to the special EHFrameSection.
{
Timer t("eh_frame");
erase(out::chunks, [](OutputChunk *chunk) {
return chunk->kind == OutputChunk::REGULAR && chunk->name == ".eh_frame";
});
out::eh_frame->construct();
}
// Now that we have computed sizes for all sections and assigned
// section indices to them, so we can fix section header contents
// for all output sections.
for (OutputChunk *chunk : out::chunks)
chunk->update_shdr();
erase(out::chunks, [](OutputChunk *c) { return c->shdr.sh_size == 0; });
// Set section indices.
for (i64 i = 0, shndx = 1; i < out::chunks.size(); i++)
if (out::chunks[i]->kind != OutputChunk::HEADER)
out::chunks[i]->shndx = shndx++;
for (OutputChunk *chunk : out::chunks)
chunk->update_shdr();
// Assign offsets to output sections
i64 filesize = set_osec_offsets(out::chunks);
// At this point, file layout is fixed. Beyond this, you can assume
// that symbol addresses including their GOT/PLT/etc addresses have
// a correct final value.
// Fix linker-synthesized symbol addresses.
fix_synthetic_symbols(out::chunks);
// Some types of relocations for TLS symbols need the TLS segment
// address. Find it out now.
for (ElfPhdr phdr : create_phdr()) {
if (phdr.p_type == PT_TLS) {
out::tls_begin = phdr.p_vaddr;
out::tls_end = align_to(phdr.p_vaddr + phdr.p_memsz, phdr.p_align);
break;
}
}
t_before_copy.stop();
// Create an output file
OutputFile *file = OutputFile::open(config.output, filesize);
out::buf = file->buf;
Timer t_copy("copy");
// Copy input sections to the output file
{
Timer t("copy_buf");
tbb::parallel_for_each(out::chunks, [&](OutputChunk *chunk) {
chunk->copy_buf();
});
Error::checkpoint();
}
// Zero-clear paddings between sections
clear_padding(filesize);
// Commit
if (out::buildid) {
Timer t("build_id");
out::buildid->write_buildid(filesize);
}
file->close();
t_copy.stop();
t_total.stop();
t_all.stop();
if (config.print_map)
print_map();
// Show stats numbers
if (config.print_stats)
show_stats();
if (config.print_perf)
Timer::print();
std::cout << std::flush;
std::cerr << std::flush;
if (on_complete)
on_complete();
if (config.quick_exit)
std::quick_exit(0);
return 0;
}