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"
19f078eff3SRui Ueyama #include "llvm/Support/COFF.h"
20c2bed429SRui Ueyama #include "llvm/Support/Debug.h"
21c2bed429SRui Ueyama #include "llvm/Support/raw_ostream.h"
22981af002SWill Dietz #include <cctype>
239d2c15efSNico Rieck #include <limits>
248e90adafSMichael J. Spencer 
258e90adafSMichael J. Spencer using namespace llvm;
268e90adafSMichael J. Spencer using namespace object;
278e90adafSMichael J. Spencer 
288e90adafSMichael J. Spencer using support::ulittle8_t;
298e90adafSMichael J. Spencer using support::ulittle16_t;
308e90adafSMichael J. Spencer using support::ulittle32_t;
318e90adafSMichael J. Spencer using support::little16_t;
328e90adafSMichael J. Spencer 
331d6167fdSMichael J. Spencer // Returns false if size is greater than the buffer size. And sets ec.
34686738e2SRui Ueyama static bool checkSize(const MemoryBuffer *M, error_code &EC, uint64_t Size) {
358ff24d25SRui Ueyama   if (M->getBufferSize() < Size) {
368ff24d25SRui Ueyama     EC = object_error::unexpected_eof;
371d6167fdSMichael J. Spencer     return false;
381d6167fdSMichael J. Spencer   }
391d6167fdSMichael J. Spencer   return true;
408e90adafSMichael J. Spencer }
418e90adafSMichael J. Spencer 
42ed64342bSRui Ueyama // Sets Obj unless any bytes in [addr, addr + size) fall outsize of m.
43ed64342bSRui Ueyama // Returns unexpected_eof if error.
44ed64342bSRui Ueyama template<typename T>
45686738e2SRui Ueyama static error_code getObject(const T *&Obj, const MemoryBuffer *M,
46686738e2SRui Ueyama                             const uint8_t *Ptr, const size_t Size = sizeof(T)) {
47ed64342bSRui Ueyama   uintptr_t Addr = uintptr_t(Ptr);
48ed64342bSRui Ueyama   if (Addr + Size < Addr ||
49ed64342bSRui Ueyama       Addr + Size < Size ||
50ed64342bSRui Ueyama       Addr + Size > uintptr_t(M->getBufferEnd())) {
51ed64342bSRui Ueyama     return object_error::unexpected_eof;
521d6167fdSMichael J. Spencer   }
53ed64342bSRui Ueyama   Obj = reinterpret_cast<const T *>(Addr);
54ed64342bSRui Ueyama   return object_error::success;
551d6167fdSMichael J. Spencer }
561d6167fdSMichael J. Spencer 
579d2c15efSNico Rieck // Decode a string table entry in base 64 (//AAAAAA). Expects \arg Str without
589d2c15efSNico Rieck // prefixed slashes.
599d2c15efSNico Rieck static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) {
609d2c15efSNico Rieck   assert(Str.size() <= 6 && "String too long, possible overflow.");
619d2c15efSNico Rieck   if (Str.size() > 6)
629d2c15efSNico Rieck     return true;
639d2c15efSNico Rieck 
649d2c15efSNico Rieck   uint64_t Value = 0;
659d2c15efSNico Rieck   while (!Str.empty()) {
669d2c15efSNico Rieck     unsigned CharVal;
679d2c15efSNico Rieck     if (Str[0] >= 'A' && Str[0] <= 'Z') // 0..25
689d2c15efSNico Rieck       CharVal = Str[0] - 'A';
699d2c15efSNico Rieck     else if (Str[0] >= 'a' && Str[0] <= 'z') // 26..51
709d2c15efSNico Rieck       CharVal = Str[0] - 'a' + 26;
719d2c15efSNico Rieck     else if (Str[0] >= '0' && Str[0] <= '9') // 52..61
729d2c15efSNico Rieck       CharVal = Str[0] - '0' + 52;
739d2c15efSNico Rieck     else if (Str[0] == '+') // 62
745500b07cSRui Ueyama       CharVal = 62;
759d2c15efSNico Rieck     else if (Str[0] == '/') // 63
765500b07cSRui Ueyama       CharVal = 63;
779d2c15efSNico Rieck     else
789d2c15efSNico Rieck       return true;
799d2c15efSNico Rieck 
809d2c15efSNico Rieck     Value = (Value * 64) + CharVal;
819d2c15efSNico Rieck     Str = Str.substr(1);
829d2c15efSNico Rieck   }
839d2c15efSNico Rieck 
849d2c15efSNico Rieck   if (Value > std::numeric_limits<uint32_t>::max())
859d2c15efSNico Rieck     return true;
869d2c15efSNico Rieck 
879d2c15efSNico Rieck   Result = static_cast<uint32_t>(Value);
889d2c15efSNico Rieck   return false;
899d2c15efSNico Rieck }
909d2c15efSNico Rieck 
918ff24d25SRui Ueyama const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Ref) const {
928ff24d25SRui Ueyama   const coff_symbol *Addr = reinterpret_cast<const coff_symbol*>(Ref.p);
931d6167fdSMichael J. Spencer 
941d6167fdSMichael J. Spencer # ifndef NDEBUG
951d6167fdSMichael J. Spencer   // Verify that the symbol points to a valid entry in the symbol table.
968ff24d25SRui Ueyama   uintptr_t Offset = uintptr_t(Addr) - uintptr_t(base());
978ff24d25SRui Ueyama   if (Offset < COFFHeader->PointerToSymbolTable
988ff24d25SRui Ueyama       || Offset >= COFFHeader->PointerToSymbolTable
9982ebd8e3SRui Ueyama          + (COFFHeader->NumberOfSymbols * sizeof(coff_symbol)))
1001d6167fdSMichael J. Spencer     report_fatal_error("Symbol was outside of symbol table.");
1011d6167fdSMichael J. Spencer 
1028ff24d25SRui Ueyama   assert((Offset - COFFHeader->PointerToSymbolTable) % sizeof(coff_symbol)
1031d6167fdSMichael J. Spencer          == 0 && "Symbol did not point to the beginning of a symbol");
1041d6167fdSMichael J. Spencer # endif
1051d6167fdSMichael J. Spencer 
1068ff24d25SRui Ueyama   return Addr;
1071d6167fdSMichael J. Spencer }
1081d6167fdSMichael J. Spencer 
1098ff24d25SRui Ueyama const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const {
1108ff24d25SRui Ueyama   const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p);
1111d6167fdSMichael J. Spencer 
1121d6167fdSMichael J. Spencer # ifndef NDEBUG
1131d6167fdSMichael J. Spencer   // Verify that the section points to a valid entry in the section table.
1148ff24d25SRui Ueyama   if (Addr < SectionTable
1158ff24d25SRui Ueyama       || Addr >= (SectionTable + COFFHeader->NumberOfSections))
1161d6167fdSMichael J. Spencer     report_fatal_error("Section was outside of section table.");
1171d6167fdSMichael J. Spencer 
1188ff24d25SRui Ueyama   uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable);
1198ff24d25SRui Ueyama   assert(Offset % sizeof(coff_section) == 0 &&
1201d6167fdSMichael J. Spencer          "Section did not point to the beginning of a section");
1211d6167fdSMichael J. Spencer # endif
1221d6167fdSMichael J. Spencer 
1238ff24d25SRui Ueyama   return Addr;
1241d6167fdSMichael J. Spencer }
1251d6167fdSMichael J. Spencer 
1265e812afaSRafael Espindola void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const {
1278ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
1288ff24d25SRui Ueyama   Symb += 1 + Symb->NumberOfAuxSymbols;
1298ff24d25SRui Ueyama   Ref.p = reinterpret_cast<uintptr_t>(Symb);
1301d6167fdSMichael J. Spencer }
1311d6167fdSMichael J. Spencer 
1328ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolName(DataRefImpl Ref,
1331d6167fdSMichael J. Spencer                                          StringRef &Result) const {
1348ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
1358ff24d25SRui Ueyama   return getSymbolName(Symb, Result);
1368e90adafSMichael J. Spencer }
1378e90adafSMichael J. Spencer 
1388ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref,
13975d1cf33SBenjamin Kramer                                             uint64_t &Result) const {
1408ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
141*2617dcceSCraig Topper   const coff_section *Section = nullptr;
1428ff24d25SRui Ueyama   if (error_code EC = getSection(Symb->SectionNumber, Section))
1438ff24d25SRui Ueyama     return EC;
144e62ab11fSRafael Espindola 
1458ff24d25SRui Ueyama   if (Symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED)
14675d1cf33SBenjamin Kramer     Result = UnknownAddressOrSize;
14775d1cf33SBenjamin Kramer   else if (Section)
1488ff24d25SRui Ueyama     Result = Section->VirtualAddress + Symb->Value;
14975d1cf33SBenjamin Kramer   else
1508ff24d25SRui Ueyama     Result = Symb->Value;
15175d1cf33SBenjamin Kramer   return object_error::success;
15275d1cf33SBenjamin Kramer }
15375d1cf33SBenjamin Kramer 
1548ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolType(DataRefImpl Ref,
155d3946676SMichael J. Spencer                                          SymbolRef::Type &Result) const {
1568ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
15775d1cf33SBenjamin Kramer   Result = SymbolRef::ST_Other;
1588ff24d25SRui Ueyama   if (Symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
1598ff24d25SRui Ueyama       Symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) {
1607e4b976cSDavid Meyer     Result = SymbolRef::ST_Unknown;
161ddf28f2bSDavid Majnemer   } else if (Symb->isFunctionDefinition()) {
16275d1cf33SBenjamin Kramer     Result = SymbolRef::ST_Function;
16375d1cf33SBenjamin Kramer   } else {
16406adfac8SRafael Espindola     uint32_t Characteristics = 0;
165f078eff3SRui Ueyama     if (!COFF::isReservedSectionNumber(Symb->SectionNumber)) {
166*2617dcceSCraig Topper       const coff_section *Section = nullptr;
1678ff24d25SRui Ueyama       if (error_code EC = getSection(Symb->SectionNumber, Section))
1688ff24d25SRui Ueyama         return EC;
16906adfac8SRafael Espindola       Characteristics = Section->Characteristics;
17075d1cf33SBenjamin Kramer     }
17106adfac8SRafael Espindola     if (Characteristics & COFF::IMAGE_SCN_MEM_READ &&
17206adfac8SRafael Espindola         ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only.
17306adfac8SRafael Espindola       Result = SymbolRef::ST_Data;
17475d1cf33SBenjamin Kramer   }
17575d1cf33SBenjamin Kramer   return object_error::success;
17675d1cf33SBenjamin Kramer }
17775d1cf33SBenjamin Kramer 
17820122a43SRafael Espindola uint32_t COFFObjectFile::getSymbolFlags(DataRefImpl Ref) const {
1798ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
18020122a43SRafael Espindola   uint32_t Result = SymbolRef::SF_None;
18175d1cf33SBenjamin Kramer 
182975e115eSRafael Espindola   // TODO: Correctly set SF_FormatSpecific, SF_Common
1837e4b976cSDavid Meyer 
18422fe9c1eSRafael Espindola   if (Symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) {
18522fe9c1eSRafael Espindola     if (Symb->Value == 0)
1867e4b976cSDavid Meyer       Result |= SymbolRef::SF_Undefined;
18722fe9c1eSRafael Espindola     else
18822fe9c1eSRafael Espindola       Result |= SymbolRef::SF_Common;
18922fe9c1eSRafael Espindola   }
19022fe9c1eSRafael Espindola 
1911df4b84dSDavid Meyer 
1921df4b84dSDavid Meyer   // TODO: This are certainly too restrictive.
1938ff24d25SRui Ueyama   if (Symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL)
1941df4b84dSDavid Meyer     Result |= SymbolRef::SF_Global;
1951df4b84dSDavid Meyer 
1968ff24d25SRui Ueyama   if (Symb->StorageClass == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL)
1971df4b84dSDavid Meyer     Result |= SymbolRef::SF_Weak;
1981df4b84dSDavid Meyer 
1998ff24d25SRui Ueyama   if (Symb->SectionNumber == COFF::IMAGE_SYM_ABSOLUTE)
2001df4b84dSDavid Meyer     Result |= SymbolRef::SF_Absolute;
2011df4b84dSDavid Meyer 
20220122a43SRafael Espindola   return Result;
20301759754SMichael J. Spencer }
20401759754SMichael J. Spencer 
2058ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolSize(DataRefImpl Ref,
2061d6167fdSMichael J. Spencer                                          uint64_t &Result) const {
2078e90adafSMichael J. Spencer   // FIXME: Return the correct size. This requires looking at all the symbols
2088e90adafSMichael J. Spencer   //        in the same section as this symbol, and looking for either the next
2098e90adafSMichael J. Spencer   //        symbol, or the end of the section.
2108ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
211*2617dcceSCraig Topper   const coff_section *Section = nullptr;
2128ff24d25SRui Ueyama   if (error_code EC = getSection(Symb->SectionNumber, Section))
2138ff24d25SRui Ueyama     return EC;
214e62ab11fSRafael Espindola 
2158ff24d25SRui Ueyama   if (Symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED)
2161d6167fdSMichael J. Spencer     Result = UnknownAddressOrSize;
2171d6167fdSMichael J. Spencer   else if (Section)
2188ff24d25SRui Ueyama     Result = Section->SizeOfRawData - Symb->Value;
2191d6167fdSMichael J. Spencer   else
2201d6167fdSMichael J. Spencer     Result = 0;
2211d6167fdSMichael J. Spencer   return object_error::success;
2228e90adafSMichael J. Spencer }
2238e90adafSMichael J. Spencer 
2248ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolSection(DataRefImpl Ref,
22532173153SMichael J. Spencer                                             section_iterator &Result) const {
2268ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(Ref);
227f078eff3SRui Ueyama   if (COFF::isReservedSectionNumber(Symb->SectionNumber)) {
228b5155a57SRafael Espindola     Result = section_end();
229f078eff3SRui Ueyama   } else {
230*2617dcceSCraig Topper     const coff_section *Sec = nullptr;
2318ff24d25SRui Ueyama     if (error_code EC = getSection(Symb->SectionNumber, Sec)) return EC;
2328ff24d25SRui Ueyama     DataRefImpl Ref;
2338ff24d25SRui Ueyama     Ref.p = reinterpret_cast<uintptr_t>(Sec);
2348ff24d25SRui Ueyama     Result = section_iterator(SectionRef(Ref, this));
23532173153SMichael J. Spencer   }
23632173153SMichael J. Spencer   return object_error::success;
23732173153SMichael J. Spencer }
23832173153SMichael J. Spencer 
2395e812afaSRafael Espindola void COFFObjectFile::moveSectionNext(DataRefImpl &Ref) const {
2408ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2418ff24d25SRui Ueyama   Sec += 1;
2428ff24d25SRui Ueyama   Ref.p = reinterpret_cast<uintptr_t>(Sec);
2438e90adafSMichael J. Spencer }
2448e90adafSMichael J. Spencer 
2458ff24d25SRui Ueyama error_code COFFObjectFile::getSectionName(DataRefImpl Ref,
2461d6167fdSMichael J. Spencer                                           StringRef &Result) const {
2478ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2488ff24d25SRui Ueyama   return getSectionName(Sec, Result);
2498e90adafSMichael J. Spencer }
2508e90adafSMichael J. Spencer 
2518ff24d25SRui Ueyama error_code COFFObjectFile::getSectionAddress(DataRefImpl Ref,
2521d6167fdSMichael J. Spencer                                              uint64_t &Result) const {
2538ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2548ff24d25SRui Ueyama   Result = Sec->VirtualAddress;
2551d6167fdSMichael J. Spencer   return object_error::success;
2568e90adafSMichael J. Spencer }
2578e90adafSMichael J. Spencer 
2588ff24d25SRui Ueyama error_code COFFObjectFile::getSectionSize(DataRefImpl Ref,
2591d6167fdSMichael J. Spencer                                           uint64_t &Result) const {
2608ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2618ff24d25SRui Ueyama   Result = Sec->SizeOfRawData;
2621d6167fdSMichael J. Spencer   return object_error::success;
2638e90adafSMichael J. Spencer }
2648e90adafSMichael J. Spencer 
2658ff24d25SRui Ueyama error_code COFFObjectFile::getSectionContents(DataRefImpl Ref,
2661d6167fdSMichael J. Spencer                                               StringRef &Result) const {
2678ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2689da9e693SMichael J. Spencer   ArrayRef<uint8_t> Res;
2698ff24d25SRui Ueyama   error_code EC = getSectionContents(Sec, Res);
2709da9e693SMichael J. Spencer   Result = StringRef(reinterpret_cast<const char*>(Res.data()), Res.size());
2719da9e693SMichael J. Spencer   return EC;
2728e90adafSMichael J. Spencer }
2738e90adafSMichael J. Spencer 
2748ff24d25SRui Ueyama error_code COFFObjectFile::getSectionAlignment(DataRefImpl Ref,
2757989460aSMichael J. Spencer                                                uint64_t &Res) const {
2768ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2778ff24d25SRui Ueyama   if (!Sec)
2787989460aSMichael J. Spencer     return object_error::parse_failed;
2798ff24d25SRui Ueyama   Res = uint64_t(1) << (((Sec->Characteristics & 0x00F00000) >> 20) - 1);
2807989460aSMichael J. Spencer   return object_error::success;
2817989460aSMichael J. Spencer }
2827989460aSMichael J. Spencer 
2838ff24d25SRui Ueyama error_code COFFObjectFile::isSectionText(DataRefImpl Ref,
2841d6167fdSMichael J. Spencer                                          bool &Result) const {
2858ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2868ff24d25SRui Ueyama   Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE;
2871d6167fdSMichael J. Spencer   return object_error::success;
2888e90adafSMichael J. Spencer }
2898e90adafSMichael J. Spencer 
2908ff24d25SRui Ueyama error_code COFFObjectFile::isSectionData(DataRefImpl Ref,
291800619f2SMichael J. Spencer                                          bool &Result) const {
2928ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
2938ff24d25SRui Ueyama   Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA;
294800619f2SMichael J. Spencer   return object_error::success;
295800619f2SMichael J. Spencer }
296800619f2SMichael J. Spencer 
2978ff24d25SRui Ueyama error_code COFFObjectFile::isSectionBSS(DataRefImpl Ref,
298800619f2SMichael J. Spencer                                         bool &Result) const {
2998ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
3008ff24d25SRui Ueyama   Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
301800619f2SMichael J. Spencer   return object_error::success;
302800619f2SMichael J. Spencer }
303800619f2SMichael J. Spencer 
3048ff24d25SRui Ueyama error_code COFFObjectFile::isSectionRequiredForExecution(DataRefImpl Ref,
3052138ef6dSPreston Gurd                                                          bool &Result) const {
3062138ef6dSPreston Gurd   // FIXME: Unimplemented
3072138ef6dSPreston Gurd   Result = true;
3082138ef6dSPreston Gurd   return object_error::success;
3092138ef6dSPreston Gurd }
3102138ef6dSPreston Gurd 
3118ff24d25SRui Ueyama error_code COFFObjectFile::isSectionVirtual(DataRefImpl Ref,
3122138ef6dSPreston Gurd                                            bool &Result) const {
3138ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
3148ff24d25SRui Ueyama   Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
3152138ef6dSPreston Gurd   return object_error::success;
3162138ef6dSPreston Gurd }
3172138ef6dSPreston Gurd 
3188ff24d25SRui Ueyama error_code COFFObjectFile::isSectionZeroInit(DataRefImpl Ref,
3192138ef6dSPreston Gurd                                              bool &Result) const {
320b96a320aSAndrew Kaylor   // FIXME: Unimplemented.
3212138ef6dSPreston Gurd   Result = false;
3222138ef6dSPreston Gurd   return object_error::success;
3232138ef6dSPreston Gurd }
3242138ef6dSPreston Gurd 
3258ff24d25SRui Ueyama error_code COFFObjectFile::isSectionReadOnlyData(DataRefImpl Ref,
3263f31fa05SAndrew Kaylor                                                 bool &Result) const {
3273f31fa05SAndrew Kaylor   // FIXME: Unimplemented.
3283f31fa05SAndrew Kaylor   Result = false;
3293f31fa05SAndrew Kaylor   return object_error::success;
3303f31fa05SAndrew Kaylor }
3313f31fa05SAndrew Kaylor 
3328ff24d25SRui Ueyama error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl SecRef,
3338ff24d25SRui Ueyama                                                  DataRefImpl SymbRef,
334f6f3e81cSBenjamin Kramer                                                  bool &Result) const {
3358ff24d25SRui Ueyama   const coff_section *Sec = toSec(SecRef);
3368ff24d25SRui Ueyama   const coff_symbol *Symb = toSymb(SymbRef);
337*2617dcceSCraig Topper   const coff_section *SymbSec = nullptr;
3388ff24d25SRui Ueyama   if (error_code EC = getSection(Symb->SectionNumber, SymbSec)) return EC;
3398ff24d25SRui Ueyama   if (SymbSec == Sec)
3409a28851eSMichael J. Spencer     Result = true;
3419a28851eSMichael J. Spencer   else
342f6f3e81cSBenjamin Kramer     Result = false;
343f6f3e81cSBenjamin Kramer   return object_error::success;
344f6f3e81cSBenjamin Kramer }
345f6f3e81cSBenjamin Kramer 
3468ff24d25SRui Ueyama relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Ref) const {
3478ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
3488ff24d25SRui Ueyama   DataRefImpl Ret;
349827c8a2bSRui Ueyama   if (Sec->NumberOfRelocations == 0) {
3508ff24d25SRui Ueyama     Ret.p = 0;
351827c8a2bSRui Ueyama   } else {
352827c8a2bSRui Ueyama     auto begin = reinterpret_cast<const coff_relocation*>(
353827c8a2bSRui Ueyama         base() + Sec->PointerToRelocations);
354827c8a2bSRui Ueyama     if (Sec->hasExtendedRelocations()) {
355827c8a2bSRui Ueyama       // Skip the first relocation entry repurposed to store the number of
356827c8a2bSRui Ueyama       // relocations.
357827c8a2bSRui Ueyama       begin++;
358827c8a2bSRui Ueyama     }
359827c8a2bSRui Ueyama     Ret.p = reinterpret_cast<uintptr_t>(begin);
360827c8a2bSRui Ueyama   }
3618ff24d25SRui Ueyama   return relocation_iterator(RelocationRef(Ret, this));
362e5fd0047SMichael J. Spencer }
363e5fd0047SMichael J. Spencer 
364827c8a2bSRui Ueyama static uint32_t getNumberOfRelocations(const coff_section *Sec,
365827c8a2bSRui Ueyama                                        const uint8_t *base) {
366827c8a2bSRui Ueyama   // The field for the number of relocations in COFF section table is only
367827c8a2bSRui Ueyama   // 16-bit wide. If a section has more than 65535 relocations, 0xFFFF is set to
368827c8a2bSRui Ueyama   // NumberOfRelocations field, and the actual relocation count is stored in the
369827c8a2bSRui Ueyama   // VirtualAddress field in the first relocation entry.
370827c8a2bSRui Ueyama   if (Sec->hasExtendedRelocations()) {
371827c8a2bSRui Ueyama     auto *FirstReloc = reinterpret_cast<const coff_relocation*>(
372827c8a2bSRui Ueyama         base + Sec->PointerToRelocations);
373827c8a2bSRui Ueyama     return FirstReloc->VirtualAddress;
374827c8a2bSRui Ueyama   }
375827c8a2bSRui Ueyama   return Sec->NumberOfRelocations;
376827c8a2bSRui Ueyama }
377827c8a2bSRui Ueyama 
3788ff24d25SRui Ueyama relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Ref) const {
3798ff24d25SRui Ueyama   const coff_section *Sec = toSec(Ref);
3808ff24d25SRui Ueyama   DataRefImpl Ret;
381827c8a2bSRui Ueyama   if (Sec->NumberOfRelocations == 0) {
3828ff24d25SRui Ueyama     Ret.p = 0;
383827c8a2bSRui Ueyama   } else {
384827c8a2bSRui Ueyama     auto begin = reinterpret_cast<const coff_relocation*>(
385827c8a2bSRui Ueyama         base() + Sec->PointerToRelocations);
386827c8a2bSRui Ueyama     uint32_t NumReloc = getNumberOfRelocations(Sec, base());
387827c8a2bSRui Ueyama     Ret.p = reinterpret_cast<uintptr_t>(begin + NumReloc);
388827c8a2bSRui Ueyama   }
3898ff24d25SRui Ueyama   return relocation_iterator(RelocationRef(Ret, this));
390e5fd0047SMichael J. Spencer }
391e5fd0047SMichael J. Spencer 
392c2bed429SRui Ueyama // Initialize the pointer to the symbol table.
393c2bed429SRui Ueyama error_code COFFObjectFile::initSymbolTablePtr() {
3948ff24d25SRui Ueyama   if (error_code EC = getObject(
395c2bed429SRui Ueyama           SymbolTable, Data, base() + COFFHeader->PointerToSymbolTable,
396c2bed429SRui Ueyama           COFFHeader->NumberOfSymbols * sizeof(coff_symbol)))
3978ff24d25SRui Ueyama     return EC;
398c2bed429SRui Ueyama 
399c2bed429SRui Ueyama   // Find string table. The first four byte of the string table contains the
400c2bed429SRui Ueyama   // total size of the string table, including the size field itself. If the
401c2bed429SRui Ueyama   // string table is empty, the value of the first four byte would be 4.
402c2bed429SRui Ueyama   const uint8_t *StringTableAddr =
403c2bed429SRui Ueyama       base() + COFFHeader->PointerToSymbolTable +
404c2bed429SRui Ueyama       COFFHeader->NumberOfSymbols * sizeof(coff_symbol);
405c2bed429SRui Ueyama   const ulittle32_t *StringTableSizePtr;
4068ff24d25SRui Ueyama   if (error_code EC = getObject(StringTableSizePtr, Data, StringTableAddr))
4078ff24d25SRui Ueyama     return EC;
408c2bed429SRui Ueyama   StringTableSize = *StringTableSizePtr;
4098ff24d25SRui Ueyama   if (error_code EC =
410c2bed429SRui Ueyama       getObject(StringTable, Data, StringTableAddr, StringTableSize))
4118ff24d25SRui Ueyama     return EC;
412c2bed429SRui Ueyama 
413773a5795SNico Rieck   // Treat table sizes < 4 as empty because contrary to the PECOFF spec, some
414773a5795SNico Rieck   // tools like cvtres write a size of 0 for an empty table instead of 4.
415773a5795SNico Rieck   if (StringTableSize < 4)
416773a5795SNico Rieck       StringTableSize = 4;
417773a5795SNico Rieck 
418c2bed429SRui Ueyama   // Check that the string table is null terminated if has any in it.
419773a5795SNico Rieck   if (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0)
420c2bed429SRui Ueyama     return  object_error::parse_failed;
421c2bed429SRui Ueyama   return object_error::success;
422c2bed429SRui Ueyama }
423c2bed429SRui Ueyama 
424215a586cSRui Ueyama // Returns the file offset for the given VA.
425b7a40081SRui Ueyama error_code COFFObjectFile::getVaPtr(uint64_t Addr, uintptr_t &Res) const {
426b6eb264aSRui Ueyama   uint64_t ImageBase = PE32Header ? (uint64_t)PE32Header->ImageBase
427b6eb264aSRui Ueyama                                   : (uint64_t)PE32PlusHeader->ImageBase;
428b7a40081SRui Ueyama   uint64_t Rva = Addr - ImageBase;
429b7a40081SRui Ueyama   assert(Rva <= UINT32_MAX);
430b7a40081SRui Ueyama   return getRvaPtr((uint32_t)Rva, Res);
431215a586cSRui Ueyama }
432215a586cSRui Ueyama 
433c2bed429SRui Ueyama // Returns the file offset for the given RVA.
434215a586cSRui Ueyama error_code COFFObjectFile::getRvaPtr(uint32_t Addr, uintptr_t &Res) const {
43527dc8394SAlexey Samsonov   for (const SectionRef &S : sections()) {
43627dc8394SAlexey Samsonov     const coff_section *Section = getCOFFSection(S);
437c2bed429SRui Ueyama     uint32_t SectionStart = Section->VirtualAddress;
438c2bed429SRui Ueyama     uint32_t SectionEnd = Section->VirtualAddress + Section->VirtualSize;
439215a586cSRui Ueyama     if (SectionStart <= Addr && Addr < SectionEnd) {
440215a586cSRui Ueyama       uint32_t Offset = Addr - SectionStart;
441c2bed429SRui Ueyama       Res = uintptr_t(base()) + Section->PointerToRawData + Offset;
442c2bed429SRui Ueyama       return object_error::success;
443c2bed429SRui Ueyama     }
444c2bed429SRui Ueyama   }
445c2bed429SRui Ueyama   return object_error::parse_failed;
446c2bed429SRui Ueyama }
447c2bed429SRui Ueyama 
448c2bed429SRui Ueyama // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name
449c2bed429SRui Ueyama // table entry.
450c2bed429SRui Ueyama error_code COFFObjectFile::
451c2bed429SRui Ueyama getHintName(uint32_t Rva, uint16_t &Hint, StringRef &Name) const {
452c2bed429SRui Ueyama   uintptr_t IntPtr = 0;
4538ff24d25SRui Ueyama   if (error_code EC = getRvaPtr(Rva, IntPtr))
4548ff24d25SRui Ueyama     return EC;
455c2bed429SRui Ueyama   const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr);
456c2bed429SRui Ueyama   Hint = *reinterpret_cast<const ulittle16_t *>(Ptr);
457c2bed429SRui Ueyama   Name = StringRef(reinterpret_cast<const char *>(Ptr + 2));
458c2bed429SRui Ueyama   return object_error::success;
459c2bed429SRui Ueyama }
460c2bed429SRui Ueyama 
461c2bed429SRui Ueyama // Find the import table.
462c2bed429SRui Ueyama error_code COFFObjectFile::initImportTablePtr() {
463c2bed429SRui Ueyama   // First, we get the RVA of the import table. If the file lacks a pointer to
464c2bed429SRui Ueyama   // the import table, do nothing.
465c2bed429SRui Ueyama   const data_directory *DataEntry;
466c2bed429SRui Ueyama   if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry))
467c2bed429SRui Ueyama     return object_error::success;
468c2bed429SRui Ueyama 
469c2bed429SRui Ueyama   // Do nothing if the pointer to import table is NULL.
470c2bed429SRui Ueyama   if (DataEntry->RelativeVirtualAddress == 0)
471c2bed429SRui Ueyama     return object_error::success;
472c2bed429SRui Ueyama 
473c2bed429SRui Ueyama   uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress;
474c2bed429SRui Ueyama   NumberOfImportDirectory = DataEntry->Size /
475c2bed429SRui Ueyama       sizeof(import_directory_table_entry);
476c2bed429SRui Ueyama 
477c2bed429SRui Ueyama   // Find the section that contains the RVA. This is needed because the RVA is
478c2bed429SRui Ueyama   // the import table's memory address which is different from its file offset.
479c2bed429SRui Ueyama   uintptr_t IntPtr = 0;
4808ff24d25SRui Ueyama   if (error_code EC = getRvaPtr(ImportTableRva, IntPtr))
4818ff24d25SRui Ueyama     return EC;
482c2bed429SRui Ueyama   ImportDirectory = reinterpret_cast<
483c2bed429SRui Ueyama       const import_directory_table_entry *>(IntPtr);
484ad882ba8SRui Ueyama   return object_error::success;
485ad882ba8SRui Ueyama }
486c2bed429SRui Ueyama 
487ad882ba8SRui Ueyama // Find the export table.
488ad882ba8SRui Ueyama error_code COFFObjectFile::initExportTablePtr() {
489ad882ba8SRui Ueyama   // First, we get the RVA of the export table. If the file lacks a pointer to
490ad882ba8SRui Ueyama   // the export table, do nothing.
491ad882ba8SRui Ueyama   const data_directory *DataEntry;
492ad882ba8SRui Ueyama   if (getDataDirectory(COFF::EXPORT_TABLE, DataEntry))
493ad882ba8SRui Ueyama     return object_error::success;
494ad882ba8SRui Ueyama 
495ad882ba8SRui Ueyama   // Do nothing if the pointer to export table is NULL.
496ad882ba8SRui Ueyama   if (DataEntry->RelativeVirtualAddress == 0)
497ad882ba8SRui Ueyama     return object_error::success;
498ad882ba8SRui Ueyama 
499ad882ba8SRui Ueyama   uint32_t ExportTableRva = DataEntry->RelativeVirtualAddress;
500ad882ba8SRui Ueyama   uintptr_t IntPtr = 0;
501ad882ba8SRui Ueyama   if (error_code EC = getRvaPtr(ExportTableRva, IntPtr))
502ad882ba8SRui Ueyama     return EC;
50324fc2d64SRui Ueyama   ExportDirectory =
50424fc2d64SRui Ueyama       reinterpret_cast<const export_directory_table_entry *>(IntPtr);
505ad882ba8SRui Ueyama   return object_error::success;
506c2bed429SRui Ueyama }
507c2bed429SRui Ueyama 
508afcc3df7SRafael Espindola COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &EC,
509afcc3df7SRafael Espindola                                bool BufferOwned)
510*2617dcceSCraig Topper     : ObjectFile(Binary::ID_COFF, Object, BufferOwned), COFFHeader(nullptr),
511*2617dcceSCraig Topper       PE32Header(nullptr), PE32PlusHeader(nullptr), DataDirectory(nullptr),
512*2617dcceSCraig Topper       SectionTable(nullptr), SymbolTable(nullptr), StringTable(nullptr),
513*2617dcceSCraig Topper       StringTableSize(0), ImportDirectory(nullptr), NumberOfImportDirectory(0),
514*2617dcceSCraig Topper       ExportDirectory(nullptr) {
5151d6167fdSMichael J. Spencer   // Check that we at least have enough room for a header.
5168ff24d25SRui Ueyama   if (!checkSize(Data, EC, sizeof(coff_file_header))) return;
517ee066fc4SEric Christopher 
51882ebd8e3SRui Ueyama   // The current location in the file where we are looking at.
51982ebd8e3SRui Ueyama   uint64_t CurPtr = 0;
52082ebd8e3SRui Ueyama 
52182ebd8e3SRui Ueyama   // PE header is optional and is present only in executables. If it exists,
52282ebd8e3SRui Ueyama   // it is placed right after COFF header.
5238ff24d25SRui Ueyama   bool HasPEHeader = false;
524ee066fc4SEric Christopher 
5251d6167fdSMichael J. Spencer   // Check if this is a PE/COFF file.
526ec29b121SMichael J. Spencer   if (base()[0] == 0x4d && base()[1] == 0x5a) {
527ee066fc4SEric Christopher     // PE/COFF, seek through MS-DOS compatibility stub and 4-byte
528ee066fc4SEric Christopher     // PE signature to find 'normal' COFF header.
5298ff24d25SRui Ueyama     if (!checkSize(Data, EC, 0x3c + 8)) return;
53082ebd8e3SRui Ueyama     CurPtr = *reinterpret_cast<const ulittle16_t *>(base() + 0x3c);
53182ebd8e3SRui Ueyama     // Check the PE magic bytes. ("PE\0\0")
53282ebd8e3SRui Ueyama     if (std::memcmp(base() + CurPtr, "PE\0\0", 4) != 0) {
5338ff24d25SRui Ueyama       EC = object_error::parse_failed;
5341d6167fdSMichael J. Spencer       return;
5351d6167fdSMichael J. Spencer     }
53682ebd8e3SRui Ueyama     CurPtr += 4; // Skip the PE magic bytes.
5378ff24d25SRui Ueyama     HasPEHeader = true;
538ee066fc4SEric Christopher   }
539ee066fc4SEric Christopher 
5408ff24d25SRui Ueyama   if ((EC = getObject(COFFHeader, Data, base() + CurPtr)))
5411d6167fdSMichael J. Spencer     return;
54282ebd8e3SRui Ueyama   CurPtr += sizeof(coff_file_header);
54382ebd8e3SRui Ueyama 
5448ff24d25SRui Ueyama   if (HasPEHeader) {
54510ed9ddcSRui Ueyama     const pe32_header *Header;
54610ed9ddcSRui Ueyama     if ((EC = getObject(Header, Data, base() + CurPtr)))
54782ebd8e3SRui Ueyama       return;
54810ed9ddcSRui Ueyama 
54910ed9ddcSRui Ueyama     const uint8_t *DataDirAddr;
55010ed9ddcSRui Ueyama     uint64_t DataDirSize;
55110ed9ddcSRui Ueyama     if (Header->Magic == 0x10b) {
55210ed9ddcSRui Ueyama       PE32Header = Header;
55310ed9ddcSRui Ueyama       DataDirAddr = base() + CurPtr + sizeof(pe32_header);
55410ed9ddcSRui Ueyama       DataDirSize = sizeof(data_directory) * PE32Header->NumberOfRvaAndSize;
55510ed9ddcSRui Ueyama     } else if (Header->Magic == 0x20b) {
55610ed9ddcSRui Ueyama       PE32PlusHeader = reinterpret_cast<const pe32plus_header *>(Header);
55710ed9ddcSRui Ueyama       DataDirAddr = base() + CurPtr + sizeof(pe32plus_header);
55810ed9ddcSRui Ueyama       DataDirSize = sizeof(data_directory) * PE32PlusHeader->NumberOfRvaAndSize;
55910ed9ddcSRui Ueyama     } else {
56010ed9ddcSRui Ueyama       // It's neither PE32 nor PE32+.
56110ed9ddcSRui Ueyama       EC = object_error::parse_failed;
562ed64342bSRui Ueyama       return;
563ed64342bSRui Ueyama     }
56410ed9ddcSRui Ueyama     if ((EC = getObject(DataDirectory, Data, DataDirAddr, DataDirSize)))
56510ed9ddcSRui Ueyama       return;
56682ebd8e3SRui Ueyama     CurPtr += COFFHeader->SizeOfOptionalHeader;
56782ebd8e3SRui Ueyama   }
5681d6167fdSMichael J. Spencer 
569692410efSRafael Espindola   if (COFFHeader->isImportLibrary())
570692410efSRafael Espindola     return;
571692410efSRafael Espindola 
5728ff24d25SRui Ueyama   if ((EC = getObject(SectionTable, Data, base() + CurPtr,
573ed64342bSRui Ueyama                       COFFHeader->NumberOfSections * sizeof(coff_section))))
5741d6167fdSMichael J. Spencer     return;
5751d6167fdSMichael J. Spencer 
576c2bed429SRui Ueyama   // Initialize the pointer to the symbol table.
577c2bed429SRui Ueyama   if (COFFHeader->PointerToSymbolTable != 0)
5788ff24d25SRui Ueyama     if ((EC = initSymbolTablePtr()))
5791d6167fdSMichael J. Spencer       return;
5808e90adafSMichael J. Spencer 
581c2bed429SRui Ueyama   // Initialize the pointer to the beginning of the import table.
5828ff24d25SRui Ueyama   if ((EC = initImportTablePtr()))
583ed64342bSRui Ueyama     return;
5841d6167fdSMichael J. Spencer 
585ad882ba8SRui Ueyama   // Initialize the pointer to the export table.
5868ff24d25SRui Ueyama   if ((EC = initExportTablePtr()))
587ad882ba8SRui Ueyama     return;
588ad882ba8SRui Ueyama 
5898ff24d25SRui Ueyama   EC = object_error::success;
5908e90adafSMichael J. Spencer }
5918e90adafSMichael J. Spencer 
592f12b8282SRafael Espindola basic_symbol_iterator COFFObjectFile::symbol_begin_impl() const {
5938ff24d25SRui Ueyama   DataRefImpl Ret;
5948ff24d25SRui Ueyama   Ret.p = reinterpret_cast<uintptr_t>(SymbolTable);
595f12b8282SRafael Espindola   return basic_symbol_iterator(SymbolRef(Ret, this));
5968e90adafSMichael J. Spencer }
5978e90adafSMichael J. Spencer 
598f12b8282SRafael Espindola basic_symbol_iterator COFFObjectFile::symbol_end_impl() const {
5998e90adafSMichael J. Spencer   // The symbol table ends where the string table begins.
6008ff24d25SRui Ueyama   DataRefImpl Ret;
6018ff24d25SRui Ueyama   Ret.p = reinterpret_cast<uintptr_t>(StringTable);
602f12b8282SRafael Espindola   return basic_symbol_iterator(SymbolRef(Ret, this));
6038e90adafSMichael J. Spencer }
6048e90adafSMichael J. Spencer 
605b5155a57SRafael Espindola library_iterator COFFObjectFile::needed_library_begin() const {
6062fc34c5fSDavid Meyer   // TODO: implement
6072fc34c5fSDavid Meyer   report_fatal_error("Libraries needed unimplemented in COFFObjectFile");
6082fc34c5fSDavid Meyer }
6092fc34c5fSDavid Meyer 
610b5155a57SRafael Espindola library_iterator COFFObjectFile::needed_library_end() const {
6112fc34c5fSDavid Meyer   // TODO: implement
6122fc34c5fSDavid Meyer   report_fatal_error("Libraries needed unimplemented in COFFObjectFile");
6132fc34c5fSDavid Meyer }
6142fc34c5fSDavid Meyer 
615c429b80dSDavid Meyer StringRef COFFObjectFile::getLoadName() const {
616c429b80dSDavid Meyer   // COFF does not have this field.
617c429b80dSDavid Meyer   return "";
618c429b80dSDavid Meyer }
619c429b80dSDavid Meyer 
620bc654b18SRui Ueyama import_directory_iterator COFFObjectFile::import_directory_begin() const {
621a045b73aSRui Ueyama   return import_directory_iterator(
622a045b73aSRui Ueyama       ImportDirectoryEntryRef(ImportDirectory, 0, this));
623c2bed429SRui Ueyama }
624c2bed429SRui Ueyama 
625bc654b18SRui Ueyama import_directory_iterator COFFObjectFile::import_directory_end() const {
626a045b73aSRui Ueyama   return import_directory_iterator(
627a045b73aSRui Ueyama       ImportDirectoryEntryRef(ImportDirectory, NumberOfImportDirectory, this));
628c2bed429SRui Ueyama }
629c429b80dSDavid Meyer 
630ad882ba8SRui Ueyama export_directory_iterator COFFObjectFile::export_directory_begin() const {
631ad882ba8SRui Ueyama   return export_directory_iterator(
632ad882ba8SRui Ueyama       ExportDirectoryEntryRef(ExportDirectory, 0, this));
633ad882ba8SRui Ueyama }
634ad882ba8SRui Ueyama 
635ad882ba8SRui Ueyama export_directory_iterator COFFObjectFile::export_directory_end() const {
636*2617dcceSCraig Topper   if (!ExportDirectory)
637*2617dcceSCraig Topper     return export_directory_iterator(ExportDirectoryEntryRef(nullptr, 0, this));
6388ff24d25SRui Ueyama   ExportDirectoryEntryRef Ref(ExportDirectory,
639ad882ba8SRui Ueyama                               ExportDirectory->AddressTableEntries, this);
6408ff24d25SRui Ueyama   return export_directory_iterator(Ref);
641ad882ba8SRui Ueyama }
642ad882ba8SRui Ueyama 
643b5155a57SRafael Espindola section_iterator COFFObjectFile::section_begin() const {
6448ff24d25SRui Ueyama   DataRefImpl Ret;
6458ff24d25SRui Ueyama   Ret.p = reinterpret_cast<uintptr_t>(SectionTable);
6468ff24d25SRui Ueyama   return section_iterator(SectionRef(Ret, this));
6478e90adafSMichael J. Spencer }
6488e90adafSMichael J. Spencer 
649b5155a57SRafael Espindola section_iterator COFFObjectFile::section_end() const {
6508ff24d25SRui Ueyama   DataRefImpl Ret;
6518ff24d25SRui Ueyama   int NumSections = COFFHeader->isImportLibrary()
65215ba1e20SRui Ueyama       ? 0 : COFFHeader->NumberOfSections;
6538ff24d25SRui Ueyama   Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections);
6548ff24d25SRui Ueyama   return section_iterator(SectionRef(Ret, this));
6558e90adafSMichael J. Spencer }
6568e90adafSMichael J. Spencer 
6578e90adafSMichael J. Spencer uint8_t COFFObjectFile::getBytesInAddress() const {
6580324b672SMichael J. Spencer   return getArch() == Triple::x86_64 ? 8 : 4;
6598e90adafSMichael J. Spencer }
6608e90adafSMichael J. Spencer 
6618e90adafSMichael J. Spencer StringRef COFFObjectFile::getFileFormatName() const {
66282ebd8e3SRui Ueyama   switch(COFFHeader->Machine) {
6638e90adafSMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_I386:
6648e90adafSMichael J. Spencer     return "COFF-i386";
6658e90adafSMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_AMD64:
6668e90adafSMichael J. Spencer     return "COFF-x86-64";
6679b7c0af2SSaleem Abdulrasool   case COFF::IMAGE_FILE_MACHINE_ARMNT:
6689b7c0af2SSaleem Abdulrasool     return "COFF-ARM";
6698e90adafSMichael J. Spencer   default:
6708e90adafSMichael J. Spencer     return "COFF-<unknown arch>";
6718e90adafSMichael J. Spencer   }
6728e90adafSMichael J. Spencer }
6738e90adafSMichael J. Spencer 
6748e90adafSMichael J. Spencer unsigned COFFObjectFile::getArch() const {
67582ebd8e3SRui Ueyama   switch(COFFHeader->Machine) {
6768e90adafSMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_I386:
6778e90adafSMichael J. Spencer     return Triple::x86;
6788e90adafSMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_AMD64:
6798e90adafSMichael J. Spencer     return Triple::x86_64;
6809b7c0af2SSaleem Abdulrasool   case COFF::IMAGE_FILE_MACHINE_ARMNT:
6819b7c0af2SSaleem Abdulrasool     return Triple::thumb;
6828e90adafSMichael J. Spencer   default:
6838e90adafSMichael J. Spencer     return Triple::UnknownArch;
6848e90adafSMichael J. Spencer   }
6858e90adafSMichael J. Spencer }
6868e90adafSMichael J. Spencer 
68782ebd8e3SRui Ueyama // This method is kept here because lld uses this. As soon as we make
68882ebd8e3SRui Ueyama // lld to use getCOFFHeader, this method will be removed.
68989a7a5eaSMichael J. Spencer error_code COFFObjectFile::getHeader(const coff_file_header *&Res) const {
69082ebd8e3SRui Ueyama   return getCOFFHeader(Res);
69182ebd8e3SRui Ueyama }
69282ebd8e3SRui Ueyama 
69382ebd8e3SRui Ueyama error_code COFFObjectFile::getCOFFHeader(const coff_file_header *&Res) const {
69482ebd8e3SRui Ueyama   Res = COFFHeader;
69582ebd8e3SRui Ueyama   return object_error::success;
69682ebd8e3SRui Ueyama }
69782ebd8e3SRui Ueyama 
69882ebd8e3SRui Ueyama error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const {
69982ebd8e3SRui Ueyama   Res = PE32Header;
70089a7a5eaSMichael J. Spencer   return object_error::success;
70189a7a5eaSMichael J. Spencer }
70289a7a5eaSMichael J. Spencer 
70310ed9ddcSRui Ueyama error_code
70410ed9ddcSRui Ueyama COFFObjectFile::getPE32PlusHeader(const pe32plus_header *&Res) const {
70510ed9ddcSRui Ueyama   Res = PE32PlusHeader;
70610ed9ddcSRui Ueyama   return object_error::success;
70710ed9ddcSRui Ueyama }
70810ed9ddcSRui Ueyama 
7098ff24d25SRui Ueyama error_code COFFObjectFile::getDataDirectory(uint32_t Index,
710ed64342bSRui Ueyama                                             const data_directory *&Res) const {
711ed64342bSRui Ueyama   // Error if if there's no data directory or the index is out of range.
71210ed9ddcSRui Ueyama   if (!DataDirectory)
71310ed9ddcSRui Ueyama     return object_error::parse_failed;
71410ed9ddcSRui Ueyama   assert(PE32Header || PE32PlusHeader);
71510ed9ddcSRui Ueyama   uint32_t NumEnt = PE32Header ? PE32Header->NumberOfRvaAndSize
71610ed9ddcSRui Ueyama                                : PE32PlusHeader->NumberOfRvaAndSize;
71710ed9ddcSRui Ueyama   if (Index > NumEnt)
718ed64342bSRui Ueyama     return object_error::parse_failed;
7198ff24d25SRui Ueyama   Res = &DataDirectory[Index];
720ed64342bSRui Ueyama   return object_error::success;
721ed64342bSRui Ueyama }
722ed64342bSRui Ueyama 
7238ff24d25SRui Ueyama error_code COFFObjectFile::getSection(int32_t Index,
7241d6167fdSMichael J. Spencer                                       const coff_section *&Result) const {
7251d6167fdSMichael J. Spencer   // Check for special index values.
726f078eff3SRui Ueyama   if (COFF::isReservedSectionNumber(Index))
727*2617dcceSCraig Topper     Result = nullptr;
7288ff24d25SRui Ueyama   else if (Index > 0 && Index <= COFFHeader->NumberOfSections)
7291d6167fdSMichael J. Spencer     // We already verified the section table data, so no need to check again.
7308ff24d25SRui Ueyama     Result = SectionTable + (Index - 1);
7311d6167fdSMichael J. Spencer   else
7321d6167fdSMichael J. Spencer     return object_error::parse_failed;
7331d6167fdSMichael J. Spencer   return object_error::success;
7348e90adafSMichael J. Spencer }
7358e90adafSMichael J. Spencer 
7368ff24d25SRui Ueyama error_code COFFObjectFile::getString(uint32_t Offset,
7371d6167fdSMichael J. Spencer                                      StringRef &Result) const {
7381d6167fdSMichael J. Spencer   if (StringTableSize <= 4)
7391d6167fdSMichael J. Spencer     // Tried to get a string from an empty string table.
7401d6167fdSMichael J. Spencer     return object_error::parse_failed;
7418ff24d25SRui Ueyama   if (Offset >= StringTableSize)
7421d6167fdSMichael J. Spencer     return object_error::unexpected_eof;
7438ff24d25SRui Ueyama   Result = StringRef(StringTable + Offset);
7441d6167fdSMichael J. Spencer   return object_error::success;
7458e90adafSMichael J. Spencer }
746022ecdf2SBenjamin Kramer 
7478ff24d25SRui Ueyama error_code COFFObjectFile::getSymbol(uint32_t Index,
748e5fd0047SMichael J. Spencer                                      const coff_symbol *&Result) const {
7498ff24d25SRui Ueyama   if (Index < COFFHeader->NumberOfSymbols)
7508ff24d25SRui Ueyama     Result = SymbolTable + Index;
751e5fd0047SMichael J. Spencer   else
752e5fd0047SMichael J. Spencer     return object_error::parse_failed;
753e5fd0047SMichael J. Spencer   return object_error::success;
754e5fd0047SMichael J. Spencer }
755e5fd0047SMichael J. Spencer 
7568ff24d25SRui Ueyama error_code COFFObjectFile::getSymbolName(const coff_symbol *Symbol,
75789a7a5eaSMichael J. Spencer                                          StringRef &Res) const {
75889a7a5eaSMichael J. Spencer   // Check for string table entry. First 4 bytes are 0.
7598ff24d25SRui Ueyama   if (Symbol->Name.Offset.Zeroes == 0) {
7608ff24d25SRui Ueyama     uint32_t Offset = Symbol->Name.Offset.Offset;
7618ff24d25SRui Ueyama     if (error_code EC = getString(Offset, Res))
7628ff24d25SRui Ueyama       return EC;
76389a7a5eaSMichael J. Spencer     return object_error::success;
76489a7a5eaSMichael J. Spencer   }
76589a7a5eaSMichael J. Spencer 
7668ff24d25SRui Ueyama   if (Symbol->Name.ShortName[7] == 0)
76789a7a5eaSMichael J. Spencer     // Null terminated, let ::strlen figure out the length.
7688ff24d25SRui Ueyama     Res = StringRef(Symbol->Name.ShortName);
76989a7a5eaSMichael J. Spencer   else
77089a7a5eaSMichael J. Spencer     // Not null terminated, use all 8 bytes.
7718ff24d25SRui Ueyama     Res = StringRef(Symbol->Name.ShortName, 8);
77289a7a5eaSMichael J. Spencer   return object_error::success;
77389a7a5eaSMichael J. Spencer }
77489a7a5eaSMichael J. Spencer 
77571757ef3SMarshall Clow ArrayRef<uint8_t> COFFObjectFile::getSymbolAuxData(
7768ff24d25SRui Ueyama                                   const coff_symbol *Symbol) const {
777*2617dcceSCraig Topper   const uint8_t *Aux = nullptr;
77871757ef3SMarshall Clow 
7798ff24d25SRui Ueyama   if (Symbol->NumberOfAuxSymbols > 0) {
78071757ef3SMarshall Clow   // AUX data comes immediately after the symbol in COFF
7818ff24d25SRui Ueyama     Aux = reinterpret_cast<const uint8_t *>(Symbol + 1);
78271757ef3SMarshall Clow # ifndef NDEBUG
7838ff24d25SRui Ueyama     // Verify that the Aux symbol points to a valid entry in the symbol table.
7848ff24d25SRui Ueyama     uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base());
7858ff24d25SRui Ueyama     if (Offset < COFFHeader->PointerToSymbolTable
7868ff24d25SRui Ueyama         || Offset >= COFFHeader->PointerToSymbolTable
78782ebd8e3SRui Ueyama            + (COFFHeader->NumberOfSymbols * sizeof(coff_symbol)))
78871757ef3SMarshall Clow       report_fatal_error("Aux Symbol data was outside of symbol table.");
78971757ef3SMarshall Clow 
7908ff24d25SRui Ueyama     assert((Offset - COFFHeader->PointerToSymbolTable) % sizeof(coff_symbol)
79171757ef3SMarshall Clow          == 0 && "Aux Symbol data did not point to the beginning of a symbol");
79271757ef3SMarshall Clow # endif
793bfb85e67SMarshall Clow   }
79424fc2d64SRui Ueyama   return ArrayRef<uint8_t>(Aux,
79524fc2d64SRui Ueyama                            Symbol->NumberOfAuxSymbols * sizeof(coff_symbol));
79671757ef3SMarshall Clow }
79771757ef3SMarshall Clow 
79853c2d547SMichael J. Spencer error_code COFFObjectFile::getSectionName(const coff_section *Sec,
79953c2d547SMichael J. Spencer                                           StringRef &Res) const {
80053c2d547SMichael J. Spencer   StringRef Name;
80153c2d547SMichael J. Spencer   if (Sec->Name[7] == 0)
80253c2d547SMichael J. Spencer     // Null terminated, let ::strlen figure out the length.
80353c2d547SMichael J. Spencer     Name = Sec->Name;
80453c2d547SMichael J. Spencer   else
80553c2d547SMichael J. Spencer     // Not null terminated, use all 8 bytes.
80653c2d547SMichael J. Spencer     Name = StringRef(Sec->Name, 8);
80753c2d547SMichael J. Spencer 
80853c2d547SMichael J. Spencer   // Check for string table entry. First byte is '/'.
80953c2d547SMichael J. Spencer   if (Name[0] == '/') {
81053c2d547SMichael J. Spencer     uint32_t Offset;
8119d2c15efSNico Rieck     if (Name[1] == '/') {
8129d2c15efSNico Rieck       if (decodeBase64StringEntry(Name.substr(2), Offset))
8139d2c15efSNico Rieck         return object_error::parse_failed;
8149d2c15efSNico Rieck     } else {
81553c2d547SMichael J. Spencer       if (Name.substr(1).getAsInteger(10, Offset))
81653c2d547SMichael J. Spencer         return object_error::parse_failed;
8179d2c15efSNico Rieck     }
8188ff24d25SRui Ueyama     if (error_code EC = getString(Offset, Name))
8198ff24d25SRui Ueyama       return EC;
82053c2d547SMichael J. Spencer   }
82153c2d547SMichael J. Spencer 
82253c2d547SMichael J. Spencer   Res = Name;
82353c2d547SMichael J. Spencer   return object_error::success;
82453c2d547SMichael J. Spencer }
82553c2d547SMichael J. Spencer 
8269da9e693SMichael J. Spencer error_code COFFObjectFile::getSectionContents(const coff_section *Sec,
8279da9e693SMichael J. Spencer                                               ArrayRef<uint8_t> &Res) const {
8289da9e693SMichael J. Spencer   // The only thing that we need to verify is that the contents is contained
8299da9e693SMichael J. Spencer   // within the file bounds. We don't need to make sure it doesn't cover other
8309da9e693SMichael J. Spencer   // data, as there's nothing that says that is not allowed.
8319da9e693SMichael J. Spencer   uintptr_t ConStart = uintptr_t(base()) + Sec->PointerToRawData;
8329da9e693SMichael J. Spencer   uintptr_t ConEnd = ConStart + Sec->SizeOfRawData;
8339da9e693SMichael J. Spencer   if (ConEnd > uintptr_t(Data->getBufferEnd()))
8349da9e693SMichael J. Spencer     return object_error::parse_failed;
8359da9e693SMichael J. Spencer   Res = ArrayRef<uint8_t>(reinterpret_cast<const unsigned char*>(ConStart),
8369da9e693SMichael J. Spencer                           Sec->SizeOfRawData);
8379da9e693SMichael J. Spencer   return object_error::success;
8389da9e693SMichael J. Spencer }
8399da9e693SMichael J. Spencer 
840022ecdf2SBenjamin Kramer const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const {
841e5fd0047SMichael J. Spencer   return reinterpret_cast<const coff_relocation*>(Rel.p);
842022ecdf2SBenjamin Kramer }
8438ff24d25SRui Ueyama 
8445e812afaSRafael Espindola void COFFObjectFile::moveRelocationNext(DataRefImpl &Rel) const {
845e5fd0047SMichael J. Spencer   Rel.p = reinterpret_cast<uintptr_t>(
846e5fd0047SMichael J. Spencer             reinterpret_cast<const coff_relocation*>(Rel.p) + 1);
847022ecdf2SBenjamin Kramer }
8488ff24d25SRui Ueyama 
849022ecdf2SBenjamin Kramer error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel,
850022ecdf2SBenjamin Kramer                                                 uint64_t &Res) const {
8511e483879SRafael Espindola   report_fatal_error("getRelocationAddress not implemented in COFFObjectFile");
852022ecdf2SBenjamin Kramer }
8538ff24d25SRui Ueyama 
854cbe72fc9SDanil Malyshev error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel,
855cbe72fc9SDanil Malyshev                                                uint64_t &Res) const {
856cbe72fc9SDanil Malyshev   Res = toRel(Rel)->VirtualAddress;
857cbe72fc9SDanil Malyshev   return object_error::success;
858cbe72fc9SDanil Malyshev }
8598ff24d25SRui Ueyama 
860806f0064SRafael Espindola symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const {
861022ecdf2SBenjamin Kramer   const coff_relocation* R = toRel(Rel);
8628ff24d25SRui Ueyama   DataRefImpl Ref;
8638ff24d25SRui Ueyama   Ref.p = reinterpret_cast<uintptr_t>(SymbolTable + R->SymbolTableIndex);
8648ff24d25SRui Ueyama   return symbol_iterator(SymbolRef(Ref, this));
865022ecdf2SBenjamin Kramer }
8668ff24d25SRui Ueyama 
867022ecdf2SBenjamin Kramer error_code COFFObjectFile::getRelocationType(DataRefImpl Rel,
8687be76590SOwen Anderson                                              uint64_t &Res) const {
869022ecdf2SBenjamin Kramer   const coff_relocation* R = toRel(Rel);
870022ecdf2SBenjamin Kramer   Res = R->Type;
871022ecdf2SBenjamin Kramer   return object_error::success;
872022ecdf2SBenjamin Kramer }
873e5fd0047SMichael J. Spencer 
87427dc8394SAlexey Samsonov const coff_section *
87527dc8394SAlexey Samsonov COFFObjectFile::getCOFFSection(const SectionRef &Section) const {
87627dc8394SAlexey Samsonov   return toSec(Section.getRawDataRefImpl());
87771757ef3SMarshall Clow }
87871757ef3SMarshall Clow 
87927dc8394SAlexey Samsonov const coff_symbol *
88027dc8394SAlexey Samsonov COFFObjectFile::getCOFFSymbol(const SymbolRef &Symbol) const {
88127dc8394SAlexey Samsonov   return toSymb(Symbol.getRawDataRefImpl());
88271757ef3SMarshall Clow }
88371757ef3SMarshall Clow 
884f12b8282SRafael Espindola const coff_relocation *
88527dc8394SAlexey Samsonov COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const {
88627dc8394SAlexey Samsonov   return toRel(Reloc.getRawDataRefImpl());
887d3e2a76cSMarshall Clow }
888d3e2a76cSMarshall Clow 
88927dc8394SAlexey Samsonov #define LLVM_COFF_SWITCH_RELOC_TYPE_NAME(reloc_type)                           \
89027dc8394SAlexey Samsonov   case COFF::reloc_type:                                                       \
89127dc8394SAlexey Samsonov     Res = #reloc_type;                                                         \
89227dc8394SAlexey Samsonov     break;
893e5fd0047SMichael J. Spencer 
894e5fd0047SMichael J. Spencer error_code COFFObjectFile::getRelocationTypeName(DataRefImpl Rel,
895e5fd0047SMichael J. Spencer                                           SmallVectorImpl<char> &Result) const {
8968ff24d25SRui Ueyama   const coff_relocation *Reloc = toRel(Rel);
8978ff24d25SRui Ueyama   StringRef Res;
89882ebd8e3SRui Ueyama   switch (COFFHeader->Machine) {
899e5fd0047SMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_AMD64:
9008ff24d25SRui Ueyama     switch (Reloc->Type) {
901e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ABSOLUTE);
902e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR64);
903e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32);
904e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32NB);
905e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32);
906e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_1);
907e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_2);
908e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_3);
909e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_4);
910e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_5);
911e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECTION);
912e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL);
913e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL7);
914e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_TOKEN);
915e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SREL32);
916e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_PAIR);
917e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SSPAN32);
918e5fd0047SMichael J. Spencer     default:
9198ff24d25SRui Ueyama       Res = "Unknown";
920e5fd0047SMichael J. Spencer     }
921e5fd0047SMichael J. Spencer     break;
9225c503bf4SSaleem Abdulrasool   case COFF::IMAGE_FILE_MACHINE_ARMNT:
9235c503bf4SSaleem Abdulrasool     switch (Reloc->Type) {
9245c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ABSOLUTE);
9255c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32);
9265c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_ADDR32NB);
9275c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24);
9285c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH11);
9295c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_TOKEN);
9305c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX24);
9315c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX11);
9325c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECTION);
9335c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_SECREL);
9345c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32A);
9355c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_MOV32T);
9365c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH20T);
9375c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BRANCH24T);
9385c503bf4SSaleem Abdulrasool     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_ARM_BLX23T);
9395c503bf4SSaleem Abdulrasool     default:
9405c503bf4SSaleem Abdulrasool       Res = "Unknown";
9415c503bf4SSaleem Abdulrasool     }
9425c503bf4SSaleem Abdulrasool     break;
943e5fd0047SMichael J. Spencer   case COFF::IMAGE_FILE_MACHINE_I386:
9448ff24d25SRui Ueyama     switch (Reloc->Type) {
945e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_ABSOLUTE);
946e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR16);
947e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL16);
948e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32);
949e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32NB);
950e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SEG12);
951e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECTION);
952e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL);
953e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_TOKEN);
954e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL7);
955e5fd0047SMichael J. Spencer     LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL32);
956e5fd0047SMichael J. Spencer     default:
9578ff24d25SRui Ueyama       Res = "Unknown";
958e5fd0047SMichael J. Spencer     }
959e5fd0047SMichael J. Spencer     break;
960e5fd0047SMichael J. Spencer   default:
9618ff24d25SRui Ueyama     Res = "Unknown";
962e5fd0047SMichael J. Spencer   }
9638ff24d25SRui Ueyama   Result.append(Res.begin(), Res.end());
964e5fd0047SMichael J. Spencer   return object_error::success;
965e5fd0047SMichael J. Spencer }
966e5fd0047SMichael J. Spencer 
967e5fd0047SMichael J. Spencer #undef LLVM_COFF_SWITCH_RELOC_TYPE_NAME
968e5fd0047SMichael J. Spencer 
969e5fd0047SMichael J. Spencer error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel,
970e5fd0047SMichael J. Spencer                                           SmallVectorImpl<char> &Result) const {
9718ff24d25SRui Ueyama   const coff_relocation *Reloc = toRel(Rel);
972*2617dcceSCraig Topper   const coff_symbol *Symb = nullptr;
9738ff24d25SRui Ueyama   if (error_code EC = getSymbol(Reloc->SymbolTableIndex, Symb)) return EC;
9748ff24d25SRui Ueyama   DataRefImpl Sym;
9758ff24d25SRui Ueyama   Sym.p = reinterpret_cast<uintptr_t>(Symb);
9768ff24d25SRui Ueyama   StringRef SymName;
9778ff24d25SRui Ueyama   if (error_code EC = getSymbolName(Sym, SymName)) return EC;
9788ff24d25SRui Ueyama   Result.append(SymName.begin(), SymName.end());
979e5fd0047SMichael J. Spencer   return object_error::success;
980022ecdf2SBenjamin Kramer }
9818e90adafSMichael J. Spencer 
9822fc34c5fSDavid Meyer error_code COFFObjectFile::getLibraryNext(DataRefImpl LibData,
9832fc34c5fSDavid Meyer                                           LibraryRef &Result) const {
9842fc34c5fSDavid Meyer   report_fatal_error("getLibraryNext not implemented in COFFObjectFile");
9852fc34c5fSDavid Meyer }
9862fc34c5fSDavid Meyer 
9872fc34c5fSDavid Meyer error_code COFFObjectFile::getLibraryPath(DataRefImpl LibData,
9882fc34c5fSDavid Meyer                                           StringRef &Result) const {
9892fc34c5fSDavid Meyer   report_fatal_error("getLibraryPath not implemented in COFFObjectFile");
9902fc34c5fSDavid Meyer }
9912fc34c5fSDavid Meyer 
992c2bed429SRui Ueyama bool ImportDirectoryEntryRef::
993c2bed429SRui Ueyama operator==(const ImportDirectoryEntryRef &Other) const {
994a045b73aSRui Ueyama   return ImportTable == Other.ImportTable && Index == Other.Index;
995c2bed429SRui Ueyama }
996c2bed429SRui Ueyama 
9975e812afaSRafael Espindola void ImportDirectoryEntryRef::moveNext() {
9985e812afaSRafael Espindola   ++Index;
999c2bed429SRui Ueyama }
1000c2bed429SRui Ueyama 
1001c2bed429SRui Ueyama error_code ImportDirectoryEntryRef::
1002c2bed429SRui Ueyama getImportTableEntry(const import_directory_table_entry *&Result) const {
1003a045b73aSRui Ueyama   Result = ImportTable;
1004c2bed429SRui Ueyama   return object_error::success;
1005c2bed429SRui Ueyama }
1006c2bed429SRui Ueyama 
1007c2bed429SRui Ueyama error_code ImportDirectoryEntryRef::getName(StringRef &Result) const {
1008c2bed429SRui Ueyama   uintptr_t IntPtr = 0;
1009a045b73aSRui Ueyama   if (error_code EC = OwningObject->getRvaPtr(ImportTable->NameRVA, IntPtr))
1010a045b73aSRui Ueyama     return EC;
1011a045b73aSRui Ueyama   Result = StringRef(reinterpret_cast<const char *>(IntPtr));
1012c2bed429SRui Ueyama   return object_error::success;
1013c2bed429SRui Ueyama }
1014c2bed429SRui Ueyama 
1015c2bed429SRui Ueyama error_code ImportDirectoryEntryRef::getImportLookupEntry(
1016c2bed429SRui Ueyama     const import_lookup_table_entry32 *&Result) const {
1017c2bed429SRui Ueyama   uintptr_t IntPtr = 0;
1018a045b73aSRui Ueyama   if (error_code EC =
1019a045b73aSRui Ueyama           OwningObject->getRvaPtr(ImportTable->ImportLookupTableRVA, IntPtr))
1020a045b73aSRui Ueyama     return EC;
1021c2bed429SRui Ueyama   Result = reinterpret_cast<const import_lookup_table_entry32 *>(IntPtr);
1022c2bed429SRui Ueyama   return object_error::success;
1023c2bed429SRui Ueyama }
1024c2bed429SRui Ueyama 
1025ad882ba8SRui Ueyama bool ExportDirectoryEntryRef::
1026ad882ba8SRui Ueyama operator==(const ExportDirectoryEntryRef &Other) const {
1027ad882ba8SRui Ueyama   return ExportTable == Other.ExportTable && Index == Other.Index;
1028ad882ba8SRui Ueyama }
1029ad882ba8SRui Ueyama 
10305e812afaSRafael Espindola void ExportDirectoryEntryRef::moveNext() {
10315e812afaSRafael Espindola   ++Index;
1032ad882ba8SRui Ueyama }
1033ad882ba8SRui Ueyama 
1034da49d0d4SRui Ueyama // Returns the name of the current export symbol. If the symbol is exported only
1035da49d0d4SRui Ueyama // by ordinal, the empty string is set as a result.
1036da49d0d4SRui Ueyama error_code ExportDirectoryEntryRef::getDllName(StringRef &Result) const {
1037da49d0d4SRui Ueyama   uintptr_t IntPtr = 0;
1038da49d0d4SRui Ueyama   if (error_code EC = OwningObject->getRvaPtr(ExportTable->NameRVA, IntPtr))
1039da49d0d4SRui Ueyama     return EC;
1040da49d0d4SRui Ueyama   Result = StringRef(reinterpret_cast<const char *>(IntPtr));
1041da49d0d4SRui Ueyama   return object_error::success;
1042da49d0d4SRui Ueyama }
1043da49d0d4SRui Ueyama 
1044e5df6095SRui Ueyama // Returns the starting ordinal number.
1045e5df6095SRui Ueyama error_code ExportDirectoryEntryRef::getOrdinalBase(uint32_t &Result) const {
1046e5df6095SRui Ueyama   Result = ExportTable->OrdinalBase;
1047e5df6095SRui Ueyama   return object_error::success;
1048e5df6095SRui Ueyama }
1049e5df6095SRui Ueyama 
1050ad882ba8SRui Ueyama // Returns the export ordinal of the current export symbol.
1051ad882ba8SRui Ueyama error_code ExportDirectoryEntryRef::getOrdinal(uint32_t &Result) const {
1052ad882ba8SRui Ueyama   Result = ExportTable->OrdinalBase + Index;
1053ad882ba8SRui Ueyama   return object_error::success;
1054ad882ba8SRui Ueyama }
1055ad882ba8SRui Ueyama 
1056ad882ba8SRui Ueyama // Returns the address of the current export symbol.
1057ad882ba8SRui Ueyama error_code ExportDirectoryEntryRef::getExportRVA(uint32_t &Result) const {
1058ad882ba8SRui Ueyama   uintptr_t IntPtr = 0;
1059ad882ba8SRui Ueyama   if (error_code EC = OwningObject->getRvaPtr(
1060ad882ba8SRui Ueyama           ExportTable->ExportAddressTableRVA, IntPtr))
1061ad882ba8SRui Ueyama     return EC;
106224fc2d64SRui Ueyama   const export_address_table_entry *entry =
106324fc2d64SRui Ueyama       reinterpret_cast<const export_address_table_entry *>(IntPtr);
1064ad882ba8SRui Ueyama   Result = entry[Index].ExportRVA;
1065ad882ba8SRui Ueyama   return object_error::success;
1066ad882ba8SRui Ueyama }
1067ad882ba8SRui Ueyama 
1068ad882ba8SRui Ueyama // Returns the name of the current export symbol. If the symbol is exported only
1069ad882ba8SRui Ueyama // by ordinal, the empty string is set as a result.
1070da49d0d4SRui Ueyama error_code ExportDirectoryEntryRef::getSymbolName(StringRef &Result) const {
1071ad882ba8SRui Ueyama   uintptr_t IntPtr = 0;
1072ad882ba8SRui Ueyama   if (error_code EC = OwningObject->getRvaPtr(
1073ad882ba8SRui Ueyama           ExportTable->OrdinalTableRVA, IntPtr))
1074ad882ba8SRui Ueyama     return EC;
1075ad882ba8SRui Ueyama   const ulittle16_t *Start = reinterpret_cast<const ulittle16_t *>(IntPtr);
1076ad882ba8SRui Ueyama 
1077ad882ba8SRui Ueyama   uint32_t NumEntries = ExportTable->NumberOfNamePointers;
1078ad882ba8SRui Ueyama   int Offset = 0;
1079ad882ba8SRui Ueyama   for (const ulittle16_t *I = Start, *E = Start + NumEntries;
1080ad882ba8SRui Ueyama        I < E; ++I, ++Offset) {
1081ad882ba8SRui Ueyama     if (*I != Index)
1082ad882ba8SRui Ueyama       continue;
1083ad882ba8SRui Ueyama     if (error_code EC = OwningObject->getRvaPtr(
1084ad882ba8SRui Ueyama             ExportTable->NamePointerRVA, IntPtr))
1085ad882ba8SRui Ueyama       return EC;
1086ad882ba8SRui Ueyama     const ulittle32_t *NamePtr = reinterpret_cast<const ulittle32_t *>(IntPtr);
1087ad882ba8SRui Ueyama     if (error_code EC = OwningObject->getRvaPtr(NamePtr[Offset], IntPtr))
1088ad882ba8SRui Ueyama       return EC;
1089ad882ba8SRui Ueyama     Result = StringRef(reinterpret_cast<const char *>(IntPtr));
1090ad882ba8SRui Ueyama     return object_error::success;
1091ad882ba8SRui Ueyama   }
1092ad882ba8SRui Ueyama   Result = "";
1093ad882ba8SRui Ueyama   return object_error::success;
1094ad882ba8SRui Ueyama }
1095ad882ba8SRui Ueyama 
1096afcc3df7SRafael Espindola ErrorOr<ObjectFile *> ObjectFile::createCOFFObjectFile(MemoryBuffer *Object,
1097afcc3df7SRafael Espindola                                                        bool BufferOwned) {
10988ff24d25SRui Ueyama   error_code EC;
109956440fd8SAhmed Charles   std::unique_ptr<COFFObjectFile> Ret(
110056440fd8SAhmed Charles       new COFFObjectFile(Object, EC, BufferOwned));
1101692410efSRafael Espindola   if (EC)
1102692410efSRafael Espindola     return EC;
110396c9d95fSAhmed Charles   return Ret.release();
1104686738e2SRui Ueyama }
1105