c3483378eb9e345e6a9978587c2ef1dfa30bce18
[oota-llvm.git] / include / llvm / Object / ELFObjectFile.h
1 //===- ELFObjectFile.h - ELF 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 ELFObjectFile template class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_ELFOBJECTFILE_H
15 #define LLVM_OBJECT_ELFOBJECTFILE_H
16
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/PointerIntPair.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/StringSwitch.h"
21 #include "llvm/ADT/Triple.h"
22 #include "llvm/Object/ELF.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Support/Casting.h"
25 #include "llvm/Support/ELF.h"
26 #include "llvm/Support/Endian.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/MemoryBuffer.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include <algorithm>
31 #include <cctype>
32 #include <limits>
33 #include <utility>
34
35 namespace llvm {
36 namespace object {
37
38 class elf_symbol_iterator;
39 class ELFSymbolRef;
40 class ELFRelocationRef;
41
42 class ELFObjectFileBase : public ObjectFile {
43   friend class ELFSymbolRef;
44   friend class ELFSectionRef;
45   friend class ELFRelocationRef;
46
47 protected:
48   ELFObjectFileBase(unsigned int Type, MemoryBufferRef Source);
49
50   virtual uint64_t getSymbolSize(DataRefImpl Symb) const = 0;
51   virtual uint8_t getSymbolOther(DataRefImpl Symb) const = 0;
52   virtual uint8_t getSymbolELFType(DataRefImpl Symb) const = 0;
53
54   virtual uint32_t getSectionType(DataRefImpl Sec) const = 0;
55   virtual uint64_t getSectionFlags(DataRefImpl Sec) const = 0;
56
57   virtual ErrorOr<int64_t> getRelocationAddend(DataRefImpl Rel) const = 0;
58 public:
59
60   typedef iterator_range<elf_symbol_iterator> elf_symbol_iterator_range;
61   virtual elf_symbol_iterator_range getDynamicSymbolIterators() const = 0;
62
63   elf_symbol_iterator_range symbols() const;
64
65   static inline bool classof(const Binary *v) { return v->isELF(); }
66 };
67
68 class ELFSectionRef : public SectionRef {
69 public:
70   ELFSectionRef(const SectionRef &B) : SectionRef(B) {
71     assert(isa<ELFObjectFileBase>(SectionRef::getObject()));
72   }
73
74   const ELFObjectFileBase *getObject() const {
75     return cast<ELFObjectFileBase>(SectionRef::getObject());
76   }
77
78   uint32_t getType() const {
79     return getObject()->getSectionType(getRawDataRefImpl());
80   }
81
82   uint64_t getFlags() const {
83     return getObject()->getSectionFlags(getRawDataRefImpl());
84   }
85 };
86
87 class elf_section_iterator : public section_iterator {
88 public:
89   elf_section_iterator(const section_iterator &B) : section_iterator(B) {
90     assert(isa<ELFObjectFileBase>(B->getObject()));
91   }
92
93   const ELFSectionRef *operator->() const {
94     return static_cast<const ELFSectionRef *>(section_iterator::operator->());
95   }
96
97   const ELFSectionRef &operator*() const {
98     return static_cast<const ELFSectionRef &>(section_iterator::operator*());
99   }
100 };
101
102 class ELFSymbolRef : public SymbolRef {
103 public:
104   ELFSymbolRef(const SymbolRef &B) : SymbolRef(B) {
105     assert(isa<ELFObjectFileBase>(SymbolRef::getObject()));
106   }
107
108   const ELFObjectFileBase *getObject() const {
109     return cast<ELFObjectFileBase>(BasicSymbolRef::getObject());
110   }
111
112   uint64_t getSize() const {
113     return getObject()->getSymbolSize(getRawDataRefImpl());
114   }
115
116   uint8_t getOther() const {
117     return getObject()->getSymbolOther(getRawDataRefImpl());
118   }
119
120   uint8_t getELFType() const {
121     return getObject()->getSymbolELFType(getRawDataRefImpl());
122   }
123 };
124
125 class elf_symbol_iterator : public symbol_iterator {
126 public:
127   elf_symbol_iterator(const basic_symbol_iterator &B)
128       : symbol_iterator(SymbolRef(B->getRawDataRefImpl(),
129                                   cast<ELFObjectFileBase>(B->getObject()))) {}
130
131   const ELFSymbolRef *operator->() const {
132     return static_cast<const ELFSymbolRef *>(symbol_iterator::operator->());
133   }
134
135   const ELFSymbolRef &operator*() const {
136     return static_cast<const ELFSymbolRef &>(symbol_iterator::operator*());
137   }
138 };
139
140 class ELFRelocationRef : public RelocationRef {
141 public:
142   ELFRelocationRef(const RelocationRef &B) : RelocationRef(B) {
143     assert(isa<ELFObjectFileBase>(RelocationRef::getObject()));
144   }
145
146   const ELFObjectFileBase *getObject() const {
147     return cast<ELFObjectFileBase>(RelocationRef::getObject());
148   }
149
150   ErrorOr<int64_t> getAddend() const {
151     return getObject()->getRelocationAddend(getRawDataRefImpl());
152   }
153 };
154
155 class elf_relocation_iterator : public relocation_iterator {
156 public:
157   elf_relocation_iterator(const relocation_iterator &B)
158       : relocation_iterator(RelocationRef(
159             B->getRawDataRefImpl(), cast<ELFObjectFileBase>(B->getObject()))) {}
160
161   const ELFRelocationRef *operator->() const {
162     return static_cast<const ELFRelocationRef *>(
163         relocation_iterator::operator->());
164   }
165
166   const ELFRelocationRef &operator*() const {
167     return static_cast<const ELFRelocationRef &>(
168         relocation_iterator::operator*());
169   }
170 };
171
172 inline ELFObjectFileBase::elf_symbol_iterator_range
173 ELFObjectFileBase::symbols() const {
174   return elf_symbol_iterator_range(symbol_begin(), symbol_end());
175 }
176
177 template <class ELFT> class ELFObjectFile : public ELFObjectFileBase {
178   uint64_t getSymbolSize(DataRefImpl Sym) const override;
179
180 public:
181   LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
182
183   typedef typename ELFFile<ELFT>::uintX_t uintX_t;
184
185   typedef typename ELFFile<ELFT>::Elf_Sym Elf_Sym;
186   typedef typename ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
187   typedef typename ELFFile<ELFT>::Elf_Ehdr Elf_Ehdr;
188   typedef typename ELFFile<ELFT>::Elf_Rel Elf_Rel;
189   typedef typename ELFFile<ELFT>::Elf_Rela Elf_Rela;
190   typedef typename ELFFile<ELFT>::Elf_Dyn Elf_Dyn;
191
192 protected:
193   ELFFile<ELFT> EF;
194
195   const Elf_Shdr *DotDynSymSec = nullptr; // Dynamic symbol table section.
196
197   void moveSymbolNext(DataRefImpl &Symb) const override;
198   ErrorOr<StringRef> getSymbolName(DataRefImpl Symb) const override;
199   ErrorOr<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
200   uint64_t getSymbolValueImpl(DataRefImpl Symb) const override;
201   uint32_t getSymbolAlignment(DataRefImpl Symb) const override;
202   uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override;
203   uint32_t getSymbolFlags(DataRefImpl Symb) const override;
204   uint8_t getSymbolOther(DataRefImpl Symb) const override;
205   uint8_t getSymbolELFType(DataRefImpl Symb) const override;
206   SymbolRef::Type getSymbolType(DataRefImpl Symb) const override;
207   section_iterator getSymbolSection(const Elf_Sym *Symb) const;
208   std::error_code getSymbolSection(DataRefImpl Symb,
209                                    section_iterator &Res) const override;
210
211   void moveSectionNext(DataRefImpl &Sec) const override;
212   std::error_code getSectionName(DataRefImpl Sec,
213                                  StringRef &Res) const override;
214   uint64_t getSectionAddress(DataRefImpl Sec) const override;
215   uint64_t getSectionSize(DataRefImpl Sec) const override;
216   std::error_code getSectionContents(DataRefImpl Sec,
217                                      StringRef &Res) const override;
218   uint64_t getSectionAlignment(DataRefImpl Sec) const override;
219   bool isSectionText(DataRefImpl Sec) const override;
220   bool isSectionData(DataRefImpl Sec) const override;
221   bool isSectionBSS(DataRefImpl Sec) const override;
222   bool isSectionVirtual(DataRefImpl Sec) const override;
223   relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
224   relocation_iterator section_rel_end(DataRefImpl Sec) const override;
225   section_iterator getRelocatedSection(DataRefImpl Sec) const override;
226
227   void moveRelocationNext(DataRefImpl &Rel) const override;
228   uint64_t getRelocationOffset(DataRefImpl Rel) const override;
229   symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override;
230   uint64_t getRelocationType(DataRefImpl Rel) const override;
231   void getRelocationTypeName(DataRefImpl Rel,
232                              SmallVectorImpl<char> &Result) const override;
233
234   uint32_t getSectionType(DataRefImpl Sec) const override;
235   uint64_t getSectionFlags(DataRefImpl Sec) const override;
236   StringRef getRelocationTypeName(uint32_t Type) const;
237
238   /// \brief Get the relocation section that contains \a Rel.
239   const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
240     return *EF.getSection(Rel.d.a);
241   }
242
243   const Elf_Sym *toELFSymIter(DataRefImpl Sym) const {
244     return EF.template getEntry<Elf_Sym>(Sym.d.a, Sym.d.b);
245   }
246
247   DataRefImpl toDRI(const Elf_Shdr *SymTable, unsigned SymbolNum) const {
248     DataRefImpl DRI;
249     if (!SymTable) {
250       DRI.d.a = 0;
251       DRI.d.b = 0;
252       return DRI;
253     }
254     assert(SymTable->sh_type == ELF::SHT_SYMTAB ||
255            SymTable->sh_type == ELF::SHT_DYNSYM);
256
257     uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.section_begin());
258     unsigned SymTableIndex =
259         (reinterpret_cast<uintptr_t>(SymTable) - SHT) / sizeof(Elf_Shdr);
260
261     DRI.d.a = SymTableIndex;
262     DRI.d.b = SymbolNum;
263     return DRI;
264   }
265
266   const Elf_Shdr *toELFShdrIter(DataRefImpl Sec) const {
267     return reinterpret_cast<const Elf_Shdr *>(Sec.p);
268   }
269
270   DataRefImpl toDRI(const Elf_Shdr *Sec) const {
271     DataRefImpl DRI;
272     DRI.p = reinterpret_cast<uintptr_t>(Sec);
273     return DRI;
274   }
275
276   DataRefImpl toDRI(const Elf_Dyn *Dyn) const {
277     DataRefImpl DRI;
278     DRI.p = reinterpret_cast<uintptr_t>(Dyn);
279     return DRI;
280   }
281
282   bool isExportedToOtherDSO(const Elf_Sym *ESym) const {
283     unsigned char Binding = ESym->getBinding();
284     unsigned char Visibility = ESym->getVisibility();
285
286     // A symbol is exported if its binding is either GLOBAL or WEAK, and its
287     // visibility is either DEFAULT or PROTECTED. All other symbols are not
288     // exported.
289     if ((Binding == ELF::STB_GLOBAL || Binding == ELF::STB_WEAK) &&
290         (Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_PROTECTED))
291       return true;
292
293     return false;
294   }
295
296   // This flag is used for classof, to distinguish ELFObjectFile from
297   // its subclass. If more subclasses will be created, this flag will
298   // have to become an enum.
299   bool isDyldELFObject;
300
301 public:
302   ELFObjectFile(MemoryBufferRef Object, std::error_code &EC);
303
304   const Elf_Rel *getRel(DataRefImpl Rel) const;
305   const Elf_Rela *getRela(DataRefImpl Rela) const;
306
307   const Elf_Sym *getSymbol(DataRefImpl Symb) const;
308
309   basic_symbol_iterator symbol_begin_impl() const override;
310   basic_symbol_iterator symbol_end_impl() const override;
311
312   elf_symbol_iterator dynamic_symbol_begin() const;
313   elf_symbol_iterator dynamic_symbol_end() const;
314
315   section_iterator section_begin() const override;
316   section_iterator section_end() const override;
317
318   ErrorOr<int64_t> getRelocationAddend(DataRefImpl Rel) const override;
319
320   uint8_t getBytesInAddress() const override;
321   StringRef getFileFormatName() const override;
322   unsigned getArch() const override;
323
324   std::error_code getPlatformFlags(unsigned &Result) const override {
325     Result = EF.getHeader()->e_flags;
326     return std::error_code();
327   }
328
329   const ELFFile<ELFT> *getELFFile() const { return &EF; }
330
331   bool isDyldType() const { return isDyldELFObject; }
332   static inline bool classof(const Binary *v) {
333     return v->getType() == getELFType(ELFT::TargetEndianness == support::little,
334                                       ELFT::Is64Bits);
335   }
336
337   elf_symbol_iterator_range getDynamicSymbolIterators() const override;
338
339   bool isRelocatableObject() const override;
340 };
341
342 typedef ELFObjectFile<ELFType<support::little, false>> ELF32LEObjectFile;
343 typedef ELFObjectFile<ELFType<support::little, true>> ELF64LEObjectFile;
344 typedef ELFObjectFile<ELFType<support::big, false>> ELF32BEObjectFile;
345 typedef ELFObjectFile<ELFType<support::big, true>> ELF64BEObjectFile;
346
347 template <class ELFT>
348 void ELFObjectFile<ELFT>::moveSymbolNext(DataRefImpl &Sym) const {
349   ++Sym.d.b;
350 }
351
352 template <class ELFT>
353 ErrorOr<StringRef> ELFObjectFile<ELFT>::getSymbolName(DataRefImpl Sym) const {
354   const Elf_Sym *ESym = toELFSymIter(Sym);
355   const Elf_Shdr *SymTableSec = *EF.getSection(Sym.d.a);
356   const Elf_Shdr *StringTableSec = *EF.getSection(SymTableSec->sh_link);
357   StringRef SymTable = *EF.getStringTable(StringTableSec);
358   return ESym->getName(SymTable);
359 }
360
361 template <class ELFT>
362 uint64_t ELFObjectFile<ELFT>::getSectionFlags(DataRefImpl Sec) const {
363   return toELFShdrIter(Sec)->sh_flags;
364 }
365
366 template <class ELFT>
367 uint32_t ELFObjectFile<ELFT>::getSectionType(DataRefImpl Sec) const {
368   return toELFShdrIter(Sec)->sh_type;
369 }
370
371 template <class ELFT>
372 uint64_t ELFObjectFile<ELFT>::getSymbolValueImpl(DataRefImpl Symb) const {
373   const Elf_Sym *ESym = getSymbol(Symb);
374   uint64_t Ret = ESym->st_value;
375   if (ESym->st_shndx == ELF::SHN_ABS)
376     return Ret;
377
378   const Elf_Ehdr *Header = EF.getHeader();
379   // Clear the ARM/Thumb or microMIPS indicator flag.
380   if ((Header->e_machine == ELF::EM_ARM || Header->e_machine == ELF::EM_MIPS) &&
381       ESym->getType() == ELF::STT_FUNC)
382     Ret &= ~1;
383
384   return Ret;
385 }
386
387 template <class ELFT>
388 ErrorOr<uint64_t>
389 ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb) const {
390   uint64_t Result = getSymbolValue(Symb);
391   const Elf_Sym *ESym = getSymbol(Symb);
392   switch (ESym->st_shndx) {
393   case ELF::SHN_COMMON:
394   case ELF::SHN_UNDEF:
395   case ELF::SHN_ABS:
396     return Result;
397   }
398
399   const Elf_Ehdr *Header = EF.getHeader();
400
401   if (Header->e_type == ELF::ET_REL) {
402     ErrorOr<const Elf_Shdr *> SectionOrErr = EF.getSection(ESym);
403     if (std::error_code EC = SectionOrErr.getError())
404       return EC;
405     const Elf_Shdr *Section = *SectionOrErr;
406     if (Section)
407       Result += Section->sh_addr;
408   }
409
410   return Result;
411 }
412
413 template <class ELFT>
414 uint32_t ELFObjectFile<ELFT>::getSymbolAlignment(DataRefImpl Symb) const {
415   const Elf_Sym *Sym = toELFSymIter(Symb);
416   if (Sym->st_shndx == ELF::SHN_COMMON)
417     return Sym->st_value;
418   return 0;
419 }
420
421 template <class ELFT>
422 uint64_t ELFObjectFile<ELFT>::getSymbolSize(DataRefImpl Sym) const {
423   return toELFSymIter(Sym)->st_size;
424 }
425
426 template <class ELFT>
427 uint64_t ELFObjectFile<ELFT>::getCommonSymbolSizeImpl(DataRefImpl Symb) const {
428   return toELFSymIter(Symb)->st_size;
429 }
430
431 template <class ELFT>
432 uint8_t ELFObjectFile<ELFT>::getSymbolOther(DataRefImpl Symb) const {
433   return toELFSymIter(Symb)->st_other;
434 }
435
436 template <class ELFT>
437 uint8_t ELFObjectFile<ELFT>::getSymbolELFType(DataRefImpl Symb) const {
438   return toELFSymIter(Symb)->getType();
439 }
440
441 template <class ELFT>
442 SymbolRef::Type ELFObjectFile<ELFT>::getSymbolType(DataRefImpl Symb) const {
443   const Elf_Sym *ESym = getSymbol(Symb);
444
445   switch (ESym->getType()) {
446   case ELF::STT_NOTYPE:
447     return SymbolRef::ST_Unknown;
448   case ELF::STT_SECTION:
449     return SymbolRef::ST_Debug;
450   case ELF::STT_FILE:
451     return SymbolRef::ST_File;
452   case ELF::STT_FUNC:
453     return SymbolRef::ST_Function;
454   case ELF::STT_OBJECT:
455   case ELF::STT_COMMON:
456   case ELF::STT_TLS:
457     return SymbolRef::ST_Data;
458   default:
459     return SymbolRef::ST_Other;
460   }
461 }
462
463 template <class ELFT>
464 uint32_t ELFObjectFile<ELFT>::getSymbolFlags(DataRefImpl Sym) const {
465   const Elf_Sym *ESym = toELFSymIter(Sym);
466
467   uint32_t Result = SymbolRef::SF_None;
468
469   if (ESym->getBinding() != ELF::STB_LOCAL)
470     Result |= SymbolRef::SF_Global;
471
472   if (ESym->getBinding() == ELF::STB_WEAK)
473     Result |= SymbolRef::SF_Weak;
474
475   if (ESym->st_shndx == ELF::SHN_ABS)
476     Result |= SymbolRef::SF_Absolute;
477
478   if (ESym->getType() == ELF::STT_FILE || ESym->getType() == ELF::STT_SECTION ||
479       ESym == EF.symbol_begin(EF.getDotSymtabSec()) ||
480       ESym == EF.symbol_begin(DotDynSymSec))
481     Result |= SymbolRef::SF_FormatSpecific;
482
483   if (EF.getHeader()->e_machine == ELF::EM_ARM) {
484     if (ErrorOr<StringRef> NameOrErr = getSymbolName(Sym)) {
485       StringRef Name = *NameOrErr;
486       if (Name.startswith("$d") || Name.startswith("$t") ||
487           Name.startswith("$a"))
488         Result |= SymbolRef::SF_FormatSpecific;
489     }
490   }
491
492   if (ESym->st_shndx == ELF::SHN_UNDEF)
493     Result |= SymbolRef::SF_Undefined;
494
495   if (ESym->getType() == ELF::STT_COMMON || ESym->st_shndx == ELF::SHN_COMMON)
496     Result |= SymbolRef::SF_Common;
497
498   if (isExportedToOtherDSO(ESym))
499     Result |= SymbolRef::SF_Exported;
500
501   if (ESym->getVisibility() == ELF::STV_HIDDEN)
502     Result |= SymbolRef::SF_Hidden;
503
504   return Result;
505 }
506
507 template <class ELFT>
508 section_iterator
509 ELFObjectFile<ELFT>::getSymbolSection(const Elf_Sym *ESym) const {
510   ErrorOr<const Elf_Shdr *> ESecOrErr = EF.getSection(ESym);
511   if (std::error_code EC = ESecOrErr.getError())
512     report_fatal_error(EC.message());
513
514   const Elf_Shdr *ESec = *ESecOrErr;
515   if (!ESec)
516     return section_end();
517
518   DataRefImpl Sec;
519   Sec.p = reinterpret_cast<intptr_t>(ESec);
520   return section_iterator(SectionRef(Sec, this));
521 }
522
523 template <class ELFT>
524 std::error_code
525 ELFObjectFile<ELFT>::getSymbolSection(DataRefImpl Symb,
526                                       section_iterator &Res) const {
527   Res = getSymbolSection(getSymbol(Symb));
528   return std::error_code();
529 }
530
531 template <class ELFT>
532 void ELFObjectFile<ELFT>::moveSectionNext(DataRefImpl &Sec) const {
533   const Elf_Shdr *ESec = toELFShdrIter(Sec);
534   Sec = toDRI(++ESec);
535 }
536
537 template <class ELFT>
538 std::error_code ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec,
539                                                     StringRef &Result) const {
540   ErrorOr<StringRef> Name = EF.getSectionName(&*toELFShdrIter(Sec));
541   if (!Name)
542     return Name.getError();
543   Result = *Name;
544   return std::error_code();
545 }
546
547 template <class ELFT>
548 uint64_t ELFObjectFile<ELFT>::getSectionAddress(DataRefImpl Sec) const {
549   return toELFShdrIter(Sec)->sh_addr;
550 }
551
552 template <class ELFT>
553 uint64_t ELFObjectFile<ELFT>::getSectionSize(DataRefImpl Sec) const {
554   return toELFShdrIter(Sec)->sh_size;
555 }
556
557 template <class ELFT>
558 std::error_code
559 ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec,
560                                         StringRef &Result) const {
561   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
562   Result = StringRef((const char *)base() + EShdr->sh_offset, EShdr->sh_size);
563   return std::error_code();
564 }
565
566 template <class ELFT>
567 uint64_t ELFObjectFile<ELFT>::getSectionAlignment(DataRefImpl Sec) const {
568   return toELFShdrIter(Sec)->sh_addralign;
569 }
570
571 template <class ELFT>
572 bool ELFObjectFile<ELFT>::isSectionText(DataRefImpl Sec) const {
573   return toELFShdrIter(Sec)->sh_flags & ELF::SHF_EXECINSTR;
574 }
575
576 template <class ELFT>
577 bool ELFObjectFile<ELFT>::isSectionData(DataRefImpl Sec) const {
578   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
579   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
580          EShdr->sh_type == ELF::SHT_PROGBITS;
581 }
582
583 template <class ELFT>
584 bool ELFObjectFile<ELFT>::isSectionBSS(DataRefImpl Sec) const {
585   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
586   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
587          EShdr->sh_type == ELF::SHT_NOBITS;
588 }
589
590 template <class ELFT>
591 bool ELFObjectFile<ELFT>::isSectionVirtual(DataRefImpl Sec) const {
592   return toELFShdrIter(Sec)->sh_type == ELF::SHT_NOBITS;
593 }
594
595 template <class ELFT>
596 relocation_iterator
597 ELFObjectFile<ELFT>::section_rel_begin(DataRefImpl Sec) const {
598   DataRefImpl RelData;
599   uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.section_begin());
600   RelData.d.a = (Sec.p - SHT) / EF.getHeader()->e_shentsize;
601   RelData.d.b = 0;
602
603   const Elf_Shdr *S = reinterpret_cast<const Elf_Shdr *>(Sec.p);
604   if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
605     return relocation_iterator(RelocationRef(RelData, this));
606
607   const Elf_Shdr *RelSec = getRelSection(RelData);
608   ErrorOr<const Elf_Shdr *> SymSecOrErr = EF.getSection(RelSec->sh_link);
609   if (std::error_code EC = SymSecOrErr.getError())
610     report_fatal_error(EC.message());
611   const Elf_Shdr *SymSec = *SymSecOrErr;
612   uint32_t SymSecType = SymSec->sh_type;
613   if (SymSecType != ELF::SHT_SYMTAB && SymSecType != ELF::SHT_DYNSYM)
614     report_fatal_error("Invalid symbol table section type!");
615   if (SymSecType == ELF::SHT_DYNSYM)
616     RelData.d.b = 1;
617
618   return relocation_iterator(RelocationRef(RelData, this));
619 }
620
621 template <class ELFT>
622 relocation_iterator
623 ELFObjectFile<ELFT>::section_rel_end(DataRefImpl Sec) const {
624   const Elf_Shdr *S = reinterpret_cast<const Elf_Shdr *>(Sec.p);
625   relocation_iterator Begin = section_rel_begin(Sec);
626   if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
627     return Begin;
628   DataRefImpl RelData = Begin->getRawDataRefImpl();
629   RelData.d.b += (S->sh_size / S->sh_entsize) << 1;
630   return relocation_iterator(RelocationRef(RelData, this));
631 }
632
633 template <class ELFT>
634 section_iterator
635 ELFObjectFile<ELFT>::getRelocatedSection(DataRefImpl Sec) const {
636   if (EF.getHeader()->e_type != ELF::ET_REL)
637     return section_end();
638
639   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
640   uintX_t Type = EShdr->sh_type;
641   if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA)
642     return section_end();
643
644   ErrorOr<const Elf_Shdr *> R = EF.getSection(EShdr->sh_info);
645   if (std::error_code EC = R.getError())
646     report_fatal_error(EC.message());
647   return section_iterator(SectionRef(toDRI(*R), this));
648 }
649
650 // Relocations
651 template <class ELFT>
652 void ELFObjectFile<ELFT>::moveRelocationNext(DataRefImpl &Rel) const {
653   Rel.d.b += 2;
654 }
655
656 template <class ELFT>
657 symbol_iterator
658 ELFObjectFile<ELFT>::getRelocationSymbol(DataRefImpl Rel) const {
659   uint32_t symbolIdx;
660   const Elf_Shdr *sec = getRelSection(Rel);
661   if (sec->sh_type == ELF::SHT_REL)
662     symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL());
663   else
664     symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL());
665   if (!symbolIdx)
666     return symbol_end();
667
668   bool IsDyn = Rel.d.b & 1;
669   DataRefImpl SymbolData;
670   if (IsDyn)
671     SymbolData = toDRI(DotDynSymSec, symbolIdx);
672   else
673     SymbolData = toDRI(EF.getDotSymtabSec(), symbolIdx);
674   return symbol_iterator(SymbolRef(SymbolData, this));
675 }
676
677 template <class ELFT>
678 uint64_t ELFObjectFile<ELFT>::getRelocationOffset(DataRefImpl Rel) const {
679   assert(EF.getHeader()->e_type == ELF::ET_REL &&
680          "Only relocatable object files have relocation offsets");
681   const Elf_Shdr *sec = getRelSection(Rel);
682   if (sec->sh_type == ELF::SHT_REL)
683     return getRel(Rel)->r_offset;
684
685   return getRela(Rel)->r_offset;
686 }
687
688 template <class ELFT>
689 uint64_t ELFObjectFile<ELFT>::getRelocationType(DataRefImpl Rel) const {
690   const Elf_Shdr *sec = getRelSection(Rel);
691   if (sec->sh_type == ELF::SHT_REL)
692     return getRel(Rel)->getType(EF.isMips64EL());
693   else
694     return getRela(Rel)->getType(EF.isMips64EL());
695 }
696
697 template <class ELFT>
698 StringRef ELFObjectFile<ELFT>::getRelocationTypeName(uint32_t Type) const {
699   return getELFRelocationTypeName(EF.getHeader()->e_machine, Type);
700 }
701
702 template <class ELFT>
703 void ELFObjectFile<ELFT>::getRelocationTypeName(
704     DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
705   uint32_t type = getRelocationType(Rel);
706   EF.getRelocationTypeName(type, Result);
707 }
708
709 template <class ELFT>
710 ErrorOr<int64_t>
711 ELFObjectFile<ELFT>::getRelocationAddend(DataRefImpl Rel) const {
712   if (getRelSection(Rel)->sh_type != ELF::SHT_RELA)
713     return object_error::parse_failed;
714   return (int64_t)getRela(Rel)->r_addend;
715 }
716
717 template <class ELFT>
718 const typename ELFFile<ELFT>::Elf_Sym *
719 ELFObjectFile<ELFT>::getSymbol(DataRefImpl Symb) const {
720   return &*toELFSymIter(Symb);
721 }
722
723 template <class ELFT>
724 const typename ELFObjectFile<ELFT>::Elf_Rel *
725 ELFObjectFile<ELFT>::getRel(DataRefImpl Rel) const {
726   assert(getRelSection(Rel)->sh_type == ELF::SHT_REL);
727   return EF.template getEntry<Elf_Rel>(Rel.d.a, Rel.d.b >> 1);
728 }
729
730 template <class ELFT>
731 const typename ELFObjectFile<ELFT>::Elf_Rela *
732 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const {
733   assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA);
734   return EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b >> 1);
735 }
736
737 template <class ELFT>
738 ELFObjectFile<ELFT>::ELFObjectFile(MemoryBufferRef Object, std::error_code &EC)
739     : ELFObjectFileBase(
740           getELFType(ELFT::TargetEndianness == support::little, ELFT::Is64Bits),
741           Object),
742       EF(Data.getBuffer(), EC) {
743   for (const Elf_Shdr &Sec : EF.sections()) {
744     switch (Sec.sh_type) {
745     case ELF::SHT_DYNSYM: {
746       if (DotDynSymSec) {
747         // More than one .dynsym!
748         EC = object_error::parse_failed;
749         return;
750       }
751       DotDynSymSec = &Sec;
752       break;
753     }
754     }
755   }
756 }
757
758 template <class ELFT>
759 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_begin_impl() const {
760   DataRefImpl Sym = toDRI(EF.getDotSymtabSec(), 0);
761   return basic_symbol_iterator(SymbolRef(Sym, this));
762 }
763
764 template <class ELFT>
765 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_end_impl() const {
766   const Elf_Shdr *SymTab = EF.getDotSymtabSec();
767   if (!SymTab)
768     return symbol_begin_impl();
769   DataRefImpl Sym = toDRI(SymTab, SymTab->sh_size / sizeof(Elf_Sym));
770   return basic_symbol_iterator(SymbolRef(Sym, this));
771 }
772
773 template <class ELFT>
774 elf_symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_begin() const {
775   DataRefImpl Sym = toDRI(DotDynSymSec, 0);
776   return symbol_iterator(SymbolRef(Sym, this));
777 }
778
779 template <class ELFT>
780 elf_symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_end() const {
781   const Elf_Shdr *SymTab = DotDynSymSec;
782   DataRefImpl Sym = toDRI(SymTab, SymTab->sh_size / sizeof(Elf_Sym));
783   return basic_symbol_iterator(SymbolRef(Sym, this));
784 }
785
786 template <class ELFT>
787 section_iterator ELFObjectFile<ELFT>::section_begin() const {
788   return section_iterator(SectionRef(toDRI(EF.section_begin()), this));
789 }
790
791 template <class ELFT>
792 section_iterator ELFObjectFile<ELFT>::section_end() const {
793   return section_iterator(SectionRef(toDRI(EF.section_end()), this));
794 }
795
796 template <class ELFT>
797 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const {
798   return ELFT::Is64Bits ? 8 : 4;
799 }
800
801 template <class ELFT>
802 StringRef ELFObjectFile<ELFT>::getFileFormatName() const {
803   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
804   switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
805   case ELF::ELFCLASS32:
806     switch (EF.getHeader()->e_machine) {
807     case ELF::EM_386:
808       return "ELF32-i386";
809     case ELF::EM_X86_64:
810       return "ELF32-x86-64";
811     case ELF::EM_ARM:
812       return (IsLittleEndian ? "ELF32-arm-little" : "ELF32-arm-big");
813     case ELF::EM_HEXAGON:
814       return "ELF32-hexagon";
815     case ELF::EM_MIPS:
816       return "ELF32-mips";
817     case ELF::EM_PPC:
818       return "ELF32-ppc";
819     case ELF::EM_SPARC:
820     case ELF::EM_SPARC32PLUS:
821       return "ELF32-sparc";
822     default:
823       return "ELF32-unknown";
824     }
825   case ELF::ELFCLASS64:
826     switch (EF.getHeader()->e_machine) {
827     case ELF::EM_386:
828       return "ELF64-i386";
829     case ELF::EM_X86_64:
830       return "ELF64-x86-64";
831     case ELF::EM_AARCH64:
832       return (IsLittleEndian ? "ELF64-aarch64-little" : "ELF64-aarch64-big");
833     case ELF::EM_PPC64:
834       return "ELF64-ppc64";
835     case ELF::EM_S390:
836       return "ELF64-s390";
837     case ELF::EM_SPARCV9:
838       return "ELF64-sparc";
839     case ELF::EM_MIPS:
840       return "ELF64-mips";
841     default:
842       return "ELF64-unknown";
843     }
844   default:
845     // FIXME: Proper error handling.
846     report_fatal_error("Invalid ELFCLASS!");
847   }
848 }
849
850 template <class ELFT>
851 unsigned ELFObjectFile<ELFT>::getArch() const {
852   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
853   switch (EF.getHeader()->e_machine) {
854   case ELF::EM_386:
855     return Triple::x86;
856   case ELF::EM_X86_64:
857     return Triple::x86_64;
858   case ELF::EM_AARCH64:
859     return Triple::aarch64;
860   case ELF::EM_ARM:
861     return Triple::arm;
862   case ELF::EM_HEXAGON:
863     return Triple::hexagon;
864   case ELF::EM_MIPS:
865     switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
866     case ELF::ELFCLASS32:
867       return IsLittleEndian ? Triple::mipsel : Triple::mips;
868     case ELF::ELFCLASS64:
869       return IsLittleEndian ? Triple::mips64el : Triple::mips64;
870     default:
871       report_fatal_error("Invalid ELFCLASS!");
872     }
873   case ELF::EM_PPC:
874     return Triple::ppc;
875   case ELF::EM_PPC64:
876     return IsLittleEndian ? Triple::ppc64le : Triple::ppc64;
877   case ELF::EM_S390:
878     return Triple::systemz;
879
880   case ELF::EM_SPARC:
881   case ELF::EM_SPARC32PLUS:
882     return IsLittleEndian ? Triple::sparcel : Triple::sparc;
883   case ELF::EM_SPARCV9:
884     return Triple::sparcv9;
885
886   default:
887     return Triple::UnknownArch;
888   }
889 }
890
891 template <class ELFT>
892 ELFObjectFileBase::elf_symbol_iterator_range
893 ELFObjectFile<ELFT>::getDynamicSymbolIterators() const {
894   return make_range(dynamic_symbol_begin(), dynamic_symbol_end());
895 }
896
897 template <class ELFT> bool ELFObjectFile<ELFT>::isRelocatableObject() const {
898   return EF.getHeader()->e_type == ELF::ET_REL;
899 }
900
901 }
902 }
903
904 #endif