123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- /*
- * Copyright (c) 2019-2020, Andrew Kaster <akaster@serenityos.org>
- * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/ByteString.h>
- #include <AK/Debug.h>
- #include <AK/StringBuilder.h>
- #include <LibELF/DynamicLoader.h>
- #include <LibELF/DynamicObject.h>
- #include <LibELF/ELFABI.h>
- #include <LibELF/Hashes.h>
- #include <string.h>
- namespace ELF {
- DynamicObject::DynamicObject(ByteString const& filepath, VirtualAddress base_address, VirtualAddress dynamic_section_address)
- : m_filepath(filepath)
- , m_base_address(base_address)
- , m_dynamic_address(dynamic_section_address)
- {
- auto* header = (Elf_Ehdr*)base_address.as_ptr();
- auto* const phdrs = program_headers();
- // Calculate the base address using the PT_LOAD element with the lowest `p_vaddr` (which is the first element)
- for (size_t i = 0; i < program_header_count(); ++i) {
- auto pheader = phdrs[i];
- if (pheader.p_type == PT_LOAD) {
- m_elf_base_address = VirtualAddress { pheader.p_vaddr - pheader.p_offset };
- break;
- }
- if (i == program_header_count() - 1) {
- VERIFY_NOT_REACHED();
- }
- }
- if (header->e_type == ET_DYN)
- m_is_elf_dynamic = true;
- else
- m_is_elf_dynamic = false;
- parse();
- }
- DynamicObject::~DynamicObject()
- {
- // TODO: unmap the object
- }
- void DynamicObject::dump() const
- {
- if constexpr (DYNAMIC_LOAD_DEBUG) {
- StringBuilder builder;
- builder.append("\nd_tag tag_name value\n"sv);
- size_t num_dynamic_sections = 0;
- for_each_dynamic_entry([&](DynamicObject::DynamicEntry const& entry) {
- ByteString name_field = ByteString::formatted("({})", name_for_dtag(entry.tag()));
- builder.appendff("{:#08x} {:17} {:#08x}\n", entry.tag(), name_field, entry.val());
- num_dynamic_sections++;
- });
- if (m_has_soname)
- builder.appendff("DT_SONAME: {}\n", soname()); // FIXME: Validate that this string is null terminated?
- if (m_has_rpath)
- builder.appendff("DT_RPATH: {}\n", rpath());
- if (m_has_runpath)
- builder.appendff("DT_RUNPATH: {}\n", runpath());
- dbgln("Dynamic section at address {} contains {} entries:", m_dynamic_address.as_ptr(), num_dynamic_sections);
- dbgln("{}", builder.string_view());
- }
- }
- void DynamicObject::parse()
- {
- for_each_dynamic_entry([&](DynamicEntry const& entry) {
- switch (entry.tag()) {
- case DT_INIT:
- m_init_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_FINI:
- m_fini_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_INIT_ARRAY:
- m_init_array_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_INIT_ARRAYSZ:
- m_init_array_size = entry.val();
- break;
- case DT_FINI_ARRAY:
- m_fini_array_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_FINI_ARRAYSZ:
- m_fini_array_size = entry.val();
- break;
- case DT_HASH:
- // Use SYSV hash only if GNU hash is not available
- if (m_hash_type == HashType::SYSV) {
- m_hash_table_offset = entry.ptr() - m_elf_base_address.get();
- }
- break;
- case DT_GNU_HASH:
- m_hash_type = HashType::GNU;
- m_hash_table_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_SYMTAB:
- m_symbol_table_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_STRTAB:
- m_string_table_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_STRSZ:
- m_size_of_string_table = entry.val();
- break;
- case DT_SYMENT:
- m_size_of_symbol_table_entry = entry.val();
- break;
- case DT_PLTGOT:
- m_procedure_linkage_table_offset = entry.ptr() - (FlatPtr)m_elf_base_address.as_ptr();
- break;
- case DT_PLTRELSZ:
- m_size_of_plt_relocation_entry_list = entry.val();
- break;
- case DT_PLTREL:
- m_procedure_linkage_table_relocation_type = entry.val();
- VERIFY(m_procedure_linkage_table_relocation_type & (DT_REL | DT_RELA));
- break;
- case DT_JMPREL:
- m_plt_relocation_offset_location = entry.ptr() - (FlatPtr)m_elf_base_address.as_ptr();
- break;
- case DT_RELA:
- m_addend_used = true;
- [[fallthrough]];
- case DT_REL:
- m_relocation_table_offset = entry.ptr() - (FlatPtr)m_elf_base_address.as_ptr();
- break;
- case DT_RELASZ:
- case DT_RELSZ:
- m_size_of_relocation_table = entry.val();
- break;
- case DT_RELAENT:
- case DT_RELENT:
- m_size_of_relocation_entry = entry.val();
- break;
- case DT_RELACOUNT:
- case DT_RELCOUNT:
- m_number_of_relocations = entry.val();
- break;
- case DT_RELR:
- m_relr_relocation_table_offset = entry.ptr() - m_elf_base_address.get();
- break;
- case DT_RELRSZ:
- m_size_of_relr_relocation_table = entry.val();
- break;
- case DT_RELRENT:
- m_size_of_relr_relocations_entry = entry.val();
- break;
- case DT_FLAGS:
- m_dt_flags = entry.val();
- break;
- case DT_TEXTREL:
- m_dt_flags |= DF_TEXTREL; // This tag seems to exist for legacy reasons only?
- break;
- case DT_SONAME:
- m_soname_index = entry.val();
- m_has_soname = true;
- break;
- case DT_BIND_NOW:
- m_dt_flags |= DF_BIND_NOW;
- break;
- case DT_RPATH:
- m_rpath_index = entry.val();
- m_has_rpath = true;
- break;
- case DT_RUNPATH:
- m_runpath_index = entry.val();
- m_has_runpath = true;
- break;
- case DT_DEBUG:
- break;
- case DT_FLAGS_1:
- m_is_pie = true;
- break;
- case DT_NEEDED:
- // We handle these in for_each_needed_library
- break;
- case DT_SYMBOLIC:
- break;
- default:
- dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({}) in {}", name_for_dtag(entry.tag()), entry.tag(), m_filepath);
- break;
- }
- });
- if (!m_size_of_relocation_entry) {
- // TODO: FIXME, this shouldn't be hardcoded
- // The reason we need this here is that for some reason, when there only PLT relocations, the compiler
- // doesn't insert a 'PLTRELSZ' entry to the dynamic section
- m_size_of_relocation_entry = sizeof(Elf_Rel);
- }
- // Whether or not RELASZ (stored in m_size_of_relocation_table) only refers to non-PLT entries is not clearly specified.
- // So check if [JMPREL, JMPREL+PLTRELSZ) is in [RELA, RELA+RELASZ).
- // If so, change the size of the non-PLT relocation table.
- if (m_plt_relocation_offset_location >= m_relocation_table_offset // JMPREL >= RELA
- && m_plt_relocation_offset_location < (m_relocation_table_offset + m_size_of_relocation_table)) { // JMPREL < (RELA + RELASZ)
- // [JMPREL, JMPREL+PLTRELSZ) is in [RELA, RELA+RELASZ)
- // Verify that the ends of the tables match up
- VERIFY(m_plt_relocation_offset_location + m_size_of_plt_relocation_entry_list == m_relocation_table_offset + m_size_of_relocation_table);
- m_size_of_relocation_table -= m_size_of_plt_relocation_entry_list;
- }
- u32 const* hash_table_begin = reinterpret_cast<u32 const*>(hash_section().address().as_ptr());
- if (m_hash_type == HashType::SYSV) {
- u32 n_chain = hash_table_begin[1];
- m_symbol_count = n_chain;
- return;
- }
- // Determine amount of symbols by finding the chain with the highest
- // starting index and walking this chain until the end to find the
- // maximum index = amount of symbols.
- using BloomWord = FlatPtr;
- size_t const num_buckets = hash_table_begin[0];
- size_t const num_omitted_symbols = hash_table_begin[1];
- u32 const num_maskwords = hash_table_begin[2];
- BloomWord const* bloom_words = reinterpret_cast<BloomWord const*>(&hash_table_begin[4]);
- u32 const* const buckets = reinterpret_cast<u32 const*>(&bloom_words[num_maskwords]);
- u32 const* const chains = &buckets[num_buckets];
- size_t highest_chain_idx = 0;
- for (size_t i = 0; i < num_buckets; i++) {
- if (buckets[i] > highest_chain_idx) {
- highest_chain_idx = buckets[i];
- }
- }
- size_t amount_symbols = highest_chain_idx;
- u32 const* last_chain = &chains[highest_chain_idx - num_omitted_symbols];
- while ((*(last_chain++) & 1) == 0) {
- amount_symbols++;
- }
- m_symbol_count = amount_symbols + 1;
- }
- DynamicObject::Relocation DynamicObject::RelocationSection::relocation(unsigned index) const
- {
- VERIFY(index < entry_count());
- unsigned offset_in_section = index * entry_size();
- auto relocation_address = (Elf_Rela*)address().offset(offset_in_section).as_ptr();
- return Relocation(m_dynamic, *relocation_address, offset_in_section, m_addend_used);
- }
- DynamicObject::Relocation DynamicObject::RelocationSection::relocation_at_offset(unsigned offset) const
- {
- VERIFY(offset <= (m_section_size_bytes - m_entry_size));
- auto relocation_address = (Elf_Rela*)address().offset(offset).as_ptr();
- return Relocation(m_dynamic, *relocation_address, offset, m_addend_used);
- }
- DynamicObject::Symbol DynamicObject::symbol(unsigned index) const
- {
- auto symbol_section = Section(*this, m_symbol_table_offset, (m_symbol_count * m_size_of_symbol_table_entry), m_size_of_symbol_table_entry, "DT_SYMTAB"sv);
- auto symbol_entry = (Elf_Sym*)symbol_section.address().offset(index * symbol_section.entry_size()).as_ptr();
- return Symbol(*this, index, *symbol_entry);
- }
- DynamicObject::Section DynamicObject::init_section() const
- {
- return Section(*this, m_init_offset, sizeof(void (*)()), sizeof(void (*)()), "DT_INIT"sv);
- }
- DynamicObject::Section DynamicObject::fini_section() const
- {
- return Section(*this, m_fini_offset, sizeof(void (*)()), sizeof(void (*)()), "DT_FINI"sv);
- }
- DynamicObject::Section DynamicObject::init_array_section() const
- {
- return Section(*this, m_init_array_offset, m_init_array_size, sizeof(void (*)()), "DT_INIT_ARRAY"sv);
- }
- DynamicObject::Section DynamicObject::fini_array_section() const
- {
- return Section(*this, m_fini_array_offset, m_fini_array_size, sizeof(void (*)()), "DT_FINI_ARRAY"sv);
- }
- DynamicObject::RelocationSection DynamicObject::relocation_section() const
- {
- return RelocationSection(Section(*this, m_relocation_table_offset, m_size_of_relocation_table, m_size_of_relocation_entry, "DT_REL"sv), m_addend_used);
- }
- DynamicObject::RelocationSection DynamicObject::plt_relocation_section() const
- {
- return RelocationSection(Section(*this, m_plt_relocation_offset_location, m_size_of_plt_relocation_entry_list, m_size_of_relocation_entry, "DT_JMPREL"sv), m_procedure_linkage_table_relocation_type & DT_RELA);
- }
- DynamicObject::Section DynamicObject::relr_relocation_section() const
- {
- return Section(*this, m_relr_relocation_table_offset, m_size_of_relr_relocation_table, m_size_of_relr_relocations_entry, "DT_RELR"sv);
- }
- Elf_Half DynamicObject::program_header_count() const
- {
- auto* header = (Elf_Ehdr const*)m_base_address.as_ptr();
- return header->e_phnum;
- }
- Elf_Phdr const* DynamicObject::program_headers() const
- {
- auto* header = (Elf_Ehdr const*)m_base_address.as_ptr();
- return (Elf_Phdr const*)(m_base_address.as_ptr() + header->e_phoff);
- }
- auto DynamicObject::HashSection::lookup_sysv_symbol(StringView name, u32 hash_value) const -> Optional<Symbol>
- {
- u32* hash_table_begin = (u32*)address().as_ptr();
- size_t num_buckets = hash_table_begin[0];
- // This is here for completeness, but, since we're using the fact that every chain
- // will end at chain 0 (which means 'not found'), we don't need to check num_chains.
- // Interestingly, num_chains is required to be num_symbols
- // size_t num_chains = hash_table_begin[1];
- u32* buckets = &hash_table_begin[2];
- u32* chains = &buckets[num_buckets];
- for (u32 i = buckets[hash_value % num_buckets]; i; i = chains[i]) {
- auto symbol = m_dynamic.symbol(i);
- if (name == symbol.raw_name()) {
- dbgln_if(DYNAMIC_LOAD_DEBUG, "Returning SYSV dynamic symbol with index {} for {}: {}", i, symbol.name(), symbol.address().as_ptr());
- return symbol;
- }
- }
- return {};
- }
- auto DynamicObject::HashSection::lookup_gnu_symbol(StringView name, u32 hash_value) const -> Optional<Symbol>
- {
- // Algorithm reference: https://ent-voy.blogspot.com/2011/02/
- using BloomWord = FlatPtr;
- constexpr size_t bloom_word_size = sizeof(BloomWord) * 8;
- u32 const* hash_table_begin = (u32*)address().as_ptr();
- size_t const num_buckets = hash_table_begin[0];
- size_t const num_omitted_symbols = hash_table_begin[1];
- u32 const num_maskwords = hash_table_begin[2];
- // This works because num_maskwords is required to be a power of 2
- u32 const num_maskwords_bitmask = num_maskwords - 1;
- u32 const shift2 = hash_table_begin[3];
- BloomWord const* bloom_words = (BloomWord const*)&hash_table_begin[4];
- u32 const* const buckets = (u32 const*)&bloom_words[num_maskwords];
- u32 const* const chains = &buckets[num_buckets];
- BloomWord hash1 = hash_value;
- BloomWord hash2 = hash1 >> shift2;
- BloomWord const bitmask = ((BloomWord)1 << (hash1 % bloom_word_size)) | ((BloomWord)1 << (hash2 % bloom_word_size));
- if ((bloom_words[(hash1 / bloom_word_size) & num_maskwords_bitmask] & bitmask) != bitmask)
- return {};
- size_t current_sym = buckets[hash1 % num_buckets];
- if (current_sym == 0)
- return {};
- u32 const* current_chain = &chains[current_sym - num_omitted_symbols];
- for (hash1 &= ~1;; ++current_sym) {
- hash2 = *(current_chain++);
- if (hash1 == (hash2 & ~1)) {
- auto symbol = m_dynamic.symbol(current_sym);
- if (name == symbol.raw_name())
- return symbol;
- }
- if (hash2 & 1)
- break;
- }
- return {};
- }
- StringView DynamicObject::symbol_string_table_string(Elf_Word index) const
- {
- auto const* symbol_string_table_ptr = reinterpret_cast<char const*>(base_address().offset(m_string_table_offset + index).as_ptr());
- return StringView { symbol_string_table_ptr, strlen(symbol_string_table_ptr) };
- }
- char const* DynamicObject::raw_symbol_string_table_string(Elf_Word index) const
- {
- return (char const*)base_address().offset(m_string_table_offset + index).as_ptr();
- }
- DynamicObject::InitializationFunction DynamicObject::init_section_function() const
- {
- VERIFY(has_init_section());
- return (InitializationFunction)init_section().address().as_ptr();
- }
- DynamicObject::FinalizationFunction DynamicObject::fini_section_function() const
- {
- VERIFY(has_fini_section());
- return (FinalizationFunction)fini_section().address().as_ptr();
- }
- char const* DynamicObject::name_for_dtag(Elf_Sword d_tag)
- {
- switch (d_tag) {
- case DT_NULL:
- return "NULL"; /* marks end of _DYNAMIC array */
- case DT_NEEDED:
- return "NEEDED"; /* string table offset of needed lib */
- case DT_PLTRELSZ:
- return "PLTRELSZ"; /* size of relocation entries in PLT */
- case DT_PLTGOT:
- return "PLTGOT"; /* address PLT/GOT */
- case DT_HASH:
- return "HASH"; /* address of symbol hash table */
- case DT_STRTAB:
- return "STRTAB"; /* address of string table */
- case DT_SYMTAB:
- return "SYMTAB"; /* address of symbol table */
- case DT_RELA:
- return "RELA"; /* address of relocation table */
- case DT_RELASZ:
- return "RELASZ"; /* size of relocation table */
- case DT_RELAENT:
- return "RELAENT"; /* size of relocation entry */
- case DT_STRSZ:
- return "STRSZ"; /* size of string table */
- case DT_SYMENT:
- return "SYMENT"; /* size of symbol table entry */
- case DT_INIT:
- return "INIT"; /* address of initialization func. */
- case DT_FINI:
- return "FINI"; /* address of termination function */
- case DT_SONAME:
- return "SONAME"; /* string table offset of shared obj */
- case DT_RPATH:
- return "RPATH"; /* string table offset of library search path */
- case DT_SYMBOLIC:
- return "SYMBOLIC"; /* start sym search in shared obj. */
- case DT_REL:
- return "REL"; /* address of rel. tbl. w addends */
- case DT_RELSZ:
- return "RELSZ"; /* size of DT_REL relocation table */
- case DT_RELENT:
- return "RELENT"; /* size of DT_REL relocation entry */
- case DT_PLTREL:
- return "PLTREL"; /* PLT referenced relocation entry */
- case DT_DEBUG:
- return "DEBUG"; /* bugger */
- case DT_TEXTREL:
- return "TEXTREL"; /* Allow rel. mod. to unwritable seg */
- case DT_JMPREL:
- return "JMPREL"; /* add. of PLT's relocation entries */
- case DT_BIND_NOW:
- return "BIND_NOW"; /* Bind now regardless of env setting */
- case DT_INIT_ARRAY:
- return "INIT_ARRAY"; /* address of array of init func */
- case DT_FINI_ARRAY:
- return "FINI_ARRAY"; /* address of array of term func */
- case DT_INIT_ARRAYSZ:
- return "INIT_ARRAYSZ"; /* size of array of init func */
- case DT_FINI_ARRAYSZ:
- return "FINI_ARRAYSZ"; /* size of array of term func */
- case DT_RUNPATH:
- return "RUNPATH"; /* strtab offset of lib search path */
- case DT_FLAGS:
- return "FLAGS"; /* Set of DF_* flags */
- case DT_ENCODING:
- return "ENCODING"; /* further DT_* follow encoding rules */
- case DT_PREINIT_ARRAY:
- return "PREINIT_ARRAY"; /* address of array of preinit func */
- case DT_PREINIT_ARRAYSZ:
- return "PREINIT_ARRAYSZ"; /* size of array of preinit func */
- case DT_LOOS:
- return "LOOS"; /* reserved range for OS */
- case DT_HIOS:
- return "HIOS"; /* specific dynamic array tags */
- case DT_LOPROC:
- return "LOPROC"; /* reserved range for processor */
- case DT_HIPROC:
- return "HIPROC"; /* specific dynamic array tags */
- case DT_GNU_HASH:
- return "GNU_HASH"; /* address of GNU hash table */
- case DT_RELACOUNT:
- return "RELACOUNT"; /* if present, number of RELATIVE */
- case DT_RELCOUNT:
- return "RELCOUNT"; /* relocs, which must come first */
- case DT_FLAGS_1:
- return "FLAGS_1";
- case DT_VERDEF:
- return "VERDEF";
- case DT_VERDEFNUM:
- return "VERDEFNUM";
- case DT_VERSYM:
- return "VERSYM";
- case DT_VERNEEDED:
- return "VERNEEDED";
- case DT_VERNEEDEDNUM:
- return "VERNEEDEDNUM";
- case DT_RELR:
- return "DT_RELR";
- case DT_RELRSZ:
- return "DT_RELRSZ";
- case DT_RELRENT:
- return "DT_RELRENT";
- default:
- return "??";
- }
- }
- auto DynamicObject::lookup_symbol(StringView name) const -> Optional<SymbolLookupResult>
- {
- return lookup_symbol(HashSymbol { name });
- }
- auto DynamicObject::lookup_symbol(HashSymbol const& symbol) const -> Optional<SymbolLookupResult>
- {
- auto result = hash_section().lookup_symbol(symbol);
- if (!result.has_value())
- return {};
- auto symbol_result = result.value();
- if (symbol_result.is_undefined())
- return {};
- return SymbolLookupResult { symbol_result.value(), symbol_result.size(), symbol_result.address(), symbol_result.bind(), symbol_result.type(), this };
- }
- NonnullRefPtr<DynamicObject> DynamicObject::create(ByteString const& filepath, VirtualAddress base_address, VirtualAddress dynamic_section_address)
- {
- return adopt_ref(*new DynamicObject(filepath, base_address, dynamic_section_address));
- }
- u32 DynamicObject::HashSymbol::gnu_hash() const
- {
- if (!m_gnu_hash.has_value())
- m_gnu_hash = compute_gnu_hash(m_name);
- return m_gnu_hash.value();
- }
- u32 DynamicObject::HashSymbol::sysv_hash() const
- {
- if (!m_sysv_hash.has_value())
- m_sysv_hash = compute_sysv_hash(m_name);
- return m_sysv_hash.value();
- }
- void* DynamicObject::symbol_for_name(StringView name)
- {
- auto result = hash_section().lookup_symbol(name);
- if (!result.has_value())
- return nullptr;
- auto symbol = result.value();
- if (symbol.is_undefined())
- return nullptr;
- return base_address().offset(symbol.value()).as_ptr();
- }
- } // end namespace ELF
|