Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 1 | //===- COFFObjectFile.cpp - COFF object file implementation ---------------===// |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the COFFObjectFile class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/ArrayRef.h" |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/StringRef.h" |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Triple.h" |
Rui Ueyama | 7d6e44b | 2015-06-25 00:07:39 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/iterator_range.h" |
Zachary Turner | 19ca2b0 | 2017-06-07 03:48:56 +0000 | [diff] [blame] | 18 | #include "llvm/BinaryFormat/COFF.h" |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 19 | #include "llvm/Object/Binary.h" |
| 20 | #include "llvm/Object/COFF.h" |
| 21 | #include "llvm/Object/Error.h" |
| 22 | #include "llvm/Object/ObjectFile.h" |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 23 | #include "llvm/Support/BinaryStreamReader.h" |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Endian.h" |
| 25 | #include "llvm/Support/Error.h" |
| 26 | #include "llvm/Support/ErrorHandling.h" |
| 27 | #include "llvm/Support/MathExtras.h" |
| 28 | #include "llvm/Support/MemoryBuffer.h" |
| 29 | #include <algorithm> |
| 30 | #include <cassert> |
| 31 | #include <cstddef> |
| 32 | #include <cstdint> |
| 33 | #include <cstring> |
Nico Rieck | fa3089b | 2014-02-22 16:12:20 +0000 | [diff] [blame] | 34 | #include <limits> |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 35 | #include <memory> |
| 36 | #include <system_error> |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 37 | |
| 38 | using namespace llvm; |
| 39 | using namespace object; |
| 40 | |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 41 | using support::ulittle16_t; |
| 42 | using support::ulittle32_t; |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 43 | using support::ulittle64_t; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 44 | using support::little16_t; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 45 | |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 46 | // Returns false if size is greater than the buffer size. And sets ec. |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 47 | static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) { |
Rafael Espindola | 1f65932 | 2014-06-23 21:53:12 +0000 | [diff] [blame] | 48 | if (M.getBufferSize() < Size) { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 49 | EC = object_error::unexpected_eof; |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 50 | return false; |
| 51 | } |
| 52 | return true; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 55 | // Sets Obj unless any bytes in [addr, addr + size) fall outsize of m. |
| 56 | // Returns unexpected_eof if error. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 57 | template <typename T> |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 58 | static std::error_code getObject(const T *&Obj, MemoryBufferRef M, |
David Majnemer | 465237b | 2014-11-13 07:42:07 +0000 | [diff] [blame] | 59 | const void *Ptr, |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 60 | const uint64_t Size = sizeof(T)) { |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 61 | uintptr_t Addr = uintptr_t(Ptr); |
Benjamin Kramer | 1a7f03e | 2017-08-31 12:27:10 +0000 | [diff] [blame] | 62 | if (std::error_code EC = Binary::checkOffset(M, Addr, Size)) |
David Majnemer | b6ddb3c | 2014-11-13 08:46:37 +0000 | [diff] [blame] | 63 | return EC; |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 64 | Obj = reinterpret_cast<const T *>(Addr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 65 | return std::error_code(); |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 66 | } |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 67 | |
Nico Rieck | fa3089b | 2014-02-22 16:12:20 +0000 | [diff] [blame] | 68 | // Decode a string table entry in base 64 (//AAAAAA). Expects \arg Str without |
| 69 | // prefixed slashes. |
| 70 | static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) { |
| 71 | assert(Str.size() <= 6 && "String too long, possible overflow."); |
| 72 | if (Str.size() > 6) |
| 73 | return true; |
| 74 | |
| 75 | uint64_t Value = 0; |
| 76 | while (!Str.empty()) { |
| 77 | unsigned CharVal; |
| 78 | if (Str[0] >= 'A' && Str[0] <= 'Z') // 0..25 |
| 79 | CharVal = Str[0] - 'A'; |
| 80 | else if (Str[0] >= 'a' && Str[0] <= 'z') // 26..51 |
| 81 | CharVal = Str[0] - 'a' + 26; |
| 82 | else if (Str[0] >= '0' && Str[0] <= '9') // 52..61 |
| 83 | CharVal = Str[0] - '0' + 52; |
| 84 | else if (Str[0] == '+') // 62 |
Rui Ueyama | 204755b | 2014-02-25 23:49:11 +0000 | [diff] [blame] | 85 | CharVal = 62; |
Nico Rieck | fa3089b | 2014-02-22 16:12:20 +0000 | [diff] [blame] | 86 | else if (Str[0] == '/') // 63 |
Rui Ueyama | 204755b | 2014-02-25 23:49:11 +0000 | [diff] [blame] | 87 | CharVal = 63; |
Nico Rieck | fa3089b | 2014-02-22 16:12:20 +0000 | [diff] [blame] | 88 | else |
| 89 | return true; |
| 90 | |
| 91 | Value = (Value * 64) + CharVal; |
| 92 | Str = Str.substr(1); |
| 93 | } |
| 94 | |
| 95 | if (Value > std::numeric_limits<uint32_t>::max()) |
| 96 | return true; |
| 97 | |
| 98 | Result = static_cast<uint32_t>(Value); |
| 99 | return false; |
| 100 | } |
| 101 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 102 | template <typename coff_symbol_type> |
| 103 | const coff_symbol_type *COFFObjectFile::toSymb(DataRefImpl Ref) const { |
| 104 | const coff_symbol_type *Addr = |
| 105 | reinterpret_cast<const coff_symbol_type *>(Ref.p); |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 106 | |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 107 | assert(!checkOffset(Data, uintptr_t(Addr), sizeof(*Addr))); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 108 | #ifndef NDEBUG |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 109 | // Verify that the symbol points to a valid entry in the symbol table. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 110 | uintptr_t Offset = uintptr_t(Addr) - uintptr_t(base()); |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 111 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 112 | assert((Offset - getPointerToSymbolTable()) % sizeof(coff_symbol_type) == 0 && |
| 113 | "Symbol did not point to the beginning of a symbol"); |
| 114 | #endif |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 115 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 116 | return Addr; |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 119 | const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const { |
| 120 | const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p); |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 121 | |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 122 | #ifndef NDEBUG |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 123 | // Verify that the section points to a valid entry in the section table. |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 124 | if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 125 | report_fatal_error("Section was outside of section table."); |
| 126 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 127 | uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); |
| 128 | assert(Offset % sizeof(coff_section) == 0 && |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 129 | "Section did not point to the beginning of a section"); |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 130 | #endif |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 131 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 132 | return Addr; |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Rafael Espindola | efdbec8 | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 135 | void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const { |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 136 | auto End = reinterpret_cast<uintptr_t>(StringTable); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 137 | if (SymbolTable16) { |
| 138 | const coff_symbol16 *Symb = toSymb<coff_symbol16>(Ref); |
| 139 | Symb += 1 + Symb->NumberOfAuxSymbols; |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 140 | Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 141 | } else if (SymbolTable32) { |
| 142 | const coff_symbol32 *Symb = toSymb<coff_symbol32>(Ref); |
| 143 | Symb += 1 + Symb->NumberOfAuxSymbols; |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 144 | Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 145 | } else { |
| 146 | llvm_unreachable("no symbol table pointer!"); |
| 147 | } |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Kevin Enderby | 813e0cf | 2016-04-20 21:24:34 +0000 | [diff] [blame] | 150 | Expected<StringRef> COFFObjectFile::getSymbolName(DataRefImpl Ref) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 151 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
Rafael Espindola | 8a80641 | 2015-07-02 20:55:21 +0000 | [diff] [blame] | 152 | StringRef Result; |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 153 | if (std::error_code EC = getSymbolName(Symb, Result)) |
Kevin Enderby | 813e0cf | 2016-04-20 21:24:34 +0000 | [diff] [blame] | 154 | return errorCodeToError(EC); |
Rafael Espindola | 8a80641 | 2015-07-02 20:55:21 +0000 | [diff] [blame] | 155 | return Result; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Rafael Espindola | 7b7c81c | 2015-07-07 17:12:59 +0000 | [diff] [blame] | 158 | uint64_t COFFObjectFile::getSymbolValueImpl(DataRefImpl Ref) const { |
| 159 | return getCOFFSymbol(Ref).getValue(); |
Rafael Espindola | 9fa0ab3 | 2015-06-24 19:11:10 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Davide Italiano | 74a715d | 2016-11-02 17:32:19 +0000 | [diff] [blame] | 162 | uint32_t COFFObjectFile::getSymbolAlignment(DataRefImpl Ref) const { |
| 163 | // MSVC/link.exe seems to align symbols to the next-power-of-2 |
| 164 | // up to 32 bytes. |
| 165 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
Davide Italiano | 88b31bf | 2016-11-11 03:07:45 +0000 | [diff] [blame] | 166 | return std::min(uint64_t(32), PowerOf2Ceil(Symb.getValue())); |
Davide Italiano | 74a715d | 2016-11-02 17:32:19 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Kevin Enderby | 317de7c | 2016-06-24 18:24:42 +0000 | [diff] [blame] | 169 | Expected<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const { |
Rafael Espindola | 5954faa | 2015-07-03 18:19:00 +0000 | [diff] [blame] | 170 | uint64_t Result = getSymbolValue(Ref); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 171 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 172 | int32_t SectionNumber = Symb.getSectionNumber(); |
Rafael Espindola | 9fa0ab3 | 2015-06-24 19:11:10 +0000 | [diff] [blame] | 173 | |
| 174 | if (Symb.isAnyUndefined() || Symb.isCommon() || |
| 175 | COFF::isReservedSectionNumber(SectionNumber)) |
Rafael Espindola | 5954faa | 2015-07-03 18:19:00 +0000 | [diff] [blame] | 176 | return Result; |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 177 | |
Rafael Espindola | 9a5f962 | 2015-06-24 17:08:44 +0000 | [diff] [blame] | 178 | const coff_section *Section = nullptr; |
| 179 | if (std::error_code EC = getSection(SectionNumber, Section)) |
Kevin Enderby | 317de7c | 2016-06-24 18:24:42 +0000 | [diff] [blame] | 180 | return errorCodeToError(EC); |
Rafael Espindola | 9fa0ab3 | 2015-06-24 19:11:10 +0000 | [diff] [blame] | 181 | Result += Section->VirtualAddress; |
Reid Kleckner | c136e55 | 2015-07-31 16:14:22 +0000 | [diff] [blame] | 182 | |
| 183 | // The section VirtualAddress does not include ImageBase, and we want to |
| 184 | // return virtual addresses. |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 185 | Result += getImageBase(); |
Reid Kleckner | c136e55 | 2015-07-31 16:14:22 +0000 | [diff] [blame] | 186 | |
Rafael Espindola | 5954faa | 2015-07-03 18:19:00 +0000 | [diff] [blame] | 187 | return Result; |
Benjamin Kramer | ac241fe | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Kevin Enderby | a486dca | 2016-05-02 20:28:12 +0000 | [diff] [blame] | 190 | Expected<SymbolRef::Type> COFFObjectFile::getSymbolType(DataRefImpl Ref) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 191 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 192 | int32_t SectionNumber = Symb.getSectionNumber(); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 193 | |
Peter Collingbourne | f4fa49e | 2015-08-06 05:26:35 +0000 | [diff] [blame] | 194 | if (Symb.getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION) |
| 195 | return SymbolRef::ST_Function; |
Rafael Espindola | 50bea40 | 2015-06-26 12:18:49 +0000 | [diff] [blame] | 196 | if (Symb.isAnyUndefined()) |
| 197 | return SymbolRef::ST_Unknown; |
Rafael Espindola | 50bea40 | 2015-06-26 12:18:49 +0000 | [diff] [blame] | 198 | if (Symb.isCommon()) |
| 199 | return SymbolRef::ST_Data; |
| 200 | if (Symb.isFileRecord()) |
| 201 | return SymbolRef::ST_File; |
| 202 | |
| 203 | // TODO: perhaps we need a new symbol type ST_Section. |
| 204 | if (SectionNumber == COFF::IMAGE_SYM_DEBUG || Symb.isSectionDefinition()) |
| 205 | return SymbolRef::ST_Debug; |
| 206 | |
| 207 | if (!COFF::isReservedSectionNumber(SectionNumber)) |
| 208 | return SymbolRef::ST_Data; |
| 209 | |
| 210 | return SymbolRef::ST_Other; |
Benjamin Kramer | ac241fe | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Rafael Espindola | d8324e6 | 2014-01-31 20:57:12 +0000 | [diff] [blame] | 213 | uint32_t COFFObjectFile::getSymbolFlags(DataRefImpl Ref) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 214 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
Rafael Espindola | d8324e6 | 2014-01-31 20:57:12 +0000 | [diff] [blame] | 215 | uint32_t Result = SymbolRef::SF_None; |
Benjamin Kramer | ac241fe | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 216 | |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 217 | if (Symb.isExternal() || Symb.isWeakExternal()) |
Lang Hames | b412501 | 2016-01-25 01:21:45 +0000 | [diff] [blame] | 218 | Result |= SymbolRef::SF_Global; |
David Meyer | c46255a | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 219 | |
Martin Storsjo | 3631b66 | 2018-07-20 20:48:29 +0000 | [diff] [blame] | 220 | if (const coff_aux_weak_external *AWE = Symb.getWeakExternal()) { |
David Meyer | c46255a | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 221 | Result |= SymbolRef::SF_Weak; |
Martin Storsjo | 3631b66 | 2018-07-20 20:48:29 +0000 | [diff] [blame] | 222 | if (AWE->Characteristics != COFF::IMAGE_WEAK_EXTERN_SEARCH_ALIAS) |
| 223 | Result |= SymbolRef::SF_Undefined; |
Martell Malone | d888646 | 2017-07-18 21:26:38 +0000 | [diff] [blame] | 224 | } |
David Meyer | c46255a | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 225 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 226 | if (Symb.getSectionNumber() == COFF::IMAGE_SYM_ABSOLUTE) |
David Meyer | c46255a | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 227 | Result |= SymbolRef::SF_Absolute; |
| 228 | |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 229 | if (Symb.isFileRecord()) |
| 230 | Result |= SymbolRef::SF_FormatSpecific; |
| 231 | |
| 232 | if (Symb.isSectionDefinition()) |
| 233 | Result |= SymbolRef::SF_FormatSpecific; |
| 234 | |
| 235 | if (Symb.isCommon()) |
| 236 | Result |= SymbolRef::SF_Common; |
| 237 | |
Martin Storsjo | 3631b66 | 2018-07-20 20:48:29 +0000 | [diff] [blame] | 238 | if (Symb.isUndefined()) |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 239 | Result |= SymbolRef::SF_Undefined; |
| 240 | |
Rafael Espindola | d8324e6 | 2014-01-31 20:57:12 +0000 | [diff] [blame] | 241 | return Result; |
Michael J. Spencer | c38c36a | 2011-10-17 23:54:22 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Rafael Espindola | 821b06f | 2015-06-24 10:20:30 +0000 | [diff] [blame] | 244 | uint64_t COFFObjectFile::getCommonSymbolSizeImpl(DataRefImpl Ref) const { |
David Majnemer | a271590 | 2014-10-31 05:07:00 +0000 | [diff] [blame] | 245 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
Rafael Espindola | 821b06f | 2015-06-24 10:20:30 +0000 | [diff] [blame] | 246 | return Symb.getValue(); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Kevin Enderby | a486dca | 2016-05-02 20:28:12 +0000 | [diff] [blame] | 249 | Expected<section_iterator> |
Rafael Espindola | e84d8c1 | 2015-08-07 23:27:14 +0000 | [diff] [blame] | 250 | COFFObjectFile::getSymbolSection(DataRefImpl Ref) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 251 | COFFSymbolRef Symb = getCOFFSymbol(Ref); |
Rafael Espindola | e84d8c1 | 2015-08-07 23:27:14 +0000 | [diff] [blame] | 252 | if (COFF::isReservedSectionNumber(Symb.getSectionNumber())) |
| 253 | return section_end(); |
| 254 | const coff_section *Sec = nullptr; |
| 255 | if (std::error_code EC = getSection(Symb.getSectionNumber(), Sec)) |
Kevin Enderby | a486dca | 2016-05-02 20:28:12 +0000 | [diff] [blame] | 256 | return errorCodeToError(EC); |
Rafael Espindola | e84d8c1 | 2015-08-07 23:27:14 +0000 | [diff] [blame] | 257 | DataRefImpl Ret; |
| 258 | Ret.p = reinterpret_cast<uintptr_t>(Sec); |
| 259 | return section_iterator(SectionRef(Ret, this)); |
Michael J. Spencer | 9b2b812 | 2011-10-17 23:54:46 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Rafael Espindola | a3af347 | 2015-06-24 19:57:32 +0000 | [diff] [blame] | 262 | unsigned COFFObjectFile::getSymbolSectionID(SymbolRef Sym) const { |
| 263 | COFFSymbolRef Symb = getCOFFSymbol(Sym.getRawDataRefImpl()); |
| 264 | return Symb.getSectionNumber(); |
| 265 | } |
| 266 | |
Rafael Espindola | efdbec8 | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 267 | void COFFObjectFile::moveSectionNext(DataRefImpl &Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 268 | const coff_section *Sec = toSec(Ref); |
| 269 | Sec += 1; |
| 270 | Ref.p = reinterpret_cast<uintptr_t>(Sec); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 271 | } |
| 272 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 273 | std::error_code COFFObjectFile::getSectionName(DataRefImpl Ref, |
| 274 | StringRef &Result) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 275 | const coff_section *Sec = toSec(Ref); |
| 276 | return getSectionName(Sec, Result); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 279 | uint64_t COFFObjectFile::getSectionAddress(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 280 | const coff_section *Sec = toSec(Ref); |
David Majnemer | 0229c3b | 2015-07-31 17:40:24 +0000 | [diff] [blame] | 281 | uint64_t Result = Sec->VirtualAddress; |
| 282 | |
| 283 | // The section VirtualAddress does not include ImageBase, and we want to |
| 284 | // return virtual addresses. |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 285 | Result += getImageBase(); |
David Majnemer | 0229c3b | 2015-07-31 17:40:24 +0000 | [diff] [blame] | 286 | return Result; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 287 | } |
| 288 | |
George Rimar | b5ac700 | 2017-05-27 18:10:23 +0000 | [diff] [blame] | 289 | uint64_t COFFObjectFile::getSectionIndex(DataRefImpl Sec) const { |
| 290 | return toSec(Sec) - SectionTable; |
| 291 | } |
| 292 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 293 | uint64_t COFFObjectFile::getSectionSize(DataRefImpl Ref) const { |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 294 | return getSectionSize(toSec(Ref)); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 297 | std::error_code COFFObjectFile::getSectionContents(DataRefImpl Ref, |
| 298 | StringRef &Result) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 299 | const coff_section *Sec = toSec(Ref); |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 300 | ArrayRef<uint8_t> Res; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 301 | std::error_code EC = getSectionContents(Sec, Res); |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 302 | Result = StringRef(reinterpret_cast<const char*>(Res.data()), Res.size()); |
| 303 | return EC; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 306 | uint64_t COFFObjectFile::getSectionAlignment(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 307 | const coff_section *Sec = toSec(Ref); |
David Majnemer | 30abf16 | 2016-03-17 16:55:18 +0000 | [diff] [blame] | 308 | return Sec->getAlignment(); |
Michael J. Spencer | e2f2f07 | 2011-10-10 21:55:43 +0000 | [diff] [blame] | 309 | } |
| 310 | |
George Rimar | 5ad80b2 | 2016-05-24 12:48:46 +0000 | [diff] [blame] | 311 | bool COFFObjectFile::isSectionCompressed(DataRefImpl Sec) const { |
| 312 | return false; |
| 313 | } |
| 314 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 315 | bool COFFObjectFile::isSectionText(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 316 | const coff_section *Sec = toSec(Ref); |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 317 | return Sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 318 | } |
| 319 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 320 | bool COFFObjectFile::isSectionData(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 321 | const coff_section *Sec = toSec(Ref); |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 322 | return Sec->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA; |
Michael J. Spencer | 13afc5e | 2011-09-28 20:57:30 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 325 | bool COFFObjectFile::isSectionBSS(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 326 | const coff_section *Sec = toSec(Ref); |
David Majnemer | 2c08439 | 2015-03-07 20:21:27 +0000 | [diff] [blame] | 327 | const uint32_t BssFlags = COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA | |
| 328 | COFF::IMAGE_SCN_MEM_READ | |
| 329 | COFF::IMAGE_SCN_MEM_WRITE; |
| 330 | return (Sec->Characteristics & BssFlags) == BssFlags; |
Michael J. Spencer | 13afc5e | 2011-09-28 20:57:30 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Rafael Espindola | a3af347 | 2015-06-24 19:57:32 +0000 | [diff] [blame] | 333 | unsigned COFFObjectFile::getSectionID(SectionRef Sec) const { |
| 334 | uintptr_t Offset = |
| 335 | uintptr_t(Sec.getRawDataRefImpl().p) - uintptr_t(SectionTable); |
| 336 | assert((Offset % sizeof(coff_section)) == 0); |
| 337 | return (Offset / sizeof(coff_section)) + 1; |
| 338 | } |
| 339 | |
Rafael Espindola | 8175be5 | 2014-10-08 15:28:58 +0000 | [diff] [blame] | 340 | bool COFFObjectFile::isSectionVirtual(DataRefImpl Ref) const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 341 | const coff_section *Sec = toSec(Ref); |
Fangrui Song | af7b183 | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 342 | // In COFF, a virtual section won't have any in-file |
David Majnemer | 2c08439 | 2015-03-07 20:21:27 +0000 | [diff] [blame] | 343 | // content, so the file pointer to the content will be zero. |
| 344 | return Sec->PointerToRawData == 0; |
Preston Gurd | c68dda8 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 345 | } |
| 346 | |
David Majnemer | b6ddb3c | 2014-11-13 08:46:37 +0000 | [diff] [blame] | 347 | static uint32_t getNumberOfRelocations(const coff_section *Sec, |
| 348 | MemoryBufferRef M, const uint8_t *base) { |
| 349 | // The field for the number of relocations in COFF section table is only |
| 350 | // 16-bit wide. If a section has more than 65535 relocations, 0xFFFF is set to |
| 351 | // NumberOfRelocations field, and the actual relocation count is stored in the |
| 352 | // VirtualAddress field in the first relocation entry. |
| 353 | if (Sec->hasExtendedRelocations()) { |
| 354 | const coff_relocation *FirstReloc; |
| 355 | if (getObject(FirstReloc, M, reinterpret_cast<const coff_relocation*>( |
| 356 | base + Sec->PointerToRelocations))) |
| 357 | return 0; |
Rui Ueyama | d2077b0 | 2014-11-26 22:17:25 +0000 | [diff] [blame] | 358 | // -1 to exclude this first relocation entry. |
| 359 | return FirstReloc->VirtualAddress - 1; |
David Majnemer | b6ddb3c | 2014-11-13 08:46:37 +0000 | [diff] [blame] | 360 | } |
| 361 | return Sec->NumberOfRelocations; |
| 362 | } |
| 363 | |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 364 | static const coff_relocation * |
| 365 | getFirstReloc(const coff_section *Sec, MemoryBufferRef M, const uint8_t *Base) { |
| 366 | uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base); |
| 367 | if (!NumRelocs) |
| 368 | return nullptr; |
| 369 | auto begin = reinterpret_cast<const coff_relocation *>( |
| 370 | Base + Sec->PointerToRelocations); |
| 371 | if (Sec->hasExtendedRelocations()) { |
| 372 | // Skip the first relocation entry repurposed to store the number of |
| 373 | // relocations. |
| 374 | begin++; |
| 375 | } |
Benjamin Kramer | 1a7f03e | 2017-08-31 12:27:10 +0000 | [diff] [blame] | 376 | if (Binary::checkOffset(M, uintptr_t(begin), |
| 377 | sizeof(coff_relocation) * NumRelocs)) |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 378 | return nullptr; |
| 379 | return begin; |
| 380 | } |
| 381 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 382 | relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const { |
| 383 | const coff_section *Sec = toSec(Ref); |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 384 | const coff_relocation *begin = getFirstReloc(Sec, Data, base()); |
Rafael Espindola | 1599469 | 2015-07-06 14:26:07 +0000 | [diff] [blame] | 385 | if (begin && Sec->VirtualAddress != 0) |
| 386 | report_fatal_error("Sections with relocations should have an address of 0"); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 387 | DataRefImpl Ret; |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 388 | Ret.p = reinterpret_cast<uintptr_t>(begin); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 389 | return relocation_iterator(RelocationRef(Ret, this)); |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 392 | relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const { |
| 393 | const coff_section *Sec = toSec(Ref); |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 394 | const coff_relocation *I = getFirstReloc(Sec, Data, base()); |
| 395 | if (I) |
| 396 | I += getNumberOfRelocations(Sec, Data, base()); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 397 | DataRefImpl Ret; |
David Majnemer | a98fcec | 2014-11-13 09:50:18 +0000 | [diff] [blame] | 398 | Ret.p = reinterpret_cast<uintptr_t>(I); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 399 | return relocation_iterator(RelocationRef(Ret, this)); |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 400 | } |
| 401 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 402 | // Initialize the pointer to the symbol table. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 403 | std::error_code COFFObjectFile::initSymbolTablePtr() { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 404 | if (COFFHeader) |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 405 | if (std::error_code EC = getObject( |
| 406 | SymbolTable16, Data, base() + getPointerToSymbolTable(), |
| 407 | (uint64_t)getNumberOfSymbols() * getSymbolTableEntrySize())) |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 408 | return EC; |
| 409 | |
| 410 | if (COFFBigObjHeader) |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 411 | if (std::error_code EC = getObject( |
| 412 | SymbolTable32, Data, base() + getPointerToSymbolTable(), |
| 413 | (uint64_t)getNumberOfSymbols() * getSymbolTableEntrySize())) |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 414 | return EC; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 415 | |
| 416 | // Find string table. The first four byte of the string table contains the |
| 417 | // total size of the string table, including the size field itself. If the |
| 418 | // string table is empty, the value of the first four byte would be 4. |
David Majnemer | 237544b | 2014-11-14 08:15:42 +0000 | [diff] [blame] | 419 | uint32_t StringTableOffset = getPointerToSymbolTable() + |
| 420 | getNumberOfSymbols() * getSymbolTableEntrySize(); |
| 421 | const uint8_t *StringTableAddr = base() + StringTableOffset; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 422 | const ulittle32_t *StringTableSizePtr; |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 423 | if (std::error_code EC = getObject(StringTableSizePtr, Data, StringTableAddr)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 424 | return EC; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 425 | StringTableSize = *StringTableSizePtr; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 426 | if (std::error_code EC = |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 427 | getObject(StringTable, Data, StringTableAddr, StringTableSize)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 428 | return EC; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 429 | |
Nico Rieck | 0a91f48 | 2014-02-26 19:51:44 +0000 | [diff] [blame] | 430 | // Treat table sizes < 4 as empty because contrary to the PECOFF spec, some |
| 431 | // tools like cvtres write a size of 0 for an empty table instead of 4. |
| 432 | if (StringTableSize < 4) |
| 433 | StringTableSize = 4; |
| 434 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 435 | // Check that the string table is null terminated if has any in it. |
Nico Rieck | 0a91f48 | 2014-02-26 19:51:44 +0000 | [diff] [blame] | 436 | if (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0) |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 437 | return object_error::parse_failed; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 438 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 441 | uint64_t COFFObjectFile::getImageBase() const { |
Reid Kleckner | 27a9e1d | 2015-10-09 00:15:01 +0000 | [diff] [blame] | 442 | if (PE32Header) |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 443 | return PE32Header->ImageBase; |
Reid Kleckner | 27a9e1d | 2015-10-09 00:15:01 +0000 | [diff] [blame] | 444 | else if (PE32PlusHeader) |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 445 | return PE32PlusHeader->ImageBase; |
| 446 | // This actually comes up in practice. |
| 447 | return 0; |
Reid Kleckner | 27a9e1d | 2015-10-09 00:15:01 +0000 | [diff] [blame] | 448 | } |
| 449 | |
Rui Ueyama | 6fac32b | 2014-02-20 06:51:07 +0000 | [diff] [blame] | 450 | // Returns the file offset for the given VA. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 451 | std::error_code COFFObjectFile::getVaPtr(uint64_t Addr, uintptr_t &Res) const { |
Reid Kleckner | 00fda73 | 2015-10-09 00:15:08 +0000 | [diff] [blame] | 452 | uint64_t ImageBase = getImageBase(); |
Rui Ueyama | f41901d | 2014-02-20 19:14:56 +0000 | [diff] [blame] | 453 | uint64_t Rva = Addr - ImageBase; |
| 454 | assert(Rva <= UINT32_MAX); |
| 455 | return getRvaPtr((uint32_t)Rva, Res); |
Rui Ueyama | 6fac32b | 2014-02-20 06:51:07 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 458 | // Returns the file offset for the given RVA. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 459 | std::error_code COFFObjectFile::getRvaPtr(uint32_t Addr, uintptr_t &Res) const { |
Alexey Samsonov | 5b64579 | 2014-03-18 06:53:02 +0000 | [diff] [blame] | 460 | for (const SectionRef &S : sections()) { |
| 461 | const coff_section *Section = getCOFFSection(S); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 462 | uint32_t SectionStart = Section->VirtualAddress; |
| 463 | uint32_t SectionEnd = Section->VirtualAddress + Section->VirtualSize; |
Rui Ueyama | 6fac32b | 2014-02-20 06:51:07 +0000 | [diff] [blame] | 464 | if (SectionStart <= Addr && Addr < SectionEnd) { |
| 465 | uint32_t Offset = Addr - SectionStart; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 466 | Res = uintptr_t(base()) + Section->PointerToRawData + Offset; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 467 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | return object_error::parse_failed; |
| 471 | } |
| 472 | |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 473 | std::error_code |
| 474 | COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, |
| 475 | ArrayRef<uint8_t> &Contents) const { |
| 476 | for (const SectionRef &S : sections()) { |
| 477 | const coff_section *Section = getCOFFSection(S); |
| 478 | uint32_t SectionStart = Section->VirtualAddress; |
| 479 | // Check if this RVA is within the section bounds. Be careful about integer |
| 480 | // overflow. |
| 481 | uint32_t OffsetIntoSection = RVA - SectionStart; |
| 482 | if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize && |
| 483 | Size <= Section->VirtualSize - OffsetIntoSection) { |
| 484 | uintptr_t Begin = |
| 485 | uintptr_t(base()) + Section->PointerToRawData + OffsetIntoSection; |
| 486 | Contents = |
| 487 | ArrayRef<uint8_t>(reinterpret_cast<const uint8_t *>(Begin), Size); |
| 488 | return std::error_code(); |
| 489 | } |
| 490 | } |
| 491 | return object_error::parse_failed; |
| 492 | } |
| 493 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 494 | // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name |
| 495 | // table entry. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 496 | std::error_code COFFObjectFile::getHintName(uint32_t Rva, uint16_t &Hint, |
| 497 | StringRef &Name) const { |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 498 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 499 | if (std::error_code EC = getRvaPtr(Rva, IntPtr)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 500 | return EC; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 501 | const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr); |
| 502 | Hint = *reinterpret_cast<const ulittle16_t *>(Ptr); |
| 503 | Name = StringRef(reinterpret_cast<const char *>(Ptr + 2)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 504 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Saleem Abdulrasool | b79146f | 2016-08-09 00:25:12 +0000 | [diff] [blame] | 507 | std::error_code |
| 508 | COFFObjectFile::getDebugPDBInfo(const debug_directory *DebugDir, |
| 509 | const codeview::DebugInfo *&PDBInfo, |
| 510 | StringRef &PDBFileName) const { |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 511 | ArrayRef<uint8_t> InfoBytes; |
| 512 | if (std::error_code EC = getRvaAndSizeAsBytes( |
| 513 | DebugDir->AddressOfRawData, DebugDir->SizeOfData, InfoBytes)) |
| 514 | return EC; |
Saleem Abdulrasool | b79146f | 2016-08-09 00:25:12 +0000 | [diff] [blame] | 515 | if (InfoBytes.size() < sizeof(*PDBInfo) + 1) |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 516 | return object_error::parse_failed; |
Saleem Abdulrasool | b79146f | 2016-08-09 00:25:12 +0000 | [diff] [blame] | 517 | PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); |
| 518 | InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo)); |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 519 | PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), |
| 520 | InfoBytes.size()); |
| 521 | // Truncate the name at the first null byte. Ignore any padding. |
| 522 | PDBFileName = PDBFileName.split('\0').first; |
| 523 | return std::error_code(); |
| 524 | } |
| 525 | |
Saleem Abdulrasool | b79146f | 2016-08-09 00:25:12 +0000 | [diff] [blame] | 526 | std::error_code |
| 527 | COFFObjectFile::getDebugPDBInfo(const codeview::DebugInfo *&PDBInfo, |
| 528 | StringRef &PDBFileName) const { |
Reid Kleckner | 1ac3f3e | 2016-06-03 20:25:09 +0000 | [diff] [blame] | 529 | for (const debug_directory &D : debug_directories()) |
| 530 | if (D.Type == COFF::IMAGE_DEBUG_TYPE_CODEVIEW) |
| 531 | return getDebugPDBInfo(&D, PDBInfo, PDBFileName); |
| 532 | // If we get here, there is no PDB info to return. |
| 533 | PDBInfo = nullptr; |
| 534 | PDBFileName = StringRef(); |
| 535 | return std::error_code(); |
| 536 | } |
| 537 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 538 | // Find the import table. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 539 | std::error_code COFFObjectFile::initImportTablePtr() { |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 540 | // First, we get the RVA of the import table. If the file lacks a pointer to |
| 541 | // the import table, do nothing. |
| 542 | const data_directory *DataEntry; |
| 543 | if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry)) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 544 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 545 | |
| 546 | // Do nothing if the pointer to import table is NULL. |
| 547 | if (DataEntry->RelativeVirtualAddress == 0) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 548 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 549 | |
| 550 | uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 551 | |
| 552 | // Find the section that contains the RVA. This is needed because the RVA is |
| 553 | // the import table's memory address which is different from its file offset. |
| 554 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 555 | if (std::error_code EC = getRvaPtr(ImportTableRva, IntPtr)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 556 | return EC; |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 557 | if (std::error_code EC = checkOffset(Data, IntPtr, DataEntry->Size)) |
| 558 | return EC; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 559 | ImportDirectory = reinterpret_cast< |
David Majnemer | e2fac43 | 2016-07-31 19:25:21 +0000 | [diff] [blame] | 560 | const coff_import_directory_table_entry *>(IntPtr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 561 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 562 | } |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 563 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 564 | // Initializes DelayImportDirectory and NumberOfDelayImportDirectory. |
| 565 | std::error_code COFFObjectFile::initDelayImportTablePtr() { |
| 566 | const data_directory *DataEntry; |
| 567 | if (getDataDirectory(COFF::DELAY_IMPORT_DESCRIPTOR, DataEntry)) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 568 | return std::error_code(); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 569 | if (DataEntry->RelativeVirtualAddress == 0) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 570 | return std::error_code(); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 571 | |
| 572 | uint32_t RVA = DataEntry->RelativeVirtualAddress; |
| 573 | NumberOfDelayImportDirectory = DataEntry->Size / |
| 574 | sizeof(delay_import_directory_table_entry) - 1; |
| 575 | |
| 576 | uintptr_t IntPtr = 0; |
| 577 | if (std::error_code EC = getRvaPtr(RVA, IntPtr)) |
| 578 | return EC; |
| 579 | DelayImportDirectory = reinterpret_cast< |
| 580 | const delay_import_directory_table_entry *>(IntPtr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 581 | return std::error_code(); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 584 | // Find the export table. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 585 | std::error_code COFFObjectFile::initExportTablePtr() { |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 586 | // First, we get the RVA of the export table. If the file lacks a pointer to |
| 587 | // the export table, do nothing. |
| 588 | const data_directory *DataEntry; |
| 589 | if (getDataDirectory(COFF::EXPORT_TABLE, DataEntry)) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 590 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 591 | |
| 592 | // Do nothing if the pointer to export table is NULL. |
| 593 | if (DataEntry->RelativeVirtualAddress == 0) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 594 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 595 | |
| 596 | uint32_t ExportTableRva = DataEntry->RelativeVirtualAddress; |
| 597 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 598 | if (std::error_code EC = getRvaPtr(ExportTableRva, IntPtr)) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 599 | return EC; |
Rui Ueyama | 6438260 | 2014-01-17 22:11:27 +0000 | [diff] [blame] | 600 | ExportDirectory = |
| 601 | reinterpret_cast<const export_directory_table_entry *>(IntPtr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 602 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 605 | std::error_code COFFObjectFile::initBaseRelocPtr() { |
| 606 | const data_directory *DataEntry; |
| 607 | if (getDataDirectory(COFF::BASE_RELOCATION_TABLE, DataEntry)) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 608 | return std::error_code(); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 609 | if (DataEntry->RelativeVirtualAddress == 0) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 610 | return std::error_code(); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 611 | |
| 612 | uintptr_t IntPtr = 0; |
| 613 | if (std::error_code EC = getRvaPtr(DataEntry->RelativeVirtualAddress, IntPtr)) |
| 614 | return EC; |
| 615 | BaseRelocHeader = reinterpret_cast<const coff_base_reloc_block_header *>( |
| 616 | IntPtr); |
| 617 | BaseRelocEnd = reinterpret_cast<coff_base_reloc_block_header *>( |
| 618 | IntPtr + DataEntry->Size); |
Nico Weber | 1f9e6bb | 2018-09-05 18:01:04 +0000 | [diff] [blame] | 619 | // FIXME: Verify the section containing BaseRelocHeader has at least |
| 620 | // DataEntry->Size bytes after DataEntry->RelativeVirtualAddress. |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 621 | return std::error_code(); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 622 | } |
| 623 | |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 624 | std::error_code COFFObjectFile::initDebugDirectoryPtr() { |
| 625 | // Get the RVA of the debug directory. Do nothing if it does not exist. |
| 626 | const data_directory *DataEntry; |
| 627 | if (getDataDirectory(COFF::DEBUG_DIRECTORY, DataEntry)) |
| 628 | return std::error_code(); |
| 629 | |
| 630 | // Do nothing if the RVA is NULL. |
| 631 | if (DataEntry->RelativeVirtualAddress == 0) |
| 632 | return std::error_code(); |
| 633 | |
| 634 | // Check that the size is a multiple of the entry size. |
| 635 | if (DataEntry->Size % sizeof(debug_directory) != 0) |
| 636 | return object_error::parse_failed; |
| 637 | |
| 638 | uintptr_t IntPtr = 0; |
| 639 | if (std::error_code EC = getRvaPtr(DataEntry->RelativeVirtualAddress, IntPtr)) |
| 640 | return EC; |
| 641 | DebugDirectoryBegin = reinterpret_cast<const debug_directory *>(IntPtr); |
Nico Weber | 1f9e6bb | 2018-09-05 18:01:04 +0000 | [diff] [blame] | 642 | DebugDirectoryEnd = reinterpret_cast<const debug_directory *>( |
| 643 | IntPtr + DataEntry->Size); |
| 644 | // FIXME: Verify the section containing DebugDirectoryBegin has at least |
| 645 | // DataEntry->Size bytes after DataEntry->RelativeVirtualAddress. |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 646 | return std::error_code(); |
| 647 | } |
| 648 | |
Reid Kleckner | 367f21d | 2017-06-22 01:10:29 +0000 | [diff] [blame] | 649 | std::error_code COFFObjectFile::initLoadConfigPtr() { |
| 650 | // Get the RVA of the debug directory. Do nothing if it does not exist. |
| 651 | const data_directory *DataEntry; |
| 652 | if (getDataDirectory(COFF::LOAD_CONFIG_TABLE, DataEntry)) |
| 653 | return std::error_code(); |
| 654 | |
| 655 | // Do nothing if the RVA is NULL. |
| 656 | if (DataEntry->RelativeVirtualAddress == 0) |
| 657 | return std::error_code(); |
| 658 | uintptr_t IntPtr = 0; |
| 659 | if (std::error_code EC = getRvaPtr(DataEntry->RelativeVirtualAddress, IntPtr)) |
| 660 | return EC; |
| 661 | |
| 662 | LoadConfig = (const void *)IntPtr; |
| 663 | return std::error_code(); |
| 664 | } |
| 665 | |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 666 | COFFObjectFile::COFFObjectFile(MemoryBufferRef Object, std::error_code &EC) |
| 667 | : ObjectFile(Binary::ID_COFF, Object), COFFHeader(nullptr), |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 668 | COFFBigObjHeader(nullptr), PE32Header(nullptr), PE32PlusHeader(nullptr), |
| 669 | DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), |
| 670 | SymbolTable32(nullptr), StringTable(nullptr), StringTableSize(0), |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 671 | ImportDirectory(nullptr), |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 672 | DelayImportDirectory(nullptr), NumberOfDelayImportDirectory(0), |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 673 | ExportDirectory(nullptr), BaseRelocHeader(nullptr), BaseRelocEnd(nullptr), |
| 674 | DebugDirectoryBegin(nullptr), DebugDirectoryEnd(nullptr) { |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 675 | // Check that we at least have enough room for a header. |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 676 | if (!checkSize(Data, EC, sizeof(coff_file_header))) |
Rafael Espindola | 1f65932 | 2014-06-23 21:53:12 +0000 | [diff] [blame] | 677 | return; |
Eric Christopher | 539d8d8 | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 678 | |
Rui Ueyama | 4bf771b | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 679 | // The current location in the file where we are looking at. |
| 680 | uint64_t CurPtr = 0; |
| 681 | |
| 682 | // PE header is optional and is present only in executables. If it exists, |
| 683 | // it is placed right after COFF header. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 684 | bool HasPEHeader = false; |
Eric Christopher | 539d8d8 | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 685 | |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 686 | // Check if this is a PE/COFF file. |
David Majnemer | 4787059 | 2014-11-05 06:24:35 +0000 | [diff] [blame] | 687 | if (checkSize(Data, EC, sizeof(dos_header) + sizeof(COFF::PEMagic))) { |
Eric Christopher | 539d8d8 | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 688 | // PE/COFF, seek through MS-DOS compatibility stub and 4-byte |
| 689 | // PE signature to find 'normal' COFF header. |
David Majnemer | 4787059 | 2014-11-05 06:24:35 +0000 | [diff] [blame] | 690 | const auto *DH = reinterpret_cast<const dos_header *>(base()); |
| 691 | if (DH->Magic[0] == 'M' && DH->Magic[1] == 'Z') { |
| 692 | CurPtr = DH->AddressOfNewExeHeader; |
| 693 | // Check the PE magic bytes. ("PE\0\0") |
| 694 | if (memcmp(base() + CurPtr, COFF::PEMagic, sizeof(COFF::PEMagic)) != 0) { |
| 695 | EC = object_error::parse_failed; |
| 696 | return; |
| 697 | } |
| 698 | CurPtr += sizeof(COFF::PEMagic); // Skip the PE magic bytes. |
| 699 | HasPEHeader = true; |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 700 | } |
Eric Christopher | 539d8d8 | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 703 | if ((EC = getObject(COFFHeader, Data, base() + CurPtr))) |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 704 | return; |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 705 | |
| 706 | // It might be a bigobj file, let's check. Note that COFF bigobj and COFF |
| 707 | // import libraries share a common prefix but bigobj is more restrictive. |
| 708 | if (!HasPEHeader && COFFHeader->Machine == COFF::IMAGE_FILE_MACHINE_UNKNOWN && |
| 709 | COFFHeader->NumberOfSections == uint16_t(0xffff) && |
| 710 | checkSize(Data, EC, sizeof(coff_bigobj_file_header))) { |
| 711 | if ((EC = getObject(COFFBigObjHeader, Data, base() + CurPtr))) |
| 712 | return; |
| 713 | |
| 714 | // Verify that we are dealing with bigobj. |
| 715 | if (COFFBigObjHeader->Version >= COFF::BigObjHeader::MinBigObjectVersion && |
| 716 | std::memcmp(COFFBigObjHeader->UUID, COFF::BigObjMagic, |
| 717 | sizeof(COFF::BigObjMagic)) == 0) { |
| 718 | COFFHeader = nullptr; |
| 719 | CurPtr += sizeof(coff_bigobj_file_header); |
| 720 | } else { |
| 721 | // It's not a bigobj. |
| 722 | COFFBigObjHeader = nullptr; |
| 723 | } |
| 724 | } |
| 725 | if (COFFHeader) { |
| 726 | // The prior checkSize call may have failed. This isn't a hard error |
| 727 | // because we were just trying to sniff out bigobj. |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 728 | EC = std::error_code(); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 729 | CurPtr += sizeof(coff_file_header); |
| 730 | |
| 731 | if (COFFHeader->isImportLibrary()) |
| 732 | return; |
| 733 | } |
Rui Ueyama | 4bf771b | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 734 | |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 735 | if (HasPEHeader) { |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 736 | const pe32_header *Header; |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 737 | if ((EC = getObject(Header, Data, base() + CurPtr))) |
Rui Ueyama | 4bf771b | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 738 | return; |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 739 | |
| 740 | const uint8_t *DataDirAddr; |
| 741 | uint64_t DataDirSize; |
David Majnemer | 4787059 | 2014-11-05 06:24:35 +0000 | [diff] [blame] | 742 | if (Header->Magic == COFF::PE32Header::PE32) { |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 743 | PE32Header = Header; |
| 744 | DataDirAddr = base() + CurPtr + sizeof(pe32_header); |
| 745 | DataDirSize = sizeof(data_directory) * PE32Header->NumberOfRvaAndSize; |
David Majnemer | 4787059 | 2014-11-05 06:24:35 +0000 | [diff] [blame] | 746 | } else if (Header->Magic == COFF::PE32Header::PE32_PLUS) { |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 747 | PE32PlusHeader = reinterpret_cast<const pe32plus_header *>(Header); |
| 748 | DataDirAddr = base() + CurPtr + sizeof(pe32plus_header); |
| 749 | DataDirSize = sizeof(data_directory) * PE32PlusHeader->NumberOfRvaAndSize; |
| 750 | } else { |
| 751 | // It's neither PE32 nor PE32+. |
| 752 | EC = object_error::parse_failed; |
| 753 | return; |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 754 | } |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 755 | if ((EC = getObject(DataDirectory, Data, DataDirAddr, DataDirSize))) |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 756 | return; |
Rui Ueyama | 4bf771b | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 757 | } |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 758 | |
Rui Ueyama | 837032f | 2016-08-11 22:02:44 +0000 | [diff] [blame] | 759 | if (COFFHeader) |
| 760 | CurPtr += COFFHeader->SizeOfOptionalHeader; |
| 761 | |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 762 | if ((EC = getObject(SectionTable, Data, base() + CurPtr, |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 763 | (uint64_t)getNumberOfSections() * sizeof(coff_section)))) |
Rafael Espindola | 3d21815 | 2014-01-21 23:06:54 +0000 | [diff] [blame] | 764 | return; |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 765 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 766 | // Initialize the pointer to the symbol table. |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 767 | if (getPointerToSymbolTable() != 0) { |
David Majnemer | 99edeba | 2016-08-30 20:20:24 +0000 | [diff] [blame] | 768 | if ((EC = initSymbolTablePtr())) { |
| 769 | SymbolTable16 = nullptr; |
| 770 | SymbolTable32 = nullptr; |
| 771 | StringTable = nullptr; |
| 772 | StringTableSize = 0; |
| 773 | } |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 774 | } else { |
| 775 | // We had better not have any symbols if we don't have a symbol table. |
| 776 | if (getNumberOfSymbols() != 0) { |
| 777 | EC = object_error::parse_failed; |
| 778 | return; |
| 779 | } |
| 780 | } |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 781 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 782 | // Initialize the pointer to the beginning of the import table. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 783 | if ((EC = initImportTablePtr())) |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 784 | return; |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 785 | if ((EC = initDelayImportTablePtr())) |
| 786 | return; |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 787 | |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 788 | // Initialize the pointer to the export table. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 789 | if ((EC = initExportTablePtr())) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 790 | return; |
| 791 | |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 792 | // Initialize the pointer to the base relocation table. |
| 793 | if ((EC = initBaseRelocPtr())) |
| 794 | return; |
| 795 | |
Reid Kleckner | fb1a911 | 2016-06-02 17:10:43 +0000 | [diff] [blame] | 796 | // Initialize the pointer to the export table. |
| 797 | if ((EC = initDebugDirectoryPtr())) |
| 798 | return; |
| 799 | |
Reid Kleckner | 367f21d | 2017-06-22 01:10:29 +0000 | [diff] [blame] | 800 | if ((EC = initLoadConfigPtr())) |
| 801 | return; |
| 802 | |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 803 | EC = std::error_code(); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Peter Collingbourne | b9b3908 | 2016-11-22 03:38:40 +0000 | [diff] [blame] | 806 | basic_symbol_iterator COFFObjectFile::symbol_begin() const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 807 | DataRefImpl Ret; |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 808 | Ret.p = getSymbolTable(); |
Rafael Espindola | 91f86b7 | 2014-02-21 20:10:59 +0000 | [diff] [blame] | 809 | return basic_symbol_iterator(SymbolRef(Ret, this)); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 810 | } |
| 811 | |
Peter Collingbourne | b9b3908 | 2016-11-22 03:38:40 +0000 | [diff] [blame] | 812 | basic_symbol_iterator COFFObjectFile::symbol_end() const { |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 813 | // The symbol table ends where the string table begins. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 814 | DataRefImpl Ret; |
| 815 | Ret.p = reinterpret_cast<uintptr_t>(StringTable); |
Rafael Espindola | 91f86b7 | 2014-02-21 20:10:59 +0000 | [diff] [blame] | 816 | return basic_symbol_iterator(SymbolRef(Ret, this)); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Rui Ueyama | 2955222 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 819 | import_directory_iterator COFFObjectFile::import_directory_begin() const { |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 820 | if (!ImportDirectory) |
| 821 | return import_directory_end(); |
David Majnemer | e2fac43 | 2016-07-31 19:25:21 +0000 | [diff] [blame] | 822 | if (ImportDirectory->isNull()) |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 823 | return import_directory_end(); |
Rui Ueyama | 6a8151d | 2014-01-16 03:13:19 +0000 | [diff] [blame] | 824 | return import_directory_iterator( |
| 825 | ImportDirectoryEntryRef(ImportDirectory, 0, this)); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 826 | } |
| 827 | |
Rui Ueyama | 2955222 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 828 | import_directory_iterator COFFObjectFile::import_directory_end() const { |
Rui Ueyama | 6a8151d | 2014-01-16 03:13:19 +0000 | [diff] [blame] | 829 | return import_directory_iterator( |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 830 | ImportDirectoryEntryRef(nullptr, -1, this)); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 831 | } |
David Meyer | 97f7787 | 2012-03-01 22:19:54 +0000 | [diff] [blame] | 832 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 833 | delay_import_directory_iterator |
| 834 | COFFObjectFile::delay_import_directory_begin() const { |
| 835 | return delay_import_directory_iterator( |
| 836 | DelayImportDirectoryEntryRef(DelayImportDirectory, 0, this)); |
| 837 | } |
| 838 | |
| 839 | delay_import_directory_iterator |
| 840 | COFFObjectFile::delay_import_directory_end() const { |
| 841 | return delay_import_directory_iterator( |
| 842 | DelayImportDirectoryEntryRef( |
| 843 | DelayImportDirectory, NumberOfDelayImportDirectory, this)); |
| 844 | } |
| 845 | |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 846 | export_directory_iterator COFFObjectFile::export_directory_begin() const { |
| 847 | return export_directory_iterator( |
| 848 | ExportDirectoryEntryRef(ExportDirectory, 0, this)); |
| 849 | } |
| 850 | |
| 851 | export_directory_iterator COFFObjectFile::export_directory_end() const { |
Craig Topper | 0b6cb71 | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 852 | if (!ExportDirectory) |
| 853 | return export_directory_iterator(ExportDirectoryEntryRef(nullptr, 0, this)); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 854 | ExportDirectoryEntryRef Ref(ExportDirectory, |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 855 | ExportDirectory->AddressTableEntries, this); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 856 | return export_directory_iterator(Ref); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 857 | } |
| 858 | |
Rafael Espindola | a40b352 | 2014-02-10 20:24:04 +0000 | [diff] [blame] | 859 | section_iterator COFFObjectFile::section_begin() const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 860 | DataRefImpl Ret; |
| 861 | Ret.p = reinterpret_cast<uintptr_t>(SectionTable); |
| 862 | return section_iterator(SectionRef(Ret, this)); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 863 | } |
| 864 | |
Rafael Espindola | a40b352 | 2014-02-10 20:24:04 +0000 | [diff] [blame] | 865 | section_iterator COFFObjectFile::section_end() const { |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 866 | DataRefImpl Ret; |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 867 | int NumSections = |
| 868 | COFFHeader && COFFHeader->isImportLibrary() ? 0 : getNumberOfSections(); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 869 | Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); |
| 870 | return section_iterator(SectionRef(Ret, this)); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 871 | } |
| 872 | |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 873 | base_reloc_iterator COFFObjectFile::base_reloc_begin() const { |
| 874 | return base_reloc_iterator(BaseRelocRef(BaseRelocHeader, this)); |
| 875 | } |
| 876 | |
| 877 | base_reloc_iterator COFFObjectFile::base_reloc_end() const { |
| 878 | return base_reloc_iterator(BaseRelocRef(BaseRelocEnd, this)); |
| 879 | } |
| 880 | |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 881 | uint8_t COFFObjectFile::getBytesInAddress() const { |
Martin Storsjo | 9f0e6a1 | 2017-06-30 07:02:13 +0000 | [diff] [blame] | 882 | return getArch() == Triple::x86_64 || getArch() == Triple::aarch64 ? 8 : 4; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | StringRef COFFObjectFile::getFileFormatName() const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 886 | switch(getMachine()) { |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 887 | case COFF::IMAGE_FILE_MACHINE_I386: |
| 888 | return "COFF-i386"; |
| 889 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
| 890 | return "COFF-x86-64"; |
Saleem Abdulrasool | b0f12df | 2014-03-13 07:02:35 +0000 | [diff] [blame] | 891 | case COFF::IMAGE_FILE_MACHINE_ARMNT: |
| 892 | return "COFF-ARM"; |
Martell Malone | 751664f | 2015-07-28 16:18:17 +0000 | [diff] [blame] | 893 | case COFF::IMAGE_FILE_MACHINE_ARM64: |
| 894 | return "COFF-ARM64"; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 895 | default: |
| 896 | return "COFF-<unknown arch>"; |
| 897 | } |
| 898 | } |
| 899 | |
Zachary Turner | ece9b23 | 2017-12-14 22:07:03 +0000 | [diff] [blame] | 900 | Triple::ArchType COFFObjectFile::getArch() const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 901 | switch (getMachine()) { |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 902 | case COFF::IMAGE_FILE_MACHINE_I386: |
| 903 | return Triple::x86; |
| 904 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
| 905 | return Triple::x86_64; |
Saleem Abdulrasool | b0f12df | 2014-03-13 07:02:35 +0000 | [diff] [blame] | 906 | case COFF::IMAGE_FILE_MACHINE_ARMNT: |
| 907 | return Triple::thumb; |
Martell Malone | 751664f | 2015-07-28 16:18:17 +0000 | [diff] [blame] | 908 | case COFF::IMAGE_FILE_MACHINE_ARM64: |
| 909 | return Triple::aarch64; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 910 | default: |
| 911 | return Triple::UnknownArch; |
| 912 | } |
| 913 | } |
| 914 | |
Paul Semel | d069a21 | 2018-07-04 15:25:03 +0000 | [diff] [blame] | 915 | Expected<uint64_t> COFFObjectFile::getStartAddress() const { |
| 916 | if (PE32Header) |
| 917 | return PE32Header->AddressOfEntryPoint; |
| 918 | return 0; |
| 919 | } |
| 920 | |
Rui Ueyama | f02f03c | 2014-10-09 02:16:38 +0000 | [diff] [blame] | 921 | iterator_range<import_directory_iterator> |
| 922 | COFFObjectFile::import_directories() const { |
| 923 | return make_range(import_directory_begin(), import_directory_end()); |
| 924 | } |
| 925 | |
| 926 | iterator_range<delay_import_directory_iterator> |
| 927 | COFFObjectFile::delay_import_directories() const { |
| 928 | return make_range(delay_import_directory_begin(), |
| 929 | delay_import_directory_end()); |
| 930 | } |
| 931 | |
| 932 | iterator_range<export_directory_iterator> |
| 933 | COFFObjectFile::export_directories() const { |
| 934 | return make_range(export_directory_begin(), export_directory_end()); |
| 935 | } |
| 936 | |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 937 | iterator_range<base_reloc_iterator> COFFObjectFile::base_relocs() const { |
| 938 | return make_range(base_reloc_begin(), base_reloc_end()); |
| 939 | } |
| 940 | |
Martin Storsjo | e318fd6 | 2018-12-19 07:24:38 +0000 | [diff] [blame] | 941 | std::error_code |
| 942 | COFFObjectFile::getCOFFHeader(const coff_file_header *&Res) const { |
| 943 | Res = COFFHeader; |
| 944 | return std::error_code(); |
| 945 | } |
| 946 | |
| 947 | std::error_code |
| 948 | COFFObjectFile::getCOFFBigObjHeader(const coff_bigobj_file_header *&Res) const { |
| 949 | Res = COFFBigObjHeader; |
| 950 | return std::error_code(); |
| 951 | } |
| 952 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 953 | std::error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const { |
Rui Ueyama | 4bf771b | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 954 | Res = PE32Header; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 955 | return std::error_code(); |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 956 | } |
| 957 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 958 | std::error_code |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 959 | COFFObjectFile::getPE32PlusHeader(const pe32plus_header *&Res) const { |
| 960 | Res = PE32PlusHeader; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 961 | return std::error_code(); |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 964 | std::error_code |
| 965 | COFFObjectFile::getDataDirectory(uint32_t Index, |
| 966 | const data_directory *&Res) const { |
Hiroshi Inoue | ef1bc2d | 2018-04-12 05:53:20 +0000 | [diff] [blame] | 967 | // Error if there's no data directory or the index is out of range. |
David Majnemer | 237544b | 2014-11-14 08:15:42 +0000 | [diff] [blame] | 968 | if (!DataDirectory) { |
| 969 | Res = nullptr; |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 970 | return object_error::parse_failed; |
David Majnemer | 237544b | 2014-11-14 08:15:42 +0000 | [diff] [blame] | 971 | } |
Rui Ueyama | 1e839eb | 2014-01-26 04:15:52 +0000 | [diff] [blame] | 972 | assert(PE32Header || PE32PlusHeader); |
| 973 | uint32_t NumEnt = PE32Header ? PE32Header->NumberOfRvaAndSize |
| 974 | : PE32PlusHeader->NumberOfRvaAndSize; |
David Majnemer | 237544b | 2014-11-14 08:15:42 +0000 | [diff] [blame] | 975 | if (Index >= NumEnt) { |
| 976 | Res = nullptr; |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 977 | return object_error::parse_failed; |
David Majnemer | 237544b | 2014-11-14 08:15:42 +0000 | [diff] [blame] | 978 | } |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 979 | Res = &DataDirectory[Index]; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 980 | return std::error_code(); |
Rui Ueyama | 2f6c048 | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 983 | std::error_code COFFObjectFile::getSection(int32_t Index, |
| 984 | const coff_section *&Result) const { |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 985 | Result = nullptr; |
Rui Ueyama | cae25dc | 2014-03-18 23:37:53 +0000 | [diff] [blame] | 986 | if (COFF::isReservedSectionNumber(Index)) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 987 | return std::error_code(); |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 988 | if (static_cast<uint32_t>(Index) <= getNumberOfSections()) { |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 989 | // We already verified the section table data, so no need to check again. |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 990 | Result = SectionTable + (Index - 1); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 991 | return std::error_code(); |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 992 | } |
| 993 | return object_error::parse_failed; |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 994 | } |
| 995 | |
Paul Semel | 94b0940 | 2018-07-11 10:00:29 +0000 | [diff] [blame] | 996 | std::error_code COFFObjectFile::getSection(StringRef SectionName, |
| 997 | const coff_section *&Result) const { |
| 998 | Result = nullptr; |
| 999 | StringRef SecName; |
| 1000 | for (const SectionRef &Section : sections()) { |
| 1001 | if (std::error_code E = Section.getName(SecName)) |
| 1002 | return E; |
| 1003 | if (SecName == SectionName) { |
| 1004 | Result = getCOFFSection(Section); |
| 1005 | return std::error_code(); |
| 1006 | } |
| 1007 | } |
| 1008 | return object_error::parse_failed; |
| 1009 | } |
| 1010 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1011 | std::error_code COFFObjectFile::getString(uint32_t Offset, |
| 1012 | StringRef &Result) const { |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 1013 | if (StringTableSize <= 4) |
| 1014 | // Tried to get a string from an empty string table. |
| 1015 | return object_error::parse_failed; |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1016 | if (Offset >= StringTableSize) |
Michael J. Spencer | 25b1577 | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 1017 | return object_error::unexpected_eof; |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1018 | Result = StringRef(StringTable + Offset); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1019 | return std::error_code(); |
Michael J. Spencer | a1ef8ef | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1022 | std::error_code COFFObjectFile::getSymbolName(COFFSymbolRef Symbol, |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1023 | StringRef &Res) const { |
Rui Ueyama | 13b58ec | 2015-06-30 00:03:56 +0000 | [diff] [blame] | 1024 | return getSymbolName(Symbol.getGeneric(), Res); |
| 1025 | } |
| 1026 | |
| 1027 | std::error_code COFFObjectFile::getSymbolName(const coff_symbol_generic *Symbol, |
| 1028 | StringRef &Res) const { |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 1029 | // Check for string table entry. First 4 bytes are 0. |
Rui Ueyama | 13b58ec | 2015-06-30 00:03:56 +0000 | [diff] [blame] | 1030 | if (Symbol->Name.Offset.Zeroes == 0) { |
| 1031 | if (std::error_code EC = getString(Symbol->Name.Offset.Offset, Res)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1032 | return EC; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1033 | return std::error_code(); |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Rui Ueyama | 13b58ec | 2015-06-30 00:03:56 +0000 | [diff] [blame] | 1036 | if (Symbol->Name.ShortName[COFF::NameSize - 1] == 0) |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 1037 | // Null terminated, let ::strlen figure out the length. |
Rui Ueyama | 13b58ec | 2015-06-30 00:03:56 +0000 | [diff] [blame] | 1038 | Res = StringRef(Symbol->Name.ShortName); |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 1039 | else |
| 1040 | // Not null terminated, use all 8 bytes. |
Rui Ueyama | 13b58ec | 2015-06-30 00:03:56 +0000 | [diff] [blame] | 1041 | Res = StringRef(Symbol->Name.ShortName, COFF::NameSize); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1042 | return std::error_code(); |
Michael J. Spencer | 0e752cb | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1045 | ArrayRef<uint8_t> |
| 1046 | COFFObjectFile::getSymbolAuxData(COFFSymbolRef Symbol) const { |
Craig Topper | 0b6cb71 | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 1047 | const uint8_t *Aux = nullptr; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1048 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1049 | size_t SymbolSize = getSymbolTableEntrySize(); |
| 1050 | if (Symbol.getNumberOfAuxSymbols() > 0) { |
| 1051 | // AUX data comes immediately after the symbol in COFF |
| 1052 | Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize; |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 1053 | #ifndef NDEBUG |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1054 | // Verify that the Aux symbol points to a valid entry in the symbol table. |
| 1055 | uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base()); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1056 | if (Offset < getPointerToSymbolTable() || |
| 1057 | Offset >= |
| 1058 | getPointerToSymbolTable() + (getNumberOfSymbols() * SymbolSize)) |
Marshall Clow | d4d03e0 | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 1059 | report_fatal_error("Aux Symbol data was outside of symbol table."); |
| 1060 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1061 | assert((Offset - getPointerToSymbolTable()) % SymbolSize == 0 && |
| 1062 | "Aux Symbol data did not point to the beginning of a symbol"); |
Eugene Zelenko | 86bfc78 | 2017-04-19 23:02:10 +0000 | [diff] [blame] | 1063 | #endif |
Marshall Clow | 45aad16 | 2012-06-15 01:15:47 +0000 | [diff] [blame] | 1064 | } |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1065 | return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize); |
Marshall Clow | d4d03e0 | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 1066 | } |
| 1067 | |
Martin Storsjo | 0239fd3 | 2019-01-03 08:08:23 +0000 | [diff] [blame] | 1068 | uint32_t COFFObjectFile::getSymbolIndex(COFFSymbolRef Symbol) const { |
| 1069 | uintptr_t Offset = |
| 1070 | reinterpret_cast<uintptr_t>(Symbol.getRawPtr()) - getSymbolTable(); |
| 1071 | assert(Offset % getSymbolTableEntrySize() == 0 && |
| 1072 | "Symbol did not point to the beginning of a symbol"); |
| 1073 | size_t Index = Offset / getSymbolTableEntrySize(); |
| 1074 | assert(Index < getNumberOfSymbols()); |
| 1075 | return Index; |
| 1076 | } |
| 1077 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1078 | std::error_code COFFObjectFile::getSectionName(const coff_section *Sec, |
| 1079 | StringRef &Res) const { |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1080 | StringRef Name; |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1081 | if (Sec->Name[COFF::NameSize - 1] == 0) |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1082 | // Null terminated, let ::strlen figure out the length. |
| 1083 | Name = Sec->Name; |
| 1084 | else |
| 1085 | // Not null terminated, use all 8 bytes. |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1086 | Name = StringRef(Sec->Name, COFF::NameSize); |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1087 | |
| 1088 | // Check for string table entry. First byte is '/'. |
David Majnemer | f7046b7 | 2014-11-13 07:42:09 +0000 | [diff] [blame] | 1089 | if (Name.startswith("/")) { |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1090 | uint32_t Offset; |
David Majnemer | f7046b7 | 2014-11-13 07:42:09 +0000 | [diff] [blame] | 1091 | if (Name.startswith("//")) { |
Nico Rieck | fa3089b | 2014-02-22 16:12:20 +0000 | [diff] [blame] | 1092 | if (decodeBase64StringEntry(Name.substr(2), Offset)) |
| 1093 | return object_error::parse_failed; |
| 1094 | } else { |
| 1095 | if (Name.substr(1).getAsInteger(10, Offset)) |
| 1096 | return object_error::parse_failed; |
| 1097 | } |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1098 | if (std::error_code EC = getString(Offset, Name)) |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1099 | return EC; |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | Res = Name; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1103 | return std::error_code(); |
Michael J. Spencer | b35a896 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 1104 | } |
| 1105 | |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 1106 | uint64_t COFFObjectFile::getSectionSize(const coff_section *Sec) const { |
| 1107 | // SizeOfRawData and VirtualSize change what they represent depending on |
| 1108 | // whether or not we have an executable image. |
| 1109 | // |
| 1110 | // For object files, SizeOfRawData contains the size of section's data; |
Rui Ueyama | 392450e | 2015-07-04 03:25:51 +0000 | [diff] [blame] | 1111 | // VirtualSize should be zero but isn't due to buggy COFF writers. |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 1112 | // |
| 1113 | // For executables, SizeOfRawData *must* be a multiple of FileAlignment; the |
| 1114 | // actual section size is in VirtualSize. It is possible for VirtualSize to |
| 1115 | // be greater than SizeOfRawData; the contents past that point should be |
| 1116 | // considered to be zero. |
Rui Ueyama | 392450e | 2015-07-04 03:25:51 +0000 | [diff] [blame] | 1117 | if (getDOSHeader()) |
| 1118 | return std::min(Sec->VirtualSize, Sec->SizeOfRawData); |
| 1119 | return Sec->SizeOfRawData; |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 1120 | } |
| 1121 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1122 | std::error_code |
| 1123 | COFFObjectFile::getSectionContents(const coff_section *Sec, |
| 1124 | ArrayRef<uint8_t> &Res) const { |
David Majnemer | ddd4585 | 2016-05-28 19:45:51 +0000 | [diff] [blame] | 1125 | // In COFF, a virtual section won't have any in-file |
| 1126 | // content, so the file pointer to the content will be zero. |
| 1127 | if (Sec->PointerToRawData == 0) |
Shoaib Meenai | 61e19cf | 2017-05-14 18:34:56 +0000 | [diff] [blame] | 1128 | return std::error_code(); |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 1129 | // The only thing that we need to verify is that the contents is contained |
| 1130 | // within the file bounds. We don't need to make sure it doesn't cover other |
| 1131 | // data, as there's nothing that says that is not allowed. |
| 1132 | uintptr_t ConStart = uintptr_t(base()) + Sec->PointerToRawData; |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 1133 | uint32_t SectionSize = getSectionSize(Sec); |
David Majnemer | b6ddb3c | 2014-11-13 08:46:37 +0000 | [diff] [blame] | 1134 | if (checkOffset(Data, ConStart, SectionSize)) |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 1135 | return object_error::parse_failed; |
David Majnemer | 06f1f35 | 2014-10-09 08:42:31 +0000 | [diff] [blame] | 1136 | Res = makeArrayRef(reinterpret_cast<const uint8_t *>(ConStart), SectionSize); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1137 | return std::error_code(); |
Michael J. Spencer | 1f6e3f9 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1140 | const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1141 | return reinterpret_cast<const coff_relocation*>(Rel.p); |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1142 | } |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1143 | |
Rafael Espindola | efdbec8 | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 1144 | void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1145 | Rel.p = reinterpret_cast<uintptr_t>( |
| 1146 | reinterpret_cast<const coff_relocation*>(Rel.p) + 1); |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1147 | } |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1148 | |
Rafael Espindola | ff67629 | 2015-06-29 23:29:12 +0000 | [diff] [blame] | 1149 | uint64_t COFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { |
David Majnemer | 465237b | 2014-11-13 07:42:07 +0000 | [diff] [blame] | 1150 | const coff_relocation *R = toRel(Rel); |
Rafael Espindola | ff67629 | 2015-06-29 23:29:12 +0000 | [diff] [blame] | 1151 | return R->VirtualAddress; |
Danil Malyshev | b0436a7 | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 1152 | } |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1153 | |
Rafael Espindola | 6c1202c | 2013-06-05 01:33:53 +0000 | [diff] [blame] | 1154 | symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1155 | const coff_relocation *R = toRel(Rel); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1156 | DataRefImpl Ref; |
David Majnemer | a18e46c | 2014-11-17 11:17:17 +0000 | [diff] [blame] | 1157 | if (R->SymbolTableIndex >= getNumberOfSymbols()) |
| 1158 | return symbol_end(); |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1159 | if (SymbolTable16) |
| 1160 | Ref.p = reinterpret_cast<uintptr_t>(SymbolTable16 + R->SymbolTableIndex); |
| 1161 | else if (SymbolTable32) |
| 1162 | Ref.p = reinterpret_cast<uintptr_t>(SymbolTable32 + R->SymbolTableIndex); |
| 1163 | else |
David Majnemer | c891fc3 | 2014-11-25 07:43:14 +0000 | [diff] [blame] | 1164 | llvm_unreachable("no symbol table pointer!"); |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1165 | return symbol_iterator(SymbolRef(Ref, this)); |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1166 | } |
Rui Ueyama | 671a9e2 | 2014-01-16 20:11:48 +0000 | [diff] [blame] | 1167 | |
Rafael Espindola | 7ede964 | 2015-06-30 01:53:01 +0000 | [diff] [blame] | 1168 | uint64_t COFFObjectFile::getRelocationType(DataRefImpl Rel) const { |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1169 | const coff_relocation* R = toRel(Rel); |
Rafael Espindola | 7ede964 | 2015-06-30 01:53:01 +0000 | [diff] [blame] | 1170 | return R->Type; |
Benjamin Kramer | 0fcab07 | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 1171 | } |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1172 | |
Alexey Samsonov | 5b64579 | 2014-03-18 06:53:02 +0000 | [diff] [blame] | 1173 | const coff_section * |
| 1174 | COFFObjectFile::getCOFFSection(const SectionRef &Section) const { |
| 1175 | return toSec(Section.getRawDataRefImpl()); |
Marshall Clow | d4d03e0 | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1178 | COFFSymbolRef COFFObjectFile::getCOFFSymbol(const DataRefImpl &Ref) const { |
| 1179 | if (SymbolTable16) |
| 1180 | return toSymb<coff_symbol16>(Ref); |
| 1181 | if (SymbolTable32) |
| 1182 | return toSymb<coff_symbol32>(Ref); |
| 1183 | llvm_unreachable("no symbol table pointer!"); |
| 1184 | } |
| 1185 | |
| 1186 | COFFSymbolRef COFFObjectFile::getCOFFSymbol(const SymbolRef &Symbol) const { |
| 1187 | return getCOFFSymbol(Symbol.getRawDataRefImpl()); |
Marshall Clow | d4d03e0 | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Rafael Espindola | 91f86b7 | 2014-02-21 20:10:59 +0000 | [diff] [blame] | 1190 | const coff_relocation * |
Alexey Samsonov | 5b64579 | 2014-03-18 06:53:02 +0000 | [diff] [blame] | 1191 | COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const { |
| 1192 | return toRel(Reloc.getRawDataRefImpl()); |
Marshall Clow | 9ac0f1d | 2012-06-18 19:47:16 +0000 | [diff] [blame] | 1193 | } |
| 1194 | |
Peter Collingbourne | a306456 | 2018-04-17 01:54:34 +0000 | [diff] [blame] | 1195 | ArrayRef<coff_relocation> |
Rui Ueyama | 7d6e44b | 2015-06-25 00:07:39 +0000 | [diff] [blame] | 1196 | COFFObjectFile::getRelocations(const coff_section *Sec) const { |
Peter Collingbourne | a306456 | 2018-04-17 01:54:34 +0000 | [diff] [blame] | 1197 | return {getFirstReloc(Sec, Data, base()), |
| 1198 | getNumberOfRelocations(Sec, Data, base())}; |
Rui Ueyama | 7d6e44b | 2015-06-25 00:07:39 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
Alexey Samsonov | 5b64579 | 2014-03-18 06:53:02 +0000 | [diff] [blame] | 1201 | #define LLVM_COFF_SWITCH_RELOC_TYPE_NAME(reloc_type) \ |
| 1202 | case COFF::reloc_type: \ |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1203 | return #reloc_type; |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1204 | |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1205 | StringRef COFFObjectFile::getRelocationTypeName(uint16_t Type) const { |
David Majnemer | b3a86a0 | 2014-09-10 12:51:52 +0000 | [diff] [blame] | 1206 | switch (getMachine()) { |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1207 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1208 | switch (Type) { |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1209 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ABSOLUTE); |
| 1210 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR64); |
| 1211 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32); |
| 1212 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32NB); |
| 1213 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32); |
| 1214 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_1); |
| 1215 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_2); |
| 1216 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_3); |
| 1217 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_4); |
| 1218 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_5); |
| 1219 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECTION); |
| 1220 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL); |
| 1221 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL7); |
| 1222 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_TOKEN); |
| 1223 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SREL32); |
| 1224 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_PAIR); |
| 1225 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SSPAN32); |
| 1226 | default: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1227 | return "Unknown"; |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1228 | } |
| 1229 | break; |
Saleem Abdulrasool | d640feb | 2014-04-09 06:18:28 +0000 | [diff] [blame] | 1230 | case COFF::IMAGE_FILE_MACHINE_ARMNT: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1231 | switch (Type) { |
Saleem Abdulrasool | d640feb | 2014-04-09 06:18:28 +0000 | [diff] [blame] | 1232 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ABSOLUTE); |
| 1233 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32); |
| 1234 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32NB); |
| 1235 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24); |
| 1236 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH11); |
| 1237 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_TOKEN); |
| 1238 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX24); |
| 1239 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX11); |
| 1240 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECTION); |
| 1241 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECREL); |
| 1242 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32A); |
| 1243 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32T); |
| 1244 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH20T); |
| 1245 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24T); |
| 1246 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX23T); |
| 1247 | default: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1248 | return "Unknown"; |
Saleem Abdulrasool | d640feb | 2014-04-09 06:18:28 +0000 | [diff] [blame] | 1249 | } |
| 1250 | break; |
Mandeep Singh Grang | 85e0946 | 2017-06-27 23:58:19 +0000 | [diff] [blame] | 1251 | case COFF::IMAGE_FILE_MACHINE_ARM64: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1252 | switch (Type) { |
Mandeep Singh Grang | 85e0946 | 2017-06-27 23:58:19 +0000 | [diff] [blame] | 1253 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_ABSOLUTE); |
| 1254 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_ADDR32); |
| 1255 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_ADDR32NB); |
| 1256 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_BRANCH26); |
| 1257 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_PAGEBASE_REL21); |
| 1258 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_REL21); |
| 1259 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_PAGEOFFSET_12A); |
| 1260 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_PAGEOFFSET_12L); |
| 1261 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_SECREL); |
| 1262 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_SECREL_LOW12A); |
| 1263 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_SECREL_HIGH12A); |
| 1264 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_SECREL_LOW12L); |
| 1265 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_TOKEN); |
| 1266 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_SECTION); |
| 1267 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_ADDR64); |
| 1268 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_BRANCH19); |
| 1269 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM64_BRANCH14); |
| 1270 | default: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1271 | return "Unknown"; |
Mandeep Singh Grang | 85e0946 | 2017-06-27 23:58:19 +0000 | [diff] [blame] | 1272 | } |
| 1273 | break; |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1274 | case COFF::IMAGE_FILE_MACHINE_I386: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1275 | switch (Type) { |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1276 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_ABSOLUTE); |
| 1277 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR16); |
| 1278 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL16); |
| 1279 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32); |
| 1280 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32NB); |
| 1281 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SEG12); |
| 1282 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECTION); |
| 1283 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL); |
| 1284 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_TOKEN); |
| 1285 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL7); |
| 1286 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL32); |
| 1287 | default: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1288 | return "Unknown"; |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1289 | } |
| 1290 | break; |
| 1291 | default: |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1292 | return "Unknown"; |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1293 | } |
Michael J. Spencer | 4344b1e | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | #undef LLVM_COFF_SWITCH_RELOC_TYPE_NAME |
| 1297 | |
Martin Storsjo | 921890c | 2018-08-27 08:42:39 +0000 | [diff] [blame] | 1298 | void COFFObjectFile::getRelocationTypeName( |
| 1299 | DataRefImpl Rel, SmallVectorImpl<char> &Result) const { |
| 1300 | const coff_relocation *Reloc = toRel(Rel); |
| 1301 | StringRef Res = getRelocationTypeName(Reloc->Type); |
| 1302 | Result.append(Res.begin(), Res.end()); |
| 1303 | } |
| 1304 | |
Rafael Espindola | 78e8d52 | 2014-08-17 19:09:37 +0000 | [diff] [blame] | 1305 | bool COFFObjectFile::isRelocatableObject() const { |
| 1306 | return !DataDirectory; |
| 1307 | } |
| 1308 | |
Martin Storsjo | 0f6ce82 | 2018-12-08 18:15:41 +0000 | [diff] [blame] | 1309 | StringRef COFFObjectFile::mapDebugSectionName(StringRef Name) const { |
| 1310 | return StringSwitch<StringRef>(Name) |
| 1311 | .Case("eh_fram", "eh_frame") |
| 1312 | .Default(Name); |
| 1313 | } |
| 1314 | |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1315 | bool ImportDirectoryEntryRef:: |
| 1316 | operator==(const ImportDirectoryEntryRef &Other) const { |
Rui Ueyama | 6a8151d | 2014-01-16 03:13:19 +0000 | [diff] [blame] | 1317 | return ImportTable == Other.ImportTable && Index == Other.Index; |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Rafael Espindola | efdbec8 | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 1320 | void ImportDirectoryEntryRef::moveNext() { |
| 1321 | ++Index; |
David Majnemer | e2fac43 | 2016-07-31 19:25:21 +0000 | [diff] [blame] | 1322 | if (ImportTable[Index].isNull()) { |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 1323 | Index = -1; |
| 1324 | ImportTable = nullptr; |
| 1325 | } |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1326 | } |
| 1327 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1328 | std::error_code ImportDirectoryEntryRef::getImportTableEntry( |
David Majnemer | e2fac43 | 2016-07-31 19:25:21 +0000 | [diff] [blame] | 1329 | const coff_import_directory_table_entry *&Result) const { |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 1330 | return getObject(Result, OwningObject->Data, ImportTable + Index); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1333 | static imported_symbol_iterator |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1334 | makeImportedSymbolIterator(const COFFObjectFile *Object, |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1335 | uintptr_t Ptr, int Index) { |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1336 | if (Object->getBytesInAddress() == 4) { |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1337 | auto *P = reinterpret_cast<const import_lookup_table_entry32 *>(Ptr); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1338 | return imported_symbol_iterator(ImportedSymbolRef(P, Index, Object)); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1339 | } |
| 1340 | auto *P = reinterpret_cast<const import_lookup_table_entry64 *>(Ptr); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1341 | return imported_symbol_iterator(ImportedSymbolRef(P, Index, Object)); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1342 | } |
| 1343 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1344 | static imported_symbol_iterator |
| 1345 | importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1346 | uintptr_t IntPtr = 0; |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1347 | Object->getRvaPtr(RVA, IntPtr); |
| 1348 | return makeImportedSymbolIterator(Object, IntPtr, 0); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1351 | static imported_symbol_iterator |
| 1352 | importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1353 | uintptr_t IntPtr = 0; |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1354 | Object->getRvaPtr(RVA, IntPtr); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1355 | // Forward the pointer to the last entry which is null. |
| 1356 | int Index = 0; |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1357 | if (Object->getBytesInAddress() == 4) { |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1358 | auto *Entry = reinterpret_cast<ulittle32_t *>(IntPtr); |
| 1359 | while (*Entry++) |
| 1360 | ++Index; |
| 1361 | } else { |
| 1362 | auto *Entry = reinterpret_cast<ulittle64_t *>(IntPtr); |
| 1363 | while (*Entry++) |
| 1364 | ++Index; |
| 1365 | } |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1366 | return makeImportedSymbolIterator(Object, IntPtr, Index); |
| 1367 | } |
| 1368 | |
| 1369 | imported_symbol_iterator |
| 1370 | ImportDirectoryEntryRef::imported_symbol_begin() const { |
David Majnemer | 081d3f1 | 2016-07-31 19:40:02 +0000 | [diff] [blame] | 1371 | return importedSymbolBegin(ImportTable[Index].ImportAddressTableRVA, |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1372 | OwningObject); |
| 1373 | } |
| 1374 | |
| 1375 | imported_symbol_iterator |
| 1376 | ImportDirectoryEntryRef::imported_symbol_end() const { |
David Majnemer | 081d3f1 | 2016-07-31 19:40:02 +0000 | [diff] [blame] | 1377 | return importedSymbolEnd(ImportTable[Index].ImportAddressTableRVA, |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1378 | OwningObject); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Rui Ueyama | f02f03c | 2014-10-09 02:16:38 +0000 | [diff] [blame] | 1381 | iterator_range<imported_symbol_iterator> |
| 1382 | ImportDirectoryEntryRef::imported_symbols() const { |
| 1383 | return make_range(imported_symbol_begin(), imported_symbol_end()); |
| 1384 | } |
| 1385 | |
David Majnemer | 081d3f1 | 2016-07-31 19:40:02 +0000 | [diff] [blame] | 1386 | imported_symbol_iterator ImportDirectoryEntryRef::lookup_table_begin() const { |
| 1387 | return importedSymbolBegin(ImportTable[Index].ImportLookupTableRVA, |
| 1388 | OwningObject); |
| 1389 | } |
| 1390 | |
| 1391 | imported_symbol_iterator ImportDirectoryEntryRef::lookup_table_end() const { |
| 1392 | return importedSymbolEnd(ImportTable[Index].ImportLookupTableRVA, |
| 1393 | OwningObject); |
| 1394 | } |
| 1395 | |
| 1396 | iterator_range<imported_symbol_iterator> |
| 1397 | ImportDirectoryEntryRef::lookup_table_symbols() const { |
| 1398 | return make_range(lookup_table_begin(), lookup_table_end()); |
| 1399 | } |
| 1400 | |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1401 | std::error_code ImportDirectoryEntryRef::getName(StringRef &Result) const { |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1402 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1403 | if (std::error_code EC = |
Rui Ueyama | f3cd10b | 2014-10-02 17:02:18 +0000 | [diff] [blame] | 1404 | OwningObject->getRvaPtr(ImportTable[Index].NameRVA, IntPtr)) |
Rui Ueyama | 6a8151d | 2014-01-16 03:13:19 +0000 | [diff] [blame] | 1405 | return EC; |
| 1406 | Result = StringRef(reinterpret_cast<const char *>(IntPtr)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1407 | return std::error_code(); |
Rui Ueyama | a6610ee | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 1408 | } |
| 1409 | |
Rui Ueyama | f3cd10b | 2014-10-02 17:02:18 +0000 | [diff] [blame] | 1410 | std::error_code |
| 1411 | ImportDirectoryEntryRef::getImportLookupTableRVA(uint32_t &Result) const { |
| 1412 | Result = ImportTable[Index].ImportLookupTableRVA; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1413 | return std::error_code(); |
Rui Ueyama | f3cd10b | 2014-10-02 17:02:18 +0000 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | std::error_code |
| 1417 | ImportDirectoryEntryRef::getImportAddressTableRVA(uint32_t &Result) const { |
| 1418 | Result = ImportTable[Index].ImportAddressTableRVA; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1419 | return std::error_code(); |
Rui Ueyama | f3cd10b | 2014-10-02 17:02:18 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1422 | bool DelayImportDirectoryEntryRef:: |
| 1423 | operator==(const DelayImportDirectoryEntryRef &Other) const { |
| 1424 | return Table == Other.Table && Index == Other.Index; |
| 1425 | } |
| 1426 | |
| 1427 | void DelayImportDirectoryEntryRef::moveNext() { |
| 1428 | ++Index; |
| 1429 | } |
| 1430 | |
| 1431 | imported_symbol_iterator |
| 1432 | DelayImportDirectoryEntryRef::imported_symbol_begin() const { |
| 1433 | return importedSymbolBegin(Table[Index].DelayImportNameTable, |
| 1434 | OwningObject); |
| 1435 | } |
| 1436 | |
| 1437 | imported_symbol_iterator |
| 1438 | DelayImportDirectoryEntryRef::imported_symbol_end() const { |
| 1439 | return importedSymbolEnd(Table[Index].DelayImportNameTable, |
| 1440 | OwningObject); |
| 1441 | } |
| 1442 | |
Rui Ueyama | f02f03c | 2014-10-09 02:16:38 +0000 | [diff] [blame] | 1443 | iterator_range<imported_symbol_iterator> |
| 1444 | DelayImportDirectoryEntryRef::imported_symbols() const { |
| 1445 | return make_range(imported_symbol_begin(), imported_symbol_end()); |
| 1446 | } |
| 1447 | |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1448 | std::error_code DelayImportDirectoryEntryRef::getName(StringRef &Result) const { |
| 1449 | uintptr_t IntPtr = 0; |
| 1450 | if (std::error_code EC = OwningObject->getRvaPtr(Table[Index].Name, IntPtr)) |
| 1451 | return EC; |
| 1452 | Result = StringRef(reinterpret_cast<const char *>(IntPtr)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1453 | return std::error_code(); |
Rui Ueyama | 8206646 | 2014-10-03 00:41:58 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Rui Ueyama | a6abd9e | 2014-10-03 18:07:18 +0000 | [diff] [blame] | 1456 | std::error_code DelayImportDirectoryEntryRef:: |
| 1457 | getDelayImportTable(const delay_import_directory_table_entry *&Result) const { |
| 1458 | Result = Table; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1459 | return std::error_code(); |
Rui Ueyama | a6abd9e | 2014-10-03 18:07:18 +0000 | [diff] [blame] | 1460 | } |
| 1461 | |
Rui Ueyama | 08f70b5 | 2014-11-13 03:22:54 +0000 | [diff] [blame] | 1462 | std::error_code DelayImportDirectoryEntryRef:: |
| 1463 | getImportAddress(int AddrIndex, uint64_t &Result) const { |
| 1464 | uint32_t RVA = Table[Index].DelayImportAddressTable + |
| 1465 | AddrIndex * (OwningObject->is64() ? 8 : 4); |
| 1466 | uintptr_t IntPtr = 0; |
| 1467 | if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) |
| 1468 | return EC; |
| 1469 | if (OwningObject->is64()) |
Rui Ueyama | fb113f6 | 2014-11-13 20:07:06 +0000 | [diff] [blame] | 1470 | Result = *reinterpret_cast<const ulittle64_t *>(IntPtr); |
Rui Ueyama | 08f70b5 | 2014-11-13 03:22:54 +0000 | [diff] [blame] | 1471 | else |
Rui Ueyama | fb113f6 | 2014-11-13 20:07:06 +0000 | [diff] [blame] | 1472 | Result = *reinterpret_cast<const ulittle32_t *>(IntPtr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1473 | return std::error_code(); |
Rui Ueyama | 08f70b5 | 2014-11-13 03:22:54 +0000 | [diff] [blame] | 1474 | } |
| 1475 | |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1476 | bool ExportDirectoryEntryRef:: |
| 1477 | operator==(const ExportDirectoryEntryRef &Other) const { |
| 1478 | return ExportTable == Other.ExportTable && Index == Other.Index; |
| 1479 | } |
| 1480 | |
Rafael Espindola | efdbec8 | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 1481 | void ExportDirectoryEntryRef::moveNext() { |
| 1482 | ++Index; |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1483 | } |
| 1484 | |
Rui Ueyama | 6010e5d | 2014-01-16 20:50:34 +0000 | [diff] [blame] | 1485 | // Returns the name of the current export symbol. If the symbol is exported only |
| 1486 | // by ordinal, the empty string is set as a result. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1487 | std::error_code ExportDirectoryEntryRef::getDllName(StringRef &Result) const { |
Rui Ueyama | 6010e5d | 2014-01-16 20:50:34 +0000 | [diff] [blame] | 1488 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1489 | if (std::error_code EC = |
| 1490 | OwningObject->getRvaPtr(ExportTable->NameRVA, IntPtr)) |
Rui Ueyama | 6010e5d | 2014-01-16 20:50:34 +0000 | [diff] [blame] | 1491 | return EC; |
| 1492 | Result = StringRef(reinterpret_cast<const char *>(IntPtr)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1493 | return std::error_code(); |
Rui Ueyama | 6010e5d | 2014-01-16 20:50:34 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
Rui Ueyama | 9106d36 | 2014-01-17 22:02:24 +0000 | [diff] [blame] | 1496 | // Returns the starting ordinal number. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1497 | std::error_code |
| 1498 | ExportDirectoryEntryRef::getOrdinalBase(uint32_t &Result) const { |
Rui Ueyama | 9106d36 | 2014-01-17 22:02:24 +0000 | [diff] [blame] | 1499 | Result = ExportTable->OrdinalBase; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1500 | return std::error_code(); |
Rui Ueyama | 9106d36 | 2014-01-17 22:02:24 +0000 | [diff] [blame] | 1501 | } |
| 1502 | |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1503 | // Returns the export ordinal of the current export symbol. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1504 | std::error_code ExportDirectoryEntryRef::getOrdinal(uint32_t &Result) const { |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1505 | Result = ExportTable->OrdinalBase + Index; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1506 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | // Returns the address of the current export symbol. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1510 | std::error_code ExportDirectoryEntryRef::getExportRVA(uint32_t &Result) const { |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1511 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1512 | if (std::error_code EC = |
| 1513 | OwningObject->getRvaPtr(ExportTable->ExportAddressTableRVA, IntPtr)) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1514 | return EC; |
Rui Ueyama | 6438260 | 2014-01-17 22:11:27 +0000 | [diff] [blame] | 1515 | const export_address_table_entry *entry = |
| 1516 | reinterpret_cast<const export_address_table_entry *>(IntPtr); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1517 | Result = entry[Index].ExportRVA; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1518 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1519 | } |
| 1520 | |
| 1521 | // Returns the name of the current export symbol. If the symbol is exported only |
| 1522 | // by ordinal, the empty string is set as a result. |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1523 | std::error_code |
| 1524 | ExportDirectoryEntryRef::getSymbolName(StringRef &Result) const { |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1525 | uintptr_t IntPtr = 0; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1526 | if (std::error_code EC = |
| 1527 | OwningObject->getRvaPtr(ExportTable->OrdinalTableRVA, IntPtr)) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1528 | return EC; |
| 1529 | const ulittle16_t *Start = reinterpret_cast<const ulittle16_t *>(IntPtr); |
| 1530 | |
| 1531 | uint32_t NumEntries = ExportTable->NumberOfNamePointers; |
| 1532 | int Offset = 0; |
| 1533 | for (const ulittle16_t *I = Start, *E = Start + NumEntries; |
| 1534 | I < E; ++I, ++Offset) { |
| 1535 | if (*I != Index) |
| 1536 | continue; |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1537 | if (std::error_code EC = |
| 1538 | OwningObject->getRvaPtr(ExportTable->NamePointerRVA, IntPtr)) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1539 | return EC; |
| 1540 | const ulittle32_t *NamePtr = reinterpret_cast<const ulittle32_t *>(IntPtr); |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1541 | if (std::error_code EC = OwningObject->getRvaPtr(NamePtr[Offset], IntPtr)) |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1542 | return EC; |
| 1543 | Result = StringRef(reinterpret_cast<const char *>(IntPtr)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1544 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1545 | } |
| 1546 | Result = ""; |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1547 | return std::error_code(); |
Rui Ueyama | fb432ac | 2014-01-16 07:05:49 +0000 | [diff] [blame] | 1548 | } |
| 1549 | |
Rui Ueyama | 68e634a | 2016-01-12 23:28:42 +0000 | [diff] [blame] | 1550 | std::error_code ExportDirectoryEntryRef::isForwarder(bool &Result) const { |
| 1551 | const data_directory *DataEntry; |
| 1552 | if (auto EC = OwningObject->getDataDirectory(COFF::EXPORT_TABLE, DataEntry)) |
| 1553 | return EC; |
| 1554 | uint32_t RVA; |
| 1555 | if (auto EC = getExportRVA(RVA)) |
| 1556 | return EC; |
| 1557 | uint32_t Begin = DataEntry->RelativeVirtualAddress; |
| 1558 | uint32_t End = DataEntry->RelativeVirtualAddress + DataEntry->Size; |
| 1559 | Result = (Begin <= RVA && RVA < End); |
| 1560 | return std::error_code(); |
| 1561 | } |
| 1562 | |
| 1563 | std::error_code ExportDirectoryEntryRef::getForwardTo(StringRef &Result) const { |
| 1564 | uint32_t RVA; |
| 1565 | if (auto EC = getExportRVA(RVA)) |
| 1566 | return EC; |
| 1567 | uintptr_t IntPtr = 0; |
| 1568 | if (auto EC = OwningObject->getRvaPtr(RVA, IntPtr)) |
| 1569 | return EC; |
| 1570 | Result = StringRef(reinterpret_cast<const char *>(IntPtr)); |
| 1571 | return std::error_code(); |
| 1572 | } |
| 1573 | |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1574 | bool ImportedSymbolRef:: |
| 1575 | operator==(const ImportedSymbolRef &Other) const { |
| 1576 | return Entry32 == Other.Entry32 && Entry64 == Other.Entry64 |
| 1577 | && Index == Other.Index; |
| 1578 | } |
| 1579 | |
| 1580 | void ImportedSymbolRef::moveNext() { |
| 1581 | ++Index; |
| 1582 | } |
| 1583 | |
| 1584 | std::error_code |
| 1585 | ImportedSymbolRef::getSymbolName(StringRef &Result) const { |
| 1586 | uint32_t RVA; |
| 1587 | if (Entry32) { |
| 1588 | // If a symbol is imported only by ordinal, it has no name. |
| 1589 | if (Entry32[Index].isOrdinal()) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1590 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1591 | RVA = Entry32[Index].getHintNameRVA(); |
| 1592 | } else { |
| 1593 | if (Entry64[Index].isOrdinal()) |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1594 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1595 | RVA = Entry64[Index].getHintNameRVA(); |
| 1596 | } |
| 1597 | uintptr_t IntPtr = 0; |
| 1598 | if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) |
| 1599 | return EC; |
| 1600 | // +2 because the first two bytes is hint. |
| 1601 | Result = StringRef(reinterpret_cast<const char *>(IntPtr + 2)); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1602 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
David Majnemer | 6ea11a4 | 2016-06-26 04:36:32 +0000 | [diff] [blame] | 1605 | std::error_code ImportedSymbolRef::isOrdinal(bool &Result) const { |
| 1606 | if (Entry32) |
| 1607 | Result = Entry32[Index].isOrdinal(); |
| 1608 | else |
| 1609 | Result = Entry64[Index].isOrdinal(); |
| 1610 | return std::error_code(); |
| 1611 | } |
| 1612 | |
| 1613 | std::error_code ImportedSymbolRef::getHintNameRVA(uint32_t &Result) const { |
| 1614 | if (Entry32) |
| 1615 | Result = Entry32[Index].getHintNameRVA(); |
| 1616 | else |
| 1617 | Result = Entry64[Index].getHintNameRVA(); |
| 1618 | return std::error_code(); |
| 1619 | } |
| 1620 | |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1621 | std::error_code ImportedSymbolRef::getOrdinal(uint16_t &Result) const { |
| 1622 | uint32_t RVA; |
| 1623 | if (Entry32) { |
| 1624 | if (Entry32[Index].isOrdinal()) { |
| 1625 | Result = Entry32[Index].getOrdinal(); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1626 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1627 | } |
| 1628 | RVA = Entry32[Index].getHintNameRVA(); |
| 1629 | } else { |
| 1630 | if (Entry64[Index].isOrdinal()) { |
| 1631 | Result = Entry64[Index].getOrdinal(); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1632 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1633 | } |
| 1634 | RVA = Entry64[Index].getHintNameRVA(); |
| 1635 | } |
| 1636 | uintptr_t IntPtr = 0; |
| 1637 | if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) |
| 1638 | return EC; |
| 1639 | Result = *reinterpret_cast<const ulittle16_t *>(IntPtr); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1640 | return std::error_code(); |
Rui Ueyama | 3d49ad0 | 2014-10-02 22:05:29 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
Rafael Espindola | e2d20cb | 2017-10-10 20:00:07 +0000 | [diff] [blame] | 1643 | Expected<std::unique_ptr<COFFObjectFile>> |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 1644 | ObjectFile::createCOFFObjectFile(MemoryBufferRef Object) { |
Rafael Espindola | 4e2b922 | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 1645 | std::error_code EC; |
Rafael Espindola | 548f2b6 | 2014-08-19 18:44:46 +0000 | [diff] [blame] | 1646 | std::unique_ptr<COFFObjectFile> Ret(new COFFObjectFile(Object, EC)); |
Rafael Espindola | 3d21815 | 2014-01-21 23:06:54 +0000 | [diff] [blame] | 1647 | if (EC) |
Rafael Espindola | e2d20cb | 2017-10-10 20:00:07 +0000 | [diff] [blame] | 1648 | return errorCodeToError(EC); |
Rafael Espindola | 79002da | 2014-07-31 03:12:45 +0000 | [diff] [blame] | 1649 | return std::move(Ret); |
Rui Ueyama | a560d15 | 2014-01-16 20:30:36 +0000 | [diff] [blame] | 1650 | } |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 1651 | |
| 1652 | bool BaseRelocRef::operator==(const BaseRelocRef &Other) const { |
| 1653 | return Header == Other.Header && Index == Other.Index; |
| 1654 | } |
| 1655 | |
| 1656 | void BaseRelocRef::moveNext() { |
| 1657 | // Header->BlockSize is the size of the current block, including the |
| 1658 | // size of the header itself. |
| 1659 | uint32_t Size = sizeof(*Header) + |
Rui Ueyama | 3977e2f | 2014-11-19 02:07:10 +0000 | [diff] [blame] | 1660 | sizeof(coff_base_reloc_block_entry) * (Index + 1); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 1661 | if (Size == Header->BlockSize) { |
| 1662 | // .reloc contains a list of base relocation blocks. Each block |
| 1663 | // consists of the header followed by entries. The header contains |
| 1664 | // how many entories will follow. When we reach the end of the |
| 1665 | // current block, proceed to the next block. |
| 1666 | Header = reinterpret_cast<const coff_base_reloc_block_header *>( |
| 1667 | reinterpret_cast<const uint8_t *>(Header) + Size); |
| 1668 | Index = 0; |
| 1669 | } else { |
| 1670 | ++Index; |
| 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | std::error_code BaseRelocRef::getType(uint8_t &Type) const { |
| 1675 | auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); |
| 1676 | Type = Entry[Index].getType(); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1677 | return std::error_code(); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 1678 | } |
| 1679 | |
| 1680 | std::error_code BaseRelocRef::getRVA(uint32_t &Result) const { |
| 1681 | auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); |
| 1682 | Result = Header->PageRVA + Entry[Index].getOffset(); |
Rui Ueyama | eae4673 | 2015-06-09 15:20:42 +0000 | [diff] [blame] | 1683 | return std::error_code(); |
Rui Ueyama | 6272b8c | 2014-11-19 00:18:07 +0000 | [diff] [blame] | 1684 | } |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1685 | |
Rafael Espindola | 0aed7ae | 2017-10-11 17:05:24 +0000 | [diff] [blame] | 1686 | #define RETURN_IF_ERROR(E) \ |
| 1687 | if (E) \ |
| 1688 | return E; |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1689 | |
Rafael Espindola | 0aed7ae | 2017-10-11 17:05:24 +0000 | [diff] [blame] | 1690 | Expected<ArrayRef<UTF16>> |
| 1691 | ResourceSectionRef::getDirStringAtOffset(uint32_t Offset) { |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1692 | BinaryStreamReader Reader = BinaryStreamReader(BBS); |
| 1693 | Reader.setOffset(Offset); |
| 1694 | uint16_t Length; |
| 1695 | RETURN_IF_ERROR(Reader.readInteger(Length)); |
| 1696 | ArrayRef<UTF16> RawDirString; |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1697 | RETURN_IF_ERROR(Reader.readArray(RawDirString, Length)); |
Eric Beckmann | 20c59f1 | 2017-05-08 02:47:42 +0000 | [diff] [blame] | 1698 | return RawDirString; |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Rafael Espindola | 7848ae3 | 2017-10-11 17:33:11 +0000 | [diff] [blame] | 1701 | Expected<ArrayRef<UTF16>> |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1702 | ResourceSectionRef::getEntryNameString(const coff_resource_dir_entry &Entry) { |
Rafael Espindola | 7848ae3 | 2017-10-11 17:33:11 +0000 | [diff] [blame] | 1703 | return getDirStringAtOffset(Entry.Identifier.getNameOffset()); |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Rafael Espindola | 0aed7ae | 2017-10-11 17:05:24 +0000 | [diff] [blame] | 1706 | Expected<const coff_resource_dir_table &> |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1707 | ResourceSectionRef::getTableAtOffset(uint32_t Offset) { |
| 1708 | const coff_resource_dir_table *Table = nullptr; |
| 1709 | |
| 1710 | BinaryStreamReader Reader(BBS); |
| 1711 | Reader.setOffset(Offset); |
| 1712 | RETURN_IF_ERROR(Reader.readObject(Table)); |
| 1713 | assert(Table != nullptr); |
| 1714 | return *Table; |
| 1715 | } |
| 1716 | |
Rafael Espindola | 7848ae3 | 2017-10-11 17:33:11 +0000 | [diff] [blame] | 1717 | Expected<const coff_resource_dir_table &> |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1718 | ResourceSectionRef::getEntrySubDir(const coff_resource_dir_entry &Entry) { |
Rafael Espindola | 7848ae3 | 2017-10-11 17:33:11 +0000 | [diff] [blame] | 1719 | return getTableAtOffset(Entry.Offset.value()); |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1720 | } |
| 1721 | |
Rafael Espindola | 7848ae3 | 2017-10-11 17:33:11 +0000 | [diff] [blame] | 1722 | Expected<const coff_resource_dir_table &> ResourceSectionRef::getBaseTable() { |
| 1723 | return getTableAtOffset(0); |
Eric Beckmann | 8d0cc56 | 2017-05-08 02:47:07 +0000 | [diff] [blame] | 1724 | } |