[email protected] | c23654ea | 2012-07-26 18:34:24 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "courgette/disassembler_elf_32_x86.h" |
| 6 | |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 7 | #include <vector> |
| 8 | |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 9 | #include "base/logging.h" |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 10 | #include "base/memory/scoped_ptr.h" |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 11 | #include "courgette/assembly_program.h" |
| 12 | #include "courgette/courgette.h" |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 13 | |
| 14 | namespace courgette { |
| 15 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 16 | CheckBool DisassemblerElf32X86::TypedRVAX86::ComputeRelativeTarget( |
| 17 | const uint8_t* op_pointer) { |
| 18 | set_relative_target(Read32LittleEndian(op_pointer) + 4); |
| 19 | return true; |
huangs | 58b822d4 | 2016-03-12 20:56:11 | [diff] [blame] | 20 | } |
| 21 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 22 | CheckBool DisassemblerElf32X86::TypedRVAX86::EmitInstruction( |
| 23 | AssemblyProgram* program, |
| 24 | RVA target_rva) { |
| 25 | return program->EmitRel32(program->FindOrMakeRel32Label(target_rva)); |
| 26 | } |
| 27 | |
| 28 | uint16_t DisassemblerElf32X86::TypedRVAX86::op_size() const { |
| 29 | return 4; |
| 30 | } |
| 31 | |
| 32 | DisassemblerElf32X86::DisassemblerElf32X86(const void* start, size_t length) |
| 33 | : DisassemblerElf32(start, length) { |
| 34 | } |
| 35 | |
| 36 | // Convert an ELF relocation struction into an RVA. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 37 | CheckBool DisassemblerElf32X86::RelToRVA(Elf32_Rel rel, RVA* result) const { |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 38 | // The rightmost byte of r_info is the type. |
scottmg | 4a95ca5 | 2016-03-12 23:54:56 | [diff] [blame] | 39 | elf32_rel_386_type_values type = |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 40 | static_cast<elf32_rel_386_type_values>(rel.r_info & 0xFF); |
scottmg | 4a95ca5 | 2016-03-12 23:54:56 | [diff] [blame] | 41 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 42 | // The other 3 bytes of r_info are the symbol. |
avi | ab98dcc9 | 2015-12-21 19:35:33 | [diff] [blame] | 43 | uint32_t symbol = rel.r_info >> 8; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 44 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 45 | switch (type) { |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 46 | case R_386_NONE: |
| 47 | case R_386_32: |
| 48 | case R_386_PC32: |
| 49 | case R_386_GOT32: |
| 50 | case R_386_PLT32: |
| 51 | case R_386_COPY: |
| 52 | case R_386_GLOB_DAT: |
| 53 | case R_386_JMP_SLOT: |
| 54 | return false; |
| 55 | |
| 56 | case R_386_RELATIVE: |
| 57 | if (symbol != 0) |
| 58 | return false; |
| 59 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 60 | // This is a basic ABS32 relocation address. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 61 | *result = rel.r_offset; |
| 62 | return true; |
| 63 | |
| 64 | case R_386_GOTOFF: |
| 65 | case R_386_GOTPC: |
| 66 | case R_386_TLS_TPOFF: |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | return false; |
| 71 | } |
| 72 | |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 73 | CheckBool DisassemblerElf32X86::ParseRelocationSection( |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 74 | const Elf32_Shdr* section_header, |
| 75 | AssemblyProgram* program) { |
| 76 | // We can reproduce the R_386_RELATIVE entries in one of the relocation table |
| 77 | // based on other information in the patch, given these conditions: |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 78 | // |
| 79 | // All R_386_RELATIVE entries are: |
| 80 | // 1) In the same relocation table |
| 81 | // 2) Are consecutive |
| 82 | // 3) Are sorted in memory address order |
| 83 | // |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 84 | // Happily, this is normally the case, but it's not required by spec, so we |
| 85 | // check, and just don't do it if we don't match up. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 86 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 87 | // The expectation is that one relocation section will contain all of our |
| 88 | // R_386_RELATIVE entries in the expected order followed by assorted other |
| 89 | // entries we can't use special handling for. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 90 | |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 91 | bool match = true; |
| 92 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 93 | // Walk all the bytes in the section, matching relocation table or not. |
| 94 | FileOffset file_offset = section_header->sh_offset; |
| 95 | FileOffset section_end = file_offset + section_header->sh_size; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 96 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 97 | const Elf32_Rel* section_relocs_iter = reinterpret_cast<const Elf32_Rel*>( |
| 98 | FileOffsetToPointer(section_header->sh_offset)); |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 99 | |
avi | ab98dcc9 | 2015-12-21 19:35:33 | [diff] [blame] | 100 | uint32_t section_relocs_count = |
| 101 | section_header->sh_size / section_header->sh_entsize; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 102 | |
Will Harris | 3e6fa97 | 2015-03-02 21:14:25 | [diff] [blame] | 103 | if (abs32_locations_.empty()) |
| 104 | match = false; |
| 105 | |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 106 | if (abs32_locations_.size() > section_relocs_count) |
| 107 | match = false; |
| 108 | |
| 109 | std::vector<RVA>::iterator reloc_iter = abs32_locations_.begin(); |
| 110 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 111 | while (match && (reloc_iter != abs32_locations_.end())) { |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 112 | if (section_relocs_iter->r_info != R_386_RELATIVE || |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 113 | section_relocs_iter->r_offset != *reloc_iter) { |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 114 | match = false; |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 115 | } |
| 116 | ++section_relocs_iter; |
| 117 | ++reloc_iter; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | if (match) { |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 121 | // Skip over relocation tables. |
[email protected] | 811ccb2 | 2011-11-09 00:09:27 | [diff] [blame] | 122 | if (!program->EmitElfRelocationInstruction()) |
| 123 | return false; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 124 | file_offset += sizeof(Elf32_Rel) * abs32_locations_.size(); |
| 125 | } |
| 126 | |
[email protected] | 811ccb2 | 2011-11-09 00:09:27 | [diff] [blame] | 127 | return ParseSimpleRegion(file_offset, section_end, program); |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 128 | } |
| 129 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 130 | // TODO(huangs): Detect and avoid overlap with abs32 addresses. |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 131 | CheckBool DisassemblerElf32X86::ParseRel32RelocsFromSection( |
| 132 | const Elf32_Shdr* section_header) { |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 133 | FileOffset start_file_offset = section_header->sh_offset; |
| 134 | FileOffset end_file_offset = start_file_offset + section_header->sh_size; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 135 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 136 | const uint8_t* start_pointer = FileOffsetToPointer(start_file_offset); |
| 137 | const uint8_t* end_pointer = FileOffsetToPointer(end_file_offset); |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 138 | |
| 139 | // Quick way to convert from Pointer to RVA within a single Section is to |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 140 | // subtract |pointer_to_rva|. |
avi | ab98dcc9 | 2015-12-21 19:35:33 | [diff] [blame] | 141 | const uint8_t* const adjust_pointer_to_rva = |
| 142 | start_pointer - section_header->sh_addr; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 143 | |
| 144 | // Find the rel32 relocations. |
avi | ab98dcc9 | 2015-12-21 19:35:33 | [diff] [blame] | 145 | const uint8_t* p = start_pointer; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 146 | while (p < end_pointer) { |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 147 | // Heuristic discovery of rel32 locations in instruction stream: are the |
| 148 | // next few bytes the start of an instruction containing a rel32 |
| 149 | // addressing mode? |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 150 | const uint8_t* rel32 = nullptr; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 151 | |
[email protected] | 17b5edc | 2011-11-09 02:15:48 | [diff] [blame] | 152 | if (p + 5 <= end_pointer) { |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 153 | if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32 |
| 154 | rel32 = p + 1; |
| 155 | } |
| 156 | } |
[email protected] | 17b5edc | 2011-11-09 02:15:48 | [diff] [blame] | 157 | if (p + 6 <= end_pointer) { |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 158 | if (*p == 0x0F && (p[1] & 0xF0) == 0x80) { // Jcc long form |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 159 | if (p[1] != 0x8A && p[1] != 0x8B) // JPE/JPO unlikely |
| 160 | rel32 = p + 2; |
| 161 | } |
| 162 | } |
| 163 | if (rel32) { |
[email protected] | 144c8e9 | 2013-07-23 21:18:19 | [diff] [blame] | 164 | RVA rva = static_cast<RVA>(rel32 - adjust_pointer_to_rva); |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 165 | scoped_ptr<TypedRVAX86> rel32_rva(new TypedRVAX86(rva)); |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 166 | |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 167 | if (!rel32_rva->ComputeRelativeTarget(rel32)) |
[email protected] | 144c8e9 | 2013-07-23 21:18:19 | [diff] [blame] | 168 | return false; |
[email protected] | 144c8e9 | 2013-07-23 21:18:19 | [diff] [blame] | 169 | |
| 170 | RVA target_rva = rel32_rva->rva() + rel32_rva->relative_target(); |
huangs | dda11d06 | 2016-03-14 16:35:39 | [diff] [blame^] | 171 | if (IsValidTargetRVA(target_rva)) { |
| 172 | rel32_locations_.push_back(rel32_rva.release()); |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 173 | #if COURGETTE_HISTOGRAM_TARGETS |
| 174 | ++rel32_target_rvas_[target_rva]; |
| 175 | #endif |
[email protected] | 17b5edc | 2011-11-09 02:15:48 | [diff] [blame] | 176 | p = rel32 + 4; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 177 | continue; |
[email protected] | 4b3d192b | 2011-11-08 20:32:26 | [diff] [blame] | 178 | } |
| 179 | } |
| 180 | p += 1; |
| 181 | } |
| 182 | |
| 183 | return true; |
| 184 | } |
| 185 | |
| 186 | } // namespace courgette |