Index: third_party/android_crazy_linker/src/src/crazy_linker_elf_relocations.cpp |
diff --git a/third_party/android_crazy_linker/src/src/crazy_linker_elf_relocations.cpp b/third_party/android_crazy_linker/src/src/crazy_linker_elf_relocations.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..56247d0b9475c63b5be221836c1971e30a472af3 |
--- /dev/null |
+++ b/third_party/android_crazy_linker/src/src/crazy_linker_elf_relocations.cpp |
@@ -0,0 +1,672 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "crazy_linker_elf_relocations.h" |
+ |
+#include <errno.h> |
+ |
+#include "crazy_linker_debug.h" |
+#include "crazy_linker_elf_symbols.h" |
+#include "crazy_linker_elf_view.h" |
+#include "crazy_linker_error.h" |
+#include "crazy_linker_util.h" |
+#include "crazy_linker_system.h" |
+#include "linker_phdr.h" |
+ |
+#define DEBUG_RELOCATIONS 1 // TODO(simonb): Unhack me later. |
+const char* global_lib_path = NULL; |
+ |
+#define RLOG(...) LOG_IF(DEBUG_RELOCATIONS, __VA_ARGS__) |
+#define RLOG_ERRNO(...) LOG_ERRNO_IF(DEBUG_RELOCATIONS, __VA_ARGS__) |
+ |
+#ifndef DF_SYMBOLIC |
+#define DF_SYMBOLIC 2 |
+#endif |
+ |
+#ifndef DF_TEXTREL |
+#define DF_TEXTREL 4 |
+#endif |
+ |
+#ifndef DT_FLAGS |
+#define DT_FLAGS 30 |
+#endif |
+ |
+// Processor-specific relocation types supported by the linker. |
+#ifdef __arm__ |
+ |
+#define R_ARM_ABS32 2 |
+#define R_ARM_REL32 3 |
+#define R_ARM_GLOB_DAT 21 |
+#define R_ARM_JUMP_SLOT 22 |
+#define R_ARM_COPY 20 |
+#define R_ARM_RELATIVE 23 |
+ |
+#endif // __arm__ |
+ |
+#ifdef __i386__ |
+ |
+/* i386 relocations */ |
+#define R_386_32 1 |
+#define R_386_PC32 2 |
+#define R_386_GLOB_DAT 6 |
+#define R_386_JMP_SLOT 7 |
+#define R_386_RELATIVE 8 |
+ |
+#endif // __i386__ |
+ |
+// Processor-specific extension dynamic tags, for packed relocations. |
+#ifdef __arm__ |
+ |
+#define DT_ANDROID_ARM_REL_OFFSET (DT_LOPROC) |
+#define DT_ANDROID_ARM_REL_SIZE (DT_LOPROC + 1) |
+ |
+#define PACKED_RELOCATIONS_IDENTIFIER 0x31525041U // "APR1" |
+ |
+#endif // __arm__ |
+ |
+namespace crazy { |
+ |
+namespace { |
+ |
+// List of known relocation types the relocator knows about. |
+enum RelocationType { |
+ RELOCATION_TYPE_UNKNOWN = 0, |
+ RELOCATION_TYPE_ABSOLUTE = 1, |
+ RELOCATION_TYPE_RELATIVE = 2, |
+ RELOCATION_TYPE_PC_RELATIVE = 3, |
+ RELOCATION_TYPE_COPY = 4, |
+}; |
+ |
+// Convert an ELF relocation type info a RelocationType value. |
+RelocationType GetRelocationType(unsigned r_type) { |
+ switch (r_type) { |
+#ifdef __arm__ |
+ case R_ARM_JUMP_SLOT: |
+ case R_ARM_GLOB_DAT: |
+ case R_ARM_ABS32: |
+ return RELOCATION_TYPE_ABSOLUTE; |
+ |
+ case R_ARM_REL32: |
+ case R_ARM_RELATIVE: |
+ return RELOCATION_TYPE_RELATIVE; |
+ |
+ case R_ARM_COPY: |
+ return RELOCATION_TYPE_COPY; |
+#endif |
+ |
+#ifdef __i386__ |
+ case R_386_JMP_SLOT: |
+ case R_386_GLOB_DAT: |
+ case R_386_32: |
+ return RELOCATION_TYPE_ABSOLUTE; |
+ |
+ case R_386_RELATIVE: |
+ return RELOCATION_TYPE_RELATIVE; |
+ |
+ case R_386_PC32: |
+ return RELOCATION_TYPE_PC_RELATIVE; |
+#endif |
+ |
+#ifdef __mips__ |
+ case R_MIPS_REL32: |
+ return RELOCATION_TYPE_RELATIVE; |
+#endif |
+ |
+ default: |
+ return RELOCATION_TYPE_UNKNOWN; |
+ } |
+} |
+ |
+} // namespace |
+ |
+bool ElfRelocations::Init(const ElfView* view, Error* error) { |
+ // Save these for later. |
+ phdr_ = view->phdr(); |
+ phdr_count_ = view->phdr_count(); |
+ load_bias_ = view->load_bias(); |
+ |
+ // Parse the dynamic table. |
+ ElfView::DynamicIterator dyn(view); |
+ for (; dyn.HasNext(); dyn.GetNext()) { |
+ ELF::Addr dyn_value = dyn.GetValue(); |
+ uintptr_t dyn_addr = dyn.GetAddress(view->load_bias()); |
+ |
+ switch (dyn.GetTag()) { |
+#ifdef __arm__ |
+ case DT_ANDROID_ARM_REL_OFFSET: |
+ // The packed relocations file offset excludes the load bias. |
+ packed_relocations_ = dyn.GetAddress(0); |
+ RLOG(" DT_ANDROID_ARM_REL_OFFSET addr=%p\n", packed_relocations_); |
+ RLOG(" global_lib_path=%s\n", global_lib_path); |
+ break; |
+ case DT_ANDROID_ARM_REL_SIZE: |
+ // The packed relocations file section size excludes the load bias. |
+ packed_relocations_size_ = dyn.GetAddress(0); |
+ RLOG(" DT_ANDROID_ARM_REL_SIZE=%d\n", packed_relocations_size_); |
+ break; |
+#endif |
+ case DT_PLTREL: |
+ // NOTE: Yes, there is nothing to record here, the content of |
+ // plt_rel_ will come from DT_JMPREL instead. |
+ RLOG(" DT_PLTREL"); |
+ if (dyn_value != DT_REL) { |
+ *error = "Unsupported DT_RELA entry in dynamic section"; |
+ return false; |
+ } |
+ break; |
+ case DT_JMPREL: |
+ RLOG(" DT_JMPREL addr=%p\n", dyn_addr); |
+ plt_relocations_ = reinterpret_cast<ELF::Rel*>(dyn_addr); |
+ break; |
+ case DT_PLTRELSZ: |
+ plt_relocations_count_ = dyn_value / sizeof(ELF::Rel); |
+ RLOG(" DT_PLTRELSZ size=%d count=%d\n", |
+ dyn_value, |
+ plt_relocations_count_); |
+ break; |
+ case DT_REL: |
+ RLOG(" DT_REL addr=%p\n", dyn_addr); |
+ relocations_ = reinterpret_cast<ELF::Rel*>(dyn_addr); |
+ break; |
+ case DT_RELSZ: |
+ relocations_count_ = dyn_value / sizeof(ELF::Rel); |
+ RLOG(" DT_RELSZ size=%d count=%d\n", dyn_value, relocations_count_); |
+ break; |
+ case DT_PLTGOT: |
+ // Only used on MIPS currently. Could also be used on other platforms |
+ // when lazy binding (i.e. RTLD_LAZY) is implemented. |
+ RLOG(" DT_PLTGOT addr=%p\n", dyn_addr); |
+ plt_got_ = reinterpret_cast<uintptr_t*>(dyn_addr); |
+ break; |
+ case DT_RELA: |
+ *error = "Unsupported DT_RELA entry in dynamic section"; |
+ return false; |
+ case DT_TEXTREL: |
+ RLOG(" DT_TEXTREL\n"); |
+ has_text_relocations_ = true; |
+ break; |
+ case DT_SYMBOLIC: |
+ RLOG(" DT_SYMBOLIC\n"); |
+ has_symbolic_ = true; |
+ break; |
+ case DT_FLAGS: |
+ if (dyn_value & DF_TEXTREL) |
+ has_text_relocations_ = true; |
+ if (dyn_value & DF_SYMBOLIC) |
+ has_symbolic_ = true; |
+ RLOG(" DT_FLAGS has_text_relocations=%s has_symbolic=%s\n", |
+ has_text_relocations_ ? "true" : "false", |
+ has_symbolic_ ? "true" : "false"); |
+ break; |
+#if defined(__mips__) |
+ case DT_MIPS_SYMTABNO: |
+ RLOG(" DT_MIPS_SYMTABNO value=%d\n", dyn_value); |
+ mips_symtab_count_ = dyn_value; |
+ break; |
+ |
+ case DT_MIPS_LOCAL_GOTNO: |
+ RLOG(" DT_MIPS_LOCAL_GOTNO value=%d\n", dyn_value); |
+ mips_local_got_count_ = dyn_value; |
+ break; |
+ |
+ case DT_MIPS_GOTSYM: |
+ RLOG(" DT_MIPS_GOTSYM value=%d\n", dyn_value); |
+ mips_gotsym_ = dyn_value; |
+ break; |
+#endif |
+ default: |
+ ; |
+ } |
+ } |
+ |
+ return true; |
+} |
+ |
+bool ElfRelocations::ApplyAll(const ElfSymbols* symbols, |
+ SymbolResolver* resolver, |
+ Error* error) { |
+ LOG("%s: Enter\n", __FUNCTION__); |
+ |
+ if (has_text_relocations_) { |
+ if (phdr_table_unprotect_segments(phdr_, phdr_count_, load_bias_) < 0) { |
+ error->Format("Can't unprotect loadable segments: %s", strerror(errno)); |
+ return false; |
+ } |
+ } |
+ |
+ if (!ApplyRelocs(plt_relocations_, |
+ plt_relocations_count_, |
+ symbols, |
+ resolver, |
+ error) || |
+ !ApplyRelocs( |
+ relocations_, relocations_count_, symbols, resolver, error)) { |
+ return false; |
+ } |
+ |
+#ifdef __arm__ |
+ if (!ApplyPackedRelocs(error)) |
+ return false; |
+#endif |
+ |
+#ifdef __mips__ |
+ if (!RelocateMipsGot(symbols, resolver, error)) |
+ return false; |
+#endif |
+ |
+ if (has_text_relocations_) { |
+ if (phdr_table_protect_segments(phdr_, phdr_count_, load_bias_) < 0) { |
+ error->Format("Can't reprotect loadable segments: %s", strerror(errno)); |
+ return false; |
+ } |
+ } |
+ |
+ LOG("%s: Done\n", __FUNCTION__); |
+ return true; |
+} |
+ |
+bool ElfRelocations::ApplyReloc(const ELF::Rel* rel, |
+ ELF::Addr sym_addr, |
+ Error* error) { |
+ const unsigned rel_type = ELF_R_TYPE(rel->r_info); |
+ const unsigned rel_symbol = ELF_R_SYM(rel->r_info); |
+ |
+ const ELF::Addr reloc = static_cast<ELF::Addr>(rel->r_offset + load_bias_); |
+ RLOG(" reloc=%p offset=%p type=%d\n", reloc, rel->r_offset, rel_type); |
+ |
+ // Apply the relocation. |
+ ELF::Addr* target = reinterpret_cast<ELF::Addr*>(reloc); |
+ switch (rel_type) { |
+#ifdef __arm__ |
+ case R_ARM_JUMP_SLOT: |
+ RLOG(" R_ARM_JUMP_SLOT target=%p addr=%p\n", target, sym_addr); |
+ *target = sym_addr; |
+ break; |
+ |
+ case R_ARM_GLOB_DAT: |
+ RLOG(" R_ARM_GLOB_DAT target=%p addr=%p\n", target, sym_addr); |
+ *target = sym_addr; |
+ break; |
+ |
+ case R_ARM_ABS32: |
+ RLOG(" R_ARM_ABS32 target=%p (%p) addr=%p\n", |
+ target, |
+ *target, |
+ sym_addr); |
+ *target += sym_addr; |
+ break; |
+ |
+ case R_ARM_REL32: |
+ RLOG(" R_ARM_REL32 target=%p (%p) addr=%p offset=%p\n", |
+ target, |
+ *target, |
+ sym_addr, |
+ rel->r_offset); |
+ *target += sym_addr - rel->r_offset; |
+ break; |
+ |
+ case R_ARM_RELATIVE: |
+ RLOG(" R_ARM_RELATIVE target=%p (%p) bias=%p\n", |
+ target, |
+ *target, |
+ load_bias_); |
+ if (__builtin_expect(rel_symbol, 0)) { |
+ *error = "Invalid relative relocation with symbol"; |
+ return false; |
+ } |
+ *target += load_bias_; |
+ break; |
+ |
+ case R_ARM_COPY: |
+ // NOTE: These relocations are forbidden in shared libraries. |
+ // The Android linker has special code to deal with this, which |
+ // is not needed here. |
+ RLOG(" R_ARM_COPY\n"); |
+ *error = "Invalid R_ARM_COPY relocation in shared library"; |
+ return false; |
+#endif // __arm__ |
+ |
+#ifdef __i386__ |
+ case R_386_JMP_SLOT: |
+ *target = sym_addr; |
+ break; |
+ |
+ case R_386_GLOB_DAT: |
+ *target = sym_addr; |
+ break; |
+ |
+ case R_386_RELATIVE: |
+ if (rel_symbol) { |
+ *error = "Invalid relative relocation with symbol"; |
+ return false; |
+ } |
+ *target += load_bias_; |
+ break; |
+ |
+ case R_386_32: |
+ *target += sym_addr; |
+ break; |
+ |
+ case R_386_PC32: |
+ *target += (sym_addr - reloc); |
+ break; |
+#endif // __i386__ |
+ |
+#ifdef __mips__ |
+ case R_MIPS_REL32: |
+ if (resolved) |
+ *target += sym_addr; |
+ else |
+ *target += load_bias_; |
+ break; |
+#endif // __mips__ |
+ |
+ default: |
+ error->Format("Invalid relocation type (%d)", rel_type); |
+ return false; |
+ } |
+ |
+ return true; |
+} |
+ |
+bool ElfRelocations::ApplyRelocs(const ELF::Rel* rel, |
+ size_t rel_count, |
+ const ElfSymbols* symbols, |
+ SymbolResolver* resolver, |
+ Error* error) { |
+ RLOG("%s: rel=%p rel_count=%d\n", __FUNCTION__, rel, rel_count); |
+ |
+ if (!rel) |
+ return true; |
+ |
+ for (size_t rel_n = 0; rel_n < rel_count; rel++, rel_n++) { |
+ const unsigned rel_type = ELF_R_TYPE(rel->r_info); |
+ const unsigned rel_symbol = ELF_R_SYM(rel->r_info); |
+ |
+ ELF::Addr sym_addr = 0; |
+ const ELF::Addr reloc = static_cast<ELF::Addr>(rel->r_offset + load_bias_); |
+ RLOG(" %d/%d reloc=%p offset=%p type=%d symbol=%d\n", |
+ rel_n + 1, |
+ rel_count, |
+ reloc, |
+ rel->r_offset, |
+ rel_type, |
+ rel_symbol); |
+ |
+ if (rel_type == 0) |
+ continue; |
+ |
+ bool CRAZY_UNUSED resolved = false; |
+ |
+ // If this is a symbolic relocation, compute the symbol's address. |
+ if (__builtin_expect(rel_symbol != 0, 0)) { |
+ const char* sym_name = symbols->LookupNameById(rel_symbol); |
+ RLOG(" symbol name='%s'\n", sym_name); |
+ void* address = resolver->Lookup(sym_name); |
+ if (address) { |
+ // The symbol was found, so compute its address. |
+ RLOG("%s: symbol %s resolved to %p\n", |
+ __FUNCTION__, sym_name, address); |
+ resolved = true; |
+ sym_addr = reinterpret_cast<ELF::Addr>(address); |
+ } else { |
+ // The symbol was not found. Normally this is an error except |
+ // if this is a weak reference. |
+ if (!symbols->IsWeakById(rel_symbol)) { |
+ error->Format("Could not find symbol '%s'", sym_name); |
+ return false; |
+ } |
+ |
+ resolved = true; |
+ RLOG("%s: weak reference to unresolved symbol %s\n", |
+ __FUNCTION__, |
+ sym_name); |
+ |
+ // IHI0044C AAELF 4.5.1.1: |
+ // Libraries are not searched to resolve weak references. |
+ // It is not an error for a weak reference to remain |
+ // unsatisfied. |
+ // |
+ // During linking, the value of an undefined weak reference is: |
+ // - Zero if the relocation type is absolute |
+ // - The address of the place if the relocation is pc-relative |
+ // - The address of nominal base address if the relocation |
+ // type is base-relative. |
+ RelocationType r = GetRelocationType(rel_type); |
+ if (r == RELOCATION_TYPE_ABSOLUTE || r == RELOCATION_TYPE_RELATIVE) |
+ sym_addr = 0; |
+ else if (r == RELOCATION_TYPE_PC_RELATIVE) |
+ sym_addr = reloc; |
+ else { |
+ error->Format( |
+ "Invalid weak relocation type (%d) for unknown symbol '%s'", |
+ r, |
+ sym_name); |
+ return false; |
+ } |
+ } |
+ } |
+ |
+ if (!ApplyReloc(rel, sym_addr, error)) |
+ return false; |
+ } |
+ |
+ return true; |
+} |
+ |
+#ifdef __arm__ |
+bool ElfRelocations::ApplyPackedRelocs(Error* error) { |
+ LOG("%s: Enter\n", __FUNCTION__); |
+ |
+ if (packed_relocations_size_ == 0) { |
+ LOG("%s: Done (no actions)\n", __FUNCTION__); |
+ return true; |
+ } |
+ |
+ const size_t packed_words = packed_relocations_size_ / sizeof(uint32_t); |
+ uint32_t* packed = new uint32_t[packed_words]; |
+ |
+ FileDescriptor fd; |
+ fd.OpenReadOnly(global_lib_path); |
+ fd.SeekTo(packed_relocations_); |
+ fd.Read(packed, packed_relocations_size_); |
+ fd.Close(); |
+ |
+ if (packed[0] != PACKED_RELOCATIONS_IDENTIFIER) { |
+ error->Format("Bad packed relocations ident, expected 0x%08x, got 0x%08x", |
+ PACKED_RELOCATIONS_IDENTIFIER, packed[0]); |
+ return false; |
+ } |
+ |
+ // The minimum packed relocations set is the ident word, the size word, and |
+ // a single initial relocation offset. |
+ if (packed_words < 3) { |
+ error->Format("Invalid packed relocations length, %d", packed_words); |
+ return false; |
+ } |
+ |
+ // The second packed word indicates the count of packed words that follow. |
+ // It should match the count of words read from the file, less the two |
+ // header words for ident and the count itself. |
+ if (packed[1] != packed_words - 2) { |
+ error->Format("Bad packed relocations length, expected %d, got %d", |
+ packed_words - 2, packed[1]); |
+ return false; |
+ } |
+ |
+ RLOG(" packed=%p packed_words=%d\n", packed, packed_words); |
+ |
+ // Process the initial packed relocation element. |
+ uint32_t addr = packed[2]; |
+ const ELF::Rel initial = {addr, R_ARM_RELATIVE}; |
+ RLOG(" initial offset=%p\n", initial.r_offset); |
+ if (!ApplyReloc(&initial, 0, error)) |
+ return false; |
+ |
+ size_t unpacked_count = 1; |
+ |
+ // Read all words from the start index, treating each as either a packed |
+ // delta-count pair or as (spilled) separate count and delta. |
+ uint32_t delta = 0; |
+ size_t count = 0; |
+ for (size_t i = 3; i < packed_words; ++i) { |
+ const uint32_t value = packed[i]; |
+ if (count) { |
+ // Previous value was a count with zero delta. This indicates a |
+ // 'spill' of delta > 65535, so the real delta is here. |
+ delta = value; |
+ } else { |
+ // Unpack the pair into separate delta and count values. |
+ delta = value >> 16; |
+ count = value & 65535; |
+ } |
+ // Create and apply relocations only when we have both delta and count. |
+ if (delta && count) { |
+ RLOG(" delta=%u count=%d\n", delta, count); |
+ while (count) { |
+ addr += delta; |
+ const ELF::Rel relocation = {addr, R_ARM_RELATIVE}; |
+ RLOG(" unpacked %d relocation offset=%p\n", |
+ unpacked_count, relocation.r_offset); |
+ if (!ApplyReloc(&relocation, 0, error)) |
+ return false; |
+ unpacked_count++; |
+ count--; |
+ } |
+ delta = 0; |
+ } |
+ } |
+ |
+ RLOG(" unpacked_count=%d\n", unpacked_count); |
+ delete [] packed; |
+ |
+ LOG("%s: Done\n", __FUNCTION__); |
+ return true; |
+} |
+#endif |
+ |
+#ifdef __mips__ |
+bool ElfRelocations::RelocateMipsGot(const ElfSymbols* symbols, |
+ SymbolResolver* resolver, |
+ Error* error) { |
+ if (!plt_got_) |
+ return true; |
+ |
+ // Handle the local GOT entries. |
+ // This mimics what the system linker does. |
+ // Note from the system linker: |
+ // got[0]: lazy resolver function address. |
+ // got[1]: may be used for a GNU extension. |
+ // Set it to a recognizable address in case someone calls it |
+ // (should be _rtld_bind_start). |
+ ELF::Addr* got = plt_got_; |
+ got[0] = 0xdeadbeef; |
+ if (got[1] & 0x80000000) |
+ got[1] = 0xdeadbeef; |
+ |
+ for (ELF::Addr n = 2; n < mips_local_got_count_; ++n) |
+ got[n] += load_bias_; |
+ |
+ // Handle the global GOT entries. |
+ got += mips_local_got_count_; |
+ for (size_t idx = mips_gotsym_; idx < mips_symtab_count_; idx++, got++) { |
+ const char* sym_name = symbols->LookupNameById(idx); |
+ void* sym_addr = resolver->Lookup(sym_name); |
+ if (sym_addr) { |
+ // Found symbol, update GOT entry. |
+ *got = reinterpret_cast<ELF::Addr>(sym_addr); |
+ continue; |
+ } |
+ |
+ if (symbols->IsWeakById(idx)) { |
+ // Undefined symbols are only ok if this is a weak reference. |
+ // Update GOT entry to 0 though. |
+ *got = 0; |
+ continue; |
+ } |
+ |
+ error->Format("Cannot locate symbol %s", sym_name); |
+ return false; |
+ } |
+ |
+ return true; |
+} |
+#endif // __mips__ |
+ |
+void ElfRelocations::CopyAndRelocate(size_t src_addr, |
+ size_t dst_addr, |
+ size_t map_addr, |
+ size_t size) { |
+ // First, a straight copy. |
+ ::memcpy(reinterpret_cast<void*>(dst_addr), |
+ reinterpret_cast<void*>(src_addr), |
+ size); |
+ |
+ // Add this value to each source address to get the corresponding |
+ // destination address. |
+ size_t dst_delta = dst_addr - src_addr; |
+ size_t map_delta = map_addr - src_addr; |
+ |
+ // Ignore PLT relocations, which all target symbols (ignored here). |
+ const ELF::Rel* rel = relocations_; |
+ const ELF::Rel* rel_limit = rel + relocations_count_; |
+ |
+ for (; rel < rel_limit; ++rel) { |
+ unsigned rel_type = ELF_R_TYPE(rel->r_info); |
+ unsigned rel_symbol = ELF_R_SYM(rel->r_info); |
+ ELF::Addr src_reloc = static_cast<ELF::Addr>(rel->r_offset + load_bias_); |
+ |
+ if (rel_type == 0 || rel_symbol != 0) { |
+ // Ignore empty and symbolic relocations |
+ continue; |
+ } |
+ |
+ if (src_reloc < src_addr || src_reloc >= src_addr + size) { |
+ // Ignore entries that don't relocate addresses inside the source section. |
+ continue; |
+ } |
+ |
+ ELF::Addr* dst_ptr = reinterpret_cast<ELF::Addr*>(src_reloc + dst_delta); |
+ |
+ switch (rel_type) { |
+#ifdef __arm__ |
+ case R_ARM_RELATIVE: |
+ *dst_ptr += map_delta; |
+ break; |
+#endif // __arm__ |
+ |
+#ifdef __i386__ |
+ case R_386_RELATIVE: |
+ *dst_ptr += map_delta; |
+ break; |
+#endif |
+ |
+#ifdef __mips__ |
+ case R_MIPS_REL32: |
+ *dst_ptr += map_delta; |
+ break; |
+#endif |
+ default: |
+ ; |
+ } |
+ } |
+ |
+#ifdef __mips__ |
+ // Only relocate local GOT entries. |
+ ELF::Addr* got = plt_got_; |
+ if (got) { |
+ for (ELF::Addr n = 2; n < mips_local_got_count_; ++n) { |
+ size_t got_addr = reinterpret_cast<size_t>(&got[n]); |
+ if (got_addr < src_addr || got_addr >= src_addr + size) |
+ continue; |
+ ELF::Addr* dst_ptr = reinterpret_cast<ELF::Addr*>(got_addr + dst_delta); |
+ *dst_ptr += map_delta; |
+ } |
+ } |
+#endif |
+ |
+ // Done |
+} |
+ |
+} // namespace crazy |