Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- COFF.h - COFF object file implementation -----------------*- C++ -*-===// |
| 2 | // |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file declares the COFFObjectFile class. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_OBJECT_COFF_H |
| 14 | #define LLVM_OBJECT_COFF_H |
| 15 | |
| 16 | #include "llvm/ADT/iterator_range.h" |
| 17 | #include "llvm/BinaryFormat/COFF.h" |
| 18 | #include "llvm/MC/SubtargetFeature.h" |
| 19 | #include "llvm/Object/Binary.h" |
| 20 | #include "llvm/Object/CVDebugRecord.h" |
| 21 | #include "llvm/Object/Error.h" |
| 22 | #include "llvm/Object/ObjectFile.h" |
| 23 | #include "llvm/Support/BinaryByteStream.h" |
| 24 | #include "llvm/Support/ConvertUTF.h" |
| 25 | #include "llvm/Support/Endian.h" |
| 26 | #include "llvm/Support/ErrorHandling.h" |
| 27 | #include <cassert> |
| 28 | #include <cstddef> |
| 29 | #include <cstdint> |
| 30 | #include <system_error> |
| 31 | |
| 32 | namespace llvm { |
| 33 | |
| 34 | template <typename T> class ArrayRef; |
| 35 | |
| 36 | namespace object { |
| 37 | |
| 38 | class BaseRelocRef; |
| 39 | class DelayImportDirectoryEntryRef; |
| 40 | class ExportDirectoryEntryRef; |
| 41 | class ImportDirectoryEntryRef; |
| 42 | class ImportedSymbolRef; |
| 43 | class ResourceSectionRef; |
| 44 | |
| 45 | using import_directory_iterator = content_iterator<ImportDirectoryEntryRef>; |
| 46 | using delay_import_directory_iterator = |
| 47 | content_iterator<DelayImportDirectoryEntryRef>; |
| 48 | using export_directory_iterator = content_iterator<ExportDirectoryEntryRef>; |
| 49 | using imported_symbol_iterator = content_iterator<ImportedSymbolRef>; |
| 50 | using base_reloc_iterator = content_iterator<BaseRelocRef>; |
| 51 | |
| 52 | /// The DOS compatible header at the front of all PE/COFF executables. |
| 53 | struct dos_header { |
| 54 | char Magic[2]; |
| 55 | support::ulittle16_t UsedBytesInTheLastPage; |
| 56 | support::ulittle16_t FileSizeInPages; |
| 57 | support::ulittle16_t NumberOfRelocationItems; |
| 58 | support::ulittle16_t HeaderSizeInParagraphs; |
| 59 | support::ulittle16_t MinimumExtraParagraphs; |
| 60 | support::ulittle16_t MaximumExtraParagraphs; |
| 61 | support::ulittle16_t InitialRelativeSS; |
| 62 | support::ulittle16_t InitialSP; |
| 63 | support::ulittle16_t Checksum; |
| 64 | support::ulittle16_t InitialIP; |
| 65 | support::ulittle16_t InitialRelativeCS; |
| 66 | support::ulittle16_t AddressOfRelocationTable; |
| 67 | support::ulittle16_t OverlayNumber; |
| 68 | support::ulittle16_t Reserved[4]; |
| 69 | support::ulittle16_t OEMid; |
| 70 | support::ulittle16_t OEMinfo; |
| 71 | support::ulittle16_t Reserved2[10]; |
| 72 | support::ulittle32_t AddressOfNewExeHeader; |
| 73 | }; |
| 74 | |
| 75 | struct coff_file_header { |
| 76 | support::ulittle16_t Machine; |
| 77 | support::ulittle16_t NumberOfSections; |
| 78 | support::ulittle32_t TimeDateStamp; |
| 79 | support::ulittle32_t PointerToSymbolTable; |
| 80 | support::ulittle32_t NumberOfSymbols; |
| 81 | support::ulittle16_t SizeOfOptionalHeader; |
| 82 | support::ulittle16_t Characteristics; |
| 83 | |
| 84 | bool isImportLibrary() const { return NumberOfSections == 0xffff; } |
| 85 | }; |
| 86 | |
| 87 | struct coff_bigobj_file_header { |
| 88 | support::ulittle16_t Sig1; |
| 89 | support::ulittle16_t Sig2; |
| 90 | support::ulittle16_t Version; |
| 91 | support::ulittle16_t Machine; |
| 92 | support::ulittle32_t TimeDateStamp; |
| 93 | uint8_t UUID[16]; |
| 94 | support::ulittle32_t unused1; |
| 95 | support::ulittle32_t unused2; |
| 96 | support::ulittle32_t unused3; |
| 97 | support::ulittle32_t unused4; |
| 98 | support::ulittle32_t NumberOfSections; |
| 99 | support::ulittle32_t PointerToSymbolTable; |
| 100 | support::ulittle32_t NumberOfSymbols; |
| 101 | }; |
| 102 | |
| 103 | /// The 32-bit PE header that follows the COFF header. |
| 104 | struct pe32_header { |
| 105 | support::ulittle16_t Magic; |
| 106 | uint8_t MajorLinkerVersion; |
| 107 | uint8_t MinorLinkerVersion; |
| 108 | support::ulittle32_t SizeOfCode; |
| 109 | support::ulittle32_t SizeOfInitializedData; |
| 110 | support::ulittle32_t SizeOfUninitializedData; |
| 111 | support::ulittle32_t AddressOfEntryPoint; |
| 112 | support::ulittle32_t BaseOfCode; |
| 113 | support::ulittle32_t BaseOfData; |
| 114 | support::ulittle32_t ImageBase; |
| 115 | support::ulittle32_t SectionAlignment; |
| 116 | support::ulittle32_t FileAlignment; |
| 117 | support::ulittle16_t MajorOperatingSystemVersion; |
| 118 | support::ulittle16_t MinorOperatingSystemVersion; |
| 119 | support::ulittle16_t MajorImageVersion; |
| 120 | support::ulittle16_t MinorImageVersion; |
| 121 | support::ulittle16_t MajorSubsystemVersion; |
| 122 | support::ulittle16_t MinorSubsystemVersion; |
| 123 | support::ulittle32_t Win32VersionValue; |
| 124 | support::ulittle32_t SizeOfImage; |
| 125 | support::ulittle32_t SizeOfHeaders; |
| 126 | support::ulittle32_t CheckSum; |
| 127 | support::ulittle16_t Subsystem; |
| 128 | // FIXME: This should be DllCharacteristics. |
| 129 | support::ulittle16_t DLLCharacteristics; |
| 130 | support::ulittle32_t SizeOfStackReserve; |
| 131 | support::ulittle32_t SizeOfStackCommit; |
| 132 | support::ulittle32_t SizeOfHeapReserve; |
| 133 | support::ulittle32_t SizeOfHeapCommit; |
| 134 | support::ulittle32_t LoaderFlags; |
| 135 | // FIXME: This should be NumberOfRvaAndSizes. |
| 136 | support::ulittle32_t NumberOfRvaAndSize; |
| 137 | }; |
| 138 | |
| 139 | /// The 64-bit PE header that follows the COFF header. |
| 140 | struct pe32plus_header { |
| 141 | support::ulittle16_t Magic; |
| 142 | uint8_t MajorLinkerVersion; |
| 143 | uint8_t MinorLinkerVersion; |
| 144 | support::ulittle32_t SizeOfCode; |
| 145 | support::ulittle32_t SizeOfInitializedData; |
| 146 | support::ulittle32_t SizeOfUninitializedData; |
| 147 | support::ulittle32_t AddressOfEntryPoint; |
| 148 | support::ulittle32_t BaseOfCode; |
| 149 | support::ulittle64_t ImageBase; |
| 150 | support::ulittle32_t SectionAlignment; |
| 151 | support::ulittle32_t FileAlignment; |
| 152 | support::ulittle16_t MajorOperatingSystemVersion; |
| 153 | support::ulittle16_t MinorOperatingSystemVersion; |
| 154 | support::ulittle16_t MajorImageVersion; |
| 155 | support::ulittle16_t MinorImageVersion; |
| 156 | support::ulittle16_t MajorSubsystemVersion; |
| 157 | support::ulittle16_t MinorSubsystemVersion; |
| 158 | support::ulittle32_t Win32VersionValue; |
| 159 | support::ulittle32_t SizeOfImage; |
| 160 | support::ulittle32_t SizeOfHeaders; |
| 161 | support::ulittle32_t CheckSum; |
| 162 | support::ulittle16_t Subsystem; |
| 163 | support::ulittle16_t DLLCharacteristics; |
| 164 | support::ulittle64_t SizeOfStackReserve; |
| 165 | support::ulittle64_t SizeOfStackCommit; |
| 166 | support::ulittle64_t SizeOfHeapReserve; |
| 167 | support::ulittle64_t SizeOfHeapCommit; |
| 168 | support::ulittle32_t LoaderFlags; |
| 169 | support::ulittle32_t NumberOfRvaAndSize; |
| 170 | }; |
| 171 | |
| 172 | struct data_directory { |
| 173 | support::ulittle32_t RelativeVirtualAddress; |
| 174 | support::ulittle32_t Size; |
| 175 | }; |
| 176 | |
| 177 | struct debug_directory { |
| 178 | support::ulittle32_t Characteristics; |
| 179 | support::ulittle32_t TimeDateStamp; |
| 180 | support::ulittle16_t MajorVersion; |
| 181 | support::ulittle16_t MinorVersion; |
| 182 | support::ulittle32_t Type; |
| 183 | support::ulittle32_t SizeOfData; |
| 184 | support::ulittle32_t AddressOfRawData; |
| 185 | support::ulittle32_t PointerToRawData; |
| 186 | }; |
| 187 | |
| 188 | template <typename IntTy> |
| 189 | struct import_lookup_table_entry { |
| 190 | IntTy Data; |
| 191 | |
| 192 | bool isOrdinal() const { return Data < 0; } |
| 193 | |
| 194 | uint16_t getOrdinal() const { |
| 195 | assert(isOrdinal() && "ILT entry is not an ordinal!"); |
| 196 | return Data & 0xFFFF; |
| 197 | } |
| 198 | |
| 199 | uint32_t getHintNameRVA() const { |
| 200 | assert(!isOrdinal() && "ILT entry is not a Hint/Name RVA!"); |
| 201 | return Data & 0xFFFFFFFF; |
| 202 | } |
| 203 | }; |
| 204 | |
| 205 | using import_lookup_table_entry32 = |
| 206 | import_lookup_table_entry<support::little32_t>; |
| 207 | using import_lookup_table_entry64 = |
| 208 | import_lookup_table_entry<support::little64_t>; |
| 209 | |
| 210 | struct delay_import_directory_table_entry { |
| 211 | // dumpbin reports this field as "Characteristics" instead of "Attributes". |
| 212 | support::ulittle32_t Attributes; |
| 213 | support::ulittle32_t Name; |
| 214 | support::ulittle32_t ModuleHandle; |
| 215 | support::ulittle32_t DelayImportAddressTable; |
| 216 | support::ulittle32_t DelayImportNameTable; |
| 217 | support::ulittle32_t BoundDelayImportTable; |
| 218 | support::ulittle32_t UnloadDelayImportTable; |
| 219 | support::ulittle32_t TimeStamp; |
| 220 | }; |
| 221 | |
| 222 | struct export_directory_table_entry { |
| 223 | support::ulittle32_t ExportFlags; |
| 224 | support::ulittle32_t TimeDateStamp; |
| 225 | support::ulittle16_t MajorVersion; |
| 226 | support::ulittle16_t MinorVersion; |
| 227 | support::ulittle32_t NameRVA; |
| 228 | support::ulittle32_t OrdinalBase; |
| 229 | support::ulittle32_t AddressTableEntries; |
| 230 | support::ulittle32_t NumberOfNamePointers; |
| 231 | support::ulittle32_t ExportAddressTableRVA; |
| 232 | support::ulittle32_t NamePointerRVA; |
| 233 | support::ulittle32_t OrdinalTableRVA; |
| 234 | }; |
| 235 | |
| 236 | union export_address_table_entry { |
| 237 | support::ulittle32_t ExportRVA; |
| 238 | support::ulittle32_t ForwarderRVA; |
| 239 | }; |
| 240 | |
| 241 | using export_name_pointer_table_entry = support::ulittle32_t; |
| 242 | using export_ordinal_table_entry = support::ulittle16_t; |
| 243 | |
| 244 | struct StringTableOffset { |
| 245 | support::ulittle32_t Zeroes; |
| 246 | support::ulittle32_t Offset; |
| 247 | }; |
| 248 | |
| 249 | template <typename SectionNumberType> |
| 250 | struct coff_symbol { |
| 251 | union { |
| 252 | char ShortName[COFF::NameSize]; |
| 253 | StringTableOffset Offset; |
| 254 | } Name; |
| 255 | |
| 256 | support::ulittle32_t Value; |
| 257 | SectionNumberType SectionNumber; |
| 258 | |
| 259 | support::ulittle16_t Type; |
| 260 | |
| 261 | uint8_t StorageClass; |
| 262 | uint8_t NumberOfAuxSymbols; |
| 263 | }; |
| 264 | |
| 265 | using coff_symbol16 = coff_symbol<support::ulittle16_t>; |
| 266 | using coff_symbol32 = coff_symbol<support::ulittle32_t>; |
| 267 | |
| 268 | // Contains only common parts of coff_symbol16 and coff_symbol32. |
| 269 | struct coff_symbol_generic { |
| 270 | union { |
| 271 | char ShortName[COFF::NameSize]; |
| 272 | StringTableOffset Offset; |
| 273 | } Name; |
| 274 | support::ulittle32_t Value; |
| 275 | }; |
| 276 | |
| 277 | struct coff_aux_section_definition; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 278 | struct coff_aux_weak_external; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 279 | |
| 280 | class COFFSymbolRef { |
| 281 | public: |
| 282 | COFFSymbolRef() = default; |
| 283 | COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS) {} |
| 284 | COFFSymbolRef(const coff_symbol32 *CS) : CS32(CS) {} |
| 285 | |
| 286 | const void *getRawPtr() const { |
| 287 | return CS16 ? static_cast<const void *>(CS16) : CS32; |
| 288 | } |
| 289 | |
| 290 | const coff_symbol_generic *getGeneric() const { |
| 291 | if (CS16) |
| 292 | return reinterpret_cast<const coff_symbol_generic *>(CS16); |
| 293 | return reinterpret_cast<const coff_symbol_generic *>(CS32); |
| 294 | } |
| 295 | |
| 296 | friend bool operator<(COFFSymbolRef A, COFFSymbolRef B) { |
| 297 | return A.getRawPtr() < B.getRawPtr(); |
| 298 | } |
| 299 | |
| 300 | bool isBigObj() const { |
| 301 | if (CS16) |
| 302 | return false; |
| 303 | if (CS32) |
| 304 | return true; |
| 305 | llvm_unreachable("COFFSymbolRef points to nothing!"); |
| 306 | } |
| 307 | |
| 308 | const char *getShortName() const { |
| 309 | return CS16 ? CS16->Name.ShortName : CS32->Name.ShortName; |
| 310 | } |
| 311 | |
| 312 | const StringTableOffset &getStringTableOffset() const { |
| 313 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 314 | return CS16 ? CS16->Name.Offset : CS32->Name.Offset; |
| 315 | } |
| 316 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 317 | uint32_t getValue() const { |
| 318 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 319 | return CS16 ? CS16->Value : CS32->Value; |
| 320 | } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 321 | |
| 322 | int32_t getSectionNumber() const { |
| 323 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 324 | if (CS16) { |
| 325 | // Reserved sections are returned as negative numbers. |
| 326 | if (CS16->SectionNumber <= COFF::MaxNumberOfSections16) |
| 327 | return CS16->SectionNumber; |
| 328 | return static_cast<int16_t>(CS16->SectionNumber); |
| 329 | } |
| 330 | return static_cast<int32_t>(CS32->SectionNumber); |
| 331 | } |
| 332 | |
| 333 | uint16_t getType() const { |
| 334 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 335 | return CS16 ? CS16->Type : CS32->Type; |
| 336 | } |
| 337 | |
| 338 | uint8_t getStorageClass() const { |
| 339 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 340 | return CS16 ? CS16->StorageClass : CS32->StorageClass; |
| 341 | } |
| 342 | |
| 343 | uint8_t getNumberOfAuxSymbols() const { |
| 344 | assert(isSet() && "COFFSymbolRef points to nothing!"); |
| 345 | return CS16 ? CS16->NumberOfAuxSymbols : CS32->NumberOfAuxSymbols; |
| 346 | } |
| 347 | |
| 348 | uint8_t getBaseType() const { return getType() & 0x0F; } |
| 349 | |
| 350 | uint8_t getComplexType() const { |
| 351 | return (getType() & 0xF0) >> COFF::SCT_COMPLEX_TYPE_SHIFT; |
| 352 | } |
| 353 | |
| 354 | template <typename T> const T *getAux() const { |
| 355 | return CS16 ? reinterpret_cast<const T *>(CS16 + 1) |
| 356 | : reinterpret_cast<const T *>(CS32 + 1); |
| 357 | } |
| 358 | |
| 359 | const coff_aux_section_definition *getSectionDefinition() const { |
| 360 | if (!getNumberOfAuxSymbols() || |
| 361 | getStorageClass() != COFF::IMAGE_SYM_CLASS_STATIC) |
| 362 | return nullptr; |
| 363 | return getAux<coff_aux_section_definition>(); |
| 364 | } |
| 365 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 366 | const coff_aux_weak_external *getWeakExternal() const { |
| 367 | if (!getNumberOfAuxSymbols() || |
| 368 | getStorageClass() != COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL) |
| 369 | return nullptr; |
| 370 | return getAux<coff_aux_weak_external>(); |
| 371 | } |
| 372 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 373 | bool isAbsolute() const { |
| 374 | return getSectionNumber() == -1; |
| 375 | } |
| 376 | |
| 377 | bool isExternal() const { |
| 378 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL; |
| 379 | } |
| 380 | |
| 381 | bool isCommon() const { |
| 382 | return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED && |
| 383 | getValue() != 0; |
| 384 | } |
| 385 | |
| 386 | bool isUndefined() const { |
| 387 | return isExternal() && getSectionNumber() == COFF::IMAGE_SYM_UNDEFINED && |
| 388 | getValue() == 0; |
| 389 | } |
| 390 | |
| 391 | bool isWeakExternal() const { |
| 392 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL; |
| 393 | } |
| 394 | |
| 395 | bool isFunctionDefinition() const { |
| 396 | return isExternal() && getBaseType() == COFF::IMAGE_SYM_TYPE_NULL && |
| 397 | getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION && |
| 398 | !COFF::isReservedSectionNumber(getSectionNumber()); |
| 399 | } |
| 400 | |
| 401 | bool isFunctionLineInfo() const { |
| 402 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_FUNCTION; |
| 403 | } |
| 404 | |
| 405 | bool isAnyUndefined() const { |
| 406 | return isUndefined() || isWeakExternal(); |
| 407 | } |
| 408 | |
| 409 | bool isFileRecord() const { |
| 410 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_FILE; |
| 411 | } |
| 412 | |
| 413 | bool isSection() const { |
| 414 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_SECTION; |
| 415 | } |
| 416 | |
| 417 | bool isSectionDefinition() const { |
| 418 | // C++/CLI creates external ABS symbols for non-const appdomain globals. |
| 419 | // These are also followed by an auxiliary section definition. |
| 420 | bool isAppdomainGlobal = |
| 421 | getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL && |
| 422 | getSectionNumber() == COFF::IMAGE_SYM_ABSOLUTE; |
| 423 | bool isOrdinarySection = getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC; |
| 424 | if (!getNumberOfAuxSymbols()) |
| 425 | return false; |
| 426 | return isAppdomainGlobal || isOrdinarySection; |
| 427 | } |
| 428 | |
| 429 | bool isCLRToken() const { |
| 430 | return getStorageClass() == COFF::IMAGE_SYM_CLASS_CLR_TOKEN; |
| 431 | } |
| 432 | |
| 433 | private: |
| 434 | bool isSet() const { return CS16 || CS32; } |
| 435 | |
| 436 | const coff_symbol16 *CS16 = nullptr; |
| 437 | const coff_symbol32 *CS32 = nullptr; |
| 438 | }; |
| 439 | |
| 440 | struct coff_section { |
| 441 | char Name[COFF::NameSize]; |
| 442 | support::ulittle32_t VirtualSize; |
| 443 | support::ulittle32_t VirtualAddress; |
| 444 | support::ulittle32_t SizeOfRawData; |
| 445 | support::ulittle32_t PointerToRawData; |
| 446 | support::ulittle32_t PointerToRelocations; |
| 447 | support::ulittle32_t PointerToLinenumbers; |
| 448 | support::ulittle16_t NumberOfRelocations; |
| 449 | support::ulittle16_t NumberOfLinenumbers; |
| 450 | support::ulittle32_t Characteristics; |
| 451 | |
| 452 | // Returns true if the actual number of relocations is stored in |
| 453 | // VirtualAddress field of the first relocation table entry. |
| 454 | bool hasExtendedRelocations() const { |
| 455 | return (Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) && |
| 456 | NumberOfRelocations == UINT16_MAX; |
| 457 | } |
| 458 | |
| 459 | uint32_t getAlignment() const { |
| 460 | // The IMAGE_SCN_TYPE_NO_PAD bit is a legacy way of getting to |
| 461 | // IMAGE_SCN_ALIGN_1BYTES. |
| 462 | if (Characteristics & COFF::IMAGE_SCN_TYPE_NO_PAD) |
| 463 | return 1; |
| 464 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 465 | // Bit [20:24] contains section alignment. 0 means use a default alignment |
| 466 | // of 16. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 467 | uint32_t Shift = (Characteristics >> 20) & 0xF; |
| 468 | if (Shift > 0) |
| 469 | return 1U << (Shift - 1); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 470 | return 16; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 471 | } |
| 472 | }; |
| 473 | |
| 474 | struct coff_relocation { |
| 475 | support::ulittle32_t VirtualAddress; |
| 476 | support::ulittle32_t SymbolTableIndex; |
| 477 | support::ulittle16_t Type; |
| 478 | }; |
| 479 | |
| 480 | struct coff_aux_function_definition { |
| 481 | support::ulittle32_t TagIndex; |
| 482 | support::ulittle32_t TotalSize; |
| 483 | support::ulittle32_t PointerToLinenumber; |
| 484 | support::ulittle32_t PointerToNextFunction; |
| 485 | char Unused1[2]; |
| 486 | }; |
| 487 | |
| 488 | static_assert(sizeof(coff_aux_function_definition) == 18, |
| 489 | "auxiliary entry must be 18 bytes"); |
| 490 | |
| 491 | struct coff_aux_bf_and_ef_symbol { |
| 492 | char Unused1[4]; |
| 493 | support::ulittle16_t Linenumber; |
| 494 | char Unused2[6]; |
| 495 | support::ulittle32_t PointerToNextFunction; |
| 496 | char Unused3[2]; |
| 497 | }; |
| 498 | |
| 499 | static_assert(sizeof(coff_aux_bf_and_ef_symbol) == 18, |
| 500 | "auxiliary entry must be 18 bytes"); |
| 501 | |
| 502 | struct coff_aux_weak_external { |
| 503 | support::ulittle32_t TagIndex; |
| 504 | support::ulittle32_t Characteristics; |
| 505 | char Unused1[10]; |
| 506 | }; |
| 507 | |
| 508 | static_assert(sizeof(coff_aux_weak_external) == 18, |
| 509 | "auxiliary entry must be 18 bytes"); |
| 510 | |
| 511 | struct coff_aux_section_definition { |
| 512 | support::ulittle32_t Length; |
| 513 | support::ulittle16_t NumberOfRelocations; |
| 514 | support::ulittle16_t NumberOfLinenumbers; |
| 515 | support::ulittle32_t CheckSum; |
| 516 | support::ulittle16_t NumberLowPart; |
| 517 | uint8_t Selection; |
| 518 | uint8_t Unused; |
| 519 | support::ulittle16_t NumberHighPart; |
| 520 | int32_t getNumber(bool IsBigObj) const { |
| 521 | uint32_t Number = static_cast<uint32_t>(NumberLowPart); |
| 522 | if (IsBigObj) |
| 523 | Number |= static_cast<uint32_t>(NumberHighPart) << 16; |
| 524 | return static_cast<int32_t>(Number); |
| 525 | } |
| 526 | }; |
| 527 | |
| 528 | static_assert(sizeof(coff_aux_section_definition) == 18, |
| 529 | "auxiliary entry must be 18 bytes"); |
| 530 | |
| 531 | struct coff_aux_clr_token { |
| 532 | uint8_t AuxType; |
| 533 | uint8_t Reserved; |
| 534 | support::ulittle32_t SymbolTableIndex; |
| 535 | char MBZ[12]; |
| 536 | }; |
| 537 | |
| 538 | static_assert(sizeof(coff_aux_clr_token) == 18, |
| 539 | "auxiliary entry must be 18 bytes"); |
| 540 | |
| 541 | struct coff_import_header { |
| 542 | support::ulittle16_t Sig1; |
| 543 | support::ulittle16_t Sig2; |
| 544 | support::ulittle16_t Version; |
| 545 | support::ulittle16_t Machine; |
| 546 | support::ulittle32_t TimeDateStamp; |
| 547 | support::ulittle32_t SizeOfData; |
| 548 | support::ulittle16_t OrdinalHint; |
| 549 | support::ulittle16_t TypeInfo; |
| 550 | |
| 551 | int getType() const { return TypeInfo & 0x3; } |
| 552 | int getNameType() const { return (TypeInfo >> 2) & 0x7; } |
| 553 | }; |
| 554 | |
| 555 | struct coff_import_directory_table_entry { |
| 556 | support::ulittle32_t ImportLookupTableRVA; |
| 557 | support::ulittle32_t TimeDateStamp; |
| 558 | support::ulittle32_t ForwarderChain; |
| 559 | support::ulittle32_t NameRVA; |
| 560 | support::ulittle32_t ImportAddressTableRVA; |
| 561 | |
| 562 | bool isNull() const { |
| 563 | return ImportLookupTableRVA == 0 && TimeDateStamp == 0 && |
| 564 | ForwarderChain == 0 && NameRVA == 0 && ImportAddressTableRVA == 0; |
| 565 | } |
| 566 | }; |
| 567 | |
| 568 | template <typename IntTy> |
| 569 | struct coff_tls_directory { |
| 570 | IntTy StartAddressOfRawData; |
| 571 | IntTy EndAddressOfRawData; |
| 572 | IntTy AddressOfIndex; |
| 573 | IntTy AddressOfCallBacks; |
| 574 | support::ulittle32_t SizeOfZeroFill; |
| 575 | support::ulittle32_t Characteristics; |
| 576 | |
| 577 | uint32_t getAlignment() const { |
| 578 | // Bit [20:24] contains section alignment. |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 579 | uint32_t Shift = (Characteristics & COFF::IMAGE_SCN_ALIGN_MASK) >> 20; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 580 | if (Shift > 0) |
| 581 | return 1U << (Shift - 1); |
| 582 | return 0; |
| 583 | } |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 584 | |
| 585 | void setAlignment(uint32_t Align) { |
| 586 | uint32_t AlignBits = 0; |
| 587 | if (Align) { |
| 588 | assert(llvm::isPowerOf2_32(Align) && "alignment is not a power of 2"); |
| 589 | assert(llvm::Log2_32(Align) <= 13 && "alignment requested is too large"); |
| 590 | AlignBits = (llvm::Log2_32(Align) + 1) << 20; |
| 591 | } |
| 592 | Characteristics = |
| 593 | (Characteristics & ~COFF::IMAGE_SCN_ALIGN_MASK) | AlignBits; |
| 594 | } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 595 | }; |
| 596 | |
| 597 | using coff_tls_directory32 = coff_tls_directory<support::little32_t>; |
| 598 | using coff_tls_directory64 = coff_tls_directory<support::little64_t>; |
| 599 | |
| 600 | /// Bits in control flow guard flags as we understand them. |
| 601 | enum class coff_guard_flags : uint32_t { |
| 602 | CFInstrumented = 0x00000100, |
| 603 | HasFidTable = 0x00000400, |
| 604 | ProtectDelayLoadIAT = 0x00001000, |
| 605 | DelayLoadIATSection = 0x00002000, // Delay load in separate section |
| 606 | HasLongJmpTable = 0x00010000, |
| 607 | FidTableHasFlags = 0x10000000, // Indicates that fid tables are 5 bytes |
| 608 | }; |
| 609 | |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 610 | enum class frame_type : uint16_t { Fpo = 0, Trap = 1, Tss = 2, NonFpo = 3 }; |
| 611 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 612 | struct coff_load_config_code_integrity { |
| 613 | support::ulittle16_t Flags; |
| 614 | support::ulittle16_t Catalog; |
| 615 | support::ulittle32_t CatalogOffset; |
| 616 | support::ulittle32_t Reserved; |
| 617 | }; |
| 618 | |
| 619 | /// 32-bit load config (IMAGE_LOAD_CONFIG_DIRECTORY32) |
| 620 | struct coff_load_configuration32 { |
| 621 | support::ulittle32_t Size; |
| 622 | support::ulittle32_t TimeDateStamp; |
| 623 | support::ulittle16_t MajorVersion; |
| 624 | support::ulittle16_t MinorVersion; |
| 625 | support::ulittle32_t GlobalFlagsClear; |
| 626 | support::ulittle32_t GlobalFlagsSet; |
| 627 | support::ulittle32_t CriticalSectionDefaultTimeout; |
| 628 | support::ulittle32_t DeCommitFreeBlockThreshold; |
| 629 | support::ulittle32_t DeCommitTotalFreeThreshold; |
| 630 | support::ulittle32_t LockPrefixTable; |
| 631 | support::ulittle32_t MaximumAllocationSize; |
| 632 | support::ulittle32_t VirtualMemoryThreshold; |
| 633 | support::ulittle32_t ProcessAffinityMask; |
| 634 | support::ulittle32_t ProcessHeapFlags; |
| 635 | support::ulittle16_t CSDVersion; |
| 636 | support::ulittle16_t DependentLoadFlags; |
| 637 | support::ulittle32_t EditList; |
| 638 | support::ulittle32_t SecurityCookie; |
| 639 | support::ulittle32_t SEHandlerTable; |
| 640 | support::ulittle32_t SEHandlerCount; |
| 641 | |
| 642 | // Added in MSVC 2015 for /guard:cf. |
| 643 | support::ulittle32_t GuardCFCheckFunction; |
| 644 | support::ulittle32_t GuardCFCheckDispatch; |
| 645 | support::ulittle32_t GuardCFFunctionTable; |
| 646 | support::ulittle32_t GuardCFFunctionCount; |
| 647 | support::ulittle32_t GuardFlags; // coff_guard_flags |
| 648 | |
| 649 | // Added in MSVC 2017 |
| 650 | coff_load_config_code_integrity CodeIntegrity; |
| 651 | support::ulittle32_t GuardAddressTakenIatEntryTable; |
| 652 | support::ulittle32_t GuardAddressTakenIatEntryCount; |
| 653 | support::ulittle32_t GuardLongJumpTargetTable; |
| 654 | support::ulittle32_t GuardLongJumpTargetCount; |
| 655 | support::ulittle32_t DynamicValueRelocTable; |
| 656 | support::ulittle32_t CHPEMetadataPointer; |
| 657 | support::ulittle32_t GuardRFFailureRoutine; |
| 658 | support::ulittle32_t GuardRFFailureRoutineFunctionPointer; |
| 659 | support::ulittle32_t DynamicValueRelocTableOffset; |
| 660 | support::ulittle16_t DynamicValueRelocTableSection; |
| 661 | support::ulittle16_t Reserved2; |
| 662 | support::ulittle32_t GuardRFVerifyStackPointerFunctionPointer; |
| 663 | support::ulittle32_t HotPatchTableOffset; |
| 664 | }; |
| 665 | |
| 666 | /// 64-bit load config (IMAGE_LOAD_CONFIG_DIRECTORY64) |
| 667 | struct coff_load_configuration64 { |
| 668 | support::ulittle32_t Size; |
| 669 | support::ulittle32_t TimeDateStamp; |
| 670 | support::ulittle16_t MajorVersion; |
| 671 | support::ulittle16_t MinorVersion; |
| 672 | support::ulittle32_t GlobalFlagsClear; |
| 673 | support::ulittle32_t GlobalFlagsSet; |
| 674 | support::ulittle32_t CriticalSectionDefaultTimeout; |
| 675 | support::ulittle64_t DeCommitFreeBlockThreshold; |
| 676 | support::ulittle64_t DeCommitTotalFreeThreshold; |
| 677 | support::ulittle64_t LockPrefixTable; |
| 678 | support::ulittle64_t MaximumAllocationSize; |
| 679 | support::ulittle64_t VirtualMemoryThreshold; |
| 680 | support::ulittle64_t ProcessAffinityMask; |
| 681 | support::ulittle32_t ProcessHeapFlags; |
| 682 | support::ulittle16_t CSDVersion; |
| 683 | support::ulittle16_t DependentLoadFlags; |
| 684 | support::ulittle64_t EditList; |
| 685 | support::ulittle64_t SecurityCookie; |
| 686 | support::ulittle64_t SEHandlerTable; |
| 687 | support::ulittle64_t SEHandlerCount; |
| 688 | |
| 689 | // Added in MSVC 2015 for /guard:cf. |
| 690 | support::ulittle64_t GuardCFCheckFunction; |
| 691 | support::ulittle64_t GuardCFCheckDispatch; |
| 692 | support::ulittle64_t GuardCFFunctionTable; |
| 693 | support::ulittle64_t GuardCFFunctionCount; |
| 694 | support::ulittle32_t GuardFlags; |
| 695 | |
| 696 | // Added in MSVC 2017 |
| 697 | coff_load_config_code_integrity CodeIntegrity; |
| 698 | support::ulittle64_t GuardAddressTakenIatEntryTable; |
| 699 | support::ulittle64_t GuardAddressTakenIatEntryCount; |
| 700 | support::ulittle64_t GuardLongJumpTargetTable; |
| 701 | support::ulittle64_t GuardLongJumpTargetCount; |
| 702 | support::ulittle64_t DynamicValueRelocTable; |
| 703 | support::ulittle64_t CHPEMetadataPointer; |
| 704 | support::ulittle64_t GuardRFFailureRoutine; |
| 705 | support::ulittle64_t GuardRFFailureRoutineFunctionPointer; |
| 706 | support::ulittle32_t DynamicValueRelocTableOffset; |
| 707 | support::ulittle16_t DynamicValueRelocTableSection; |
| 708 | support::ulittle16_t Reserved2; |
| 709 | support::ulittle64_t GuardRFVerifyStackPointerFunctionPointer; |
| 710 | support::ulittle32_t HotPatchTableOffset; |
| 711 | }; |
| 712 | |
| 713 | struct coff_runtime_function_x64 { |
| 714 | support::ulittle32_t BeginAddress; |
| 715 | support::ulittle32_t EndAddress; |
| 716 | support::ulittle32_t UnwindInformation; |
| 717 | }; |
| 718 | |
| 719 | struct coff_base_reloc_block_header { |
| 720 | support::ulittle32_t PageRVA; |
| 721 | support::ulittle32_t BlockSize; |
| 722 | }; |
| 723 | |
| 724 | struct coff_base_reloc_block_entry { |
| 725 | support::ulittle16_t Data; |
| 726 | |
| 727 | int getType() const { return Data >> 12; } |
| 728 | int getOffset() const { return Data & ((1 << 12) - 1); } |
| 729 | }; |
| 730 | |
| 731 | struct coff_resource_dir_entry { |
| 732 | union { |
| 733 | support::ulittle32_t NameOffset; |
| 734 | support::ulittle32_t ID; |
| 735 | uint32_t getNameOffset() const { |
| 736 | return maskTrailingOnes<uint32_t>(31) & NameOffset; |
| 737 | } |
| 738 | // Even though the PE/COFF spec doesn't mention this, the high bit of a name |
| 739 | // offset is set. |
| 740 | void setNameOffset(uint32_t Offset) { NameOffset = Offset | (1 << 31); } |
| 741 | } Identifier; |
| 742 | union { |
| 743 | support::ulittle32_t DataEntryOffset; |
| 744 | support::ulittle32_t SubdirOffset; |
| 745 | |
| 746 | bool isSubDir() const { return SubdirOffset >> 31; } |
| 747 | uint32_t value() const { |
| 748 | return maskTrailingOnes<uint32_t>(31) & SubdirOffset; |
| 749 | } |
| 750 | |
| 751 | } Offset; |
| 752 | }; |
| 753 | |
| 754 | struct coff_resource_data_entry { |
| 755 | support::ulittle32_t DataRVA; |
| 756 | support::ulittle32_t DataSize; |
| 757 | support::ulittle32_t Codepage; |
| 758 | support::ulittle32_t Reserved; |
| 759 | }; |
| 760 | |
| 761 | struct coff_resource_dir_table { |
| 762 | support::ulittle32_t Characteristics; |
| 763 | support::ulittle32_t TimeDateStamp; |
| 764 | support::ulittle16_t MajorVersion; |
| 765 | support::ulittle16_t MinorVersion; |
| 766 | support::ulittle16_t NumberOfNameEntries; |
| 767 | support::ulittle16_t NumberOfIDEntries; |
| 768 | }; |
| 769 | |
| 770 | struct debug_h_header { |
| 771 | support::ulittle32_t Magic; |
| 772 | support::ulittle16_t Version; |
| 773 | support::ulittle16_t HashAlgorithm; |
| 774 | }; |
| 775 | |
| 776 | class COFFObjectFile : public ObjectFile { |
| 777 | private: |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 778 | COFFObjectFile(MemoryBufferRef Object); |
| 779 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 780 | friend class ImportDirectoryEntryRef; |
| 781 | friend class ExportDirectoryEntryRef; |
| 782 | const coff_file_header *COFFHeader; |
| 783 | const coff_bigobj_file_header *COFFBigObjHeader; |
| 784 | const pe32_header *PE32Header; |
| 785 | const pe32plus_header *PE32PlusHeader; |
| 786 | const data_directory *DataDirectory; |
| 787 | const coff_section *SectionTable; |
| 788 | const coff_symbol16 *SymbolTable16; |
| 789 | const coff_symbol32 *SymbolTable32; |
| 790 | const char *StringTable; |
| 791 | uint32_t StringTableSize; |
| 792 | const coff_import_directory_table_entry *ImportDirectory; |
| 793 | const delay_import_directory_table_entry *DelayImportDirectory; |
| 794 | uint32_t NumberOfDelayImportDirectory; |
| 795 | const export_directory_table_entry *ExportDirectory; |
| 796 | const coff_base_reloc_block_header *BaseRelocHeader; |
| 797 | const coff_base_reloc_block_header *BaseRelocEnd; |
| 798 | const debug_directory *DebugDirectoryBegin; |
| 799 | const debug_directory *DebugDirectoryEnd; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 800 | const coff_tls_directory32 *TLSDirectory32; |
| 801 | const coff_tls_directory64 *TLSDirectory64; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 802 | // Either coff_load_configuration32 or coff_load_configuration64. |
| 803 | const void *LoadConfig = nullptr; |
| 804 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 805 | Expected<StringRef> getString(uint32_t offset) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 806 | |
| 807 | template <typename coff_symbol_type> |
| 808 | const coff_symbol_type *toSymb(DataRefImpl Symb) const; |
| 809 | const coff_section *toSec(DataRefImpl Sec) const; |
| 810 | const coff_relocation *toRel(DataRefImpl Rel) const; |
| 811 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 812 | // Finish initializing the object and return success or an error. |
| 813 | Error initialize(); |
| 814 | |
| 815 | Error initSymbolTablePtr(); |
| 816 | Error initImportTablePtr(); |
| 817 | Error initDelayImportTablePtr(); |
| 818 | Error initExportTablePtr(); |
| 819 | Error initBaseRelocPtr(); |
| 820 | Error initDebugDirectoryPtr(); |
| 821 | Error initTLSDirectoryPtr(); |
| 822 | Error initLoadConfigPtr(); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 823 | |
| 824 | public: |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 825 | static Expected<std::unique_ptr<COFFObjectFile>> |
| 826 | create(MemoryBufferRef Object); |
| 827 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 828 | uintptr_t getSymbolTable() const { |
| 829 | if (SymbolTable16) |
| 830 | return reinterpret_cast<uintptr_t>(SymbolTable16); |
| 831 | if (SymbolTable32) |
| 832 | return reinterpret_cast<uintptr_t>(SymbolTable32); |
| 833 | return uintptr_t(0); |
| 834 | } |
| 835 | |
| 836 | uint16_t getMachine() const { |
| 837 | if (COFFHeader) |
| 838 | return COFFHeader->Machine; |
| 839 | if (COFFBigObjHeader) |
| 840 | return COFFBigObjHeader->Machine; |
| 841 | llvm_unreachable("no COFF header!"); |
| 842 | } |
| 843 | |
| 844 | uint16_t getSizeOfOptionalHeader() const { |
| 845 | if (COFFHeader) |
| 846 | return COFFHeader->isImportLibrary() ? 0 |
| 847 | : COFFHeader->SizeOfOptionalHeader; |
| 848 | // bigobj doesn't have this field. |
| 849 | if (COFFBigObjHeader) |
| 850 | return 0; |
| 851 | llvm_unreachable("no COFF header!"); |
| 852 | } |
| 853 | |
| 854 | uint16_t getCharacteristics() const { |
| 855 | if (COFFHeader) |
| 856 | return COFFHeader->isImportLibrary() ? 0 : COFFHeader->Characteristics; |
| 857 | // bigobj doesn't have characteristics to speak of, |
| 858 | // editbin will silently lie to you if you attempt to set any. |
| 859 | if (COFFBigObjHeader) |
| 860 | return 0; |
| 861 | llvm_unreachable("no COFF header!"); |
| 862 | } |
| 863 | |
| 864 | uint32_t getTimeDateStamp() const { |
| 865 | if (COFFHeader) |
| 866 | return COFFHeader->TimeDateStamp; |
| 867 | if (COFFBigObjHeader) |
| 868 | return COFFBigObjHeader->TimeDateStamp; |
| 869 | llvm_unreachable("no COFF header!"); |
| 870 | } |
| 871 | |
| 872 | uint32_t getNumberOfSections() const { |
| 873 | if (COFFHeader) |
| 874 | return COFFHeader->isImportLibrary() ? 0 : COFFHeader->NumberOfSections; |
| 875 | if (COFFBigObjHeader) |
| 876 | return COFFBigObjHeader->NumberOfSections; |
| 877 | llvm_unreachable("no COFF header!"); |
| 878 | } |
| 879 | |
| 880 | uint32_t getPointerToSymbolTable() const { |
| 881 | if (COFFHeader) |
| 882 | return COFFHeader->isImportLibrary() ? 0 |
| 883 | : COFFHeader->PointerToSymbolTable; |
| 884 | if (COFFBigObjHeader) |
| 885 | return COFFBigObjHeader->PointerToSymbolTable; |
| 886 | llvm_unreachable("no COFF header!"); |
| 887 | } |
| 888 | |
| 889 | uint32_t getRawNumberOfSymbols() const { |
| 890 | if (COFFHeader) |
| 891 | return COFFHeader->isImportLibrary() ? 0 : COFFHeader->NumberOfSymbols; |
| 892 | if (COFFBigObjHeader) |
| 893 | return COFFBigObjHeader->NumberOfSymbols; |
| 894 | llvm_unreachable("no COFF header!"); |
| 895 | } |
| 896 | |
| 897 | uint32_t getNumberOfSymbols() const { |
| 898 | if (!SymbolTable16 && !SymbolTable32) |
| 899 | return 0; |
| 900 | return getRawNumberOfSymbols(); |
| 901 | } |
| 902 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 903 | uint32_t getStringTableSize() const { return StringTableSize; } |
| 904 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 905 | const coff_load_configuration32 *getLoadConfig32() const { |
| 906 | assert(!is64()); |
| 907 | return reinterpret_cast<const coff_load_configuration32 *>(LoadConfig); |
| 908 | } |
| 909 | |
| 910 | const coff_load_configuration64 *getLoadConfig64() const { |
| 911 | assert(is64()); |
| 912 | return reinterpret_cast<const coff_load_configuration64 *>(LoadConfig); |
| 913 | } |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 914 | StringRef getRelocationTypeName(uint16_t Type) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 915 | |
| 916 | protected: |
| 917 | void moveSymbolNext(DataRefImpl &Symb) const override; |
| 918 | Expected<StringRef> getSymbolName(DataRefImpl Symb) const override; |
| 919 | Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override; |
| 920 | uint32_t getSymbolAlignment(DataRefImpl Symb) const override; |
| 921 | uint64_t getSymbolValueImpl(DataRefImpl Symb) const override; |
| 922 | uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 923 | Expected<uint32_t> getSymbolFlags(DataRefImpl Symb) const override; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 924 | Expected<SymbolRef::Type> getSymbolType(DataRefImpl Symb) const override; |
| 925 | Expected<section_iterator> getSymbolSection(DataRefImpl Symb) const override; |
| 926 | void moveSectionNext(DataRefImpl &Sec) const override; |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 927 | Expected<StringRef> getSectionName(DataRefImpl Sec) const override; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 928 | uint64_t getSectionAddress(DataRefImpl Sec) const override; |
| 929 | uint64_t getSectionIndex(DataRefImpl Sec) const override; |
| 930 | uint64_t getSectionSize(DataRefImpl Sec) const override; |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 931 | Expected<ArrayRef<uint8_t>> |
| 932 | getSectionContents(DataRefImpl Sec) const override; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 933 | uint64_t getSectionAlignment(DataRefImpl Sec) const override; |
| 934 | bool isSectionCompressed(DataRefImpl Sec) const override; |
| 935 | bool isSectionText(DataRefImpl Sec) const override; |
| 936 | bool isSectionData(DataRefImpl Sec) const override; |
| 937 | bool isSectionBSS(DataRefImpl Sec) const override; |
| 938 | bool isSectionVirtual(DataRefImpl Sec) const override; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 939 | bool isDebugSection(StringRef SectionName) const override; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 940 | relocation_iterator section_rel_begin(DataRefImpl Sec) const override; |
| 941 | relocation_iterator section_rel_end(DataRefImpl Sec) const override; |
| 942 | |
| 943 | void moveRelocationNext(DataRefImpl &Rel) const override; |
| 944 | uint64_t getRelocationOffset(DataRefImpl Rel) const override; |
| 945 | symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override; |
| 946 | uint64_t getRelocationType(DataRefImpl Rel) const override; |
| 947 | void getRelocationTypeName(DataRefImpl Rel, |
| 948 | SmallVectorImpl<char> &Result) const override; |
| 949 | |
| 950 | public: |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 951 | basic_symbol_iterator symbol_begin() const override; |
| 952 | basic_symbol_iterator symbol_end() const override; |
| 953 | section_iterator section_begin() const override; |
| 954 | section_iterator section_end() const override; |
| 955 | |
| 956 | const coff_section *getCOFFSection(const SectionRef &Section) const; |
| 957 | COFFSymbolRef getCOFFSymbol(const DataRefImpl &Ref) const; |
| 958 | COFFSymbolRef getCOFFSymbol(const SymbolRef &Symbol) const; |
| 959 | const coff_relocation *getCOFFRelocation(const RelocationRef &Reloc) const; |
| 960 | unsigned getSectionID(SectionRef Sec) const; |
| 961 | unsigned getSymbolSectionID(SymbolRef Sym) const; |
| 962 | |
| 963 | uint8_t getBytesInAddress() const override; |
| 964 | StringRef getFileFormatName() const override; |
| 965 | Triple::ArchType getArch() const override; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 966 | Expected<uint64_t> getStartAddress() const override; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 967 | SubtargetFeatures getFeatures() const override { return SubtargetFeatures(); } |
| 968 | |
| 969 | import_directory_iterator import_directory_begin() const; |
| 970 | import_directory_iterator import_directory_end() const; |
| 971 | delay_import_directory_iterator delay_import_directory_begin() const; |
| 972 | delay_import_directory_iterator delay_import_directory_end() const; |
| 973 | export_directory_iterator export_directory_begin() const; |
| 974 | export_directory_iterator export_directory_end() const; |
| 975 | base_reloc_iterator base_reloc_begin() const; |
| 976 | base_reloc_iterator base_reloc_end() const; |
| 977 | const debug_directory *debug_directory_begin() const { |
| 978 | return DebugDirectoryBegin; |
| 979 | } |
| 980 | const debug_directory *debug_directory_end() const { |
| 981 | return DebugDirectoryEnd; |
| 982 | } |
| 983 | |
| 984 | iterator_range<import_directory_iterator> import_directories() const; |
| 985 | iterator_range<delay_import_directory_iterator> |
| 986 | delay_import_directories() const; |
| 987 | iterator_range<export_directory_iterator> export_directories() const; |
| 988 | iterator_range<base_reloc_iterator> base_relocs() const; |
| 989 | iterator_range<const debug_directory *> debug_directories() const { |
| 990 | return make_range(debug_directory_begin(), debug_directory_end()); |
| 991 | } |
| 992 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 993 | const coff_tls_directory32 *getTLSDirectory32() const { |
| 994 | return TLSDirectory32; |
| 995 | } |
| 996 | const coff_tls_directory64 *getTLSDirectory64() const { |
| 997 | return TLSDirectory64; |
| 998 | } |
| 999 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1000 | const dos_header *getDOSHeader() const { |
| 1001 | if (!PE32Header && !PE32PlusHeader) |
| 1002 | return nullptr; |
| 1003 | return reinterpret_cast<const dos_header *>(base()); |
| 1004 | } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1005 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1006 | const coff_file_header *getCOFFHeader() const { return COFFHeader; } |
| 1007 | const coff_bigobj_file_header *getCOFFBigObjHeader() const { |
| 1008 | return COFFBigObjHeader; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1009 | } |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1010 | const pe32_header *getPE32Header() const { return PE32Header; } |
| 1011 | const pe32plus_header *getPE32PlusHeader() const { return PE32PlusHeader; } |
| 1012 | |
| 1013 | const data_directory *getDataDirectory(uint32_t index) const; |
| 1014 | Expected<const coff_section *> getSection(int32_t index) const; |
| 1015 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1016 | Expected<COFFSymbolRef> getSymbol(uint32_t index) const { |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1017 | if (index >= getNumberOfSymbols()) |
| 1018 | return errorCodeToError(object_error::parse_failed); |
| 1019 | if (SymbolTable16) |
| 1020 | return COFFSymbolRef(SymbolTable16 + index); |
| 1021 | if (SymbolTable32) |
| 1022 | return COFFSymbolRef(SymbolTable32 + index); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1023 | return errorCodeToError(object_error::parse_failed); |
| 1024 | } |
| 1025 | |
| 1026 | template <typename T> |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1027 | Error getAuxSymbol(uint32_t index, const T *&Res) const { |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1028 | Expected<COFFSymbolRef> S = getSymbol(index); |
| 1029 | if (Error E = S.takeError()) |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1030 | return E; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1031 | Res = reinterpret_cast<const T *>(S->getRawPtr()); |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1032 | return Error::success(); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1033 | } |
| 1034 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1035 | Expected<StringRef> getSymbolName(COFFSymbolRef Symbol) const; |
| 1036 | Expected<StringRef> getSymbolName(const coff_symbol_generic *Symbol) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1037 | |
| 1038 | ArrayRef<uint8_t> getSymbolAuxData(COFFSymbolRef Symbol) const; |
| 1039 | |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 1040 | uint32_t getSymbolIndex(COFFSymbolRef Symbol) const; |
| 1041 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1042 | size_t getSymbolTableEntrySize() const { |
| 1043 | if (COFFHeader) |
| 1044 | return sizeof(coff_symbol16); |
| 1045 | if (COFFBigObjHeader) |
| 1046 | return sizeof(coff_symbol32); |
| 1047 | llvm_unreachable("null symbol table pointer!"); |
| 1048 | } |
| 1049 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 1050 | ArrayRef<coff_relocation> getRelocations(const coff_section *Sec) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1051 | |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 1052 | Expected<StringRef> getSectionName(const coff_section *Sec) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1053 | uint64_t getSectionSize(const coff_section *Sec) const; |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 1054 | Error getSectionContents(const coff_section *Sec, |
| 1055 | ArrayRef<uint8_t> &Res) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1056 | |
| 1057 | uint64_t getImageBase() const; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1058 | Error getVaPtr(uint64_t VA, uintptr_t &Res) const; |
| 1059 | Error getRvaPtr(uint32_t Rva, uintptr_t &Res) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1060 | |
| 1061 | /// Given an RVA base and size, returns a valid array of bytes or an error |
| 1062 | /// code if the RVA and size is not contained completely within a valid |
| 1063 | /// section. |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1064 | Error getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size, |
| 1065 | ArrayRef<uint8_t> &Contents) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1066 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1067 | Error getHintName(uint32_t Rva, uint16_t &Hint, |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1068 | StringRef &Name) const; |
| 1069 | |
| 1070 | /// Get PDB information out of a codeview debug directory entry. |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1071 | Error getDebugPDBInfo(const debug_directory *DebugDir, |
| 1072 | const codeview::DebugInfo *&Info, |
| 1073 | StringRef &PDBFileName) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1074 | |
| 1075 | /// Get PDB information from an executable. If the information is not present, |
| 1076 | /// Info will be set to nullptr and PDBFileName will be empty. An error is |
| 1077 | /// returned only on corrupt object files. Convenience accessor that can be |
| 1078 | /// used if the debug directory is not already handy. |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1079 | Error getDebugPDBInfo(const codeview::DebugInfo *&Info, |
| 1080 | StringRef &PDBFileName) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1081 | |
| 1082 | bool isRelocatableObject() const override; |
| 1083 | bool is64() const { return PE32PlusHeader; } |
| 1084 | |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 1085 | StringRef mapDebugSectionName(StringRef Name) const override; |
| 1086 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1087 | static bool classof(const Binary *v) { return v->isCOFF(); } |
| 1088 | }; |
| 1089 | |
| 1090 | // The iterator for the import directory table. |
| 1091 | class ImportDirectoryEntryRef { |
| 1092 | public: |
| 1093 | ImportDirectoryEntryRef() = default; |
| 1094 | ImportDirectoryEntryRef(const coff_import_directory_table_entry *Table, |
| 1095 | uint32_t I, const COFFObjectFile *Owner) |
| 1096 | : ImportTable(Table), Index(I), OwningObject(Owner) {} |
| 1097 | |
| 1098 | bool operator==(const ImportDirectoryEntryRef &Other) const; |
| 1099 | void moveNext(); |
| 1100 | |
| 1101 | imported_symbol_iterator imported_symbol_begin() const; |
| 1102 | imported_symbol_iterator imported_symbol_end() const; |
| 1103 | iterator_range<imported_symbol_iterator> imported_symbols() const; |
| 1104 | |
| 1105 | imported_symbol_iterator lookup_table_begin() const; |
| 1106 | imported_symbol_iterator lookup_table_end() const; |
| 1107 | iterator_range<imported_symbol_iterator> lookup_table_symbols() const; |
| 1108 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1109 | Error getName(StringRef &Result) const; |
| 1110 | Error getImportLookupTableRVA(uint32_t &Result) const; |
| 1111 | Error getImportAddressTableRVA(uint32_t &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1112 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1113 | Error |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1114 | getImportTableEntry(const coff_import_directory_table_entry *&Result) const; |
| 1115 | |
| 1116 | private: |
| 1117 | const coff_import_directory_table_entry *ImportTable; |
| 1118 | uint32_t Index; |
| 1119 | const COFFObjectFile *OwningObject = nullptr; |
| 1120 | }; |
| 1121 | |
| 1122 | class DelayImportDirectoryEntryRef { |
| 1123 | public: |
| 1124 | DelayImportDirectoryEntryRef() = default; |
| 1125 | DelayImportDirectoryEntryRef(const delay_import_directory_table_entry *T, |
| 1126 | uint32_t I, const COFFObjectFile *Owner) |
| 1127 | : Table(T), Index(I), OwningObject(Owner) {} |
| 1128 | |
| 1129 | bool operator==(const DelayImportDirectoryEntryRef &Other) const; |
| 1130 | void moveNext(); |
| 1131 | |
| 1132 | imported_symbol_iterator imported_symbol_begin() const; |
| 1133 | imported_symbol_iterator imported_symbol_end() const; |
| 1134 | iterator_range<imported_symbol_iterator> imported_symbols() const; |
| 1135 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1136 | Error getName(StringRef &Result) const; |
| 1137 | Error getDelayImportTable( |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1138 | const delay_import_directory_table_entry *&Result) const; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1139 | Error getImportAddress(int AddrIndex, uint64_t &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1140 | |
| 1141 | private: |
| 1142 | const delay_import_directory_table_entry *Table; |
| 1143 | uint32_t Index; |
| 1144 | const COFFObjectFile *OwningObject = nullptr; |
| 1145 | }; |
| 1146 | |
| 1147 | // The iterator for the export directory table entry. |
| 1148 | class ExportDirectoryEntryRef { |
| 1149 | public: |
| 1150 | ExportDirectoryEntryRef() = default; |
| 1151 | ExportDirectoryEntryRef(const export_directory_table_entry *Table, uint32_t I, |
| 1152 | const COFFObjectFile *Owner) |
| 1153 | : ExportTable(Table), Index(I), OwningObject(Owner) {} |
| 1154 | |
| 1155 | bool operator==(const ExportDirectoryEntryRef &Other) const; |
| 1156 | void moveNext(); |
| 1157 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1158 | Error getDllName(StringRef &Result) const; |
| 1159 | Error getOrdinalBase(uint32_t &Result) const; |
| 1160 | Error getOrdinal(uint32_t &Result) const; |
| 1161 | Error getExportRVA(uint32_t &Result) const; |
| 1162 | Error getSymbolName(StringRef &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1163 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1164 | Error isForwarder(bool &Result) const; |
| 1165 | Error getForwardTo(StringRef &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1166 | |
| 1167 | private: |
| 1168 | const export_directory_table_entry *ExportTable; |
| 1169 | uint32_t Index; |
| 1170 | const COFFObjectFile *OwningObject = nullptr; |
| 1171 | }; |
| 1172 | |
| 1173 | class ImportedSymbolRef { |
| 1174 | public: |
| 1175 | ImportedSymbolRef() = default; |
| 1176 | ImportedSymbolRef(const import_lookup_table_entry32 *Entry, uint32_t I, |
| 1177 | const COFFObjectFile *Owner) |
| 1178 | : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {} |
| 1179 | ImportedSymbolRef(const import_lookup_table_entry64 *Entry, uint32_t I, |
| 1180 | const COFFObjectFile *Owner) |
| 1181 | : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {} |
| 1182 | |
| 1183 | bool operator==(const ImportedSymbolRef &Other) const; |
| 1184 | void moveNext(); |
| 1185 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1186 | Error getSymbolName(StringRef &Result) const; |
| 1187 | Error isOrdinal(bool &Result) const; |
| 1188 | Error getOrdinal(uint16_t &Result) const; |
| 1189 | Error getHintNameRVA(uint32_t &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1190 | |
| 1191 | private: |
| 1192 | const import_lookup_table_entry32 *Entry32; |
| 1193 | const import_lookup_table_entry64 *Entry64; |
| 1194 | uint32_t Index; |
| 1195 | const COFFObjectFile *OwningObject = nullptr; |
| 1196 | }; |
| 1197 | |
| 1198 | class BaseRelocRef { |
| 1199 | public: |
| 1200 | BaseRelocRef() = default; |
| 1201 | BaseRelocRef(const coff_base_reloc_block_header *Header, |
| 1202 | const COFFObjectFile *Owner) |
| 1203 | : Header(Header), Index(0) {} |
| 1204 | |
| 1205 | bool operator==(const BaseRelocRef &Other) const; |
| 1206 | void moveNext(); |
| 1207 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1208 | Error getType(uint8_t &Type) const; |
| 1209 | Error getRVA(uint32_t &Result) const; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1210 | |
| 1211 | private: |
| 1212 | const coff_base_reloc_block_header *Header; |
| 1213 | uint32_t Index; |
| 1214 | }; |
| 1215 | |
| 1216 | class ResourceSectionRef { |
| 1217 | public: |
| 1218 | ResourceSectionRef() = default; |
| 1219 | explicit ResourceSectionRef(StringRef Ref) : BBS(Ref, support::little) {} |
| 1220 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1221 | Error load(const COFFObjectFile *O); |
| 1222 | Error load(const COFFObjectFile *O, const SectionRef &S); |
| 1223 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1224 | Expected<ArrayRef<UTF16>> |
| 1225 | getEntryNameString(const coff_resource_dir_entry &Entry); |
| 1226 | Expected<const coff_resource_dir_table &> |
| 1227 | getEntrySubDir(const coff_resource_dir_entry &Entry); |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1228 | Expected<const coff_resource_data_entry &> |
| 1229 | getEntryData(const coff_resource_dir_entry &Entry); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1230 | Expected<const coff_resource_dir_table &> getBaseTable(); |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1231 | Expected<const coff_resource_dir_entry &> |
| 1232 | getTableEntry(const coff_resource_dir_table &Table, uint32_t Index); |
| 1233 | |
| 1234 | Expected<StringRef> getContents(const coff_resource_data_entry &Entry); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1235 | |
| 1236 | private: |
| 1237 | BinaryByteStream BBS; |
| 1238 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1239 | SectionRef Section; |
| 1240 | const COFFObjectFile *Obj; |
| 1241 | |
| 1242 | std::vector<const coff_relocation *> Relocs; |
| 1243 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1244 | Expected<const coff_resource_dir_table &> getTableAtOffset(uint32_t Offset); |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 1245 | Expected<const coff_resource_dir_entry &> |
| 1246 | getTableEntryAtOffset(uint32_t Offset); |
| 1247 | Expected<const coff_resource_data_entry &> |
| 1248 | getDataEntryAtOffset(uint32_t Offset); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1249 | Expected<ArrayRef<UTF16>> getDirStringAtOffset(uint32_t Offset); |
| 1250 | }; |
| 1251 | |
| 1252 | // Corresponds to `_FPO_DATA` structure in the PE/COFF spec. |
| 1253 | struct FpoData { |
| 1254 | support::ulittle32_t Offset; // ulOffStart: Offset 1st byte of function code |
| 1255 | support::ulittle32_t Size; // cbProcSize: # bytes in function |
| 1256 | support::ulittle32_t NumLocals; // cdwLocals: # bytes in locals/4 |
| 1257 | support::ulittle16_t NumParams; // cdwParams: # bytes in params/4 |
| 1258 | support::ulittle16_t Attributes; |
| 1259 | |
| 1260 | // cbProlog: # bytes in prolog |
| 1261 | int getPrologSize() const { return Attributes & 0xF; } |
| 1262 | |
| 1263 | // cbRegs: # regs saved |
| 1264 | int getNumSavedRegs() const { return (Attributes >> 8) & 0x7; } |
| 1265 | |
| 1266 | // fHasSEH: true if seh is func |
| 1267 | bool hasSEH() const { return (Attributes >> 9) & 1; } |
| 1268 | |
| 1269 | // fUseBP: true if EBP has been allocated |
| 1270 | bool useBP() const { return (Attributes >> 10) & 1; } |
| 1271 | |
| 1272 | // cbFrame: frame pointer |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 1273 | frame_type getFP() const { return static_cast<frame_type>(Attributes >> 14); } |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1274 | }; |
| 1275 | |
| 1276 | } // end namespace object |
| 1277 | |
| 1278 | } // end namespace llvm |
| 1279 | |
| 1280 | #endif // LLVM_OBJECT_COFF_H |