18e90adafSMichael J. Spencer //===- COFFObjectFile.cpp - COFF object file implementation -----*- C++ -*-===// 28e90adafSMichael J. Spencer // 38e90adafSMichael J. Spencer // The LLVM Compiler Infrastructure 48e90adafSMichael J. Spencer // 58e90adafSMichael J. Spencer // This file is distributed under the University of Illinois Open Source 68e90adafSMichael J. Spencer // License. See LICENSE.TXT for details. 78e90adafSMichael J. Spencer // 88e90adafSMichael J. Spencer //===----------------------------------------------------------------------===// 98e90adafSMichael J. Spencer // 108e90adafSMichael J. Spencer // This file declares the COFFObjectFile class. 118e90adafSMichael J. Spencer // 128e90adafSMichael J. Spencer //===----------------------------------------------------------------------===// 138e90adafSMichael J. Spencer 14ec29b121SMichael J. Spencer #include "llvm/Object/COFF.h" 159da9e693SMichael J. Spencer #include "llvm/ADT/ArrayRef.h" 16e5fd0047SMichael J. Spencer #include "llvm/ADT/SmallString.h" 178e90adafSMichael J. Spencer #include "llvm/ADT/StringSwitch.h" 188e90adafSMichael J. Spencer #include "llvm/ADT/Triple.h" 196a75acb1SRui Ueyama #include "llvm/ADT/iterator_range.h" 20f078eff3SRui Ueyama #include "llvm/Support/COFF.h" 21c2bed429SRui Ueyama #include "llvm/Support/Debug.h" 22c2bed429SRui Ueyama #include "llvm/Support/raw_ostream.h" 23981af002SWill Dietz #include <cctype> 249d2c15efSNico Rieck #include <limits> 258e90adafSMichael J. Spencer 268e90adafSMichael J. Spencer using namespace llvm; 278e90adafSMichael J. Spencer using namespace object; 288e90adafSMichael J. Spencer 298e90adafSMichael J. Spencer using support::ulittle16_t; 308e90adafSMichael J. Spencer using support::ulittle32_t; 31861021f9SRui Ueyama using support::ulittle64_t; 328e90adafSMichael J. Spencer using support::little16_t; 338e90adafSMichael J. Spencer 341d6167fdSMichael J. Spencer // Returns false if size is greater than the buffer size. And sets ec. 3548af1c2aSRafael Espindola static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) { 36c3f9b5a5SRafael Espindola if (M.getBufferSize() < Size) { 378ff24d25SRui Ueyama EC = object_error::unexpected_eof; 381d6167fdSMichael J. Spencer return false; 391d6167fdSMichael J. Spencer } 401d6167fdSMichael J. Spencer return true; 418e90adafSMichael J. Spencer } 428e90adafSMichael J. Spencer 43e830c60dSDavid Majnemer static std::error_code checkOffset(MemoryBufferRef M, uintptr_t Addr, 4494751be7SDavid Majnemer const uint64_t Size) { 45e830c60dSDavid Majnemer if (Addr + Size < Addr || Addr + Size < Size || 46e830c60dSDavid Majnemer Addr + Size > uintptr_t(M.getBufferEnd()) || 47e830c60dSDavid Majnemer Addr < uintptr_t(M.getBufferStart())) { 48e830c60dSDavid Majnemer return object_error::unexpected_eof; 49e830c60dSDavid Majnemer } 507d099195SRui Ueyama return std::error_code(); 51e830c60dSDavid Majnemer } 52e830c60dSDavid Majnemer 53ed64342bSRui Ueyama // Sets Obj unless any bytes in [addr, addr + size) fall outsize of m. 54ed64342bSRui Ueyama // Returns unexpected_eof if error. 55ed64342bSRui Ueyama template <typename T> 5648af1c2aSRafael Espindola static std::error_code getObject(const T *&Obj, MemoryBufferRef M, 5758323a97SDavid Majnemer const void *Ptr, 58236b0ca7SDavid Majnemer const uint64_t Size = sizeof(T)) { 59ed64342bSRui Ueyama uintptr_t Addr = uintptr_t(Ptr); 60e830c60dSDavid Majnemer if (std::error_code EC = checkOffset(M, Addr, Size)) 61e830c60dSDavid Majnemer return EC; 62ed64342bSRui Ueyama Obj = reinterpret_cast<const T *>(Addr); 637d099195SRui Ueyama return std::error_code(); 641d6167fdSMichael J. Spencer } 651d6167fdSMichael J. Spencer 669d2c15efSNico Rieck // Decode a string table entry in base 64 (//AAAAAA). Expects \arg Str without 679d2c15efSNico Rieck // prefixed slashes. 689d2c15efSNico Rieck static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) { 699d2c15efSNico Rieck assert(Str.size() <= 6 && "String too long, possible overflow."); 709d2c15efSNico Rieck if (Str.size() > 6) 719d2c15efSNico Rieck return true; 729d2c15efSNico Rieck 739d2c15efSNico Rieck uint64_t Value = 0; 749d2c15efSNico Rieck while (!Str.empty()) { 759d2c15efSNico Rieck unsigned CharVal; 769d2c15efSNico Rieck if (Str[0] >= 'A' && Str[0] <= 'Z') // 0..25 779d2c15efSNico Rieck CharVal = Str[0] - 'A'; 789d2c15efSNico Rieck else if (Str[0] >= 'a' && Str[0] <= 'z') // 26..51 799d2c15efSNico Rieck CharVal = Str[0] - 'a' + 26; 809d2c15efSNico Rieck else if (Str[0] >= '0' && Str[0] <= '9') // 52..61 819d2c15efSNico Rieck CharVal = Str[0] - '0' + 52; 829d2c15efSNico Rieck else if (Str[0] == '+') // 62 835500b07cSRui Ueyama CharVal = 62; 849d2c15efSNico Rieck else if (Str[0] == '/') // 63 855500b07cSRui Ueyama CharVal = 63; 869d2c15efSNico Rieck else 879d2c15efSNico Rieck return true; 889d2c15efSNico Rieck 899d2c15efSNico Rieck Value = (Value * 64) + CharVal; 909d2c15efSNico Rieck Str = Str.substr(1); 919d2c15efSNico Rieck } 929d2c15efSNico Rieck 939d2c15efSNico Rieck if (Value > std::numeric_limits<uint32_t>::max()) 949d2c15efSNico Rieck return true; 959d2c15efSNico Rieck 969d2c15efSNico Rieck Result = static_cast<uint32_t>(Value); 979d2c15efSNico Rieck return false; 989d2c15efSNico Rieck } 999d2c15efSNico Rieck 10044f51e51SDavid Majnemer template <typename coff_symbol_type> 10144f51e51SDavid Majnemer const coff_symbol_type *COFFObjectFile::toSymb(DataRefImpl Ref) const { 10244f51e51SDavid Majnemer const coff_symbol_type *Addr = 10344f51e51SDavid Majnemer reinterpret_cast<const coff_symbol_type *>(Ref.p); 1041d6167fdSMichael J. Spencer 105236b0ca7SDavid Majnemer assert(!checkOffset(Data, uintptr_t(Addr), sizeof(*Addr))); 1061d6167fdSMichael J. Spencer #ifndef NDEBUG 1071d6167fdSMichael J. Spencer // Verify that the symbol points to a valid entry in the symbol table. 1088ff24d25SRui Ueyama uintptr_t Offset = uintptr_t(Addr) - uintptr_t(base()); 1091d6167fdSMichael J. Spencer 11044f51e51SDavid Majnemer assert((Offset - getPointerToSymbolTable()) % sizeof(coff_symbol_type) == 0 && 11144f51e51SDavid Majnemer "Symbol did not point to the beginning of a symbol"); 1121d6167fdSMichael J. Spencer #endif 1131d6167fdSMichael J. Spencer 1148ff24d25SRui Ueyama return Addr; 1151d6167fdSMichael J. Spencer } 1161d6167fdSMichael J. Spencer 1178ff24d25SRui Ueyama const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const { 1188ff24d25SRui Ueyama const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p); 1191d6167fdSMichael J. Spencer 1201d6167fdSMichael J. Spencer # ifndef NDEBUG 1211d6167fdSMichael J. Spencer // Verify that the section points to a valid entry in the section table. 12244f51e51SDavid Majnemer if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) 1231d6167fdSMichael J. Spencer report_fatal_error("Section was outside of section table."); 1241d6167fdSMichael J. Spencer 1258ff24d25SRui Ueyama uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); 1268ff24d25SRui Ueyama assert(Offset % sizeof(coff_section) == 0 && 1271d6167fdSMichael J. Spencer "Section did not point to the beginning of a section"); 1281d6167fdSMichael J. Spencer # endif 1291d6167fdSMichael J. Spencer 1308ff24d25SRui Ueyama return Addr; 1311d6167fdSMichael J. Spencer } 1321d6167fdSMichael J. Spencer 1335e812afaSRafael Espindola void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const { 134236b0ca7SDavid Majnemer auto End = reinterpret_cast<uintptr_t>(StringTable); 13544f51e51SDavid Majnemer if (SymbolTable16) { 13644f51e51SDavid Majnemer const coff_symbol16 *Symb = toSymb<coff_symbol16>(Ref); 1378ff24d25SRui Ueyama Symb += 1 + Symb->NumberOfAuxSymbols; 138236b0ca7SDavid Majnemer Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); 13944f51e51SDavid Majnemer } else if (SymbolTable32) { 14044f51e51SDavid Majnemer const coff_symbol32 *Symb = toSymb<coff_symbol32>(Ref); 14144f51e51SDavid Majnemer Symb += 1 + Symb->NumberOfAuxSymbols; 142236b0ca7SDavid Majnemer Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); 14344f51e51SDavid Majnemer } else { 14444f51e51SDavid Majnemer llvm_unreachable("no symbol table pointer!"); 14544f51e51SDavid Majnemer } 1461d6167fdSMichael J. Spencer } 1471d6167fdSMichael J. Spencer 1485d0c2ffaSRafael Espindola ErrorOr<StringRef> COFFObjectFile::getSymbolName(DataRefImpl Ref) const { 14944f51e51SDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 1505d0c2ffaSRafael Espindola StringRef Result; 1515d0c2ffaSRafael Espindola std::error_code EC = getSymbolName(Symb, Result); 1525d0c2ffaSRafael Espindola if (EC) 1535d0c2ffaSRafael Espindola return EC; 1545d0c2ffaSRafael Espindola return Result; 1558e90adafSMichael J. Spencer } 1568e90adafSMichael J. Spencer 157be8b0ea8SRafael Espindola uint64_t COFFObjectFile::getSymbolValueImpl(DataRefImpl Ref) const { 158be8b0ea8SRafael Espindola return getCOFFSymbol(Ref).getValue(); 159991af666SRafael Espindola } 160991af666SRafael Espindola 161ed067c45SRafael Espindola ErrorOr<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const { 162ed067c45SRafael Espindola uint64_t Result = getSymbolValue(Ref); 16344f51e51SDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 164c7d7c6fbSDavid Majnemer int32_t SectionNumber = Symb.getSectionNumber(); 165991af666SRafael Espindola 166991af666SRafael Espindola if (Symb.isAnyUndefined() || Symb.isCommon() || 167991af666SRafael Espindola COFF::isReservedSectionNumber(SectionNumber)) 168ed067c45SRafael Espindola return Result; 16954c9f3daSRafael Espindola 1702617dcceSCraig Topper const coff_section *Section = nullptr; 171c7d7c6fbSDavid Majnemer if (std::error_code EC = getSection(SectionNumber, Section)) 1728ff24d25SRui Ueyama return EC; 173991af666SRafael Espindola Result += Section->VirtualAddress; 17447ea9eceSReid Kleckner 17547ea9eceSReid Kleckner // The section VirtualAddress does not include ImageBase, and we want to 17647ea9eceSReid Kleckner // return virtual addresses. 177*e94fef7bSReid Kleckner Result += getImageBase().get(); 17847ea9eceSReid Kleckner 179ed067c45SRafael Espindola return Result; 180c7d7c6fbSDavid Majnemer } 181c7d7c6fbSDavid Majnemer 1822fa80cc5SRafael Espindola SymbolRef::Type COFFObjectFile::getSymbolType(DataRefImpl Ref) const { 18344f51e51SDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 184c7d7c6fbSDavid Majnemer int32_t SectionNumber = Symb.getSectionNumber(); 18544f51e51SDavid Majnemer 186e834f420SPeter Collingbourne if (Symb.getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION) 187e834f420SPeter Collingbourne return SymbolRef::ST_Function; 1882fa80cc5SRafael Espindola if (Symb.isAnyUndefined()) 1892fa80cc5SRafael Espindola return SymbolRef::ST_Unknown; 1902fa80cc5SRafael Espindola if (Symb.isCommon()) 1912fa80cc5SRafael Espindola return SymbolRef::ST_Data; 1922fa80cc5SRafael Espindola if (Symb.isFileRecord()) 1932fa80cc5SRafael Espindola return SymbolRef::ST_File; 1942fa80cc5SRafael Espindola 1951a666e0fSDavid Majnemer // TODO: perhaps we need a new symbol type ST_Section. 1962fa80cc5SRafael Espindola if (SectionNumber == COFF::IMAGE_SYM_DEBUG || Symb.isSectionDefinition()) 1972fa80cc5SRafael Espindola return SymbolRef::ST_Debug; 1982fa80cc5SRafael Espindola 1992fa80cc5SRafael Espindola if (!COFF::isReservedSectionNumber(SectionNumber)) 2002fa80cc5SRafael Espindola return SymbolRef::ST_Data; 2012fa80cc5SRafael Espindola 2022fa80cc5SRafael Espindola return SymbolRef::ST_Other; 20375d1cf33SBenjamin Kramer } 20475d1cf33SBenjamin Kramer 20520122a43SRafael Espindola uint32_t COFFObjectFile::getSymbolFlags(DataRefImpl Ref) const { 20644f51e51SDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 20720122a43SRafael Espindola uint32_t Result = SymbolRef::SF_None; 20875d1cf33SBenjamin Kramer 209c7d7c6fbSDavid Majnemer if (Symb.isExternal() || Symb.isWeakExternal()) 2101df4b84dSDavid Meyer Result |= SymbolRef::SF_Global; 2111df4b84dSDavid Meyer 212c7d7c6fbSDavid Majnemer if (Symb.isWeakExternal()) 2131df4b84dSDavid Meyer Result |= SymbolRef::SF_Weak; 2141df4b84dSDavid Meyer 21544f51e51SDavid Majnemer if (Symb.getSectionNumber() == COFF::IMAGE_SYM_ABSOLUTE) 2161df4b84dSDavid Meyer Result |= SymbolRef::SF_Absolute; 2171df4b84dSDavid Meyer 218c7d7c6fbSDavid Majnemer if (Symb.isFileRecord()) 219c7d7c6fbSDavid Majnemer Result |= SymbolRef::SF_FormatSpecific; 220c7d7c6fbSDavid Majnemer 221c7d7c6fbSDavid Majnemer if (Symb.isSectionDefinition()) 222c7d7c6fbSDavid Majnemer Result |= SymbolRef::SF_FormatSpecific; 223c7d7c6fbSDavid Majnemer 224c7d7c6fbSDavid Majnemer if (Symb.isCommon()) 225c7d7c6fbSDavid Majnemer Result |= SymbolRef::SF_Common; 226c7d7c6fbSDavid Majnemer 227c7d7c6fbSDavid Majnemer if (Symb.isAnyUndefined()) 228c7d7c6fbSDavid Majnemer Result |= SymbolRef::SF_Undefined; 229c7d7c6fbSDavid Majnemer 23020122a43SRafael Espindola return Result; 23101759754SMichael J. Spencer } 23201759754SMichael J. Spencer 233d7a32ea4SRafael Espindola uint64_t COFFObjectFile::getCommonSymbolSizeImpl(DataRefImpl Ref) const { 234c7d7c6fbSDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 2355eb02e45SRafael Espindola return Symb.getValue(); 2368e90adafSMichael J. Spencer } 2378e90adafSMichael J. Spencer 2388bab889bSRafael Espindola ErrorOr<section_iterator> 2398bab889bSRafael Espindola COFFObjectFile::getSymbolSection(DataRefImpl Ref) const { 24044f51e51SDavid Majnemer COFFSymbolRef Symb = getCOFFSymbol(Ref); 2418bab889bSRafael Espindola if (COFF::isReservedSectionNumber(Symb.getSectionNumber())) 2428bab889bSRafael Espindola return section_end(); 2432617dcceSCraig Topper const coff_section *Sec = nullptr; 24444f51e51SDavid Majnemer if (std::error_code EC = getSection(Symb.getSectionNumber(), Sec)) 245db4ed0bdSRafael Espindola return EC; 2468bab889bSRafael Espindola DataRefImpl Ret; 2478bab889bSRafael Espindola Ret.p = reinterpret_cast<uintptr_t>(Sec); 2488bab889bSRafael Espindola return section_iterator(SectionRef(Ret, this)); 24932173153SMichael J. Spencer } 25032173153SMichael J. Spencer 2516bf32210SRafael Espindola unsigned COFFObjectFile::getSymbolSectionID(SymbolRef Sym) const { 2526bf32210SRafael Espindola COFFSymbolRef Symb = getCOFFSymbol(Sym.getRawDataRefImpl()); 2536bf32210SRafael Espindola return Symb.getSectionNumber(); 2546bf32210SRafael Espindola } 2556bf32210SRafael Espindola 2565e812afaSRafael Espindola void COFFObjectFile::moveSectionNext(DataRefImpl &Ref) const { 2578ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 2588ff24d25SRui Ueyama Sec += 1; 2598ff24d25SRui Ueyama Ref.p = reinterpret_cast<uintptr_t>(Sec); 2608e90adafSMichael J. Spencer } 2618e90adafSMichael J. Spencer 262db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getSectionName(DataRefImpl Ref, 2631d6167fdSMichael J. Spencer StringRef &Result) const { 2648ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 2658ff24d25SRui Ueyama return getSectionName(Sec, Result); 2668e90adafSMichael J. Spencer } 2678e90adafSMichael J. Spencer 26880291274SRafael Espindola uint64_t COFFObjectFile::getSectionAddress(DataRefImpl Ref) const { 2698ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 2707c6a071bSDavid Majnemer uint64_t Result = Sec->VirtualAddress; 2717c6a071bSDavid Majnemer 2727c6a071bSDavid Majnemer // The section VirtualAddress does not include ImageBase, and we want to 2737c6a071bSDavid Majnemer // return virtual addresses. 274*e94fef7bSReid Kleckner Result += getImageBase().get(); 2757c6a071bSDavid Majnemer return Result; 2768e90adafSMichael J. Spencer } 2778e90adafSMichael J. Spencer 27880291274SRafael Espindola uint64_t COFFObjectFile::getSectionSize(DataRefImpl Ref) const { 279a9ee5c06SDavid Majnemer return getSectionSize(toSec(Ref)); 2808e90adafSMichael J. Spencer } 2818e90adafSMichael J. Spencer 282db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getSectionContents(DataRefImpl Ref, 2831d6167fdSMichael J. Spencer StringRef &Result) const { 2848ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 2859da9e693SMichael J. Spencer ArrayRef<uint8_t> Res; 286db4ed0bdSRafael Espindola std::error_code EC = getSectionContents(Sec, Res); 2879da9e693SMichael J. Spencer Result = StringRef(reinterpret_cast<const char*>(Res.data()), Res.size()); 2889da9e693SMichael J. Spencer return EC; 2898e90adafSMichael J. Spencer } 2908e90adafSMichael J. Spencer 29180291274SRafael Espindola uint64_t COFFObjectFile::getSectionAlignment(DataRefImpl Ref) const { 2928ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 29380291274SRafael Espindola return uint64_t(1) << (((Sec->Characteristics & 0x00F00000) >> 20) - 1); 2947989460aSMichael J. Spencer } 2957989460aSMichael J. Spencer 29680291274SRafael Espindola bool COFFObjectFile::isSectionText(DataRefImpl Ref) const { 2978ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 29880291274SRafael Espindola return Sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; 2998e90adafSMichael J. Spencer } 3008e90adafSMichael J. Spencer 30180291274SRafael Espindola bool COFFObjectFile::isSectionData(DataRefImpl Ref) const { 3028ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 30380291274SRafael Espindola return Sec->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA; 304800619f2SMichael J. Spencer } 305800619f2SMichael J. Spencer 30680291274SRafael Espindola bool COFFObjectFile::isSectionBSS(DataRefImpl Ref) const { 3078ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 3081a666e0fSDavid Majnemer const uint32_t BssFlags = COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA | 3091a666e0fSDavid Majnemer COFF::IMAGE_SCN_MEM_READ | 3101a666e0fSDavid Majnemer COFF::IMAGE_SCN_MEM_WRITE; 3111a666e0fSDavid Majnemer return (Sec->Characteristics & BssFlags) == BssFlags; 312800619f2SMichael J. Spencer } 313800619f2SMichael J. Spencer 3146bf32210SRafael Espindola unsigned COFFObjectFile::getSectionID(SectionRef Sec) const { 3156bf32210SRafael Espindola uintptr_t Offset = 3166bf32210SRafael Espindola uintptr_t(Sec.getRawDataRefImpl().p) - uintptr_t(SectionTable); 3176bf32210SRafael Espindola assert((Offset % sizeof(coff_section)) == 0); 3186bf32210SRafael Espindola return (Offset / sizeof(coff_section)) + 1; 3196bf32210SRafael Espindola } 3206bf32210SRafael Espindola 32180291274SRafael Espindola bool COFFObjectFile::isSectionVirtual(DataRefImpl Ref) const { 3228ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 3231a666e0fSDavid Majnemer // In COFF, a virtual section won't have any in-file 3241a666e0fSDavid Majnemer // content, so the file pointer to the content will be zero. 3251a666e0fSDavid Majnemer return Sec->PointerToRawData == 0; 3262138ef6dSPreston Gurd } 3272138ef6dSPreston Gurd 328e830c60dSDavid Majnemer static uint32_t getNumberOfRelocations(const coff_section *Sec, 329e830c60dSDavid Majnemer MemoryBufferRef M, const uint8_t *base) { 330e830c60dSDavid Majnemer // The field for the number of relocations in COFF section table is only 331e830c60dSDavid Majnemer // 16-bit wide. If a section has more than 65535 relocations, 0xFFFF is set to 332e830c60dSDavid Majnemer // NumberOfRelocations field, and the actual relocation count is stored in the 333e830c60dSDavid Majnemer // VirtualAddress field in the first relocation entry. 334e830c60dSDavid Majnemer if (Sec->hasExtendedRelocations()) { 335e830c60dSDavid Majnemer const coff_relocation *FirstReloc; 336e830c60dSDavid Majnemer if (getObject(FirstReloc, M, reinterpret_cast<const coff_relocation*>( 337e830c60dSDavid Majnemer base + Sec->PointerToRelocations))) 338e830c60dSDavid Majnemer return 0; 33998fe58a3SRui Ueyama // -1 to exclude this first relocation entry. 34098fe58a3SRui Ueyama return FirstReloc->VirtualAddress - 1; 341e830c60dSDavid Majnemer } 342e830c60dSDavid Majnemer return Sec->NumberOfRelocations; 343e830c60dSDavid Majnemer } 344e830c60dSDavid Majnemer 34594751be7SDavid Majnemer static const coff_relocation * 34694751be7SDavid Majnemer getFirstReloc(const coff_section *Sec, MemoryBufferRef M, const uint8_t *Base) { 34794751be7SDavid Majnemer uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base); 34894751be7SDavid Majnemer if (!NumRelocs) 34994751be7SDavid Majnemer return nullptr; 350827c8a2bSRui Ueyama auto begin = reinterpret_cast<const coff_relocation *>( 35194751be7SDavid Majnemer Base + Sec->PointerToRelocations); 352827c8a2bSRui Ueyama if (Sec->hasExtendedRelocations()) { 353827c8a2bSRui Ueyama // Skip the first relocation entry repurposed to store the number of 354827c8a2bSRui Ueyama // relocations. 355827c8a2bSRui Ueyama begin++; 356827c8a2bSRui Ueyama } 35794751be7SDavid Majnemer if (checkOffset(M, uintptr_t(begin), sizeof(coff_relocation) * NumRelocs)) 35894751be7SDavid Majnemer return nullptr; 35994751be7SDavid Majnemer return begin; 360827c8a2bSRui Ueyama } 36194751be7SDavid Majnemer 36294751be7SDavid Majnemer relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const { 36394751be7SDavid Majnemer const coff_section *Sec = toSec(Ref); 36494751be7SDavid Majnemer const coff_relocation *begin = getFirstReloc(Sec, Data, base()); 36576d650e8SRafael Espindola if (begin && Sec->VirtualAddress != 0) 36676d650e8SRafael Espindola report_fatal_error("Sections with relocations should have an address of 0"); 36794751be7SDavid Majnemer DataRefImpl Ret; 36894751be7SDavid Majnemer Ret.p = reinterpret_cast<uintptr_t>(begin); 3698ff24d25SRui Ueyama return relocation_iterator(RelocationRef(Ret, this)); 370e5fd0047SMichael J. Spencer } 371e5fd0047SMichael J. Spencer 3728ff24d25SRui Ueyama relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const { 3738ff24d25SRui Ueyama const coff_section *Sec = toSec(Ref); 37494751be7SDavid Majnemer const coff_relocation *I = getFirstReloc(Sec, Data, base()); 37594751be7SDavid Majnemer if (I) 37694751be7SDavid Majnemer I += getNumberOfRelocations(Sec, Data, base()); 3778ff24d25SRui Ueyama DataRefImpl Ret; 37894751be7SDavid Majnemer Ret.p = reinterpret_cast<uintptr_t>(I); 3798ff24d25SRui Ueyama return relocation_iterator(RelocationRef(Ret, this)); 380e5fd0047SMichael J. Spencer } 381e5fd0047SMichael J. Spencer 382c2bed429SRui Ueyama // Initialize the pointer to the symbol table. 383db4ed0bdSRafael Espindola std::error_code COFFObjectFile::initSymbolTablePtr() { 38444f51e51SDavid Majnemer if (COFFHeader) 385236b0ca7SDavid Majnemer if (std::error_code EC = getObject( 386236b0ca7SDavid Majnemer SymbolTable16, Data, base() + getPointerToSymbolTable(), 387236b0ca7SDavid Majnemer (uint64_t)getNumberOfSymbols() * getSymbolTableEntrySize())) 38844f51e51SDavid Majnemer return EC; 38944f51e51SDavid Majnemer 39044f51e51SDavid Majnemer if (COFFBigObjHeader) 391236b0ca7SDavid Majnemer if (std::error_code EC = getObject( 392236b0ca7SDavid Majnemer SymbolTable32, Data, base() + getPointerToSymbolTable(), 393236b0ca7SDavid Majnemer (uint64_t)getNumberOfSymbols() * getSymbolTableEntrySize())) 3948ff24d25SRui Ueyama return EC; 395c2bed429SRui Ueyama 396c2bed429SRui Ueyama // Find string table. The first four byte of the string table contains the 397c2bed429SRui Ueyama // total size of the string table, including the size field itself. If the 398c2bed429SRui Ueyama // string table is empty, the value of the first four byte would be 4. 399f69b0585SDavid Majnemer uint32_t StringTableOffset = getPointerToSymbolTable() + 40044f51e51SDavid Majnemer getNumberOfSymbols() * getSymbolTableEntrySize(); 401f69b0585SDavid Majnemer const uint8_t *StringTableAddr = base() + StringTableOffset; 402c2bed429SRui Ueyama const ulittle32_t *StringTableSizePtr; 40348af1c2aSRafael Espindola if (std::error_code EC = getObject(StringTableSizePtr, Data, StringTableAddr)) 4048ff24d25SRui Ueyama return EC; 405c2bed429SRui Ueyama StringTableSize = *StringTableSizePtr; 406db4ed0bdSRafael Espindola if (std::error_code EC = 40748af1c2aSRafael Espindola getObject(StringTable, Data, StringTableAddr, StringTableSize)) 4088ff24d25SRui Ueyama return EC; 409c2bed429SRui Ueyama 410773a5795SNico Rieck // Treat table sizes < 4 as empty because contrary to the PECOFF spec, some 411773a5795SNico Rieck // tools like cvtres write a size of 0 for an empty table instead of 4. 412773a5795SNico Rieck if (StringTableSize < 4) 413773a5795SNico Rieck StringTableSize = 4; 414773a5795SNico Rieck 415c2bed429SRui Ueyama // Check that the string table is null terminated if has any in it. 416773a5795SNico Rieck if (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0) 417c2bed429SRui Ueyama return object_error::parse_failed; 4187d099195SRui Ueyama return std::error_code(); 419c2bed429SRui Ueyama } 420c2bed429SRui Ueyama 421*e94fef7bSReid Kleckner ErrorOr<uint64_t> COFFObjectFile::getImageBase() const { 422*e94fef7bSReid Kleckner if (PE32Header) 423*e94fef7bSReid Kleckner return uint64_t(PE32Header->ImageBase); 424*e94fef7bSReid Kleckner else if (PE32PlusHeader) 425*e94fef7bSReid Kleckner return uint64_t(PE32PlusHeader->ImageBase); 426*e94fef7bSReid Kleckner return object_error::parse_failed; 427*e94fef7bSReid Kleckner } 428*e94fef7bSReid Kleckner 429215a586cSRui Ueyama // Returns the file offset for the given VA. 430db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getVaPtr(uint64_t Addr, uintptr_t &Res) const { 431*e94fef7bSReid Kleckner uint64_t ImageBase = getImageBase().get(); 432b7a40081SRui Ueyama uint64_t Rva = Addr - ImageBase; 433b7a40081SRui Ueyama assert(Rva <= UINT32_MAX); 434b7a40081SRui Ueyama return getRvaPtr((uint32_t)Rva, Res); 435215a586cSRui Ueyama } 436215a586cSRui Ueyama 437c2bed429SRui Ueyama // Returns the file offset for the given RVA. 438db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getRvaPtr(uint32_t Addr, uintptr_t &Res) const { 43927dc8394SAlexey Samsonov for (const SectionRef &S : sections()) { 44027dc8394SAlexey Samsonov const coff_section *Section = getCOFFSection(S); 441c2bed429SRui Ueyama uint32_t SectionStart = Section->VirtualAddress; 442c2bed429SRui Ueyama uint32_t SectionEnd = Section->VirtualAddress + Section->VirtualSize; 443215a586cSRui Ueyama if (SectionStart <= Addr && Addr < SectionEnd) { 444215a586cSRui Ueyama uint32_t Offset = Addr - SectionStart; 445c2bed429SRui Ueyama Res = uintptr_t(base()) + Section->PointerToRawData + Offset; 4467d099195SRui Ueyama return std::error_code(); 447c2bed429SRui Ueyama } 448c2bed429SRui Ueyama } 449c2bed429SRui Ueyama return object_error::parse_failed; 450c2bed429SRui Ueyama } 451c2bed429SRui Ueyama 452c2bed429SRui Ueyama // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name 453c2bed429SRui Ueyama // table entry. 454db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getHintName(uint32_t Rva, uint16_t &Hint, 455db4ed0bdSRafael Espindola StringRef &Name) const { 456c2bed429SRui Ueyama uintptr_t IntPtr = 0; 457db4ed0bdSRafael Espindola if (std::error_code EC = getRvaPtr(Rva, IntPtr)) 4588ff24d25SRui Ueyama return EC; 459c2bed429SRui Ueyama const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr); 460c2bed429SRui Ueyama Hint = *reinterpret_cast<const ulittle16_t *>(Ptr); 461c2bed429SRui Ueyama Name = StringRef(reinterpret_cast<const char *>(Ptr + 2)); 4627d099195SRui Ueyama return std::error_code(); 463c2bed429SRui Ueyama } 464c2bed429SRui Ueyama 465c2bed429SRui Ueyama // Find the import table. 466db4ed0bdSRafael Espindola std::error_code COFFObjectFile::initImportTablePtr() { 467c2bed429SRui Ueyama // First, we get the RVA of the import table. If the file lacks a pointer to 468c2bed429SRui Ueyama // the import table, do nothing. 469c2bed429SRui Ueyama const data_directory *DataEntry; 470c2bed429SRui Ueyama if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry)) 4717d099195SRui Ueyama return std::error_code(); 472c2bed429SRui Ueyama 473c2bed429SRui Ueyama // Do nothing if the pointer to import table is NULL. 474c2bed429SRui Ueyama if (DataEntry->RelativeVirtualAddress == 0) 4757d099195SRui Ueyama return std::error_code(); 476c2bed429SRui Ueyama 477c2bed429SRui Ueyama uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; 4781e152d5eSRui Ueyama // -1 because the last entry is the null entry. 479c2bed429SRui Ueyama NumberOfImportDirectory = DataEntry->Size / 4801e152d5eSRui Ueyama sizeof(import_directory_table_entry) - 1; 481c2bed429SRui Ueyama 482c2bed429SRui Ueyama // Find the section that contains the RVA. This is needed because the RVA is 483c2bed429SRui Ueyama // the import table's memory address which is different from its file offset. 484c2bed429SRui Ueyama uintptr_t IntPtr = 0; 485db4ed0bdSRafael Espindola if (std::error_code EC = getRvaPtr(ImportTableRva, IntPtr)) 4868ff24d25SRui Ueyama return EC; 487c2bed429SRui Ueyama ImportDirectory = reinterpret_cast< 488c2bed429SRui Ueyama const import_directory_table_entry *>(IntPtr); 4897d099195SRui Ueyama return std::error_code(); 490ad882ba8SRui Ueyama } 491c2bed429SRui Ueyama 49215d99359SRui Ueyama // Initializes DelayImportDirectory and NumberOfDelayImportDirectory. 49315d99359SRui Ueyama std::error_code COFFObjectFile::initDelayImportTablePtr() { 49415d99359SRui Ueyama const data_directory *DataEntry; 49515d99359SRui Ueyama if (getDataDirectory(COFF::DELAY_IMPORT_DESCRIPTOR, DataEntry)) 4967d099195SRui Ueyama return std::error_code(); 49715d99359SRui Ueyama if (DataEntry->RelativeVirtualAddress == 0) 4987d099195SRui Ueyama return std::error_code(); 49915d99359SRui Ueyama 50015d99359SRui Ueyama uint32_t RVA = DataEntry->RelativeVirtualAddress; 50115d99359SRui Ueyama NumberOfDelayImportDirectory = DataEntry->Size / 50215d99359SRui Ueyama sizeof(delay_import_directory_table_entry) - 1; 50315d99359SRui Ueyama 50415d99359SRui Ueyama uintptr_t IntPtr = 0; 50515d99359SRui Ueyama if (std::error_code EC = getRvaPtr(RVA, IntPtr)) 50615d99359SRui Ueyama return EC; 50715d99359SRui Ueyama DelayImportDirectory = reinterpret_cast< 50815d99359SRui Ueyama const delay_import_directory_table_entry *>(IntPtr); 5097d099195SRui Ueyama return std::error_code(); 51015d99359SRui Ueyama } 51115d99359SRui Ueyama 512ad882ba8SRui Ueyama // Find the export table. 513db4ed0bdSRafael Espindola std::error_code COFFObjectFile::initExportTablePtr() { 514ad882ba8SRui Ueyama // First, we get the RVA of the export table. If the file lacks a pointer to 515ad882ba8SRui Ueyama // the export table, do nothing. 516ad882ba8SRui Ueyama const data_directory *DataEntry; 517ad882ba8SRui Ueyama if (getDataDirectory(COFF::EXPORT_TABLE, DataEntry)) 5187d099195SRui Ueyama return std::error_code(); 519ad882ba8SRui Ueyama 520ad882ba8SRui Ueyama // Do nothing if the pointer to export table is NULL. 521ad882ba8SRui Ueyama if (DataEntry->RelativeVirtualAddress == 0) 5227d099195SRui Ueyama return std::error_code(); 523ad882ba8SRui Ueyama 524ad882ba8SRui Ueyama uint32_t ExportTableRva = DataEntry->RelativeVirtualAddress; 525ad882ba8SRui Ueyama uintptr_t IntPtr = 0; 526db4ed0bdSRafael Espindola if (std::error_code EC = getRvaPtr(ExportTableRva, IntPtr)) 527ad882ba8SRui Ueyama return EC; 52824fc2d64SRui Ueyama ExportDirectory = 52924fc2d64SRui Ueyama reinterpret_cast<const export_directory_table_entry *>(IntPtr); 5307d099195SRui Ueyama return std::error_code(); 531c2bed429SRui Ueyama } 532c2bed429SRui Ueyama 53374e85130SRui Ueyama std::error_code COFFObjectFile::initBaseRelocPtr() { 53474e85130SRui Ueyama const data_directory *DataEntry; 53574e85130SRui Ueyama if (getDataDirectory(COFF::BASE_RELOCATION_TABLE, DataEntry)) 5367d099195SRui Ueyama return std::error_code(); 53774e85130SRui Ueyama if (DataEntry->RelativeVirtualAddress == 0) 5387d099195SRui Ueyama return std::error_code(); 53974e85130SRui Ueyama 54074e85130SRui Ueyama uintptr_t IntPtr = 0; 54174e85130SRui Ueyama if (std::error_code EC = getRvaPtr(DataEntry->RelativeVirtualAddress, IntPtr)) 54274e85130SRui Ueyama return EC; 54374e85130SRui Ueyama BaseRelocHeader = reinterpret_cast<const coff_base_reloc_block_header *>( 54474e85130SRui Ueyama IntPtr); 54574e85130SRui Ueyama BaseRelocEnd = reinterpret_cast<coff_base_reloc_block_header *>( 54674e85130SRui Ueyama IntPtr + DataEntry->Size); 5477d099195SRui Ueyama return std::error_code(); 54874e85130SRui Ueyama } 54974e85130SRui Ueyama 55048af1c2aSRafael Espindola COFFObjectFile::COFFObjectFile(MemoryBufferRef Object, std::error_code &EC) 55148af1c2aSRafael Espindola : ObjectFile(Binary::ID_COFF, Object), COFFHeader(nullptr), 55244f51e51SDavid Majnemer COFFBigObjHeader(nullptr), PE32Header(nullptr), PE32PlusHeader(nullptr), 55344f51e51SDavid Majnemer DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), 55444f51e51SDavid Majnemer SymbolTable32(nullptr), StringTable(nullptr), StringTableSize(0), 55544f51e51SDavid Majnemer ImportDirectory(nullptr), NumberOfImportDirectory(0), 55615d99359SRui Ueyama DelayImportDirectory(nullptr), NumberOfDelayImportDirectory(0), 55774e85130SRui Ueyama ExportDirectory(nullptr), BaseRelocHeader(nullptr), 55874e85130SRui Ueyama BaseRelocEnd(nullptr) { 5591d6167fdSMichael J. Spencer // Check that we at least have enough room for a header. 56048af1c2aSRafael Espindola if (!checkSize(Data, EC, sizeof(coff_file_header))) 561c3f9b5a5SRafael Espindola return; 562ee066fc4SEric Christopher 56382ebd8e3SRui Ueyama // The current location in the file where we are looking at. 56482ebd8e3SRui Ueyama uint64_t CurPtr = 0; 56582ebd8e3SRui Ueyama 56682ebd8e3SRui Ueyama // PE header is optional and is present only in executables. If it exists, 56782ebd8e3SRui Ueyama // it is placed right after COFF header. 5688ff24d25SRui Ueyama bool HasPEHeader = false; 569ee066fc4SEric Christopher 5701d6167fdSMichael J. Spencer // Check if this is a PE/COFF file. 57150267222SDavid Majnemer if (checkSize(Data, EC, sizeof(dos_header) + sizeof(COFF::PEMagic))) { 572ee066fc4SEric Christopher // PE/COFF, seek through MS-DOS compatibility stub and 4-byte 573ee066fc4SEric Christopher // PE signature to find 'normal' COFF header. 57450267222SDavid Majnemer const auto *DH = reinterpret_cast<const dos_header *>(base()); 57550267222SDavid Majnemer if (DH->Magic[0] == 'M' && DH->Magic[1] == 'Z') { 57650267222SDavid Majnemer CurPtr = DH->AddressOfNewExeHeader; 57782ebd8e3SRui Ueyama // Check the PE magic bytes. ("PE\0\0") 57850267222SDavid Majnemer if (memcmp(base() + CurPtr, COFF::PEMagic, sizeof(COFF::PEMagic)) != 0) { 5798ff24d25SRui Ueyama EC = object_error::parse_failed; 5801d6167fdSMichael J. Spencer return; 5811d6167fdSMichael J. Spencer } 58244f51e51SDavid Majnemer CurPtr += sizeof(COFF::PEMagic); // Skip the PE magic bytes. 5838ff24d25SRui Ueyama HasPEHeader = true; 584ee066fc4SEric Christopher } 58550267222SDavid Majnemer } 586ee066fc4SEric Christopher 58748af1c2aSRafael Espindola if ((EC = getObject(COFFHeader, Data, base() + CurPtr))) 5881d6167fdSMichael J. Spencer return; 58944f51e51SDavid Majnemer 59044f51e51SDavid Majnemer // It might be a bigobj file, let's check. Note that COFF bigobj and COFF 59144f51e51SDavid Majnemer // import libraries share a common prefix but bigobj is more restrictive. 59244f51e51SDavid Majnemer if (!HasPEHeader && COFFHeader->Machine == COFF::IMAGE_FILE_MACHINE_UNKNOWN && 59344f51e51SDavid Majnemer COFFHeader->NumberOfSections == uint16_t(0xffff) && 59444f51e51SDavid Majnemer checkSize(Data, EC, sizeof(coff_bigobj_file_header))) { 59544f51e51SDavid Majnemer if ((EC = getObject(COFFBigObjHeader, Data, base() + CurPtr))) 59644f51e51SDavid Majnemer return; 59744f51e51SDavid Majnemer 59844f51e51SDavid Majnemer // Verify that we are dealing with bigobj. 59944f51e51SDavid Majnemer if (COFFBigObjHeader->Version >= COFF::BigObjHeader::MinBigObjectVersion && 60044f51e51SDavid Majnemer std::memcmp(COFFBigObjHeader->UUID, COFF::BigObjMagic, 60144f51e51SDavid Majnemer sizeof(COFF::BigObjMagic)) == 0) { 60244f51e51SDavid Majnemer COFFHeader = nullptr; 60344f51e51SDavid Majnemer CurPtr += sizeof(coff_bigobj_file_header); 60444f51e51SDavid Majnemer } else { 60544f51e51SDavid Majnemer // It's not a bigobj. 60644f51e51SDavid Majnemer COFFBigObjHeader = nullptr; 60744f51e51SDavid Majnemer } 60844f51e51SDavid Majnemer } 60944f51e51SDavid Majnemer if (COFFHeader) { 61044f51e51SDavid Majnemer // The prior checkSize call may have failed. This isn't a hard error 61144f51e51SDavid Majnemer // because we were just trying to sniff out bigobj. 6127d099195SRui Ueyama EC = std::error_code(); 61382ebd8e3SRui Ueyama CurPtr += sizeof(coff_file_header); 61482ebd8e3SRui Ueyama 61544f51e51SDavid Majnemer if (COFFHeader->isImportLibrary()) 61644f51e51SDavid Majnemer return; 61744f51e51SDavid Majnemer } 61844f51e51SDavid Majnemer 6198ff24d25SRui Ueyama if (HasPEHeader) { 62010ed9ddcSRui Ueyama const pe32_header *Header; 62148af1c2aSRafael Espindola if ((EC = getObject(Header, Data, base() + CurPtr))) 62282ebd8e3SRui Ueyama return; 62310ed9ddcSRui Ueyama 62410ed9ddcSRui Ueyama const uint8_t *DataDirAddr; 62510ed9ddcSRui Ueyama uint64_t DataDirSize; 62650267222SDavid Majnemer if (Header->Magic == COFF::PE32Header::PE32) { 62710ed9ddcSRui Ueyama PE32Header = Header; 62810ed9ddcSRui Ueyama DataDirAddr = base() + CurPtr + sizeof(pe32_header); 62910ed9ddcSRui Ueyama DataDirSize = sizeof(data_directory) * PE32Header->NumberOfRvaAndSize; 63050267222SDavid Majnemer } else if (Header->Magic == COFF::PE32Header::PE32_PLUS) { 63110ed9ddcSRui Ueyama PE32PlusHeader = reinterpret_cast<const pe32plus_header *>(Header); 63210ed9ddcSRui Ueyama DataDirAddr = base() + CurPtr + sizeof(pe32plus_header); 63310ed9ddcSRui Ueyama DataDirSize = sizeof(data_directory) * PE32PlusHeader->NumberOfRvaAndSize; 63410ed9ddcSRui Ueyama } else { 63510ed9ddcSRui Ueyama // It's neither PE32 nor PE32+. 63610ed9ddcSRui Ueyama EC = object_error::parse_failed; 637ed64342bSRui Ueyama return; 638ed64342bSRui Ueyama } 63948af1c2aSRafael Espindola if ((EC = getObject(DataDirectory, Data, DataDirAddr, DataDirSize))) 64010ed9ddcSRui Ueyama return; 64182ebd8e3SRui Ueyama CurPtr += COFFHeader->SizeOfOptionalHeader; 64282ebd8e3SRui Ueyama } 6431d6167fdSMichael J. Spencer 64448af1c2aSRafael Espindola if ((EC = getObject(SectionTable, Data, base() + CurPtr, 645236b0ca7SDavid Majnemer (uint64_t)getNumberOfSections() * sizeof(coff_section)))) 6461d6167fdSMichael J. Spencer return; 6471d6167fdSMichael J. Spencer 648c2bed429SRui Ueyama // Initialize the pointer to the symbol table. 649236b0ca7SDavid Majnemer if (getPointerToSymbolTable() != 0) { 6508ff24d25SRui Ueyama if ((EC = initSymbolTablePtr())) 6511d6167fdSMichael J. Spencer return; 652236b0ca7SDavid Majnemer } else { 653236b0ca7SDavid Majnemer // We had better not have any symbols if we don't have a symbol table. 654236b0ca7SDavid Majnemer if (getNumberOfSymbols() != 0) { 655236b0ca7SDavid Majnemer EC = object_error::parse_failed; 656236b0ca7SDavid Majnemer return; 657236b0ca7SDavid Majnemer } 658236b0ca7SDavid Majnemer } 6598e90adafSMichael J. Spencer 660c2bed429SRui Ueyama // Initialize the pointer to the beginning of the import table. 6618ff24d25SRui Ueyama if ((EC = initImportTablePtr())) 662ed64342bSRui Ueyama return; 66315d99359SRui Ueyama if ((EC = initDelayImportTablePtr())) 66415d99359SRui Ueyama return; 6651d6167fdSMichael J. Spencer 666ad882ba8SRui Ueyama // Initialize the pointer to the export table. 6678ff24d25SRui Ueyama if ((EC = initExportTablePtr())) 668ad882ba8SRui Ueyama return; 669ad882ba8SRui Ueyama 67074e85130SRui Ueyama // Initialize the pointer to the base relocation table. 67174e85130SRui Ueyama if ((EC = initBaseRelocPtr())) 67274e85130SRui Ueyama return; 67374e85130SRui Ueyama 6747d099195SRui Ueyama EC = std::error_code(); 6758e90adafSMichael J. Spencer } 6768e90adafSMichael J. Spencer 677f12b8282SRafael Espindola basic_symbol_iterator COFFObjectFile::symbol_begin_impl() const { 6788ff24d25SRui Ueyama DataRefImpl Ret; 67944f51e51SDavid Majnemer Ret.p = getSymbolTable(); 680f12b8282SRafael Espindola return basic_symbol_iterator(SymbolRef(Ret, this)); 6818e90adafSMichael J. Spencer } 6828e90adafSMichael J. Spencer 683f12b8282SRafael Espindola basic_symbol_iterator COFFObjectFile::symbol_end_impl() const { 6848e90adafSMichael J. Spencer // The symbol table ends where the string table begins. 6858ff24d25SRui Ueyama DataRefImpl Ret; 6868ff24d25SRui Ueyama Ret.p = reinterpret_cast<uintptr_t>(StringTable); 687f12b8282SRafael Espindola return basic_symbol_iterator(SymbolRef(Ret, this)); 6888e90adafSMichael J. Spencer } 6898e90adafSMichael J. Spencer 690bc654b18SRui Ueyama import_directory_iterator COFFObjectFile::import_directory_begin() const { 691a045b73aSRui Ueyama return import_directory_iterator( 692a045b73aSRui Ueyama ImportDirectoryEntryRef(ImportDirectory, 0, this)); 693c2bed429SRui Ueyama } 694c2bed429SRui Ueyama 695bc654b18SRui Ueyama import_directory_iterator COFFObjectFile::import_directory_end() const { 696a045b73aSRui Ueyama return import_directory_iterator( 697a045b73aSRui Ueyama ImportDirectoryEntryRef(ImportDirectory, NumberOfImportDirectory, this)); 698c2bed429SRui Ueyama } 699c429b80dSDavid Meyer 70015d99359SRui Ueyama delay_import_directory_iterator 70115d99359SRui Ueyama COFFObjectFile::delay_import_directory_begin() const { 70215d99359SRui Ueyama return delay_import_directory_iterator( 70315d99359SRui Ueyama DelayImportDirectoryEntryRef(DelayImportDirectory, 0, this)); 70415d99359SRui Ueyama } 70515d99359SRui Ueyama 70615d99359SRui Ueyama delay_import_directory_iterator 70715d99359SRui Ueyama COFFObjectFile::delay_import_directory_end() const { 70815d99359SRui Ueyama return delay_import_directory_iterator( 70915d99359SRui Ueyama DelayImportDirectoryEntryRef( 71015d99359SRui Ueyama DelayImportDirectory, NumberOfDelayImportDirectory, this)); 71115d99359SRui Ueyama } 71215d99359SRui Ueyama 713ad882ba8SRui Ueyama export_directory_iterator COFFObjectFile::export_directory_begin() const { 714ad882ba8SRui Ueyama return export_directory_iterator( 715ad882ba8SRui Ueyama ExportDirectoryEntryRef(ExportDirectory, 0, this)); 716ad882ba8SRui Ueyama } 717ad882ba8SRui Ueyama 718ad882ba8SRui Ueyama export_directory_iterator COFFObjectFile::export_directory_end() const { 7192617dcceSCraig Topper if (!ExportDirectory) 7202617dcceSCraig Topper return export_directory_iterator(ExportDirectoryEntryRef(nullptr, 0, this)); 7218ff24d25SRui Ueyama ExportDirectoryEntryRef Ref(ExportDirectory, 722ad882ba8SRui Ueyama ExportDirectory->AddressTableEntries, this); 7238ff24d25SRui Ueyama return export_directory_iterator(Ref); 724ad882ba8SRui Ueyama } 725ad882ba8SRui Ueyama 726b5155a57SRafael Espindola section_iterator COFFObjectFile::section_begin() const { 7278ff24d25SRui Ueyama DataRefImpl Ret; 7288ff24d25SRui Ueyama Ret.p = reinterpret_cast<uintptr_t>(SectionTable); 7298ff24d25SRui Ueyama return section_iterator(SectionRef(Ret, this)); 7308e90adafSMichael J. Spencer } 7318e90adafSMichael J. Spencer 732b5155a57SRafael Espindola section_iterator COFFObjectFile::section_end() const { 7338ff24d25SRui Ueyama DataRefImpl Ret; 73444f51e51SDavid Majnemer int NumSections = 73544f51e51SDavid Majnemer COFFHeader && COFFHeader->isImportLibrary() ? 0 : getNumberOfSections(); 7368ff24d25SRui Ueyama Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); 7378ff24d25SRui Ueyama return section_iterator(SectionRef(Ret, this)); 7388e90adafSMichael J. Spencer } 7398e90adafSMichael J. Spencer 74074e85130SRui Ueyama base_reloc_iterator COFFObjectFile::base_reloc_begin() const { 74174e85130SRui Ueyama return base_reloc_iterator(BaseRelocRef(BaseRelocHeader, this)); 74274e85130SRui Ueyama } 74374e85130SRui Ueyama 74474e85130SRui Ueyama base_reloc_iterator COFFObjectFile::base_reloc_end() const { 74574e85130SRui Ueyama return base_reloc_iterator(BaseRelocRef(BaseRelocEnd, this)); 74674e85130SRui Ueyama } 74774e85130SRui Ueyama 7488e90adafSMichael J. Spencer uint8_t COFFObjectFile::getBytesInAddress() const { 7490324b672SMichael J. Spencer return getArch() == Triple::x86_64 ? 8 : 4; 7508e90adafSMichael J. Spencer } 7518e90adafSMichael J. Spencer 7528e90adafSMichael J. Spencer StringRef COFFObjectFile::getFileFormatName() const { 75344f51e51SDavid Majnemer switch(getMachine()) { 7548e90adafSMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_I386: 7558e90adafSMichael J. Spencer return "COFF-i386"; 7568e90adafSMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_AMD64: 7578e90adafSMichael J. Spencer return "COFF-x86-64"; 7589b7c0af2SSaleem Abdulrasool case COFF::IMAGE_FILE_MACHINE_ARMNT: 7599b7c0af2SSaleem Abdulrasool return "COFF-ARM"; 7601eff5c9cSMartell Malone case COFF::IMAGE_FILE_MACHINE_ARM64: 7611eff5c9cSMartell Malone return "COFF-ARM64"; 7628e90adafSMichael J. Spencer default: 7638e90adafSMichael J. Spencer return "COFF-<unknown arch>"; 7648e90adafSMichael J. Spencer } 7658e90adafSMichael J. Spencer } 7668e90adafSMichael J. Spencer 7678e90adafSMichael J. Spencer unsigned COFFObjectFile::getArch() const { 76844f51e51SDavid Majnemer switch (getMachine()) { 7698e90adafSMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_I386: 7708e90adafSMichael J. Spencer return Triple::x86; 7718e90adafSMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_AMD64: 7728e90adafSMichael J. Spencer return Triple::x86_64; 7739b7c0af2SSaleem Abdulrasool case COFF::IMAGE_FILE_MACHINE_ARMNT: 7749b7c0af2SSaleem Abdulrasool return Triple::thumb; 7751eff5c9cSMartell Malone case COFF::IMAGE_FILE_MACHINE_ARM64: 7761eff5c9cSMartell Malone return Triple::aarch64; 7778e90adafSMichael J. Spencer default: 7788e90adafSMichael J. Spencer return Triple::UnknownArch; 7798e90adafSMichael J. Spencer } 7808e90adafSMichael J. Spencer } 7818e90adafSMichael J. Spencer 782979fb40bSRui Ueyama iterator_range<import_directory_iterator> 783979fb40bSRui Ueyama COFFObjectFile::import_directories() const { 784979fb40bSRui Ueyama return make_range(import_directory_begin(), import_directory_end()); 785979fb40bSRui Ueyama } 786979fb40bSRui Ueyama 787979fb40bSRui Ueyama iterator_range<delay_import_directory_iterator> 788979fb40bSRui Ueyama COFFObjectFile::delay_import_directories() const { 789979fb40bSRui Ueyama return make_range(delay_import_directory_begin(), 790979fb40bSRui Ueyama delay_import_directory_end()); 791979fb40bSRui Ueyama } 792979fb40bSRui Ueyama 793979fb40bSRui Ueyama iterator_range<export_directory_iterator> 794979fb40bSRui Ueyama COFFObjectFile::export_directories() const { 795979fb40bSRui Ueyama return make_range(export_directory_begin(), export_directory_end()); 796979fb40bSRui Ueyama } 797979fb40bSRui Ueyama 79874e85130SRui Ueyama iterator_range<base_reloc_iterator> COFFObjectFile::base_relocs() const { 79974e85130SRui Ueyama return make_range(base_reloc_begin(), base_reloc_end()); 80074e85130SRui Ueyama } 80174e85130SRui Ueyama 802db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const { 80382ebd8e3SRui Ueyama Res = PE32Header; 8047d099195SRui Ueyama return std::error_code(); 80589a7a5eaSMichael J. Spencer } 80689a7a5eaSMichael J. Spencer 807db4ed0bdSRafael Espindola std::error_code 80810ed9ddcSRui Ueyama COFFObjectFile::getPE32PlusHeader(const pe32plus_header *&Res) const { 80910ed9ddcSRui Ueyama Res = PE32PlusHeader; 8107d099195SRui Ueyama return std::error_code(); 81110ed9ddcSRui Ueyama } 81210ed9ddcSRui Ueyama 813db4ed0bdSRafael Espindola std::error_code 814db4ed0bdSRafael Espindola COFFObjectFile::getDataDirectory(uint32_t Index, 815ed64342bSRui Ueyama const data_directory *&Res) const { 816ed64342bSRui Ueyama // Error if if there's no data directory or the index is out of range. 817f69b0585SDavid Majnemer if (!DataDirectory) { 818f69b0585SDavid Majnemer Res = nullptr; 81910ed9ddcSRui Ueyama return object_error::parse_failed; 820f69b0585SDavid Majnemer } 82110ed9ddcSRui Ueyama assert(PE32Header || PE32PlusHeader); 82210ed9ddcSRui Ueyama uint32_t NumEnt = PE32Header ? PE32Header->NumberOfRvaAndSize 82310ed9ddcSRui Ueyama : PE32PlusHeader->NumberOfRvaAndSize; 824f69b0585SDavid Majnemer if (Index >= NumEnt) { 825f69b0585SDavid Majnemer Res = nullptr; 826ed64342bSRui Ueyama return object_error::parse_failed; 827f69b0585SDavid Majnemer } 8288ff24d25SRui Ueyama Res = &DataDirectory[Index]; 8297d099195SRui Ueyama return std::error_code(); 830ed64342bSRui Ueyama } 831ed64342bSRui Ueyama 832db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getSection(int32_t Index, 8331d6167fdSMichael J. Spencer const coff_section *&Result) const { 8342617dcceSCraig Topper Result = nullptr; 835236b0ca7SDavid Majnemer if (COFF::isReservedSectionNumber(Index)) 8367d099195SRui Ueyama return std::error_code(); 837236b0ca7SDavid Majnemer if (static_cast<uint32_t>(Index) <= getNumberOfSections()) { 8381d6167fdSMichael J. Spencer // We already verified the section table data, so no need to check again. 8398ff24d25SRui Ueyama Result = SectionTable + (Index - 1); 8407d099195SRui Ueyama return std::error_code(); 8418e90adafSMichael J. Spencer } 842236b0ca7SDavid Majnemer return object_error::parse_failed; 843236b0ca7SDavid Majnemer } 8448e90adafSMichael J. Spencer 845db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getString(uint32_t Offset, 8461d6167fdSMichael J. Spencer StringRef &Result) const { 8471d6167fdSMichael J. Spencer if (StringTableSize <= 4) 8481d6167fdSMichael J. Spencer // Tried to get a string from an empty string table. 8491d6167fdSMichael J. Spencer return object_error::parse_failed; 8508ff24d25SRui Ueyama if (Offset >= StringTableSize) 8511d6167fdSMichael J. Spencer return object_error::unexpected_eof; 8528ff24d25SRui Ueyama Result = StringRef(StringTable + Offset); 8537d099195SRui Ueyama return std::error_code(); 8548e90adafSMichael J. Spencer } 855022ecdf2SBenjamin Kramer 85644f51e51SDavid Majnemer std::error_code COFFObjectFile::getSymbolName(COFFSymbolRef Symbol, 85789a7a5eaSMichael J. Spencer StringRef &Res) const { 858e40d30f3SRui Ueyama return getSymbolName(Symbol.getGeneric(), Res); 859e40d30f3SRui Ueyama } 860e40d30f3SRui Ueyama 861e40d30f3SRui Ueyama std::error_code COFFObjectFile::getSymbolName(const coff_symbol_generic *Symbol, 862e40d30f3SRui Ueyama StringRef &Res) const { 86389a7a5eaSMichael J. Spencer // Check for string table entry. First 4 bytes are 0. 864e40d30f3SRui Ueyama if (Symbol->Name.Offset.Zeroes == 0) { 865e40d30f3SRui Ueyama if (std::error_code EC = getString(Symbol->Name.Offset.Offset, Res)) 8668ff24d25SRui Ueyama return EC; 8677d099195SRui Ueyama return std::error_code(); 86889a7a5eaSMichael J. Spencer } 86989a7a5eaSMichael J. Spencer 870e40d30f3SRui Ueyama if (Symbol->Name.ShortName[COFF::NameSize - 1] == 0) 87189a7a5eaSMichael J. Spencer // Null terminated, let ::strlen figure out the length. 872e40d30f3SRui Ueyama Res = StringRef(Symbol->Name.ShortName); 87389a7a5eaSMichael J. Spencer else 87489a7a5eaSMichael J. Spencer // Not null terminated, use all 8 bytes. 875e40d30f3SRui Ueyama Res = StringRef(Symbol->Name.ShortName, COFF::NameSize); 8767d099195SRui Ueyama return std::error_code(); 87789a7a5eaSMichael J. Spencer } 87889a7a5eaSMichael J. Spencer 87944f51e51SDavid Majnemer ArrayRef<uint8_t> 88044f51e51SDavid Majnemer COFFObjectFile::getSymbolAuxData(COFFSymbolRef Symbol) const { 8812617dcceSCraig Topper const uint8_t *Aux = nullptr; 88271757ef3SMarshall Clow 88344f51e51SDavid Majnemer size_t SymbolSize = getSymbolTableEntrySize(); 88444f51e51SDavid Majnemer if (Symbol.getNumberOfAuxSymbols() > 0) { 88571757ef3SMarshall Clow // AUX data comes immediately after the symbol in COFF 88644f51e51SDavid Majnemer Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize; 88771757ef3SMarshall Clow # ifndef NDEBUG 8888ff24d25SRui Ueyama // Verify that the Aux symbol points to a valid entry in the symbol table. 8898ff24d25SRui Ueyama uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base()); 89044f51e51SDavid Majnemer if (Offset < getPointerToSymbolTable() || 89144f51e51SDavid Majnemer Offset >= 89244f51e51SDavid Majnemer getPointerToSymbolTable() + (getNumberOfSymbols() * SymbolSize)) 89371757ef3SMarshall Clow report_fatal_error("Aux Symbol data was outside of symbol table."); 89471757ef3SMarshall Clow 89544f51e51SDavid Majnemer assert((Offset - getPointerToSymbolTable()) % SymbolSize == 0 && 89644f51e51SDavid Majnemer "Aux Symbol data did not point to the beginning of a symbol"); 89771757ef3SMarshall Clow # endif 898bfb85e67SMarshall Clow } 89944f51e51SDavid Majnemer return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize); 90071757ef3SMarshall Clow } 90171757ef3SMarshall Clow 902db4ed0bdSRafael Espindola std::error_code COFFObjectFile::getSectionName(const coff_section *Sec, 90353c2d547SMichael J. Spencer StringRef &Res) const { 90453c2d547SMichael J. Spencer StringRef Name; 90544f51e51SDavid Majnemer if (Sec->Name[COFF::NameSize - 1] == 0) 90653c2d547SMichael J. Spencer // Null terminated, let ::strlen figure out the length. 90753c2d547SMichael J. Spencer Name = Sec->Name; 90853c2d547SMichael J. Spencer else 90953c2d547SMichael J. Spencer // Not null terminated, use all 8 bytes. 91044f51e51SDavid Majnemer Name = StringRef(Sec->Name, COFF::NameSize); 91153c2d547SMichael J. Spencer 91253c2d547SMichael J. Spencer // Check for string table entry. First byte is '/'. 9132314b3deSDavid Majnemer if (Name.startswith("/")) { 91453c2d547SMichael J. Spencer uint32_t Offset; 9152314b3deSDavid Majnemer if (Name.startswith("//")) { 9169d2c15efSNico Rieck if (decodeBase64StringEntry(Name.substr(2), Offset)) 9179d2c15efSNico Rieck return object_error::parse_failed; 9189d2c15efSNico Rieck } else { 91953c2d547SMichael J. Spencer if (Name.substr(1).getAsInteger(10, Offset)) 92053c2d547SMichael J. Spencer return object_error::parse_failed; 9219d2c15efSNico Rieck } 922db4ed0bdSRafael Espindola if (std::error_code EC = getString(Offset, Name)) 9238ff24d25SRui Ueyama return EC; 92453c2d547SMichael J. Spencer } 92553c2d547SMichael J. Spencer 92653c2d547SMichael J. Spencer Res = Name; 9277d099195SRui Ueyama return std::error_code(); 92853c2d547SMichael J. Spencer } 92953c2d547SMichael J. Spencer 930a9ee5c06SDavid Majnemer uint64_t COFFObjectFile::getSectionSize(const coff_section *Sec) const { 931a9ee5c06SDavid Majnemer // SizeOfRawData and VirtualSize change what they represent depending on 932a9ee5c06SDavid Majnemer // whether or not we have an executable image. 933a9ee5c06SDavid Majnemer // 934a9ee5c06SDavid Majnemer // For object files, SizeOfRawData contains the size of section's data; 935d5297ee7SRui Ueyama // VirtualSize should be zero but isn't due to buggy COFF writers. 936a9ee5c06SDavid Majnemer // 937a9ee5c06SDavid Majnemer // For executables, SizeOfRawData *must* be a multiple of FileAlignment; the 938a9ee5c06SDavid Majnemer // actual section size is in VirtualSize. It is possible for VirtualSize to 939a9ee5c06SDavid Majnemer // be greater than SizeOfRawData; the contents past that point should be 940a9ee5c06SDavid Majnemer // considered to be zero. 941d5297ee7SRui Ueyama if (getDOSHeader()) 942d5297ee7SRui Ueyama return std::min(Sec->VirtualSize, Sec->SizeOfRawData); 943d5297ee7SRui Ueyama return Sec->SizeOfRawData; 944a9ee5c06SDavid Majnemer } 945a9ee5c06SDavid Majnemer 946db4ed0bdSRafael Espindola std::error_code 947db4ed0bdSRafael Espindola COFFObjectFile::getSectionContents(const coff_section *Sec, 9489da9e693SMichael J. Spencer ArrayRef<uint8_t> &Res) const { 949dd9cff2eSDavid Majnemer // PointerToRawData and SizeOfRawData won't make sense for BSS sections, 950dd9cff2eSDavid Majnemer // don't do anything interesting for them. 951dac39857SDavid Majnemer assert((Sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) == 0 && 952dac39857SDavid Majnemer "BSS sections don't have contents!"); 9539da9e693SMichael J. Spencer // The only thing that we need to verify is that the contents is contained 9549da9e693SMichael J. Spencer // within the file bounds. We don't need to make sure it doesn't cover other 9559da9e693SMichael J. Spencer // data, as there's nothing that says that is not allowed. 9569da9e693SMichael J. Spencer uintptr_t ConStart = uintptr_t(base()) + Sec->PointerToRawData; 957a9ee5c06SDavid Majnemer uint32_t SectionSize = getSectionSize(Sec); 958e830c60dSDavid Majnemer if (checkOffset(Data, ConStart, SectionSize)) 9599da9e693SMichael J. Spencer return object_error::parse_failed; 960a9ee5c06SDavid Majnemer Res = makeArrayRef(reinterpret_cast<const uint8_t *>(ConStart), SectionSize); 9617d099195SRui Ueyama return std::error_code(); 9629da9e693SMichael J. Spencer } 9639da9e693SMichael J. Spencer 964022ecdf2SBenjamin Kramer const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { 965e5fd0047SMichael J. Spencer return reinterpret_cast<const coff_relocation*>(Rel.p); 966022ecdf2SBenjamin Kramer } 9678ff24d25SRui Ueyama 9685e812afaSRafael Espindola void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const { 969e5fd0047SMichael J. Spencer Rel.p = reinterpret_cast<uintptr_t>( 970e5fd0047SMichael J. Spencer reinterpret_cast<const coff_relocation*>(Rel.p) + 1); 971022ecdf2SBenjamin Kramer } 9728ff24d25SRui Ueyama 97396d071cdSRafael Espindola uint64_t COFFObjectFile::getRelocationOffset(DataRefImpl Rel) const { 97458323a97SDavid Majnemer const coff_relocation *R = toRel(Rel); 97596d071cdSRafael Espindola return R->VirtualAddress; 976cbe72fc9SDanil Malyshev } 9778ff24d25SRui Ueyama 978806f0064SRafael Espindola symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { 979022ecdf2SBenjamin Kramer const coff_relocation *R = toRel(Rel); 9808ff24d25SRui Ueyama DataRefImpl Ref; 981236b0ca7SDavid Majnemer if (R->SymbolTableIndex >= getNumberOfSymbols()) 982236b0ca7SDavid Majnemer return symbol_end(); 98344f51e51SDavid Majnemer if (SymbolTable16) 98444f51e51SDavid Majnemer Ref.p = reinterpret_cast<uintptr_t>(SymbolTable16 + R->SymbolTableIndex); 98544f51e51SDavid Majnemer else if (SymbolTable32) 98644f51e51SDavid Majnemer Ref.p = reinterpret_cast<uintptr_t>(SymbolTable32 + R->SymbolTableIndex); 98744f51e51SDavid Majnemer else 988c7353b58SDavid Majnemer llvm_unreachable("no symbol table pointer!"); 9898ff24d25SRui Ueyama return symbol_iterator(SymbolRef(Ref, this)); 990022ecdf2SBenjamin Kramer } 9918ff24d25SRui Ueyama 99299c041b7SRafael Espindola uint64_t COFFObjectFile::getRelocationType(DataRefImpl Rel) const { 993022ecdf2SBenjamin Kramer const coff_relocation* R = toRel(Rel); 99499c041b7SRafael Espindola return R->Type; 995022ecdf2SBenjamin Kramer } 996e5fd0047SMichael J. Spencer 99727dc8394SAlexey Samsonov const coff_section * 99827dc8394SAlexey Samsonov COFFObjectFile::getCOFFSection(const SectionRef &Section) const { 99927dc8394SAlexey Samsonov return toSec(Section.getRawDataRefImpl()); 100071757ef3SMarshall Clow } 100171757ef3SMarshall Clow 100244f51e51SDavid Majnemer COFFSymbolRef COFFObjectFile::getCOFFSymbol(const DataRefImpl &Ref) const { 100344f51e51SDavid Majnemer if (SymbolTable16) 100444f51e51SDavid Majnemer return toSymb<coff_symbol16>(Ref); 100544f51e51SDavid Majnemer if (SymbolTable32) 100644f51e51SDavid Majnemer return toSymb<coff_symbol32>(Ref); 100744f51e51SDavid Majnemer llvm_unreachable("no symbol table pointer!"); 100844f51e51SDavid Majnemer } 100944f51e51SDavid Majnemer 101044f51e51SDavid Majnemer COFFSymbolRef COFFObjectFile::getCOFFSymbol(const SymbolRef &Symbol) const { 101144f51e51SDavid Majnemer return getCOFFSymbol(Symbol.getRawDataRefImpl()); 101271757ef3SMarshall Clow } 101371757ef3SMarshall Clow 1014f12b8282SRafael Espindola const coff_relocation * 101527dc8394SAlexey Samsonov COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const { 101627dc8394SAlexey Samsonov return toRel(Reloc.getRawDataRefImpl()); 1017d3e2a76cSMarshall Clow } 1018d3e2a76cSMarshall Clow 10196a75acb1SRui Ueyama iterator_range<const coff_relocation *> 10206a75acb1SRui Ueyama COFFObjectFile::getRelocations(const coff_section *Sec) const { 10216a75acb1SRui Ueyama const coff_relocation *I = getFirstReloc(Sec, Data, base()); 10226a75acb1SRui Ueyama const coff_relocation *E = I; 10236a75acb1SRui Ueyama if (I) 10246a75acb1SRui Ueyama E += getNumberOfRelocations(Sec, Data, base()); 10256a75acb1SRui Ueyama return make_range(I, E); 10266a75acb1SRui Ueyama } 10276a75acb1SRui Ueyama 102827dc8394SAlexey Samsonov #define LLVM_COFF_SWITCH_RELOC_TYPE_NAME(reloc_type) \ 102927dc8394SAlexey Samsonov case COFF::reloc_type: \ 103027dc8394SAlexey Samsonov Res = #reloc_type; \ 103127dc8394SAlexey Samsonov break; 1032e5fd0047SMichael J. Spencer 103341bb4325SRafael Espindola void COFFObjectFile::getRelocationTypeName( 103441bb4325SRafael Espindola DataRefImpl Rel, SmallVectorImpl<char> &Result) const { 10358ff24d25SRui Ueyama const coff_relocation *Reloc = toRel(Rel); 10368ff24d25SRui Ueyama StringRef Res; 103744f51e51SDavid Majnemer switch (getMachine()) { 1038e5fd0047SMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_AMD64: 10398ff24d25SRui Ueyama switch (Reloc->Type) { 1040e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ABSOLUTE); 1041e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR64); 1042e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32); 1043e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32NB); 1044e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32); 1045e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_1); 1046e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_2); 1047e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_3); 1048e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_4); 1049e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_5); 1050e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECTION); 1051e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL); 1052e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL7); 1053e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_TOKEN); 1054e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SREL32); 1055e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_PAIR); 1056e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SSPAN32); 1057e5fd0047SMichael J. Spencer default: 10588ff24d25SRui Ueyama Res = "Unknown"; 1059e5fd0047SMichael J. Spencer } 1060e5fd0047SMichael J. Spencer break; 10615c503bf4SSaleem Abdulrasool case COFF::IMAGE_FILE_MACHINE_ARMNT: 10625c503bf4SSaleem Abdulrasool switch (Reloc->Type) { 10635c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ABSOLUTE); 10645c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32); 10655c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32NB); 10665c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24); 10675c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH11); 10685c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_TOKEN); 10695c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX24); 10705c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX11); 10715c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECTION); 10725c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECREL); 10735c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32A); 10745c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32T); 10755c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH20T); 10765c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24T); 10775c503bf4SSaleem Abdulrasool LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX23T); 10785c503bf4SSaleem Abdulrasool default: 10795c503bf4SSaleem Abdulrasool Res = "Unknown"; 10805c503bf4SSaleem Abdulrasool } 10815c503bf4SSaleem Abdulrasool break; 1082e5fd0047SMichael J. Spencer case COFF::IMAGE_FILE_MACHINE_I386: 10838ff24d25SRui Ueyama switch (Reloc->Type) { 1084e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_ABSOLUTE); 1085e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR16); 1086e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL16); 1087e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32); 1088e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32NB); 1089e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SEG12); 1090e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECTION); 1091e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL); 1092e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_TOKEN); 1093e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL7); 1094e5fd0047SMichael J. Spencer LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL32); 1095e5fd0047SMichael J. Spencer default: 10968ff24d25SRui Ueyama Res = "Unknown"; 1097e5fd0047SMichael J. Spencer } 1098e5fd0047SMichael J. Spencer break; 1099e5fd0047SMichael J. Spencer default: 11008ff24d25SRui Ueyama Res = "Unknown"; 1101e5fd0047SMichael J. Spencer } 11028ff24d25SRui Ueyama Result.append(Res.begin(), Res.end()); 1103e5fd0047SMichael J. Spencer } 1104e5fd0047SMichael J. Spencer 1105e5fd0047SMichael J. Spencer #undef LLVM_COFF_SWITCH_RELOC_TYPE_NAME 1106e5fd0047SMichael J. Spencer 1107c66d761bSRafael Espindola bool COFFObjectFile::isRelocatableObject() const { 1108c66d761bSRafael Espindola return !DataDirectory; 1109c66d761bSRafael Espindola } 1110c66d761bSRafael Espindola 1111c2bed429SRui Ueyama bool ImportDirectoryEntryRef:: 1112c2bed429SRui Ueyama operator==(const ImportDirectoryEntryRef &Other) const { 1113a045b73aSRui Ueyama return ImportTable == Other.ImportTable && Index == Other.Index; 1114c2bed429SRui Ueyama } 1115c2bed429SRui Ueyama 11165e812afaSRafael Espindola void ImportDirectoryEntryRef::moveNext() { 11175e812afaSRafael Espindola ++Index; 1118c2bed429SRui Ueyama } 1119c2bed429SRui Ueyama 1120db4ed0bdSRafael Espindola std::error_code ImportDirectoryEntryRef::getImportTableEntry( 1121db4ed0bdSRafael Espindola const import_directory_table_entry *&Result) const { 11221e152d5eSRui Ueyama Result = ImportTable + Index; 11237d099195SRui Ueyama return std::error_code(); 1124c2bed429SRui Ueyama } 1125c2bed429SRui Ueyama 1126861021f9SRui Ueyama static imported_symbol_iterator 112715d99359SRui Ueyama makeImportedSymbolIterator(const COFFObjectFile *Object, 1128861021f9SRui Ueyama uintptr_t Ptr, int Index) { 112915d99359SRui Ueyama if (Object->getBytesInAddress() == 4) { 1130861021f9SRui Ueyama auto *P = reinterpret_cast<const import_lookup_table_entry32 *>(Ptr); 113115d99359SRui Ueyama return imported_symbol_iterator(ImportedSymbolRef(P, Index, Object)); 1132861021f9SRui Ueyama } 1133861021f9SRui Ueyama auto *P = reinterpret_cast<const import_lookup_table_entry64 *>(Ptr); 113415d99359SRui Ueyama return imported_symbol_iterator(ImportedSymbolRef(P, Index, Object)); 1135861021f9SRui Ueyama } 1136861021f9SRui Ueyama 113715d99359SRui Ueyama static imported_symbol_iterator 113815d99359SRui Ueyama importedSymbolBegin(uint32_t RVA, const COFFObjectFile *Object) { 1139861021f9SRui Ueyama uintptr_t IntPtr = 0; 114015d99359SRui Ueyama Object->getRvaPtr(RVA, IntPtr); 114115d99359SRui Ueyama return makeImportedSymbolIterator(Object, IntPtr, 0); 1142861021f9SRui Ueyama } 1143861021f9SRui Ueyama 114415d99359SRui Ueyama static imported_symbol_iterator 114515d99359SRui Ueyama importedSymbolEnd(uint32_t RVA, const COFFObjectFile *Object) { 1146861021f9SRui Ueyama uintptr_t IntPtr = 0; 114715d99359SRui Ueyama Object->getRvaPtr(RVA, IntPtr); 1148861021f9SRui Ueyama // Forward the pointer to the last entry which is null. 1149861021f9SRui Ueyama int Index = 0; 115015d99359SRui Ueyama if (Object->getBytesInAddress() == 4) { 1151861021f9SRui Ueyama auto *Entry = reinterpret_cast<ulittle32_t *>(IntPtr); 1152861021f9SRui Ueyama while (*Entry++) 1153861021f9SRui Ueyama ++Index; 1154861021f9SRui Ueyama } else { 1155861021f9SRui Ueyama auto *Entry = reinterpret_cast<ulittle64_t *>(IntPtr); 1156861021f9SRui Ueyama while (*Entry++) 1157861021f9SRui Ueyama ++Index; 1158861021f9SRui Ueyama } 115915d99359SRui Ueyama return makeImportedSymbolIterator(Object, IntPtr, Index); 116015d99359SRui Ueyama } 116115d99359SRui Ueyama 116215d99359SRui Ueyama imported_symbol_iterator 116315d99359SRui Ueyama ImportDirectoryEntryRef::imported_symbol_begin() const { 116415d99359SRui Ueyama return importedSymbolBegin(ImportTable[Index].ImportLookupTableRVA, 116515d99359SRui Ueyama OwningObject); 116615d99359SRui Ueyama } 116715d99359SRui Ueyama 116815d99359SRui Ueyama imported_symbol_iterator 116915d99359SRui Ueyama ImportDirectoryEntryRef::imported_symbol_end() const { 117015d99359SRui Ueyama return importedSymbolEnd(ImportTable[Index].ImportLookupTableRVA, 117115d99359SRui Ueyama OwningObject); 1172861021f9SRui Ueyama } 1173861021f9SRui Ueyama 1174979fb40bSRui Ueyama iterator_range<imported_symbol_iterator> 1175979fb40bSRui Ueyama ImportDirectoryEntryRef::imported_symbols() const { 1176979fb40bSRui Ueyama return make_range(imported_symbol_begin(), imported_symbol_end()); 1177979fb40bSRui Ueyama } 1178979fb40bSRui Ueyama 1179db4ed0bdSRafael Espindola std::error_code ImportDirectoryEntryRef::getName(StringRef &Result) const { 1180c2bed429SRui Ueyama uintptr_t IntPtr = 0; 1181db4ed0bdSRafael Espindola if (std::error_code EC = 11821e152d5eSRui Ueyama OwningObject->getRvaPtr(ImportTable[Index].NameRVA, IntPtr)) 1183a045b73aSRui Ueyama return EC; 1184a045b73aSRui Ueyama Result = StringRef(reinterpret_cast<const char *>(IntPtr)); 11857d099195SRui Ueyama return std::error_code(); 1186c2bed429SRui Ueyama } 1187c2bed429SRui Ueyama 11881e152d5eSRui Ueyama std::error_code 11891e152d5eSRui Ueyama ImportDirectoryEntryRef::getImportLookupTableRVA(uint32_t &Result) const { 11901e152d5eSRui Ueyama Result = ImportTable[Index].ImportLookupTableRVA; 11917d099195SRui Ueyama return std::error_code(); 11921e152d5eSRui Ueyama } 11931e152d5eSRui Ueyama 11941e152d5eSRui Ueyama std::error_code 11951e152d5eSRui Ueyama ImportDirectoryEntryRef::getImportAddressTableRVA(uint32_t &Result) const { 11961e152d5eSRui Ueyama Result = ImportTable[Index].ImportAddressTableRVA; 11977d099195SRui Ueyama return std::error_code(); 11981e152d5eSRui Ueyama } 11991e152d5eSRui Ueyama 1200db4ed0bdSRafael Espindola std::error_code ImportDirectoryEntryRef::getImportLookupEntry( 1201c2bed429SRui Ueyama const import_lookup_table_entry32 *&Result) const { 1202c2bed429SRui Ueyama uintptr_t IntPtr = 0; 12031e152d5eSRui Ueyama uint32_t RVA = ImportTable[Index].ImportLookupTableRVA; 12041e152d5eSRui Ueyama if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) 1205a045b73aSRui Ueyama return EC; 1206c2bed429SRui Ueyama Result = reinterpret_cast<const import_lookup_table_entry32 *>(IntPtr); 12077d099195SRui Ueyama return std::error_code(); 1208c2bed429SRui Ueyama } 1209c2bed429SRui Ueyama 121015d99359SRui Ueyama bool DelayImportDirectoryEntryRef:: 121115d99359SRui Ueyama operator==(const DelayImportDirectoryEntryRef &Other) const { 121215d99359SRui Ueyama return Table == Other.Table && Index == Other.Index; 121315d99359SRui Ueyama } 121415d99359SRui Ueyama 121515d99359SRui Ueyama void DelayImportDirectoryEntryRef::moveNext() { 121615d99359SRui Ueyama ++Index; 121715d99359SRui Ueyama } 121815d99359SRui Ueyama 121915d99359SRui Ueyama imported_symbol_iterator 122015d99359SRui Ueyama DelayImportDirectoryEntryRef::imported_symbol_begin() const { 122115d99359SRui Ueyama return importedSymbolBegin(Table[Index].DelayImportNameTable, 122215d99359SRui Ueyama OwningObject); 122315d99359SRui Ueyama } 122415d99359SRui Ueyama 122515d99359SRui Ueyama imported_symbol_iterator 122615d99359SRui Ueyama DelayImportDirectoryEntryRef::imported_symbol_end() const { 122715d99359SRui Ueyama return importedSymbolEnd(Table[Index].DelayImportNameTable, 122815d99359SRui Ueyama OwningObject); 122915d99359SRui Ueyama } 123015d99359SRui Ueyama 1231979fb40bSRui Ueyama iterator_range<imported_symbol_iterator> 1232979fb40bSRui Ueyama DelayImportDirectoryEntryRef::imported_symbols() const { 1233979fb40bSRui Ueyama return make_range(imported_symbol_begin(), imported_symbol_end()); 1234979fb40bSRui Ueyama } 1235979fb40bSRui Ueyama 123615d99359SRui Ueyama std::error_code DelayImportDirectoryEntryRef::getName(StringRef &Result) const { 123715d99359SRui Ueyama uintptr_t IntPtr = 0; 123815d99359SRui Ueyama if (std::error_code EC = OwningObject->getRvaPtr(Table[Index].Name, IntPtr)) 123915d99359SRui Ueyama return EC; 124015d99359SRui Ueyama Result = StringRef(reinterpret_cast<const char *>(IntPtr)); 12417d099195SRui Ueyama return std::error_code(); 124215d99359SRui Ueyama } 124315d99359SRui Ueyama 12441af08658SRui Ueyama std::error_code DelayImportDirectoryEntryRef:: 12451af08658SRui Ueyama getDelayImportTable(const delay_import_directory_table_entry *&Result) const { 12461af08658SRui Ueyama Result = Table; 12477d099195SRui Ueyama return std::error_code(); 12481af08658SRui Ueyama } 12491af08658SRui Ueyama 1250ffa4cebeSRui Ueyama std::error_code DelayImportDirectoryEntryRef:: 1251ffa4cebeSRui Ueyama getImportAddress(int AddrIndex, uint64_t &Result) const { 1252ffa4cebeSRui Ueyama uint32_t RVA = Table[Index].DelayImportAddressTable + 1253ffa4cebeSRui Ueyama AddrIndex * (OwningObject->is64() ? 8 : 4); 1254ffa4cebeSRui Ueyama uintptr_t IntPtr = 0; 1255ffa4cebeSRui Ueyama if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) 1256ffa4cebeSRui Ueyama return EC; 1257ffa4cebeSRui Ueyama if (OwningObject->is64()) 12585dcf11d1SRui Ueyama Result = *reinterpret_cast<const ulittle64_t *>(IntPtr); 1259ffa4cebeSRui Ueyama else 12605dcf11d1SRui Ueyama Result = *reinterpret_cast<const ulittle32_t *>(IntPtr); 12617d099195SRui Ueyama return std::error_code(); 1262ffa4cebeSRui Ueyama } 1263ffa4cebeSRui Ueyama 1264ad882ba8SRui Ueyama bool ExportDirectoryEntryRef:: 1265ad882ba8SRui Ueyama operator==(const ExportDirectoryEntryRef &Other) const { 1266ad882ba8SRui Ueyama return ExportTable == Other.ExportTable && Index == Other.Index; 1267ad882ba8SRui Ueyama } 1268ad882ba8SRui Ueyama 12695e812afaSRafael Espindola void ExportDirectoryEntryRef::moveNext() { 12705e812afaSRafael Espindola ++Index; 1271ad882ba8SRui Ueyama } 1272ad882ba8SRui Ueyama 1273da49d0d4SRui Ueyama // Returns the name of the current export symbol. If the symbol is exported only 1274da49d0d4SRui Ueyama // by ordinal, the empty string is set as a result. 1275db4ed0bdSRafael Espindola std::error_code ExportDirectoryEntryRef::getDllName(StringRef &Result) const { 1276da49d0d4SRui Ueyama uintptr_t IntPtr = 0; 1277db4ed0bdSRafael Espindola if (std::error_code EC = 1278db4ed0bdSRafael Espindola OwningObject->getRvaPtr(ExportTable->NameRVA, IntPtr)) 1279da49d0d4SRui Ueyama return EC; 1280da49d0d4SRui Ueyama Result = StringRef(reinterpret_cast<const char *>(IntPtr)); 12817d099195SRui Ueyama return std::error_code(); 1282da49d0d4SRui Ueyama } 1283da49d0d4SRui Ueyama 1284e5df6095SRui Ueyama // Returns the starting ordinal number. 1285db4ed0bdSRafael Espindola std::error_code 1286db4ed0bdSRafael Espindola ExportDirectoryEntryRef::getOrdinalBase(uint32_t &Result) const { 1287e5df6095SRui Ueyama Result = ExportTable->OrdinalBase; 12887d099195SRui Ueyama return std::error_code(); 1289e5df6095SRui Ueyama } 1290e5df6095SRui Ueyama 1291ad882ba8SRui Ueyama // Returns the export ordinal of the current export symbol. 1292db4ed0bdSRafael Espindola std::error_code ExportDirectoryEntryRef::getOrdinal(uint32_t &Result) const { 1293ad882ba8SRui Ueyama Result = ExportTable->OrdinalBase + Index; 12947d099195SRui Ueyama return std::error_code(); 1295ad882ba8SRui Ueyama } 1296ad882ba8SRui Ueyama 1297ad882ba8SRui Ueyama // Returns the address of the current export symbol. 1298db4ed0bdSRafael Espindola std::error_code ExportDirectoryEntryRef::getExportRVA(uint32_t &Result) const { 1299ad882ba8SRui Ueyama uintptr_t IntPtr = 0; 1300db4ed0bdSRafael Espindola if (std::error_code EC = 1301db4ed0bdSRafael Espindola OwningObject->getRvaPtr(ExportTable->ExportAddressTableRVA, IntPtr)) 1302ad882ba8SRui Ueyama return EC; 130324fc2d64SRui Ueyama const export_address_table_entry *entry = 130424fc2d64SRui Ueyama reinterpret_cast<const export_address_table_entry *>(IntPtr); 1305ad882ba8SRui Ueyama Result = entry[Index].ExportRVA; 13067d099195SRui Ueyama return std::error_code(); 1307ad882ba8SRui Ueyama } 1308ad882ba8SRui Ueyama 1309ad882ba8SRui Ueyama // Returns the name of the current export symbol. If the symbol is exported only 1310ad882ba8SRui Ueyama // by ordinal, the empty string is set as a result. 1311db4ed0bdSRafael Espindola std::error_code 1312db4ed0bdSRafael Espindola ExportDirectoryEntryRef::getSymbolName(StringRef &Result) const { 1313ad882ba8SRui Ueyama uintptr_t IntPtr = 0; 1314db4ed0bdSRafael Espindola if (std::error_code EC = 1315db4ed0bdSRafael Espindola OwningObject->getRvaPtr(ExportTable->OrdinalTableRVA, IntPtr)) 1316ad882ba8SRui Ueyama return EC; 1317ad882ba8SRui Ueyama const ulittle16_t *Start = reinterpret_cast<const ulittle16_t *>(IntPtr); 1318ad882ba8SRui Ueyama 1319ad882ba8SRui Ueyama uint32_t NumEntries = ExportTable->NumberOfNamePointers; 1320ad882ba8SRui Ueyama int Offset = 0; 1321ad882ba8SRui Ueyama for (const ulittle16_t *I = Start, *E = Start + NumEntries; 1322ad882ba8SRui Ueyama I < E; ++I, ++Offset) { 1323ad882ba8SRui Ueyama if (*I != Index) 1324ad882ba8SRui Ueyama continue; 1325db4ed0bdSRafael Espindola if (std::error_code EC = 1326db4ed0bdSRafael Espindola OwningObject->getRvaPtr(ExportTable->NamePointerRVA, IntPtr)) 1327ad882ba8SRui Ueyama return EC; 1328ad882ba8SRui Ueyama const ulittle32_t *NamePtr = reinterpret_cast<const ulittle32_t *>(IntPtr); 1329db4ed0bdSRafael Espindola if (std::error_code EC = OwningObject->getRvaPtr(NamePtr[Offset], IntPtr)) 1330ad882ba8SRui Ueyama return EC; 1331ad882ba8SRui Ueyama Result = StringRef(reinterpret_cast<const char *>(IntPtr)); 13327d099195SRui Ueyama return std::error_code(); 1333ad882ba8SRui Ueyama } 1334ad882ba8SRui Ueyama Result = ""; 13357d099195SRui Ueyama return std::error_code(); 1336ad882ba8SRui Ueyama } 1337ad882ba8SRui Ueyama 1338861021f9SRui Ueyama bool ImportedSymbolRef:: 1339861021f9SRui Ueyama operator==(const ImportedSymbolRef &Other) const { 1340861021f9SRui Ueyama return Entry32 == Other.Entry32 && Entry64 == Other.Entry64 1341861021f9SRui Ueyama && Index == Other.Index; 1342861021f9SRui Ueyama } 1343861021f9SRui Ueyama 1344861021f9SRui Ueyama void ImportedSymbolRef::moveNext() { 1345861021f9SRui Ueyama ++Index; 1346861021f9SRui Ueyama } 1347861021f9SRui Ueyama 1348861021f9SRui Ueyama std::error_code 1349861021f9SRui Ueyama ImportedSymbolRef::getSymbolName(StringRef &Result) const { 1350861021f9SRui Ueyama uint32_t RVA; 1351861021f9SRui Ueyama if (Entry32) { 1352861021f9SRui Ueyama // If a symbol is imported only by ordinal, it has no name. 1353861021f9SRui Ueyama if (Entry32[Index].isOrdinal()) 13547d099195SRui Ueyama return std::error_code(); 1355861021f9SRui Ueyama RVA = Entry32[Index].getHintNameRVA(); 1356861021f9SRui Ueyama } else { 1357861021f9SRui Ueyama if (Entry64[Index].isOrdinal()) 13587d099195SRui Ueyama return std::error_code(); 1359861021f9SRui Ueyama RVA = Entry64[Index].getHintNameRVA(); 1360861021f9SRui Ueyama } 1361861021f9SRui Ueyama uintptr_t IntPtr = 0; 1362861021f9SRui Ueyama if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) 1363861021f9SRui Ueyama return EC; 1364861021f9SRui Ueyama // +2 because the first two bytes is hint. 1365861021f9SRui Ueyama Result = StringRef(reinterpret_cast<const char *>(IntPtr + 2)); 13667d099195SRui Ueyama return std::error_code(); 1367861021f9SRui Ueyama } 1368861021f9SRui Ueyama 1369861021f9SRui Ueyama std::error_code ImportedSymbolRef::getOrdinal(uint16_t &Result) const { 1370861021f9SRui Ueyama uint32_t RVA; 1371861021f9SRui Ueyama if (Entry32) { 1372861021f9SRui Ueyama if (Entry32[Index].isOrdinal()) { 1373861021f9SRui Ueyama Result = Entry32[Index].getOrdinal(); 13747d099195SRui Ueyama return std::error_code(); 1375861021f9SRui Ueyama } 1376861021f9SRui Ueyama RVA = Entry32[Index].getHintNameRVA(); 1377861021f9SRui Ueyama } else { 1378861021f9SRui Ueyama if (Entry64[Index].isOrdinal()) { 1379861021f9SRui Ueyama Result = Entry64[Index].getOrdinal(); 13807d099195SRui Ueyama return std::error_code(); 1381861021f9SRui Ueyama } 1382861021f9SRui Ueyama RVA = Entry64[Index].getHintNameRVA(); 1383861021f9SRui Ueyama } 1384861021f9SRui Ueyama uintptr_t IntPtr = 0; 1385861021f9SRui Ueyama if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr)) 1386861021f9SRui Ueyama return EC; 1387861021f9SRui Ueyama Result = *reinterpret_cast<const ulittle16_t *>(IntPtr); 13887d099195SRui Ueyama return std::error_code(); 1389861021f9SRui Ueyama } 1390861021f9SRui Ueyama 1391437b0d58SRafael Espindola ErrorOr<std::unique_ptr<COFFObjectFile>> 139248af1c2aSRafael Espindola ObjectFile::createCOFFObjectFile(MemoryBufferRef Object) { 1393db4ed0bdSRafael Espindola std::error_code EC; 139448af1c2aSRafael Espindola std::unique_ptr<COFFObjectFile> Ret(new COFFObjectFile(Object, EC)); 1395692410efSRafael Espindola if (EC) 1396692410efSRafael Espindola return EC; 1397437b0d58SRafael Espindola return std::move(Ret); 1398686738e2SRui Ueyama } 139974e85130SRui Ueyama 140074e85130SRui Ueyama bool BaseRelocRef::operator==(const BaseRelocRef &Other) const { 140174e85130SRui Ueyama return Header == Other.Header && Index == Other.Index; 140274e85130SRui Ueyama } 140374e85130SRui Ueyama 140474e85130SRui Ueyama void BaseRelocRef::moveNext() { 140574e85130SRui Ueyama // Header->BlockSize is the size of the current block, including the 140674e85130SRui Ueyama // size of the header itself. 140774e85130SRui Ueyama uint32_t Size = sizeof(*Header) + 1408970dda29SRui Ueyama sizeof(coff_base_reloc_block_entry) * (Index + 1); 140974e85130SRui Ueyama if (Size == Header->BlockSize) { 141074e85130SRui Ueyama // .reloc contains a list of base relocation blocks. Each block 141174e85130SRui Ueyama // consists of the header followed by entries. The header contains 141274e85130SRui Ueyama // how many entories will follow. When we reach the end of the 141374e85130SRui Ueyama // current block, proceed to the next block. 141474e85130SRui Ueyama Header = reinterpret_cast<const coff_base_reloc_block_header *>( 141574e85130SRui Ueyama reinterpret_cast<const uint8_t *>(Header) + Size); 141674e85130SRui Ueyama Index = 0; 141774e85130SRui Ueyama } else { 141874e85130SRui Ueyama ++Index; 141974e85130SRui Ueyama } 142074e85130SRui Ueyama } 142174e85130SRui Ueyama 142274e85130SRui Ueyama std::error_code BaseRelocRef::getType(uint8_t &Type) const { 142374e85130SRui Ueyama auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); 142474e85130SRui Ueyama Type = Entry[Index].getType(); 14257d099195SRui Ueyama return std::error_code(); 142674e85130SRui Ueyama } 142774e85130SRui Ueyama 142874e85130SRui Ueyama std::error_code BaseRelocRef::getRVA(uint32_t &Result) const { 142974e85130SRui Ueyama auto *Entry = reinterpret_cast<const coff_base_reloc_block_entry *>(Header + 1); 143074e85130SRui Ueyama Result = Header->PageRVA + Entry[Index].getOffset(); 14317d099195SRui Ueyama return std::error_code(); 143274e85130SRui Ueyama } 1433