blob: b62b293f4ce76e432ebd64415ff924b5f76df088 [file] [log] [blame]
[email protected]c23654ea2012-07-26 18:34:241// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]4b3d192b2011-11-08 20:32:262// 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
mostynb1007a4a2016-04-11 23:18:067#include <memory>
etiennep7d4e8ee2016-05-11 20:13:368#include <utility>
[email protected]4b3d192b2011-11-08 20:32:269#include <vector>
10
[email protected]4b3d192b2011-11-08 20:32:2611#include "base/logging.h"
[email protected]4b3d192b2011-11-08 20:32:2612#include "courgette/assembly_program.h"
13#include "courgette/courgette.h"
[email protected]4b3d192b2011-11-08 20:32:2614
15namespace courgette {
16
huangsdda11d062016-03-14 16:35:3917CheckBool DisassemblerElf32X86::TypedRVAX86::ComputeRelativeTarget(
18 const uint8_t* op_pointer) {
19 set_relative_target(Read32LittleEndian(op_pointer) + 4);
20 return true;
huangs58b822d42016-03-12 20:56:1121}
22
huangsdda11d062016-03-14 16:35:3923CheckBool DisassemblerElf32X86::TypedRVAX86::EmitInstruction(
huangs7b221a52016-11-09 22:28:2324 Label* label,
25 InstructionReceptor* receptor) {
26 return receptor->EmitRel32(label);
huangsdda11d062016-03-14 16:35:3927}
28
29uint16_t DisassemblerElf32X86::TypedRVAX86::op_size() const {
30 return 4;
31}
32
etiennep5059bca2016-07-08 17:55:2033DisassemblerElf32X86::DisassemblerElf32X86(const uint8_t* start, size_t length)
34 : DisassemblerElf32(start, length) {}
huangsdda11d062016-03-14 16:35:3935
36// Convert an ELF relocation struction into an RVA.
[email protected]4b3d192b2011-11-08 20:32:2637CheckBool DisassemblerElf32X86::RelToRVA(Elf32_Rel rel, RVA* result) const {
huangsdda11d062016-03-14 16:35:3938 // The rightmost byte of r_info is the type.
scottmg4a95ca52016-03-12 23:54:5639 elf32_rel_386_type_values type =
huangsdda11d062016-03-14 16:35:3940 static_cast<elf32_rel_386_type_values>(rel.r_info & 0xFF);
scottmg4a95ca52016-03-12 23:54:5641
huangsdda11d062016-03-14 16:35:3942 // The other 3 bytes of r_info are the symbol.
aviab98dcc92015-12-21 19:35:3343 uint32_t symbol = rel.r_info >> 8;
[email protected]4b3d192b2011-11-08 20:32:2644
huangsdda11d062016-03-14 16:35:3945 switch (type) {
[email protected]4b3d192b2011-11-08 20:32:2646 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
huangsdda11d062016-03-14 16:35:3960 // This is a basic ABS32 relocation address.
[email protected]4b3d192b2011-11-08 20:32:2661 *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]4b3d192b2011-11-08 20:32:2673CheckBool DisassemblerElf32X86::ParseRelocationSection(
huangsdda11d062016-03-14 16:35:3974 const Elf32_Shdr* section_header,
huangs7b221a52016-11-09 22:28:2375 InstructionReceptor* receptor) const {
huangsdda11d062016-03-14 16:35:3976 // 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]4b3d192b2011-11-08 20:32:2678 //
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 //
huangsdda11d062016-03-14 16:35:3984 // 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]4b3d192b2011-11-08 20:32:2686
huangsdda11d062016-03-14 16:35:3987 // 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]4b3d192b2011-11-08 20:32:2690
[email protected]4b3d192b2011-11-08 20:32:2691 bool match = true;
92
huangsdda11d062016-03-14 16:35:3993 // 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]4b3d192b2011-11-08 20:32:2696
huangsdda11d062016-03-14 16:35:3997 const Elf32_Rel* section_relocs_iter = reinterpret_cast<const Elf32_Rel*>(
98 FileOffsetToPointer(section_header->sh_offset));
[email protected]4b3d192b2011-11-08 20:32:2699
aviab98dcc92015-12-21 19:35:33100 uint32_t section_relocs_count =
101 section_header->sh_size / section_header->sh_entsize;
[email protected]4b3d192b2011-11-08 20:32:26102
Will Harris3e6fa972015-03-02 21:14:25103 if (abs32_locations_.empty())
104 match = false;
105
[email protected]4b3d192b2011-11-08 20:32:26106 if (abs32_locations_.size() > section_relocs_count)
107 match = false;
108
huangs257f9fb02017-03-23 23:17:50109 std::vector<RVA>::const_iterator reloc_iter = abs32_locations_.begin();
[email protected]4b3d192b2011-11-08 20:32:26110
huangsdda11d062016-03-14 16:35:39111 while (match && (reloc_iter != abs32_locations_.end())) {
[email protected]4b3d192b2011-11-08 20:32:26112 if (section_relocs_iter->r_info != R_386_RELATIVE ||
huangsdda11d062016-03-14 16:35:39113 section_relocs_iter->r_offset != *reloc_iter) {
[email protected]4b3d192b2011-11-08 20:32:26114 match = false;
huangsdda11d062016-03-14 16:35:39115 }
116 ++section_relocs_iter;
117 ++reloc_iter;
[email protected]4b3d192b2011-11-08 20:32:26118 }
119
120 if (match) {
huangsdda11d062016-03-14 16:35:39121 // Skip over relocation tables.
huangs7b221a52016-11-09 22:28:23122 if (!receptor->EmitElfRelocation())
[email protected]811ccb22011-11-09 00:09:27123 return false;
[email protected]4b3d192b2011-11-08 20:32:26124 file_offset += sizeof(Elf32_Rel) * abs32_locations_.size();
125 }
126
huangs7b221a52016-11-09 22:28:23127 return ParseSimpleRegion(file_offset, section_end, receptor);
[email protected]4b3d192b2011-11-08 20:32:26128}
129
[email protected]4b3d192b2011-11-08 20:32:26130CheckBool DisassemblerElf32X86::ParseRel32RelocsFromSection(
131 const Elf32_Shdr* section_header) {
huangsdda11d062016-03-14 16:35:39132 FileOffset start_file_offset = section_header->sh_offset;
133 FileOffset end_file_offset = start_file_offset + section_header->sh_size;
[email protected]4b3d192b2011-11-08 20:32:26134
huangsdda11d062016-03-14 16:35:39135 const uint8_t* start_pointer = FileOffsetToPointer(start_file_offset);
136 const uint8_t* end_pointer = FileOffsetToPointer(end_file_offset);
[email protected]4b3d192b2011-11-08 20:32:26137
138 // Quick way to convert from Pointer to RVA within a single Section is to
huangsdda11d062016-03-14 16:35:39139 // subtract |pointer_to_rva|.
aviab98dcc92015-12-21 19:35:33140 const uint8_t* const adjust_pointer_to_rva =
141 start_pointer - section_header->sh_addr;
[email protected]4b3d192b2011-11-08 20:32:26142
huangsb1819f82016-03-31 21:51:43143 std::vector<RVA>::iterator abs32_pos = abs32_locations_.begin();
144
[email protected]4b3d192b2011-11-08 20:32:26145 // Find the rel32 relocations.
aviab98dcc92015-12-21 19:35:33146 const uint8_t* p = start_pointer;
[email protected]4b3d192b2011-11-08 20:32:26147 while (p < end_pointer) {
[email protected]4b3d192b2011-11-08 20:32:26148 // Heuristic discovery of rel32 locations in instruction stream: are the
149 // next few bytes the start of an instruction containing a rel32
150 // addressing mode?
huangsdda11d062016-03-14 16:35:39151 const uint8_t* rel32 = nullptr;
[email protected]4b3d192b2011-11-08 20:32:26152
[email protected]17b5edc2011-11-09 02:15:48153 if (p + 5 <= end_pointer) {
[email protected]4b3d192b2011-11-08 20:32:26154 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
155 rel32 = p + 1;
156 }
157 }
[email protected]17b5edc2011-11-09 02:15:48158 if (p + 6 <= end_pointer) {
huangsdda11d062016-03-14 16:35:39159 if (*p == 0x0F && (p[1] & 0xF0) == 0x80) { // Jcc long form
[email protected]4b3d192b2011-11-08 20:32:26160 if (p[1] != 0x8A && p[1] != 0x8B) // JPE/JPO unlikely
161 rel32 = p + 2;
162 }
163 }
164 if (rel32) {
huangsb1819f82016-03-31 21:51:43165 RVA rel32_rva = static_cast<RVA>(rel32 - adjust_pointer_to_rva);
166 // Is there an abs32 reloc overlapping the candidate?
167 while (abs32_pos != abs32_locations_.end() && *abs32_pos < rel32_rva - 3)
168 ++abs32_pos;
169 // Now: (*abs32_pos > rel32_rva - 4) i.e. the lowest addressed 4-byte
170 // region that could overlap rel32_rva.
171 if (abs32_pos != abs32_locations_.end()) {
172 if (*abs32_pos < rel32_rva + 4) {
173 // Beginning of abs32 reloc is before end of rel32 reloc so they
174 // overlap. Skip four bytes past the abs32 reloc.
175 RVA current_rva = static_cast<RVA>(p - adjust_pointer_to_rva);
176 p += (*abs32_pos + 4) - current_rva;
177 continue;
178 }
179 }
[email protected]4b3d192b2011-11-08 20:32:26180
mostynb1007a4a2016-04-11 23:18:06181 std::unique_ptr<TypedRVAX86> typed_rel32_rva(new TypedRVAX86(rel32_rva));
huangsb1819f82016-03-31 21:51:43182 if (!typed_rel32_rva->ComputeRelativeTarget(rel32))
[email protected]144c8e92013-07-23 21:18:19183 return false;
[email protected]144c8e92013-07-23 21:18:19184
huangsb1819f82016-03-31 21:51:43185 RVA target_rva = typed_rel32_rva->rva() +
186 typed_rel32_rva->relative_target();
huangsdda11d062016-03-14 16:35:39187 if (IsValidTargetRVA(target_rva)) {
etiennep7d4e8ee2016-05-11 20:13:36188 rel32_locations_.push_back(std::move(typed_rel32_rva));
[email protected]4b3d192b2011-11-08 20:32:26189#if COURGETTE_HISTOGRAM_TARGETS
190 ++rel32_target_rvas_[target_rva];
191#endif
[email protected]17b5edc2011-11-09 02:15:48192 p = rel32 + 4;
[email protected]4b3d192b2011-11-08 20:32:26193 continue;
[email protected]4b3d192b2011-11-08 20:32:26194 }
195 }
196 p += 1;
197 }
198
199 return true;
200}
201
202} // namespace courgette