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