Return ErrorOr from getSection.
[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   typedef typename ELFFile<ELFT>::Elf_Dyn_Iter Elf_Dyn_Iter;
193
194 protected:
195   ELFFile<ELFT> EF;
196
197   void moveSymbolNext(DataRefImpl &Symb) const override;
198   std::error_code getSymbolName(DataRefImpl Symb,
199                                 StringRef &Res) const override;
200   std::error_code getSymbolAddress(DataRefImpl Symb,
201                                    uint64_t &Res) const override;
202   uint64_t getSymbolValue(DataRefImpl Symb) const override;
203   uint32_t getSymbolAlignment(DataRefImpl Symb) const override;
204   uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override;
205   uint32_t getSymbolFlags(DataRefImpl Symb) const override;
206   uint8_t getSymbolOther(DataRefImpl Symb) const override;
207   uint8_t getSymbolELFType(DataRefImpl Symb) const override;
208   SymbolRef::Type getSymbolType(DataRefImpl Symb) const override;
209   section_iterator getSymbolSection(const Elf_Sym *Symb) const;
210   std::error_code getSymbolSection(DataRefImpl Symb,
211                                    section_iterator &Res) const override;
212
213   void moveSectionNext(DataRefImpl &Sec) const override;
214   std::error_code getSectionName(DataRefImpl Sec,
215                                  StringRef &Res) const override;
216   uint64_t getSectionAddress(DataRefImpl Sec) const override;
217   uint64_t getSectionSize(DataRefImpl Sec) const override;
218   std::error_code getSectionContents(DataRefImpl Sec,
219                                      StringRef &Res) const override;
220   uint64_t getSectionAlignment(DataRefImpl Sec) const override;
221   bool isSectionText(DataRefImpl Sec) const override;
222   bool isSectionData(DataRefImpl Sec) const override;
223   bool isSectionBSS(DataRefImpl Sec) const override;
224   bool isSectionVirtual(DataRefImpl Sec) const override;
225   relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
226   relocation_iterator section_rel_end(DataRefImpl Sec) const override;
227   section_iterator getRelocatedSection(DataRefImpl Sec) const override;
228
229   void moveRelocationNext(DataRefImpl &Rel) const override;
230   ErrorOr<uint64_t> getRelocationAddress(DataRefImpl Rel) const override;
231   uint64_t getRelocationOffset(DataRefImpl Rel) const override;
232   symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override;
233   uint64_t getRelocationType(DataRefImpl Rel) const override;
234   void getRelocationTypeName(DataRefImpl Rel,
235                              SmallVectorImpl<char> &Result) const override;
236
237   uint32_t getSectionType(DataRefImpl Sec) const override;
238   uint64_t getSectionFlags(DataRefImpl Sec) const override;
239   uint64_t getROffset(DataRefImpl Rel) const;
240   StringRef getRelocationTypeName(uint32_t Type) const;
241
242   /// \brief Get the relocation section that contains \a Rel.
243   const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
244     ErrorOr<const Elf_Shdr *> Sec = EF.getSection(Rel.d.a);
245     if (std::error_code EC = Sec.getError())
246       report_fatal_error(EC.message());
247     return *Sec;
248   }
249
250   const Elf_Rel *getRel(DataRefImpl Rel) const;
251   const Elf_Rela *getRela(DataRefImpl Rela) const;
252
253   const Elf_Sym *toELFSymIter(DataRefImpl Sym) const {
254     return reinterpret_cast<const Elf_Sym *>(Sym.p & ~uintptr_t(1));
255   }
256
257   DataRefImpl toDRI(const Elf_Sym *Sym, bool IsDynamic) const {
258     DataRefImpl DRI;
259     DRI.p =
260         reinterpret_cast<uintptr_t>(Sym) | static_cast<uintptr_t>(IsDynamic);
261     return DRI;
262   }
263
264   const Elf_Shdr *toELFShdrIter(DataRefImpl Sec) const {
265     return reinterpret_cast<const Elf_Shdr *>(Sec.p);
266   }
267
268   DataRefImpl toDRI(const Elf_Shdr *Sec) const {
269     DataRefImpl DRI;
270     DRI.p = reinterpret_cast<uintptr_t>(Sec);
271     return DRI;
272   }
273
274   Elf_Dyn_Iter toELFDynIter(DataRefImpl Dyn) const {
275     return Elf_Dyn_Iter(EF.begin_dynamic_table().getEntSize(),
276                         reinterpret_cast<const char *>(Dyn.p));
277   }
278
279   DataRefImpl toDRI(Elf_Dyn_Iter Dyn) const {
280     DataRefImpl DRI;
281     DRI.p = reinterpret_cast<uintptr_t>(Dyn.get());
282     return DRI;
283   }
284
285   bool isExportedToOtherDSO(const Elf_Sym *ESym) const {
286     unsigned char Binding = ESym->getBinding();
287     unsigned char Visibility = ESym->getVisibility();
288
289     // A symbol is exported if its binding is either GLOBAL or WEAK, and its
290     // visibility is either DEFAULT or PROTECTED. All other symbols are not
291     // exported.
292     if ((Binding == ELF::STB_GLOBAL || Binding == ELF::STB_WEAK) &&
293         (Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_PROTECTED))
294       return true;
295
296     return false;
297   }
298
299   // This flag is used for classof, to distinguish ELFObjectFile from
300   // its subclass. If more subclasses will be created, this flag will
301   // have to become an enum.
302   bool isDyldELFObject;
303
304 public:
305   ELFObjectFile(MemoryBufferRef Object, std::error_code &EC);
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   StringRef getLoadName() const;
324
325   std::error_code getPlatformFlags(unsigned &Result) const override {
326     Result = EF.getHeader()->e_flags;
327     return std::error_code();
328   }
329
330   const ELFFile<ELFT> *getELFFile() const { return &EF; }
331
332   bool isDyldType() const { return isDyldELFObject; }
333   static inline bool classof(const Binary *v) {
334     return v->getType() == getELFType(ELFT::TargetEndianness == support::little,
335                                       ELFT::Is64Bits);
336   }
337
338   elf_symbol_iterator_range getDynamicSymbolIterators() const override;
339
340   bool isRelocatableObject() const override;
341 };
342
343 typedef ELFObjectFile<ELFType<support::little, false>> ELF32LEObjectFile;
344 typedef ELFObjectFile<ELFType<support::little, true>> ELF64LEObjectFile;
345 typedef ELFObjectFile<ELFType<support::big, false>> ELF32BEObjectFile;
346 typedef ELFObjectFile<ELFType<support::big, true>> ELF64BEObjectFile;
347
348 template <class ELFT>
349 void ELFObjectFile<ELFT>::moveSymbolNext(DataRefImpl &Sym) const {
350   const Elf_Sym *S = toELFSymIter(Sym);
351   Sym = toDRI(++S, Sym.p & 1);
352 }
353
354 template <class ELFT>
355 std::error_code ELFObjectFile<ELFT>::getSymbolName(DataRefImpl Sym,
356                                                    StringRef &Result) const {
357   const Elf_Sym *ESym = toELFSymIter(Sym);
358   ErrorOr<StringRef> Name = EF.getSymbolName(ESym, Sym.p & 1);
359   if (!Name)
360     return Name.getError();
361   Result = *Name;
362   return std::error_code();
363 }
364
365 template <class ELFT>
366 uint64_t ELFObjectFile<ELFT>::getSectionFlags(DataRefImpl Sec) const {
367   return toELFShdrIter(Sec)->sh_flags;
368 }
369
370 template <class ELFT>
371 uint32_t ELFObjectFile<ELFT>::getSectionType(DataRefImpl Sec) const {
372   return toELFShdrIter(Sec)->sh_type;
373 }
374
375 template <class ELFT>
376 uint64_t ELFObjectFile<ELFT>::getSymbolValue(DataRefImpl Symb) const {
377   const Elf_Sym *ESym = getSymbol(Symb);
378   switch (ESym->st_shndx) {
379   case ELF::SHN_COMMON:
380   case ELF::SHN_UNDEF:
381     return UnknownAddress;
382   case ELF::SHN_ABS:
383     return ESym->st_value;
384   }
385
386   const Elf_Ehdr *Header = EF.getHeader();
387   uint64_t Ret = ESym->st_value;
388
389   // Clear the ARM/Thumb or microMIPS indicator flag.
390   if ((Header->e_machine == ELF::EM_ARM || Header->e_machine == ELF::EM_MIPS) &&
391       ESym->getType() == ELF::STT_FUNC)
392     Ret &= ~1;
393
394   return Ret;
395 }
396
397 template <class ELFT>
398 std::error_code ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb,
399                                                       uint64_t &Result) const {
400   Result = getSymbolValue(Symb);
401   const Elf_Sym *ESym = getSymbol(Symb);
402   switch (ESym->st_shndx) {
403   case ELF::SHN_COMMON:
404   case ELF::SHN_UNDEF:
405   case ELF::SHN_ABS:
406     return std::error_code();
407   }
408
409   const Elf_Ehdr *Header = EF.getHeader();
410
411   if (Header->e_type == ELF::ET_REL) {
412     ErrorOr<const Elf_Shdr *> SectionOrErr = EF.getSection(ESym);
413     if (std::error_code EC = SectionOrErr.getError())
414       return EC;
415     const Elf_Shdr *Section = *SectionOrErr;
416     if (Section)
417       Result += Section->sh_addr;
418   }
419
420   return std::error_code();
421 }
422
423 template <class ELFT>
424 uint32_t ELFObjectFile<ELFT>::getSymbolAlignment(DataRefImpl Symb) const {
425   const Elf_Sym *Sym = toELFSymIter(Symb);
426   if (Sym->st_shndx == ELF::SHN_COMMON)
427     return Sym->st_value;
428   return 0;
429 }
430
431 template <class ELFT>
432 uint64_t ELFObjectFile<ELFT>::getSymbolSize(DataRefImpl Sym) const {
433   return toELFSymIter(Sym)->st_size;
434 }
435
436 template <class ELFT>
437 uint64_t ELFObjectFile<ELFT>::getCommonSymbolSizeImpl(DataRefImpl Symb) const {
438   return toELFSymIter(Symb)->st_size;
439 }
440
441 template <class ELFT>
442 uint8_t ELFObjectFile<ELFT>::getSymbolOther(DataRefImpl Symb) const {
443   return toELFSymIter(Symb)->st_other;
444 }
445
446 template <class ELFT>
447 uint8_t ELFObjectFile<ELFT>::getSymbolELFType(DataRefImpl Symb) const {
448   return toELFSymIter(Symb)->getType();
449 }
450
451 template <class ELFT>
452 SymbolRef::Type ELFObjectFile<ELFT>::getSymbolType(DataRefImpl Symb) const {
453   const Elf_Sym *ESym = getSymbol(Symb);
454
455   switch (ESym->getType()) {
456   case ELF::STT_NOTYPE:
457     return SymbolRef::ST_Unknown;
458   case ELF::STT_SECTION:
459     return SymbolRef::ST_Debug;
460   case ELF::STT_FILE:
461     return SymbolRef::ST_File;
462   case ELF::STT_FUNC:
463     return SymbolRef::ST_Function;
464   case ELF::STT_OBJECT:
465   case ELF::STT_COMMON:
466   case ELF::STT_TLS:
467     return SymbolRef::ST_Data;
468   default:
469     return SymbolRef::ST_Other;
470   }
471 }
472
473 template <class ELFT>
474 uint32_t ELFObjectFile<ELFT>::getSymbolFlags(DataRefImpl Sym) const {
475   const Elf_Sym *ESym = toELFSymIter(Sym);
476
477   uint32_t Result = SymbolRef::SF_None;
478
479   if (ESym->getBinding() != ELF::STB_LOCAL)
480     Result |= SymbolRef::SF_Global;
481
482   if (ESym->getBinding() == ELF::STB_WEAK)
483     Result |= SymbolRef::SF_Weak;
484
485   if (ESym->st_shndx == ELF::SHN_ABS)
486     Result |= SymbolRef::SF_Absolute;
487
488   if (ESym->getType() == ELF::STT_FILE || ESym->getType() == ELF::STT_SECTION ||
489       ESym == EF.symbol_begin() || ESym == EF.dynamic_symbol_begin())
490     Result |= SymbolRef::SF_FormatSpecific;
491
492   if (EF.getHeader()->e_machine == ELF::EM_ARM) {
493     ErrorOr<StringRef> NameOrErr = EF.getSymbolName(ESym, Sym.p & 1);
494     if (NameOrErr) {
495       StringRef Name = *NameOrErr;
496       if (Name.startswith("$d") || Name.startswith("$t") ||
497           Name.startswith("$a"))
498         Result |= SymbolRef::SF_FormatSpecific;
499     }
500   }
501
502   if (ESym->st_shndx == ELF::SHN_UNDEF)
503     Result |= SymbolRef::SF_Undefined;
504
505   if (ESym->getType() == ELF::STT_COMMON || ESym->st_shndx == ELF::SHN_COMMON)
506     Result |= SymbolRef::SF_Common;
507
508   if (isExportedToOtherDSO(ESym))
509     Result |= SymbolRef::SF_Exported;
510
511   if (ESym->getVisibility() == ELF::STV_HIDDEN)
512     Result |= SymbolRef::SF_Hidden;
513
514   return Result;
515 }
516
517 template <class ELFT>
518 section_iterator
519 ELFObjectFile<ELFT>::getSymbolSection(const Elf_Sym *ESym) const {
520   ErrorOr<const Elf_Shdr *> ESecOrErr = EF.getSection(ESym);
521   if (std::error_code EC = ESecOrErr.getError())
522     report_fatal_error(EC.message());
523
524   const Elf_Shdr *ESec = *ESecOrErr;
525   if (!ESec)
526     return section_end();
527
528   DataRefImpl Sec;
529   Sec.p = reinterpret_cast<intptr_t>(ESec);
530   return section_iterator(SectionRef(Sec, this));
531 }
532
533 template <class ELFT>
534 std::error_code
535 ELFObjectFile<ELFT>::getSymbolSection(DataRefImpl Symb,
536                                       section_iterator &Res) const {
537   Res = getSymbolSection(getSymbol(Symb));
538   return std::error_code();
539 }
540
541 template <class ELFT>
542 void ELFObjectFile<ELFT>::moveSectionNext(DataRefImpl &Sec) const {
543   const Elf_Shdr *ESec = toELFShdrIter(Sec);
544   Sec = toDRI(++ESec);
545 }
546
547 template <class ELFT>
548 std::error_code ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec,
549                                                     StringRef &Result) const {
550   ErrorOr<StringRef> Name = EF.getSectionName(&*toELFShdrIter(Sec));
551   if (!Name)
552     return Name.getError();
553   Result = *Name;
554   return std::error_code();
555 }
556
557 template <class ELFT>
558 uint64_t ELFObjectFile<ELFT>::getSectionAddress(DataRefImpl Sec) const {
559   return toELFShdrIter(Sec)->sh_addr;
560 }
561
562 template <class ELFT>
563 uint64_t ELFObjectFile<ELFT>::getSectionSize(DataRefImpl Sec) const {
564   return toELFShdrIter(Sec)->sh_size;
565 }
566
567 template <class ELFT>
568 std::error_code
569 ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec,
570                                         StringRef &Result) const {
571   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
572   Result = StringRef((const char *)base() + EShdr->sh_offset, EShdr->sh_size);
573   return std::error_code();
574 }
575
576 template <class ELFT>
577 uint64_t ELFObjectFile<ELFT>::getSectionAlignment(DataRefImpl Sec) const {
578   return toELFShdrIter(Sec)->sh_addralign;
579 }
580
581 template <class ELFT>
582 bool ELFObjectFile<ELFT>::isSectionText(DataRefImpl Sec) const {
583   return toELFShdrIter(Sec)->sh_flags & ELF::SHF_EXECINSTR;
584 }
585
586 template <class ELFT>
587 bool ELFObjectFile<ELFT>::isSectionData(DataRefImpl Sec) const {
588   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
589   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
590          EShdr->sh_type == ELF::SHT_PROGBITS;
591 }
592
593 template <class ELFT>
594 bool ELFObjectFile<ELFT>::isSectionBSS(DataRefImpl Sec) const {
595   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
596   return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) &&
597          EShdr->sh_type == ELF::SHT_NOBITS;
598 }
599
600 template <class ELFT>
601 bool ELFObjectFile<ELFT>::isSectionVirtual(DataRefImpl Sec) const {
602   return toELFShdrIter(Sec)->sh_type == ELF::SHT_NOBITS;
603 }
604
605 template <class ELFT>
606 relocation_iterator
607 ELFObjectFile<ELFT>::section_rel_begin(DataRefImpl Sec) const {
608   DataRefImpl RelData;
609   uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.section_begin());
610   RelData.d.a = (Sec.p - SHT) / EF.getHeader()->e_shentsize;
611   RelData.d.b = 0;
612   return relocation_iterator(RelocationRef(RelData, this));
613 }
614
615 template <class ELFT>
616 relocation_iterator
617 ELFObjectFile<ELFT>::section_rel_end(DataRefImpl Sec) const {
618   DataRefImpl RelData;
619   uintptr_t SHT = reinterpret_cast<uintptr_t>(EF.section_begin());
620   const Elf_Shdr *S = reinterpret_cast<const Elf_Shdr *>(Sec.p);
621   RelData.d.a = (Sec.p - SHT) / EF.getHeader()->e_shentsize;
622   if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
623     RelData.d.b = 0;
624   else
625     RelData.d.b = S->sh_size / S->sh_entsize;
626
627   return relocation_iterator(RelocationRef(RelData, this));
628 }
629
630 template <class ELFT>
631 section_iterator
632 ELFObjectFile<ELFT>::getRelocatedSection(DataRefImpl Sec) const {
633   if (EF.getHeader()->e_type != ELF::ET_REL)
634     return section_end();
635
636   const Elf_Shdr *EShdr = toELFShdrIter(Sec);
637   uintX_t Type = EShdr->sh_type;
638   if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA)
639     return section_end();
640
641   ErrorOr<const Elf_Shdr *> R = EF.getSection(EShdr->sh_info);
642   if (std::error_code EC = R.getError())
643     report_fatal_error(EC.message());
644   return section_iterator(SectionRef(toDRI(*R), this));
645 }
646
647 // Relocations
648 template <class ELFT>
649 void ELFObjectFile<ELFT>::moveRelocationNext(DataRefImpl &Rel) const {
650   ++Rel.d.b;
651 }
652
653 template <class ELFT>
654 symbol_iterator
655 ELFObjectFile<ELFT>::getRelocationSymbol(DataRefImpl Rel) const {
656   uint32_t symbolIdx;
657   const Elf_Shdr *sec = getRelSection(Rel);
658   if (sec->sh_type == ELF::SHT_REL)
659     symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL());
660   else
661     symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL());
662   if (!symbolIdx)
663     return symbol_end();
664
665   ErrorOr<const Elf_Shdr *> SymSecOrErr = EF.getSection(sec->sh_link);
666   if (std::error_code EC = SymSecOrErr.getError())
667     report_fatal_error(EC.message());
668   const Elf_Shdr *SymSec = *SymSecOrErr;
669
670   DataRefImpl SymbolData;
671   switch (SymSec->sh_type) {
672   default:
673     report_fatal_error("Invalid symbol table section type!");
674   case ELF::SHT_SYMTAB:
675     SymbolData = toDRI(EF.symbol_begin() + symbolIdx, false);
676     break;
677   case ELF::SHT_DYNSYM:
678     SymbolData = toDRI(EF.dynamic_symbol_begin() + symbolIdx, true);
679     break;
680   }
681
682   return symbol_iterator(SymbolRef(SymbolData, this));
683 }
684
685 template <class ELFT>
686 ErrorOr<uint64_t>
687 ELFObjectFile<ELFT>::getRelocationAddress(DataRefImpl Rel) const {
688   uint64_t ROffset = getROffset(Rel);
689   const Elf_Ehdr *Header = EF.getHeader();
690
691   if (Header->e_type == ELF::ET_REL) {
692     const Elf_Shdr *RelocationSec = getRelSection(Rel);
693     ErrorOr<const Elf_Shdr *> RelocatedSec =
694         EF.getSection(RelocationSec->sh_info);
695     if (std::error_code EC = RelocatedSec.getError())
696       return EC;
697     return ROffset + (*RelocatedSec)->sh_addr;
698   }
699   return ROffset;
700 }
701
702 template <class ELFT>
703 uint64_t ELFObjectFile<ELFT>::getRelocationOffset(DataRefImpl Rel) const {
704   assert(EF.getHeader()->e_type == ELF::ET_REL &&
705          "Only relocatable object files have relocation offsets");
706   return getROffset(Rel);
707 }
708
709 template <class ELFT>
710 uint64_t ELFObjectFile<ELFT>::getROffset(DataRefImpl Rel) const {
711   const Elf_Shdr *sec = getRelSection(Rel);
712   if (sec->sh_type == ELF::SHT_REL)
713     return getRel(Rel)->r_offset;
714
715   return getRela(Rel)->r_offset;
716 }
717
718 template <class ELFT>
719 uint64_t ELFObjectFile<ELFT>::getRelocationType(DataRefImpl Rel) const {
720   const Elf_Shdr *sec = getRelSection(Rel);
721   if (sec->sh_type == ELF::SHT_REL)
722     return getRel(Rel)->getType(EF.isMips64EL());
723   else
724     return getRela(Rel)->getType(EF.isMips64EL());
725 }
726
727 template <class ELFT>
728 StringRef ELFObjectFile<ELFT>::getRelocationTypeName(uint32_t Type) const {
729   return getELFRelocationTypeName(EF.getHeader()->e_machine, Type);
730 }
731
732 template <class ELFT>
733 void ELFObjectFile<ELFT>::getRelocationTypeName(
734     DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
735   uint32_t type = getRelocationType(Rel);
736   EF.getRelocationTypeName(type, Result);
737 }
738
739 template <class ELFT>
740 ErrorOr<int64_t>
741 ELFObjectFile<ELFT>::getRelocationAddend(DataRefImpl Rel) const {
742   if (getRelSection(Rel)->sh_type != ELF::SHT_RELA)
743     return object_error::parse_failed;
744   return (int64_t)getRela(Rel)->r_addend;
745 }
746
747 template <class ELFT>
748 const typename ELFFile<ELFT>::Elf_Sym *
749 ELFObjectFile<ELFT>::getSymbol(DataRefImpl Symb) const {
750   return &*toELFSymIter(Symb);
751 }
752
753 template <class ELFT>
754 const typename ELFObjectFile<ELFT>::Elf_Rel *
755 ELFObjectFile<ELFT>::getRel(DataRefImpl Rel) const {
756   assert(getRelSection(Rel)->sh_type == ELF::SHT_REL);
757   return EF.template getEntry<Elf_Rel>(Rel.d.a, Rel.d.b);
758 }
759
760 template <class ELFT>
761 const typename ELFObjectFile<ELFT>::Elf_Rela *
762 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const {
763   assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA);
764   return EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b);
765 }
766
767 template <class ELFT>
768 ELFObjectFile<ELFT>::ELFObjectFile(MemoryBufferRef Object, std::error_code &EC)
769     : ELFObjectFileBase(
770           getELFType(static_cast<endianness>(ELFT::TargetEndianness) ==
771                          support::little,
772                      ELFT::Is64Bits),
773           Object),
774       EF(Data.getBuffer(), EC) {}
775
776 template <class ELFT>
777 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_begin_impl() const {
778   DataRefImpl Sym = toDRI(EF.symbol_begin(), false);
779   return basic_symbol_iterator(SymbolRef(Sym, this));
780 }
781
782 template <class ELFT>
783 basic_symbol_iterator ELFObjectFile<ELFT>::symbol_end_impl() const {
784   DataRefImpl Sym = toDRI(EF.symbol_end(), false);
785   return basic_symbol_iterator(SymbolRef(Sym, this));
786 }
787
788 template <class ELFT>
789 elf_symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_begin() const {
790   DataRefImpl Sym = toDRI(EF.dynamic_symbol_begin(), true);
791   return symbol_iterator(SymbolRef(Sym, this));
792 }
793
794 template <class ELFT>
795 elf_symbol_iterator ELFObjectFile<ELFT>::dynamic_symbol_end() const {
796   DataRefImpl Sym = toDRI(EF.dynamic_symbol_end(), true);
797   return symbol_iterator(SymbolRef(Sym, this));
798 }
799
800 template <class ELFT>
801 section_iterator ELFObjectFile<ELFT>::section_begin() const {
802   return section_iterator(SectionRef(toDRI(EF.section_begin()), this));
803 }
804
805 template <class ELFT>
806 section_iterator ELFObjectFile<ELFT>::section_end() const {
807   return section_iterator(SectionRef(toDRI(EF.section_end()), this));
808 }
809
810 template <class ELFT>
811 StringRef ELFObjectFile<ELFT>::getLoadName() const {
812   Elf_Dyn_Iter DI = EF.dynamic_table_begin();
813   Elf_Dyn_Iter DE = EF.dynamic_table_end();
814
815   while (DI != DE && DI->getTag() != ELF::DT_SONAME)
816     ++DI;
817
818   if (DI != DE)
819     return EF.getDynamicString(DI->getVal());
820   return "";
821 }
822
823 template <class ELFT>
824 uint8_t ELFObjectFile<ELFT>::getBytesInAddress() const {
825   return ELFT::Is64Bits ? 8 : 4;
826 }
827
828 template <class ELFT>
829 StringRef ELFObjectFile<ELFT>::getFileFormatName() const {
830   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
831   switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
832   case ELF::ELFCLASS32:
833     switch (EF.getHeader()->e_machine) {
834     case ELF::EM_386:
835       return "ELF32-i386";
836     case ELF::EM_X86_64:
837       return "ELF32-x86-64";
838     case ELF::EM_ARM:
839       return (IsLittleEndian ? "ELF32-arm-little" : "ELF32-arm-big");
840     case ELF::EM_HEXAGON:
841       return "ELF32-hexagon";
842     case ELF::EM_MIPS:
843       return "ELF32-mips";
844     case ELF::EM_PPC:
845       return "ELF32-ppc";
846     case ELF::EM_SPARC:
847     case ELF::EM_SPARC32PLUS:
848       return "ELF32-sparc";
849     default:
850       return "ELF32-unknown";
851     }
852   case ELF::ELFCLASS64:
853     switch (EF.getHeader()->e_machine) {
854     case ELF::EM_386:
855       return "ELF64-i386";
856     case ELF::EM_X86_64:
857       return "ELF64-x86-64";
858     case ELF::EM_AARCH64:
859       return (IsLittleEndian ? "ELF64-aarch64-little" : "ELF64-aarch64-big");
860     case ELF::EM_PPC64:
861       return "ELF64-ppc64";
862     case ELF::EM_S390:
863       return "ELF64-s390";
864     case ELF::EM_SPARCV9:
865       return "ELF64-sparc";
866     case ELF::EM_MIPS:
867       return "ELF64-mips";
868     default:
869       return "ELF64-unknown";
870     }
871   default:
872     // FIXME: Proper error handling.
873     report_fatal_error("Invalid ELFCLASS!");
874   }
875 }
876
877 template <class ELFT>
878 unsigned ELFObjectFile<ELFT>::getArch() const {
879   bool IsLittleEndian = ELFT::TargetEndianness == support::little;
880   switch (EF.getHeader()->e_machine) {
881   case ELF::EM_386:
882     return Triple::x86;
883   case ELF::EM_X86_64:
884     return Triple::x86_64;
885   case ELF::EM_AARCH64:
886     return Triple::aarch64;
887   case ELF::EM_ARM:
888     return Triple::arm;
889   case ELF::EM_HEXAGON:
890     return Triple::hexagon;
891   case ELF::EM_MIPS:
892     switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
893     case ELF::ELFCLASS32:
894       return IsLittleEndian ? Triple::mipsel : Triple::mips;
895     case ELF::ELFCLASS64:
896       return IsLittleEndian ? Triple::mips64el : Triple::mips64;
897     default:
898       report_fatal_error("Invalid ELFCLASS!");
899     }
900   case ELF::EM_PPC:
901     return Triple::ppc;
902   case ELF::EM_PPC64:
903     return IsLittleEndian ? Triple::ppc64le : Triple::ppc64;
904   case ELF::EM_S390:
905     return Triple::systemz;
906
907   case ELF::EM_SPARC:
908   case ELF::EM_SPARC32PLUS:
909     return IsLittleEndian ? Triple::sparcel : Triple::sparc;
910   case ELF::EM_SPARCV9:
911     return Triple::sparcv9;
912
913   default:
914     return Triple::UnknownArch;
915   }
916 }
917
918 template <class ELFT>
919 ELFObjectFileBase::elf_symbol_iterator_range
920 ELFObjectFile<ELFT>::getDynamicSymbolIterators() const {
921   return make_range(dynamic_symbol_begin(), dynamic_symbol_end());
922 }
923
924 template <class ELFT> bool ELFObjectFile<ELFT>::isRelocatableObject() const {
925   return EF.getHeader()->e_type == ELF::ET_REL;
926 }
927
928 }
929 }
930
931 #endif