Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 1 | //===- COFFObjectFile.cpp - COFF object file implementation -----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the COFFObjectFile class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Michael J. Spencer | ec29b12 | 2011-06-25 17:54:50 +0000 | [diff] [blame] | 14 | #include "llvm/Object/COFF.h" |
Michael J. Spencer | 9da9e69 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/ArrayRef.h" |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallString.h" |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/StringSwitch.h" |
| 18 | #include "llvm/ADT/Triple.h" |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
| 20 | #include "llvm/Support/raw_ostream.h" |
Will Dietz | 981af00 | 2013-10-12 00:55:57 +0000 | [diff] [blame] | 21 | #include <cctype> |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 22 | |
| 23 | using namespace llvm; |
| 24 | using namespace object; |
| 25 | |
| 26 | namespace { |
| 27 | using support::ulittle8_t; |
| 28 | using support::ulittle16_t; |
| 29 | using support::ulittle32_t; |
| 30 | using support::little16_t; |
| 31 | } |
| 32 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 33 | namespace { |
| 34 | // Returns false if size is greater than the buffer size. And sets ec. |
| 35 | bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) { |
| 36 | if (m->getBufferSize() < size) { |
| 37 | ec = object_error::unexpected_eof; |
| 38 | return false; |
| 39 | } |
| 40 | return true; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 43 | // Sets Obj unless any bytes in [addr, addr + size) fall outsize of m. |
| 44 | // Returns unexpected_eof if error. |
| 45 | template<typename T> |
| 46 | error_code getObject(const T *&Obj, const MemoryBuffer *M, const uint8_t *Ptr, |
| 47 | const size_t Size = sizeof(T)) { |
| 48 | uintptr_t Addr = uintptr_t(Ptr); |
| 49 | if (Addr + Size < Addr || |
| 50 | Addr + Size < Size || |
| 51 | Addr + Size > uintptr_t(M->getBufferEnd())) { |
| 52 | return object_error::unexpected_eof; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 53 | } |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 54 | Obj = reinterpret_cast<const T *>(Addr); |
| 55 | return object_error::success; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
| 59 | const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const { |
| 60 | const coff_symbol *addr = reinterpret_cast<const coff_symbol*>(Symb.p); |
| 61 | |
| 62 | # ifndef NDEBUG |
| 63 | // Verify that the symbol points to a valid entry in the symbol table. |
| 64 | uintptr_t offset = uintptr_t(addr) - uintptr_t(base()); |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 65 | if (offset < COFFHeader->PointerToSymbolTable |
| 66 | || offset >= COFFHeader->PointerToSymbolTable |
| 67 | + (COFFHeader->NumberOfSymbols * sizeof(coff_symbol))) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 68 | report_fatal_error("Symbol was outside of symbol table."); |
| 69 | |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 70 | assert((offset - COFFHeader->PointerToSymbolTable) % sizeof(coff_symbol) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 71 | == 0 && "Symbol did not point to the beginning of a symbol"); |
| 72 | # endif |
| 73 | |
| 74 | return addr; |
| 75 | } |
| 76 | |
| 77 | const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const { |
| 78 | const coff_section *addr = reinterpret_cast<const coff_section*>(Sec.p); |
| 79 | |
| 80 | # ifndef NDEBUG |
| 81 | // Verify that the section points to a valid entry in the section table. |
| 82 | if (addr < SectionTable |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 83 | || addr >= (SectionTable + COFFHeader->NumberOfSections)) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 84 | report_fatal_error("Section was outside of section table."); |
| 85 | |
| 86 | uintptr_t offset = uintptr_t(addr) - uintptr_t(SectionTable); |
| 87 | assert(offset % sizeof(coff_section) == 0 && |
| 88 | "Section did not point to the beginning of a section"); |
| 89 | # endif |
| 90 | |
| 91 | return addr; |
| 92 | } |
| 93 | |
| 94 | error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb, |
| 95 | SymbolRef &Result) const { |
| 96 | const coff_symbol *symb = toSymb(Symb); |
| 97 | symb += 1 + symb->NumberOfAuxSymbols; |
| 98 | Symb.p = reinterpret_cast<uintptr_t>(symb); |
| 99 | Result = SymbolRef(Symb, this); |
| 100 | return object_error::success; |
| 101 | } |
| 102 | |
| 103 | error_code COFFObjectFile::getSymbolName(DataRefImpl Symb, |
| 104 | StringRef &Result) const { |
| 105 | const coff_symbol *symb = toSymb(Symb); |
Michael J. Spencer | 89a7a5e | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 106 | return getSymbolName(symb, Result); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 109 | error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb, |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 110 | uint64_t &Result) const { |
| 111 | const coff_symbol *symb = toSymb(Symb); |
Michael J. Spencer | 5ebaed2 | 2011-07-05 14:48:59 +0000 | [diff] [blame] | 112 | const coff_section *Section = NULL; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 113 | if (error_code ec = getSection(symb->SectionNumber, Section)) |
| 114 | return ec; |
Rafael Espindola | e62ab11 | 2013-11-02 18:07:48 +0000 | [diff] [blame] | 115 | |
| 116 | if (symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 117 | Result = UnknownAddressOrSize; |
| 118 | else if (Section) |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 119 | Result = Section->PointerToRawData + symb->Value; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 120 | else |
| 121 | Result = symb->Value; |
| 122 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 125 | error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb, |
| 126 | uint64_t &Result) const { |
| 127 | const coff_symbol *symb = toSymb(Symb); |
| 128 | const coff_section *Section = NULL; |
| 129 | if (error_code ec = getSection(symb->SectionNumber, Section)) |
| 130 | return ec; |
Rafael Espindola | e62ab11 | 2013-11-02 18:07:48 +0000 | [diff] [blame] | 131 | |
| 132 | if (symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 133 | Result = UnknownAddressOrSize; |
| 134 | else if (Section) |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 135 | Result = Section->VirtualAddress + symb->Value; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 136 | else |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 137 | Result = symb->Value; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 138 | return object_error::success; |
| 139 | } |
| 140 | |
| 141 | error_code COFFObjectFile::getSymbolType(DataRefImpl Symb, |
Michael J. Spencer | d394667 | 2011-10-17 20:19:29 +0000 | [diff] [blame] | 142 | SymbolRef::Type &Result) const { |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 143 | const coff_symbol *symb = toSymb(Symb); |
| 144 | Result = SymbolRef::ST_Other; |
| 145 | if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL && |
| 146 | symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) { |
David Meyer | 7e4b976 | 2012-02-29 02:11:55 +0000 | [diff] [blame] | 147 | Result = SymbolRef::ST_Unknown; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 148 | } else { |
Michael J. Spencer | 097be9f | 2011-10-18 19:31:59 +0000 | [diff] [blame] | 149 | if (symb->getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION) { |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 150 | Result = SymbolRef::ST_Function; |
| 151 | } else { |
Rafael Espindola | 06adfac | 2013-11-02 20:10:07 +0000 | [diff] [blame] | 152 | uint32_t Characteristics = 0; |
| 153 | if (symb->SectionNumber > 0) { |
| 154 | const coff_section *Section = NULL; |
| 155 | if (error_code ec = getSection(symb->SectionNumber, Section)) |
| 156 | return ec; |
| 157 | Characteristics = Section->Characteristics; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 158 | } |
Rafael Espindola | 06adfac | 2013-11-02 20:10:07 +0000 | [diff] [blame] | 159 | if (Characteristics & COFF::IMAGE_SCN_MEM_READ && |
| 160 | ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only. |
| 161 | Result = SymbolRef::ST_Data; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | return object_error::success; |
| 165 | } |
| 166 | |
David Meyer | 1df4b84 | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 167 | error_code COFFObjectFile::getSymbolFlags(DataRefImpl Symb, |
| 168 | uint32_t &Result) const { |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 169 | const coff_symbol *symb = toSymb(Symb); |
David Meyer | 1df4b84 | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 170 | Result = SymbolRef::SF_None; |
Benjamin Kramer | 75d1cf33 | 2011-09-14 01:22:52 +0000 | [diff] [blame] | 171 | |
David Meyer | 7e4b976 | 2012-02-29 02:11:55 +0000 | [diff] [blame] | 172 | // TODO: Correctly set SF_FormatSpecific, SF_ThreadLocal, SF_Common |
| 173 | |
| 174 | if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL && |
| 175 | symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) |
| 176 | Result |= SymbolRef::SF_Undefined; |
David Meyer | 1df4b84 | 2012-02-28 23:47:53 +0000 | [diff] [blame] | 177 | |
| 178 | // TODO: This are certainly too restrictive. |
| 179 | if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL) |
| 180 | Result |= SymbolRef::SF_Global; |
| 181 | |
| 182 | if (symb->StorageClass == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL) |
| 183 | Result |= SymbolRef::SF_Weak; |
| 184 | |
| 185 | if (symb->SectionNumber == COFF::IMAGE_SYM_ABSOLUTE) |
| 186 | Result |= SymbolRef::SF_Absolute; |
| 187 | |
Michael J. Spencer | 0175975 | 2011-10-17 23:54:22 +0000 | [diff] [blame] | 188 | return object_error::success; |
| 189 | } |
| 190 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 191 | error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb, |
| 192 | uint64_t &Result) const { |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 193 | // FIXME: Return the correct size. This requires looking at all the symbols |
| 194 | // in the same section as this symbol, and looking for either the next |
| 195 | // symbol, or the end of the section. |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 196 | const coff_symbol *symb = toSymb(Symb); |
Michael J. Spencer | 5ebaed2 | 2011-07-05 14:48:59 +0000 | [diff] [blame] | 197 | const coff_section *Section = NULL; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 198 | if (error_code ec = getSection(symb->SectionNumber, Section)) |
| 199 | return ec; |
Rafael Espindola | e62ab11 | 2013-11-02 18:07:48 +0000 | [diff] [blame] | 200 | |
| 201 | if (symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 202 | Result = UnknownAddressOrSize; |
| 203 | else if (Section) |
| 204 | Result = Section->SizeOfRawData - symb->Value; |
| 205 | else |
| 206 | Result = 0; |
| 207 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Michael J. Spencer | 321731539 | 2011-10-17 23:54:46 +0000 | [diff] [blame] | 210 | error_code COFFObjectFile::getSymbolSection(DataRefImpl Symb, |
| 211 | section_iterator &Result) const { |
| 212 | const coff_symbol *symb = toSymb(Symb); |
| 213 | if (symb->SectionNumber <= COFF::IMAGE_SYM_UNDEFINED) |
| 214 | Result = end_sections(); |
| 215 | else { |
Daniel Dunbar | 9339d45 | 2011-11-28 22:19:32 +0000 | [diff] [blame] | 216 | const coff_section *sec = 0; |
Michael J. Spencer | 321731539 | 2011-10-17 23:54:46 +0000 | [diff] [blame] | 217 | if (error_code ec = getSection(symb->SectionNumber, sec)) return ec; |
| 218 | DataRefImpl Sec; |
| 219 | Sec.p = reinterpret_cast<uintptr_t>(sec); |
| 220 | Result = section_iterator(SectionRef(Sec, this)); |
| 221 | } |
| 222 | return object_error::success; |
| 223 | } |
| 224 | |
Tim Northover | 4f223bf7 | 2012-10-29 10:47:00 +0000 | [diff] [blame] | 225 | error_code COFFObjectFile::getSymbolValue(DataRefImpl Symb, |
| 226 | uint64_t &Val) const { |
| 227 | report_fatal_error("getSymbolValue unimplemented in COFFObjectFile"); |
| 228 | } |
| 229 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 230 | error_code COFFObjectFile::getSectionNext(DataRefImpl Sec, |
| 231 | SectionRef &Result) const { |
| 232 | const coff_section *sec = toSec(Sec); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 233 | sec += 1; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 234 | Sec.p = reinterpret_cast<uintptr_t>(sec); |
| 235 | Result = SectionRef(Sec, this); |
| 236 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 239 | error_code COFFObjectFile::getSectionName(DataRefImpl Sec, |
| 240 | StringRef &Result) const { |
| 241 | const coff_section *sec = toSec(Sec); |
Michael J. Spencer | 53c2d54 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 242 | return getSectionName(sec, Result); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 245 | error_code COFFObjectFile::getSectionAddress(DataRefImpl Sec, |
| 246 | uint64_t &Result) const { |
| 247 | const coff_section *sec = toSec(Sec); |
| 248 | Result = sec->VirtualAddress; |
| 249 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 252 | error_code COFFObjectFile::getSectionSize(DataRefImpl Sec, |
| 253 | uint64_t &Result) const { |
| 254 | const coff_section *sec = toSec(Sec); |
| 255 | Result = sec->SizeOfRawData; |
| 256 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 259 | error_code COFFObjectFile::getSectionContents(DataRefImpl Sec, |
| 260 | StringRef &Result) const { |
| 261 | const coff_section *sec = toSec(Sec); |
Michael J. Spencer | 9da9e69 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 262 | ArrayRef<uint8_t> Res; |
| 263 | error_code EC = getSectionContents(sec, Res); |
| 264 | Result = StringRef(reinterpret_cast<const char*>(Res.data()), Res.size()); |
| 265 | return EC; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Michael J. Spencer | 7989460 | 2011-10-10 21:55:43 +0000 | [diff] [blame] | 268 | error_code COFFObjectFile::getSectionAlignment(DataRefImpl Sec, |
| 269 | uint64_t &Res) const { |
| 270 | const coff_section *sec = toSec(Sec); |
| 271 | if (!sec) |
| 272 | return object_error::parse_failed; |
| 273 | Res = uint64_t(1) << (((sec->Characteristics & 0x00F00000) >> 20) - 1); |
| 274 | return object_error::success; |
| 275 | } |
| 276 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 277 | error_code COFFObjectFile::isSectionText(DataRefImpl Sec, |
| 278 | bool &Result) const { |
| 279 | const coff_section *sec = toSec(Sec); |
| 280 | Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; |
| 281 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Michael J. Spencer | 800619f | 2011-09-28 20:57:30 +0000 | [diff] [blame] | 284 | error_code COFFObjectFile::isSectionData(DataRefImpl Sec, |
| 285 | bool &Result) const { |
| 286 | const coff_section *sec = toSec(Sec); |
| 287 | Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA; |
| 288 | return object_error::success; |
| 289 | } |
| 290 | |
| 291 | error_code COFFObjectFile::isSectionBSS(DataRefImpl Sec, |
| 292 | bool &Result) const { |
| 293 | const coff_section *sec = toSec(Sec); |
| 294 | Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; |
| 295 | return object_error::success; |
| 296 | } |
| 297 | |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 298 | error_code COFFObjectFile::isSectionRequiredForExecution(DataRefImpl Sec, |
| 299 | bool &Result) const { |
| 300 | // FIXME: Unimplemented |
| 301 | Result = true; |
| 302 | return object_error::success; |
| 303 | } |
| 304 | |
| 305 | error_code COFFObjectFile::isSectionVirtual(DataRefImpl Sec, |
| 306 | bool &Result) const { |
| 307 | const coff_section *sec = toSec(Sec); |
| 308 | Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; |
| 309 | return object_error::success; |
| 310 | } |
| 311 | |
| 312 | error_code COFFObjectFile::isSectionZeroInit(DataRefImpl Sec, |
| 313 | bool &Result) const { |
Andrew Kaylor | b96a320 | 2012-10-10 01:45:52 +0000 | [diff] [blame] | 314 | // FIXME: Unimplemented. |
Preston Gurd | 2138ef6 | 2012-04-12 20:13:57 +0000 | [diff] [blame] | 315 | Result = false; |
| 316 | return object_error::success; |
| 317 | } |
| 318 | |
Andrew Kaylor | 3f31fa0 | 2012-10-10 01:41:33 +0000 | [diff] [blame] | 319 | error_code COFFObjectFile::isSectionReadOnlyData(DataRefImpl Sec, |
| 320 | bool &Result) const { |
| 321 | // FIXME: Unimplemented. |
| 322 | Result = false; |
| 323 | return object_error::success; |
| 324 | } |
| 325 | |
Benjamin Kramer | f6f3e81 | 2011-07-15 18:39:21 +0000 | [diff] [blame] | 326 | error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl Sec, |
| 327 | DataRefImpl Symb, |
| 328 | bool &Result) const { |
Michael J. Spencer | 9a28851 | 2011-10-13 20:36:54 +0000 | [diff] [blame] | 329 | const coff_section *sec = toSec(Sec); |
| 330 | const coff_symbol *symb = toSymb(Symb); |
Daniel Dunbar | 9339d45 | 2011-11-28 22:19:32 +0000 | [diff] [blame] | 331 | const coff_section *symb_sec = 0; |
Michael J. Spencer | 9a28851 | 2011-10-13 20:36:54 +0000 | [diff] [blame] | 332 | if (error_code ec = getSection(symb->SectionNumber, symb_sec)) return ec; |
| 333 | if (symb_sec == sec) |
| 334 | Result = true; |
| 335 | else |
| 336 | Result = false; |
Benjamin Kramer | f6f3e81 | 2011-07-15 18:39:21 +0000 | [diff] [blame] | 337 | return object_error::success; |
| 338 | } |
| 339 | |
Rui Ueyama | bc654b1 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 340 | relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Sec) const { |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 341 | const coff_section *sec = toSec(Sec); |
| 342 | DataRefImpl ret; |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 343 | if (sec->NumberOfRelocations == 0) |
| 344 | ret.p = 0; |
| 345 | else |
| 346 | ret.p = reinterpret_cast<uintptr_t>(base() + sec->PointerToRelocations); |
| 347 | |
| 348 | return relocation_iterator(RelocationRef(ret, this)); |
| 349 | } |
| 350 | |
Rui Ueyama | bc654b1 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 351 | relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Sec) const { |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 352 | const coff_section *sec = toSec(Sec); |
| 353 | DataRefImpl ret; |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 354 | if (sec->NumberOfRelocations == 0) |
| 355 | ret.p = 0; |
| 356 | else |
| 357 | ret.p = reinterpret_cast<uintptr_t>( |
| 358 | reinterpret_cast<const coff_relocation*>( |
| 359 | base() + sec->PointerToRelocations) |
| 360 | + sec->NumberOfRelocations); |
| 361 | |
| 362 | return relocation_iterator(RelocationRef(ret, this)); |
| 363 | } |
| 364 | |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 365 | // Initialize the pointer to the symbol table. |
| 366 | error_code COFFObjectFile::initSymbolTablePtr() { |
| 367 | if (error_code ec = getObject( |
| 368 | SymbolTable, Data, base() + COFFHeader->PointerToSymbolTable, |
| 369 | COFFHeader->NumberOfSymbols * sizeof(coff_symbol))) |
| 370 | return ec; |
| 371 | |
| 372 | // Find string table. The first four byte of the string table contains the |
| 373 | // total size of the string table, including the size field itself. If the |
| 374 | // string table is empty, the value of the first four byte would be 4. |
| 375 | const uint8_t *StringTableAddr = |
| 376 | base() + COFFHeader->PointerToSymbolTable + |
| 377 | COFFHeader->NumberOfSymbols * sizeof(coff_symbol); |
| 378 | const ulittle32_t *StringTableSizePtr; |
| 379 | if (error_code ec = getObject(StringTableSizePtr, Data, StringTableAddr)) |
| 380 | return ec; |
| 381 | StringTableSize = *StringTableSizePtr; |
| 382 | if (error_code ec = |
| 383 | getObject(StringTable, Data, StringTableAddr, StringTableSize)) |
| 384 | return ec; |
| 385 | |
| 386 | // Check that the string table is null terminated if has any in it. |
| 387 | if (StringTableSize < 4 || |
| 388 | (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0)) |
| 389 | return object_error::parse_failed; |
| 390 | return object_error::success; |
| 391 | } |
| 392 | |
| 393 | // Returns the file offset for the given RVA. |
| 394 | error_code COFFObjectFile::getRvaPtr(uint32_t Rva, uintptr_t &Res) const { |
| 395 | error_code ec; |
| 396 | for (section_iterator i = begin_sections(), e = end_sections(); i != e; |
| 397 | i.increment(ec)) { |
| 398 | if (ec) |
| 399 | return ec; |
| 400 | const coff_section *Section = getCOFFSection(i); |
| 401 | uint32_t SectionStart = Section->VirtualAddress; |
| 402 | uint32_t SectionEnd = Section->VirtualAddress + Section->VirtualSize; |
| 403 | if (SectionStart <= Rva && Rva < SectionEnd) { |
| 404 | uint32_t Offset = Rva - SectionStart; |
| 405 | Res = uintptr_t(base()) + Section->PointerToRawData + Offset; |
| 406 | return object_error::success; |
| 407 | } |
| 408 | } |
| 409 | return object_error::parse_failed; |
| 410 | } |
| 411 | |
| 412 | // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name |
| 413 | // table entry. |
| 414 | error_code COFFObjectFile:: |
| 415 | getHintName(uint32_t Rva, uint16_t &Hint, StringRef &Name) const { |
| 416 | uintptr_t IntPtr = 0; |
| 417 | if (error_code ec = getRvaPtr(Rva, IntPtr)) |
| 418 | return ec; |
| 419 | const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr); |
| 420 | Hint = *reinterpret_cast<const ulittle16_t *>(Ptr); |
| 421 | Name = StringRef(reinterpret_cast<const char *>(Ptr + 2)); |
| 422 | return object_error::success; |
| 423 | } |
| 424 | |
| 425 | // Find the import table. |
| 426 | error_code COFFObjectFile::initImportTablePtr() { |
| 427 | // First, we get the RVA of the import table. If the file lacks a pointer to |
| 428 | // the import table, do nothing. |
| 429 | const data_directory *DataEntry; |
| 430 | if (getDataDirectory(COFF::IMPORT_TABLE, DataEntry)) |
| 431 | return object_error::success; |
| 432 | |
| 433 | // Do nothing if the pointer to import table is NULL. |
| 434 | if (DataEntry->RelativeVirtualAddress == 0) |
| 435 | return object_error::success; |
| 436 | |
| 437 | uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; |
| 438 | NumberOfImportDirectory = DataEntry->Size / |
| 439 | sizeof(import_directory_table_entry); |
| 440 | |
| 441 | // Find the section that contains the RVA. This is needed because the RVA is |
| 442 | // the import table's memory address which is different from its file offset. |
| 443 | uintptr_t IntPtr = 0; |
| 444 | if (error_code ec = getRvaPtr(ImportTableRva, IntPtr)) |
| 445 | return ec; |
| 446 | ImportDirectory = reinterpret_cast< |
| 447 | const import_directory_table_entry *>(IntPtr); |
| 448 | |
| 449 | // It's an error if there's no section containing the Import Table RVA. |
| 450 | return object_error::parse_failed; |
| 451 | } |
| 452 | |
Michael J. Spencer | ec29b12 | 2011-06-25 17:54:50 +0000 | [diff] [blame] | 453 | COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec) |
Rafael Espindola | 717c4d4 | 2013-04-07 16:40:00 +0000 | [diff] [blame] | 454 | : ObjectFile(Binary::ID_COFF, Object) |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 455 | , COFFHeader(0) |
| 456 | , PE32Header(0) |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 457 | , DataDirectory(0) |
Michael J. Spencer | d5930ca | 2011-11-08 23:34:07 +0000 | [diff] [blame] | 458 | , SectionTable(0) |
| 459 | , SymbolTable(0) |
| 460 | , StringTable(0) |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 461 | , StringTableSize(0) |
| 462 | , ImportDirectory(0) |
| 463 | , NumberOfImportDirectory(0) { |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 464 | // Check that we at least have enough room for a header. |
| 465 | if (!checkSize(Data, ec, sizeof(coff_file_header))) return; |
Eric Christopher | ee066fc | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 466 | |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 467 | // The current location in the file where we are looking at. |
| 468 | uint64_t CurPtr = 0; |
| 469 | |
| 470 | // PE header is optional and is present only in executables. If it exists, |
| 471 | // it is placed right after COFF header. |
| 472 | bool hasPEHeader = false; |
Eric Christopher | ee066fc | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 473 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 474 | // Check if this is a PE/COFF file. |
Michael J. Spencer | ec29b12 | 2011-06-25 17:54:50 +0000 | [diff] [blame] | 475 | if (base()[0] == 0x4d && base()[1] == 0x5a) { |
Eric Christopher | ee066fc | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 476 | // PE/COFF, seek through MS-DOS compatibility stub and 4-byte |
| 477 | // PE signature to find 'normal' COFF header. |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 478 | if (!checkSize(Data, ec, 0x3c + 8)) return; |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 479 | CurPtr = *reinterpret_cast<const ulittle16_t *>(base() + 0x3c); |
| 480 | // Check the PE magic bytes. ("PE\0\0") |
| 481 | if (std::memcmp(base() + CurPtr, "PE\0\0", 4) != 0) { |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 482 | ec = object_error::parse_failed; |
| 483 | return; |
| 484 | } |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 485 | CurPtr += 4; // Skip the PE magic bytes. |
| 486 | hasPEHeader = true; |
Eric Christopher | ee066fc | 2011-04-03 22:53:19 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 489 | if ((ec = getObject(COFFHeader, Data, base() + CurPtr))) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 490 | return; |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 491 | CurPtr += sizeof(coff_file_header); |
| 492 | |
| 493 | if (hasPEHeader) { |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 494 | if ((ec = getObject(PE32Header, Data, base() + CurPtr))) |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 495 | return; |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 496 | if (PE32Header->Magic != 0x10b) { |
| 497 | // We only support PE32. If this is PE32 (not PE32+), the magic byte |
| 498 | // should be 0x10b. If this is not PE32, continue as if there's no PE |
| 499 | // header in this file. |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 500 | PE32Header = 0; |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 501 | } else if (PE32Header->NumberOfRvaAndSize > 0) { |
| 502 | const uint8_t *addr = base() + CurPtr + sizeof(pe32_header); |
| 503 | uint64_t size = sizeof(data_directory) * PE32Header->NumberOfRvaAndSize; |
| 504 | if ((ec = getObject(DataDirectory, Data, addr, size))) |
| 505 | return; |
| 506 | } |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 507 | CurPtr += COFFHeader->SizeOfOptionalHeader; |
| 508 | } |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 509 | |
Rui Ueyama | 15ba1e2 | 2013-11-15 20:23:25 +0000 | [diff] [blame^] | 510 | if (!COFFHeader->isImportLibrary()) |
| 511 | if ((ec = getObject(SectionTable, Data, base() + CurPtr, |
| 512 | COFFHeader->NumberOfSections * sizeof(coff_section)))) |
| 513 | return; |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 514 | |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 515 | // Initialize the pointer to the symbol table. |
| 516 | if (COFFHeader->PointerToSymbolTable != 0) |
| 517 | if ((ec = initSymbolTablePtr())) |
Michael J. Spencer | d5930ca | 2011-11-08 23:34:07 +0000 | [diff] [blame] | 518 | return; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 519 | |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 520 | // Initialize the pointer to the beginning of the import table. |
| 521 | if ((ec = initImportTablePtr())) |
| 522 | return; |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 523 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 524 | ec = object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 527 | symbol_iterator COFFObjectFile::begin_symbols() const { |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 528 | DataRefImpl ret; |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 529 | ret.p = reinterpret_cast<uintptr_t>(SymbolTable); |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 530 | return symbol_iterator(SymbolRef(ret, this)); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 533 | symbol_iterator COFFObjectFile::end_symbols() const { |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 534 | // The symbol table ends where the string table begins. |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 535 | DataRefImpl ret; |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 536 | ret.p = reinterpret_cast<uintptr_t>(StringTable); |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 537 | return symbol_iterator(SymbolRef(ret, this)); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 538 | } |
| 539 | |
Michael J. Spencer | 8c4729f | 2012-02-28 00:40:37 +0000 | [diff] [blame] | 540 | symbol_iterator COFFObjectFile::begin_dynamic_symbols() const { |
| 541 | // TODO: implement |
| 542 | report_fatal_error("Dynamic symbols unimplemented in COFFObjectFile"); |
| 543 | } |
| 544 | |
| 545 | symbol_iterator COFFObjectFile::end_dynamic_symbols() const { |
| 546 | // TODO: implement |
| 547 | report_fatal_error("Dynamic symbols unimplemented in COFFObjectFile"); |
| 548 | } |
| 549 | |
David Meyer | 2fc34c5 | 2012-03-01 01:36:50 +0000 | [diff] [blame] | 550 | library_iterator COFFObjectFile::begin_libraries_needed() const { |
| 551 | // TODO: implement |
| 552 | report_fatal_error("Libraries needed unimplemented in COFFObjectFile"); |
| 553 | } |
| 554 | |
| 555 | library_iterator COFFObjectFile::end_libraries_needed() const { |
| 556 | // TODO: implement |
| 557 | report_fatal_error("Libraries needed unimplemented in COFFObjectFile"); |
| 558 | } |
| 559 | |
David Meyer | c429b80 | 2012-03-01 22:19:54 +0000 | [diff] [blame] | 560 | StringRef COFFObjectFile::getLoadName() const { |
| 561 | // COFF does not have this field. |
| 562 | return ""; |
| 563 | } |
| 564 | |
Rui Ueyama | bc654b1 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 565 | import_directory_iterator COFFObjectFile::import_directory_begin() const { |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 566 | DataRefImpl Imp; |
| 567 | Imp.p = reinterpret_cast<uintptr_t>(ImportDirectory); |
| 568 | return import_directory_iterator(ImportDirectoryEntryRef(Imp, this)); |
| 569 | } |
| 570 | |
Rui Ueyama | bc654b1 | 2013-09-27 21:47:05 +0000 | [diff] [blame] | 571 | import_directory_iterator COFFObjectFile::import_directory_end() const { |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 572 | DataRefImpl Imp; |
| 573 | if (ImportDirectory) { |
| 574 | Imp.p = reinterpret_cast<uintptr_t>( |
| 575 | ImportDirectory + (NumberOfImportDirectory - 1)); |
| 576 | } else { |
| 577 | Imp.p = 0; |
| 578 | } |
| 579 | return import_directory_iterator(ImportDirectoryEntryRef(Imp, this)); |
| 580 | } |
David Meyer | c429b80 | 2012-03-01 22:19:54 +0000 | [diff] [blame] | 581 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 582 | section_iterator COFFObjectFile::begin_sections() const { |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 583 | DataRefImpl ret; |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 584 | ret.p = reinterpret_cast<uintptr_t>(SectionTable); |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 585 | return section_iterator(SectionRef(ret, this)); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 586 | } |
| 587 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 588 | section_iterator COFFObjectFile::end_sections() const { |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 589 | DataRefImpl ret; |
Rui Ueyama | 15ba1e2 | 2013-11-15 20:23:25 +0000 | [diff] [blame^] | 590 | int numSections = COFFHeader->isImportLibrary() |
| 591 | ? 0 : COFFHeader->NumberOfSections; |
| 592 | ret.p = reinterpret_cast<uintptr_t>(SectionTable + numSections); |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 593 | return section_iterator(SectionRef(ret, this)); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | uint8_t COFFObjectFile::getBytesInAddress() const { |
Michael J. Spencer | 0324b67 | 2011-01-21 02:27:02 +0000 | [diff] [blame] | 597 | return getArch() == Triple::x86_64 ? 8 : 4; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | StringRef COFFObjectFile::getFileFormatName() const { |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 601 | switch(COFFHeader->Machine) { |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 602 | case COFF::IMAGE_FILE_MACHINE_I386: |
| 603 | return "COFF-i386"; |
| 604 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
| 605 | return "COFF-x86-64"; |
| 606 | default: |
| 607 | return "COFF-<unknown arch>"; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | unsigned COFFObjectFile::getArch() const { |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 612 | switch(COFFHeader->Machine) { |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 613 | case COFF::IMAGE_FILE_MACHINE_I386: |
| 614 | return Triple::x86; |
| 615 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
| 616 | return Triple::x86_64; |
| 617 | default: |
| 618 | return Triple::UnknownArch; |
| 619 | } |
| 620 | } |
| 621 | |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 622 | // This method is kept here because lld uses this. As soon as we make |
| 623 | // lld to use getCOFFHeader, this method will be removed. |
Michael J. Spencer | 89a7a5e | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 624 | error_code COFFObjectFile::getHeader(const coff_file_header *&Res) const { |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 625 | return getCOFFHeader(Res); |
| 626 | } |
| 627 | |
| 628 | error_code COFFObjectFile::getCOFFHeader(const coff_file_header *&Res) const { |
| 629 | Res = COFFHeader; |
| 630 | return object_error::success; |
| 631 | } |
| 632 | |
| 633 | error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const { |
| 634 | Res = PE32Header; |
Michael J. Spencer | 89a7a5e | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 635 | return object_error::success; |
| 636 | } |
| 637 | |
Rui Ueyama | ed64342b | 2013-07-19 23:23:29 +0000 | [diff] [blame] | 638 | error_code COFFObjectFile::getDataDirectory(uint32_t index, |
| 639 | const data_directory *&Res) const { |
| 640 | // Error if if there's no data directory or the index is out of range. |
| 641 | if (!DataDirectory || index > PE32Header->NumberOfRvaAndSize) |
| 642 | return object_error::parse_failed; |
| 643 | Res = &DataDirectory[index]; |
| 644 | return object_error::success; |
| 645 | } |
| 646 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 647 | error_code COFFObjectFile::getSection(int32_t index, |
| 648 | const coff_section *&Result) const { |
| 649 | // Check for special index values. |
| 650 | if (index == COFF::IMAGE_SYM_UNDEFINED || |
| 651 | index == COFF::IMAGE_SYM_ABSOLUTE || |
| 652 | index == COFF::IMAGE_SYM_DEBUG) |
| 653 | Result = NULL; |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 654 | else if (index > 0 && index <= COFFHeader->NumberOfSections) |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 655 | // We already verified the section table data, so no need to check again. |
| 656 | Result = SectionTable + (index - 1); |
| 657 | else |
| 658 | return object_error::parse_failed; |
| 659 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Michael J. Spencer | 1d6167f | 2011-06-25 17:55:23 +0000 | [diff] [blame] | 662 | error_code COFFObjectFile::getString(uint32_t offset, |
| 663 | StringRef &Result) const { |
| 664 | if (StringTableSize <= 4) |
| 665 | // Tried to get a string from an empty string table. |
| 666 | return object_error::parse_failed; |
| 667 | if (offset >= StringTableSize) |
| 668 | return object_error::unexpected_eof; |
| 669 | Result = StringRef(StringTable + offset); |
| 670 | return object_error::success; |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 673 | error_code COFFObjectFile::getSymbol(uint32_t index, |
| 674 | const coff_symbol *&Result) const { |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 675 | if (index < COFFHeader->NumberOfSymbols) |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 676 | Result = SymbolTable + index; |
| 677 | else |
| 678 | return object_error::parse_failed; |
| 679 | return object_error::success; |
| 680 | } |
| 681 | |
Michael J. Spencer | 89a7a5e | 2011-10-17 23:53:56 +0000 | [diff] [blame] | 682 | error_code COFFObjectFile::getSymbolName(const coff_symbol *symbol, |
| 683 | StringRef &Res) const { |
| 684 | // Check for string table entry. First 4 bytes are 0. |
| 685 | if (symbol->Name.Offset.Zeroes == 0) { |
| 686 | uint32_t Offset = symbol->Name.Offset.Offset; |
| 687 | if (error_code ec = getString(Offset, Res)) |
| 688 | return ec; |
| 689 | return object_error::success; |
| 690 | } |
| 691 | |
| 692 | if (symbol->Name.ShortName[7] == 0) |
| 693 | // Null terminated, let ::strlen figure out the length. |
| 694 | Res = StringRef(symbol->Name.ShortName); |
| 695 | else |
| 696 | // Not null terminated, use all 8 bytes. |
| 697 | Res = StringRef(symbol->Name.ShortName, 8); |
| 698 | return object_error::success; |
| 699 | } |
| 700 | |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 701 | ArrayRef<uint8_t> COFFObjectFile::getSymbolAuxData( |
| 702 | const coff_symbol *symbol) const { |
| 703 | const uint8_t *aux = NULL; |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 704 | |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 705 | if ( symbol->NumberOfAuxSymbols > 0 ) { |
| 706 | // AUX data comes immediately after the symbol in COFF |
| 707 | aux = reinterpret_cast<const uint8_t *>(symbol + 1); |
| 708 | # ifndef NDEBUG |
| 709 | // Verify that the aux symbol points to a valid entry in the symbol table. |
| 710 | uintptr_t offset = uintptr_t(aux) - uintptr_t(base()); |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 711 | if (offset < COFFHeader->PointerToSymbolTable |
| 712 | || offset >= COFFHeader->PointerToSymbolTable |
| 713 | + (COFFHeader->NumberOfSymbols * sizeof(coff_symbol))) |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 714 | report_fatal_error("Aux Symbol data was outside of symbol table."); |
| 715 | |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 716 | assert((offset - COFFHeader->PointerToSymbolTable) % sizeof(coff_symbol) |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 717 | == 0 && "Aux Symbol data did not point to the beginning of a symbol"); |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 718 | # endif |
Marshall Clow | bfb85e6 | 2012-06-15 01:15:47 +0000 | [diff] [blame] | 719 | } |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 720 | return ArrayRef<uint8_t>(aux, symbol->NumberOfAuxSymbols * sizeof(coff_symbol)); |
| 721 | } |
| 722 | |
Michael J. Spencer | 53c2d54 | 2012-03-19 20:27:15 +0000 | [diff] [blame] | 723 | error_code COFFObjectFile::getSectionName(const coff_section *Sec, |
| 724 | StringRef &Res) const { |
| 725 | StringRef Name; |
| 726 | if (Sec->Name[7] == 0) |
| 727 | // Null terminated, let ::strlen figure out the length. |
| 728 | Name = Sec->Name; |
| 729 | else |
| 730 | // Not null terminated, use all 8 bytes. |
| 731 | Name = StringRef(Sec->Name, 8); |
| 732 | |
| 733 | // Check for string table entry. First byte is '/'. |
| 734 | if (Name[0] == '/') { |
| 735 | uint32_t Offset; |
| 736 | if (Name.substr(1).getAsInteger(10, Offset)) |
| 737 | return object_error::parse_failed; |
| 738 | if (error_code ec = getString(Offset, Name)) |
| 739 | return ec; |
| 740 | } |
| 741 | |
| 742 | Res = Name; |
| 743 | return object_error::success; |
| 744 | } |
| 745 | |
Michael J. Spencer | 9da9e69 | 2012-03-19 20:27:37 +0000 | [diff] [blame] | 746 | error_code COFFObjectFile::getSectionContents(const coff_section *Sec, |
| 747 | ArrayRef<uint8_t> &Res) const { |
| 748 | // The only thing that we need to verify is that the contents is contained |
| 749 | // within the file bounds. We don't need to make sure it doesn't cover other |
| 750 | // data, as there's nothing that says that is not allowed. |
| 751 | uintptr_t ConStart = uintptr_t(base()) + Sec->PointerToRawData; |
| 752 | uintptr_t ConEnd = ConStart + Sec->SizeOfRawData; |
| 753 | if (ConEnd > uintptr_t(Data->getBufferEnd())) |
| 754 | return object_error::parse_failed; |
| 755 | Res = ArrayRef<uint8_t>(reinterpret_cast<const unsigned char*>(ConStart), |
| 756 | Sec->SizeOfRawData); |
| 757 | return object_error::success; |
| 758 | } |
| 759 | |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 760 | const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 761 | return reinterpret_cast<const coff_relocation*>(Rel.p); |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 762 | } |
| 763 | error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, |
| 764 | RelocationRef &Res) const { |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 765 | Rel.p = reinterpret_cast<uintptr_t>( |
| 766 | reinterpret_cast<const coff_relocation*>(Rel.p) + 1); |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 767 | Res = RelocationRef(Rel, this); |
| 768 | return object_error::success; |
| 769 | } |
| 770 | error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, |
| 771 | uint64_t &Res) const { |
Rafael Espindola | 1e48387 | 2013-04-25 12:28:45 +0000 | [diff] [blame] | 772 | report_fatal_error("getRelocationAddress not implemented in COFFObjectFile"); |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 773 | } |
Danil Malyshev | cbe72fc | 2011-11-29 17:40:10 +0000 | [diff] [blame] | 774 | error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, |
| 775 | uint64_t &Res) const { |
| 776 | Res = toRel(Rel)->VirtualAddress; |
| 777 | return object_error::success; |
| 778 | } |
Rafael Espindola | 806f006 | 2013-06-05 01:33:53 +0000 | [diff] [blame] | 779 | symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 780 | const coff_relocation* R = toRel(Rel); |
| 781 | DataRefImpl Symb; |
| 782 | Symb.p = reinterpret_cast<uintptr_t>(SymbolTable + R->SymbolTableIndex); |
Rafael Espindola | 806f006 | 2013-06-05 01:33:53 +0000 | [diff] [blame] | 783 | return symbol_iterator(SymbolRef(Symb, this)); |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 784 | } |
| 785 | error_code COFFObjectFile::getRelocationType(DataRefImpl Rel, |
Owen Anderson | 7be7659 | 2011-10-26 17:08:49 +0000 | [diff] [blame] | 786 | uint64_t &Res) const { |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 787 | const coff_relocation* R = toRel(Rel); |
| 788 | Res = R->Type; |
| 789 | return object_error::success; |
| 790 | } |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 791 | |
Marshall Clow | 71757ef | 2012-06-15 01:08:25 +0000 | [diff] [blame] | 792 | const coff_section *COFFObjectFile::getCOFFSection(section_iterator &It) const { |
| 793 | return toSec(It->getRawDataRefImpl()); |
| 794 | } |
| 795 | |
| 796 | const coff_symbol *COFFObjectFile::getCOFFSymbol(symbol_iterator &It) const { |
| 797 | return toSymb(It->getRawDataRefImpl()); |
| 798 | } |
| 799 | |
Marshall Clow | d3e2a76 | 2012-06-18 19:47:16 +0000 | [diff] [blame] | 800 | const coff_relocation *COFFObjectFile::getCOFFRelocation( |
| 801 | relocation_iterator &It) const { |
| 802 | return toRel(It->getRawDataRefImpl()); |
| 803 | } |
| 804 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 805 | #define LLVM_COFF_SWITCH_RELOC_TYPE_NAME(enum) \ |
| 806 | case COFF::enum: res = #enum; break; |
| 807 | |
| 808 | error_code COFFObjectFile::getRelocationTypeName(DataRefImpl Rel, |
| 809 | SmallVectorImpl<char> &Result) const { |
| 810 | const coff_relocation *reloc = toRel(Rel); |
| 811 | StringRef res; |
Rui Ueyama | 82ebd8e | 2013-06-12 19:10:33 +0000 | [diff] [blame] | 812 | switch (COFFHeader->Machine) { |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 813 | case COFF::IMAGE_FILE_MACHINE_AMD64: |
| 814 | switch (reloc->Type) { |
| 815 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ABSOLUTE); |
| 816 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR64); |
| 817 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32); |
| 818 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_ADDR32NB); |
| 819 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32); |
| 820 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_1); |
| 821 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_2); |
| 822 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_3); |
| 823 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_4); |
| 824 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_REL32_5); |
| 825 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECTION); |
| 826 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL); |
| 827 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SECREL7); |
| 828 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_TOKEN); |
| 829 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SREL32); |
| 830 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_PAIR); |
| 831 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_AMD64_SSPAN32); |
| 832 | default: |
| 833 | res = "Unknown"; |
| 834 | } |
| 835 | break; |
| 836 | case COFF::IMAGE_FILE_MACHINE_I386: |
| 837 | switch (reloc->Type) { |
| 838 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_ABSOLUTE); |
| 839 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR16); |
| 840 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL16); |
| 841 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32); |
| 842 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_DIR32NB); |
| 843 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SEG12); |
| 844 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECTION); |
| 845 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL); |
| 846 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_TOKEN); |
| 847 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_SECREL7); |
| 848 | LLVM_COFF_SWITCH_RELOC_TYPE_NAME(IMAGE_REL_I386_REL32); |
| 849 | default: |
| 850 | res = "Unknown"; |
| 851 | } |
| 852 | break; |
| 853 | default: |
| 854 | res = "Unknown"; |
| 855 | } |
| 856 | Result.append(res.begin(), res.end()); |
| 857 | return object_error::success; |
| 858 | } |
| 859 | |
| 860 | #undef LLVM_COFF_SWITCH_RELOC_TYPE_NAME |
| 861 | |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 862 | error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel, |
| 863 | SmallVectorImpl<char> &Result) const { |
| 864 | const coff_relocation *reloc = toRel(Rel); |
NAKAMURA Takumi | 648b2fa | 2011-10-08 11:22:53 +0000 | [diff] [blame] | 865 | const coff_symbol *symb = 0; |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 866 | if (error_code ec = getSymbol(reloc->SymbolTableIndex, symb)) return ec; |
| 867 | DataRefImpl sym; |
Michael J. Spencer | e5fd004 | 2011-10-07 19:25:32 +0000 | [diff] [blame] | 868 | sym.p = reinterpret_cast<uintptr_t>(symb); |
| 869 | StringRef symname; |
| 870 | if (error_code ec = getSymbolName(sym, symname)) return ec; |
| 871 | Result.append(symname.begin(), symname.end()); |
| 872 | return object_error::success; |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 873 | } |
Benjamin Kramer | 022ecdf | 2011-09-08 20:52:17 +0000 | [diff] [blame] | 874 | |
David Meyer | 2fc34c5 | 2012-03-01 01:36:50 +0000 | [diff] [blame] | 875 | error_code COFFObjectFile::getLibraryNext(DataRefImpl LibData, |
| 876 | LibraryRef &Result) const { |
| 877 | report_fatal_error("getLibraryNext not implemented in COFFObjectFile"); |
| 878 | } |
| 879 | |
| 880 | error_code COFFObjectFile::getLibraryPath(DataRefImpl LibData, |
| 881 | StringRef &Result) const { |
| 882 | report_fatal_error("getLibraryPath not implemented in COFFObjectFile"); |
| 883 | } |
| 884 | |
Rui Ueyama | c2bed42 | 2013-09-27 21:04:00 +0000 | [diff] [blame] | 885 | bool ImportDirectoryEntryRef:: |
| 886 | operator==(const ImportDirectoryEntryRef &Other) const { |
| 887 | return ImportDirectoryPimpl == Other.ImportDirectoryPimpl; |
| 888 | } |
| 889 | |
| 890 | static const import_directory_table_entry *toImportEntry(DataRefImpl Imp) { |
| 891 | return reinterpret_cast<const import_directory_table_entry *>(Imp.p); |
| 892 | } |
| 893 | |
| 894 | error_code |
| 895 | ImportDirectoryEntryRef::getNext(ImportDirectoryEntryRef &Result) const { |
| 896 | const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); |
| 897 | Dir += 1; |
| 898 | DataRefImpl Next; |
| 899 | Next.p = reinterpret_cast<uintptr_t>(Dir); |
| 900 | Result = ImportDirectoryEntryRef(Next, OwningObject); |
| 901 | return object_error::success; |
| 902 | } |
| 903 | |
| 904 | error_code ImportDirectoryEntryRef:: |
| 905 | getImportTableEntry(const import_directory_table_entry *&Result) const { |
| 906 | Result = toImportEntry(ImportDirectoryPimpl); |
| 907 | return object_error::success; |
| 908 | } |
| 909 | |
| 910 | error_code ImportDirectoryEntryRef::getName(StringRef &Result) const { |
| 911 | const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); |
| 912 | uintptr_t IntPtr = 0; |
| 913 | if (error_code ec = OwningObject->getRvaPtr(Dir->NameRVA, IntPtr)) |
| 914 | return ec; |
| 915 | const char *Ptr = reinterpret_cast<const char *>(IntPtr); |
| 916 | Result = StringRef(Ptr); |
| 917 | return object_error::success; |
| 918 | } |
| 919 | |
| 920 | error_code ImportDirectoryEntryRef::getImportLookupEntry( |
| 921 | const import_lookup_table_entry32 *&Result) const { |
| 922 | const import_directory_table_entry *Dir = toImportEntry(ImportDirectoryPimpl); |
| 923 | uintptr_t IntPtr = 0; |
| 924 | if (error_code ec = OwningObject->getRvaPtr( |
| 925 | Dir->ImportLookupTableRVA, IntPtr)) |
| 926 | return ec; |
| 927 | Result = reinterpret_cast<const import_lookup_table_entry32 *>(IntPtr); |
| 928 | return object_error::success; |
| 929 | } |
| 930 | |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 931 | namespace llvm { |
| 932 | |
| 933 | ObjectFile *ObjectFile::createCOFFObjectFile(MemoryBuffer *Object) { |
Michael J. Spencer | ec29b12 | 2011-06-25 17:54:50 +0000 | [diff] [blame] | 934 | error_code ec; |
| 935 | return new COFFObjectFile(Object, ec); |
Michael J. Spencer | 8e90ada | 2011-01-20 06:38:34 +0000 | [diff] [blame] | 936 | } |
| 937 | |
| 938 | } // end namespace llvm |