Remove getDynamicSymbolName.
[oota-llvm.git] / include / llvm / Object / ELF.h
1 //===- ELF.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 ELFFile template class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_ELF_H
15 #define LLVM_OBJECT_ELF_H
16
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/PointerIntPair.h"
20 #include "llvm/ADT/SmallVector.h"
21 #include "llvm/ADT/StringSwitch.h"
22 #include "llvm/ADT/Triple.h"
23 #include "llvm/Object/ELFTypes.h"
24 #include "llvm/Object/Error.h"
25 #include "llvm/Support/Casting.h"
26 #include "llvm/Support/ELF.h"
27 #include "llvm/Support/Endian.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include "llvm/Support/ErrorOr.h"
30 #include "llvm/Support/MemoryBuffer.h"
31 #include "llvm/Support/raw_ostream.h"
32 #include <algorithm>
33 #include <limits>
34 #include <utility>
35
36 namespace llvm {
37 namespace object {
38
39 StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type);
40
41 // Subclasses of ELFFile may need this for template instantiation
42 inline std::pair<unsigned char, unsigned char>
43 getElfArchType(StringRef Object) {
44   if (Object.size() < ELF::EI_NIDENT)
45     return std::make_pair((uint8_t)ELF::ELFCLASSNONE,
46                           (uint8_t)ELF::ELFDATANONE);
47   return std::make_pair((uint8_t)Object[ELF::EI_CLASS],
48                         (uint8_t)Object[ELF::EI_DATA]);
49 }
50
51 template <class ELFT>
52 class ELFFile {
53 public:
54   LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
55   typedef typename std::conditional<ELFT::Is64Bits,
56                                     uint64_t, uint32_t>::type uintX_t;
57
58   /// \brief Iterate over constant sized entities.
59   template <class EntT>
60   class ELFEntityIterator {
61   public:
62     typedef ptrdiff_t difference_type;
63     typedef EntT value_type;
64     typedef std::forward_iterator_tag iterator_category;
65     typedef value_type &reference;
66     typedef value_type *pointer;
67
68     /// \brief Default construct iterator.
69     ELFEntityIterator() : EntitySize(0), Current(nullptr) {}
70     ELFEntityIterator(uintX_t EntSize, const char *Start)
71         : EntitySize(EntSize), Current(Start) {}
72
73     reference operator *() {
74       assert(Current && "Attempted to dereference an invalid iterator!");
75       return *reinterpret_cast<pointer>(Current);
76     }
77
78     pointer operator ->() {
79       assert(Current && "Attempted to dereference an invalid iterator!");
80       return reinterpret_cast<pointer>(Current);
81     }
82
83     bool operator ==(const ELFEntityIterator &Other) {
84       return Current == Other.Current;
85     }
86
87     bool operator !=(const ELFEntityIterator &Other) {
88       return !(*this == Other);
89     }
90
91     ELFEntityIterator &operator ++() {
92       assert(Current && "Attempted to increment an invalid iterator!");
93       Current += EntitySize;
94       return *this;
95     }
96
97     ELFEntityIterator &operator+(difference_type n) {
98       assert(Current && "Attempted to increment an invalid iterator!");
99       Current += (n * EntitySize);
100       return *this;
101     }
102
103     ELFEntityIterator &operator-(difference_type n) {
104       assert(Current && "Attempted to subtract an invalid iterator!");
105       Current -= (n * EntitySize);
106       return *this;
107     }
108
109     ELFEntityIterator operator ++(int) {
110       ELFEntityIterator Tmp = *this;
111       ++*this;
112       return Tmp;
113     }
114
115     difference_type operator -(const ELFEntityIterator &Other) const {
116       assert(EntitySize == Other.EntitySize &&
117              "Subtracting iterators of different EntitySize!");
118       return (Current - Other.Current) / EntitySize;
119     }
120
121     const char *get() const { return Current; }
122
123     uintX_t getEntSize() const { return EntitySize; }
124
125   private:
126     uintX_t EntitySize;
127     const char *Current;
128   };
129
130   typedef Elf_Ehdr_Impl<ELFT> Elf_Ehdr;
131   typedef Elf_Shdr_Impl<ELFT> Elf_Shdr;
132   typedef Elf_Sym_Impl<ELFT> Elf_Sym;
133   typedef Elf_Dyn_Impl<ELFT> Elf_Dyn;
134   typedef Elf_Phdr_Impl<ELFT> Elf_Phdr;
135   typedef Elf_Rel_Impl<ELFT, false> Elf_Rel;
136   typedef Elf_Rel_Impl<ELFT, true> Elf_Rela;
137   typedef Elf_Verdef_Impl<ELFT> Elf_Verdef;
138   typedef Elf_Verdaux_Impl<ELFT> Elf_Verdaux;
139   typedef Elf_Verneed_Impl<ELFT> Elf_Verneed;
140   typedef Elf_Vernaux_Impl<ELFT> Elf_Vernaux;
141   typedef Elf_Versym_Impl<ELFT> Elf_Versym;
142   typedef Elf_Hash_Impl<ELFT> Elf_Hash;
143   typedef iterator_range<const Elf_Dyn *> Elf_Dyn_Range;
144   typedef iterator_range<const Elf_Shdr *> Elf_Shdr_Range;
145
146   /// \brief Archive files are 2 byte aligned, so we need this for
147   ///     PointerIntPair to work.
148   template <typename T>
149   class ArchivePointerTypeTraits {
150   public:
151     static inline const void *getAsVoidPointer(T *P) { return P; }
152     static inline T *getFromVoidPointer(const void *P) {
153       return static_cast<T *>(P);
154     }
155     enum { NumLowBitsAvailable = 1 };
156   };
157
158   typedef iterator_range<const Elf_Sym *> Elf_Sym_Range;
159
160 private:
161   typedef SmallVector<const Elf_Shdr *, 2> Sections_t;
162   typedef DenseMap<unsigned, unsigned> IndexMap_t;
163
164   StringRef Buf;
165
166   const uint8_t *base() const {
167     return reinterpret_cast<const uint8_t *>(Buf.data());
168   }
169
170   const Elf_Ehdr *Header;
171   const Elf_Shdr *SectionHeaderTable = nullptr;
172   StringRef DotShstrtab;                    // Section header string table.
173   StringRef DotStrtab;                      // Symbol header string table.
174   const Elf_Shdr *dot_symtab_sec = nullptr; // Symbol table section.
175   const Elf_Shdr *DotDynSymSec = nullptr;   // Dynamic symbol table section.
176   const Elf_Hash *HashTable = nullptr;
177
178   const Elf_Shdr *SymbolTableSectionHeaderIndex = nullptr;
179   DenseMap<const Elf_Sym *, ELF::Elf64_Word> ExtendedSymbolTable;
180
181   const Elf_Shdr *dot_gnu_version_sec = nullptr;   // .gnu.version
182   const Elf_Shdr *dot_gnu_version_r_sec = nullptr; // .gnu.version_r
183   const Elf_Shdr *dot_gnu_version_d_sec = nullptr; // .gnu.version_d
184
185   /// \brief Represents a region described by entries in the .dynamic table.
186   struct DynRegionInfo {
187     DynRegionInfo() : Addr(nullptr), Size(0), EntSize(0) {}
188     /// \brief Address in current address space.
189     const void *Addr;
190     /// \brief Size in bytes of the region.
191     uintX_t Size;
192     /// \brief Size of each entity in the region.
193     uintX_t EntSize;
194   };
195
196   DynRegionInfo DynamicRegion;
197   DynRegionInfo DynStrRegion;
198   DynRegionInfo DynRelaRegion;
199
200   // SONAME entry in dynamic string table
201   StringRef DTSoname;
202
203   // Records for each version index the corresponding Verdef or Vernaux entry.
204   // This is filled the first time LoadVersionMap() is called.
205   class VersionMapEntry : public PointerIntPair<const void*, 1> {
206     public:
207     // If the integer is 0, this is an Elf_Verdef*.
208     // If the integer is 1, this is an Elf_Vernaux*.
209     VersionMapEntry() : PointerIntPair<const void*, 1>(nullptr, 0) { }
210     VersionMapEntry(const Elf_Verdef *verdef)
211         : PointerIntPair<const void*, 1>(verdef, 0) { }
212     VersionMapEntry(const Elf_Vernaux *vernaux)
213         : PointerIntPair<const void*, 1>(vernaux, 1) { }
214     bool isNull() const { return getPointer() == nullptr; }
215     bool isVerdef() const { return !isNull() && getInt() == 0; }
216     bool isVernaux() const { return !isNull() && getInt() == 1; }
217     const Elf_Verdef *getVerdef() const {
218       return isVerdef() ? (const Elf_Verdef*)getPointer() : nullptr;
219     }
220     const Elf_Vernaux *getVernaux() const {
221       return isVernaux() ? (const Elf_Vernaux*)getPointer() : nullptr;
222     }
223   };
224   mutable SmallVector<VersionMapEntry, 16> VersionMap;
225   void LoadVersionDefs(const Elf_Shdr *sec) const;
226   void LoadVersionNeeds(const Elf_Shdr *ec) const;
227   void LoadVersionMap() const;
228
229   void scanDynamicTable();
230
231 public:
232   template<typename T>
233   const T        *getEntry(uint32_t Section, uint32_t Entry) const;
234   template <typename T>
235   const T *getEntry(const Elf_Shdr *Section, uint32_t Entry) const;
236
237   const Elf_Shdr *getDotSymtabSec() const { return dot_symtab_sec; }
238   const Elf_Shdr *getDotDynSymSec() const { return DotDynSymSec; }
239   const Elf_Hash *getHashTable() const { return HashTable; }
240   StringRef getDynamicStringTable() const {
241     return StringRef((const char *)DynStrRegion.Addr, DynStrRegion.Size);
242   }
243
244   ErrorOr<StringRef> getStringTable(const Elf_Shdr *Section) const;
245   ErrorOr<StringRef> getStringTableForSymtab(const Elf_Shdr &Section) const;
246
247   const char *getDynamicString(uintX_t Offset) const;
248   ErrorOr<StringRef> getSymbolVersion(const Elf_Shdr *section,
249                                       const Elf_Sym *Symb,
250                                       bool &IsDefault) const;
251   void VerifyStrTab(const Elf_Shdr *sh) const;
252
253   StringRef getRelocationTypeName(uint32_t Type) const;
254   void getRelocationTypeName(uint32_t Type,
255                              SmallVectorImpl<char> &Result) const;
256
257   /// \brief Get the symbol table section and symbol for a given relocation.
258   template <class RelT>
259   std::pair<const Elf_Shdr *, const Elf_Sym *>
260   getRelocationSymbol(const Elf_Shdr *RelSec, const RelT *Rel) const;
261
262   ELFFile(StringRef Object, std::error_code &EC);
263
264   bool isMipsELF64() const {
265     return Header->e_machine == ELF::EM_MIPS &&
266       Header->getFileClass() == ELF::ELFCLASS64;
267   }
268
269   bool isMips64EL() const {
270     return Header->e_machine == ELF::EM_MIPS &&
271       Header->getFileClass() == ELF::ELFCLASS64 &&
272       Header->getDataEncoding() == ELF::ELFDATA2LSB;
273   }
274
275   const Elf_Shdr *section_begin() const;
276   const Elf_Shdr *section_end() const;
277   Elf_Shdr_Range sections() const {
278     return make_range(section_begin(), section_end());
279   }
280
281   const Elf_Sym *symbol_begin() const;
282   const Elf_Sym *symbol_end() const;
283   Elf_Sym_Range symbols() const {
284     return make_range(symbol_begin(), symbol_end());
285   }
286
287   const Elf_Dyn *dynamic_table_begin() const;
288   const Elf_Dyn *dynamic_table_end() const;
289   Elf_Dyn_Range dynamic_table() const {
290     return make_range(dynamic_table_begin(), dynamic_table_end());
291   }
292
293   const Elf_Sym *dynamic_symbol_begin() const {
294     if (!DotDynSymSec)
295       return nullptr;
296     if (DotDynSymSec->sh_entsize != sizeof(Elf_Sym))
297       report_fatal_error("Invalid symbol size");
298     return reinterpret_cast<const Elf_Sym *>(base() + DotDynSymSec->sh_offset);
299   }
300
301   const Elf_Sym *dynamic_symbol_end() const {
302     if (!DotDynSymSec)
303       return nullptr;
304     return reinterpret_cast<const Elf_Sym *>(base() + DotDynSymSec->sh_offset +
305                                              DotDynSymSec->sh_size);
306   }
307
308   Elf_Sym_Range dynamic_symbols() const {
309     return make_range(dynamic_symbol_begin(), dynamic_symbol_end());
310   }
311
312   const Elf_Rela *dyn_rela_begin() const {
313     if (DynRelaRegion.Size && DynRelaRegion.EntSize != sizeof(Elf_Rela))
314       report_fatal_error("Invalid relocation entry size");
315     return reinterpret_cast<const Elf_Rela *>(DynRelaRegion.Addr);
316   }
317
318   const Elf_Rela *dyn_rela_end() const {
319     uint64_t Size = DynRelaRegion.Size;
320     if (Size % sizeof(Elf_Rela))
321       report_fatal_error("Invalid relocation table size");
322     return dyn_rela_begin() + Size / sizeof(Elf_Rela);
323   }
324
325   typedef iterator_range<const Elf_Rela *> Elf_Rela_Range;
326
327   Elf_Rela_Range dyn_relas() const {
328     return make_range(dyn_rela_begin(), dyn_rela_end());
329   }
330
331   const Elf_Rela *rela_begin(const Elf_Shdr *sec) const {
332     if (sec->sh_entsize != sizeof(Elf_Rela))
333       report_fatal_error("Invalid relocation entry size");
334     return reinterpret_cast<const Elf_Rela *>(base() + sec->sh_offset);
335   }
336
337   const Elf_Rela *rela_end(const Elf_Shdr *sec) const {
338     uint64_t Size = sec->sh_size;
339     if (Size % sizeof(Elf_Rela))
340       report_fatal_error("Invalid relocation table size");
341     return rela_begin(sec) + Size / sizeof(Elf_Rela);
342   }
343
344   Elf_Rela_Range relas(const Elf_Shdr *Sec) const {
345     return make_range(rela_begin(Sec), rela_end(Sec));
346   }
347
348   const Elf_Rel *rel_begin(const Elf_Shdr *sec) const {
349     if (sec->sh_entsize != sizeof(Elf_Rel))
350       report_fatal_error("Invalid relocation entry size");
351     return reinterpret_cast<const Elf_Rel *>(base() + sec->sh_offset);
352   }
353
354   const Elf_Rel *rel_end(const Elf_Shdr *sec) const {
355     uint64_t Size = sec->sh_size;
356     if (Size % sizeof(Elf_Rel))
357       report_fatal_error("Invalid relocation table size");
358     return rel_begin(sec) + Size / sizeof(Elf_Rel);
359   }
360
361   typedef iterator_range<const Elf_Rel *> Elf_Rel_Range;
362   Elf_Rel_Range rels(const Elf_Shdr *Sec) const {
363     return make_range(rel_begin(Sec), rel_end(Sec));
364   }
365
366   /// \brief Iterate over program header table.
367   const Elf_Phdr *program_header_begin() const {
368     if (Header->e_phnum && Header->e_phentsize != sizeof(Elf_Phdr))
369       report_fatal_error("Invalid program header size");
370     return reinterpret_cast<const Elf_Phdr *>(base() + Header->e_phoff);
371   }
372
373   const Elf_Phdr *program_header_end() const {
374     return program_header_begin() + Header->e_phnum;
375   }
376
377   typedef iterator_range<const Elf_Phdr *> Elf_Phdr_Range;
378
379   const Elf_Phdr_Range program_headers() const {
380     return make_range(program_header_begin(), program_header_end());
381   }
382
383   uint64_t getNumSections() const;
384   uintX_t getStringTableIndex() const;
385   ELF::Elf64_Word getExtendedSymbolTableIndex(const Elf_Sym *symb) const;
386   const Elf_Ehdr *getHeader() const { return Header; }
387   ErrorOr<const Elf_Shdr *> getSection(const Elf_Sym *symb) const;
388   ErrorOr<const Elf_Shdr *> getSection(uint32_t Index) const;
389   const Elf_Sym *getSymbol(uint32_t index) const;
390
391   ErrorOr<StringRef> getSectionName(const Elf_Shdr *Section) const;
392   ErrorOr<ArrayRef<uint8_t> > getSectionContents(const Elf_Shdr *Sec) const;
393   StringRef getLoadName() const;
394 };
395
396 typedef ELFFile<ELFType<support::little, false>> ELF32LEFile;
397 typedef ELFFile<ELFType<support::little, true>> ELF64LEFile;
398 typedef ELFFile<ELFType<support::big, false>> ELF32BEFile;
399 typedef ELFFile<ELFType<support::big, true>> ELF64BEFile;
400
401 // Iterate through the version definitions, and place each Elf_Verdef
402 // in the VersionMap according to its index.
403 template <class ELFT>
404 void ELFFile<ELFT>::LoadVersionDefs(const Elf_Shdr *sec) const {
405   unsigned vd_size = sec->sh_size;  // Size of section in bytes
406   unsigned vd_count = sec->sh_info; // Number of Verdef entries
407   const char *sec_start = (const char*)base() + sec->sh_offset;
408   const char *sec_end = sec_start + vd_size;
409   // The first Verdef entry is at the start of the section.
410   const char *p = sec_start;
411   for (unsigned i = 0; i < vd_count; i++) {
412     if (p + sizeof(Elf_Verdef) > sec_end)
413       report_fatal_error("Section ended unexpectedly while scanning "
414                          "version definitions.");
415     const Elf_Verdef *vd = reinterpret_cast<const Elf_Verdef *>(p);
416     if (vd->vd_version != ELF::VER_DEF_CURRENT)
417       report_fatal_error("Unexpected verdef version");
418     size_t index = vd->vd_ndx & ELF::VERSYM_VERSION;
419     if (index >= VersionMap.size())
420       VersionMap.resize(index + 1);
421     VersionMap[index] = VersionMapEntry(vd);
422     p += vd->vd_next;
423   }
424 }
425
426 // Iterate through the versions needed section, and place each Elf_Vernaux
427 // in the VersionMap according to its index.
428 template <class ELFT>
429 void ELFFile<ELFT>::LoadVersionNeeds(const Elf_Shdr *sec) const {
430   unsigned vn_size = sec->sh_size;  // Size of section in bytes
431   unsigned vn_count = sec->sh_info; // Number of Verneed entries
432   const char *sec_start = (const char *)base() + sec->sh_offset;
433   const char *sec_end = sec_start + vn_size;
434   // The first Verneed entry is at the start of the section.
435   const char *p = sec_start;
436   for (unsigned i = 0; i < vn_count; i++) {
437     if (p + sizeof(Elf_Verneed) > sec_end)
438       report_fatal_error("Section ended unexpectedly while scanning "
439                          "version needed records.");
440     const Elf_Verneed *vn = reinterpret_cast<const Elf_Verneed *>(p);
441     if (vn->vn_version != ELF::VER_NEED_CURRENT)
442       report_fatal_error("Unexpected verneed version");
443     // Iterate through the Vernaux entries
444     const char *paux = p + vn->vn_aux;
445     for (unsigned j = 0; j < vn->vn_cnt; j++) {
446       if (paux + sizeof(Elf_Vernaux) > sec_end)
447         report_fatal_error("Section ended unexpected while scanning auxiliary "
448                            "version needed records.");
449       const Elf_Vernaux *vna = reinterpret_cast<const Elf_Vernaux *>(paux);
450       size_t index = vna->vna_other & ELF::VERSYM_VERSION;
451       if (index >= VersionMap.size())
452         VersionMap.resize(index + 1);
453       VersionMap[index] = VersionMapEntry(vna);
454       paux += vna->vna_next;
455     }
456     p += vn->vn_next;
457   }
458 }
459
460 template <class ELFT>
461 void ELFFile<ELFT>::LoadVersionMap() const {
462   // If there is no dynamic symtab or version table, there is nothing to do.
463   if (!DotDynSymSec || !dot_gnu_version_sec)
464     return;
465
466   // Has the VersionMap already been loaded?
467   if (VersionMap.size() > 0)
468     return;
469
470   // The first two version indexes are reserved.
471   // Index 0 is LOCAL, index 1 is GLOBAL.
472   VersionMap.push_back(VersionMapEntry());
473   VersionMap.push_back(VersionMapEntry());
474
475   if (dot_gnu_version_d_sec)
476     LoadVersionDefs(dot_gnu_version_d_sec);
477
478   if (dot_gnu_version_r_sec)
479     LoadVersionNeeds(dot_gnu_version_r_sec);
480 }
481
482 template <class ELFT>
483 ELF::Elf64_Word
484 ELFFile<ELFT>::getExtendedSymbolTableIndex(const Elf_Sym *symb) const {
485   assert(symb->st_shndx == ELF::SHN_XINDEX);
486   return ExtendedSymbolTable.lookup(symb);
487 }
488
489 template <class ELFT>
490 ErrorOr<const typename ELFFile<ELFT>::Elf_Shdr *>
491 ELFFile<ELFT>::getSection(const Elf_Sym *symb) const {
492   uint32_t Index = symb->st_shndx;
493   if (Index == ELF::SHN_XINDEX)
494     return getSection(ExtendedSymbolTable.lookup(symb));
495   if (Index == ELF::SHN_UNDEF || Index >= ELF::SHN_LORESERVE)
496     return nullptr;
497   return getSection(symb->st_shndx);
498 }
499
500 template <class ELFT>
501 const typename ELFFile<ELFT>::Elf_Sym *
502 ELFFile<ELFT>::getSymbol(uint32_t Index) const {
503   return &*(symbol_begin() + Index);
504 }
505
506 template <class ELFT>
507 ErrorOr<ArrayRef<uint8_t> >
508 ELFFile<ELFT>::getSectionContents(const Elf_Shdr *Sec) const {
509   if (Sec->sh_offset + Sec->sh_size > Buf.size())
510     return object_error::parse_failed;
511   const uint8_t *Start = base() + Sec->sh_offset;
512   return makeArrayRef(Start, Sec->sh_size);
513 }
514
515 template <class ELFT>
516 StringRef ELFFile<ELFT>::getRelocationTypeName(uint32_t Type) const {
517   return getELFRelocationTypeName(Header->e_machine, Type);
518 }
519
520 template <class ELFT>
521 void ELFFile<ELFT>::getRelocationTypeName(uint32_t Type,
522                                           SmallVectorImpl<char> &Result) const {
523   if (!isMipsELF64()) {
524     StringRef Name = getRelocationTypeName(Type);
525     Result.append(Name.begin(), Name.end());
526   } else {
527     // The Mips N64 ABI allows up to three operations to be specified per
528     // relocation record. Unfortunately there's no easy way to test for the
529     // presence of N64 ELFs as they have no special flag that identifies them
530     // as being N64. We can safely assume at the moment that all Mips
531     // ELFCLASS64 ELFs are N64. New Mips64 ABIs should provide enough
532     // information to disambiguate between old vs new ABIs.
533     uint8_t Type1 = (Type >> 0) & 0xFF;
534     uint8_t Type2 = (Type >> 8) & 0xFF;
535     uint8_t Type3 = (Type >> 16) & 0xFF;
536
537     // Concat all three relocation type names.
538     StringRef Name = getRelocationTypeName(Type1);
539     Result.append(Name.begin(), Name.end());
540
541     Name = getRelocationTypeName(Type2);
542     Result.append(1, '/');
543     Result.append(Name.begin(), Name.end());
544
545     Name = getRelocationTypeName(Type3);
546     Result.append(1, '/');
547     Result.append(Name.begin(), Name.end());
548   }
549 }
550
551 template <class ELFT>
552 template <class RelT>
553 std::pair<const typename ELFFile<ELFT>::Elf_Shdr *,
554           const typename ELFFile<ELFT>::Elf_Sym *>
555 ELFFile<ELFT>::getRelocationSymbol(const Elf_Shdr *Sec, const RelT *Rel) const {
556   if (!Sec->sh_link)
557     return std::make_pair(nullptr, nullptr);
558   ErrorOr<const Elf_Shdr *> SymTableOrErr = getSection(Sec->sh_link);
559   if (std::error_code EC = SymTableOrErr.getError())
560     report_fatal_error(EC.message());
561   const Elf_Shdr *SymTable = *SymTableOrErr;
562   return std::make_pair(
563       SymTable, getEntry<Elf_Sym>(SymTable, Rel->getSymbol(isMips64EL())));
564 }
565
566 template <class ELFT>
567 uint64_t ELFFile<ELFT>::getNumSections() const {
568   assert(Header && "Header not initialized!");
569   if (Header->e_shnum == ELF::SHN_UNDEF && Header->e_shoff > 0) {
570     assert(SectionHeaderTable && "SectionHeaderTable not initialized!");
571     return SectionHeaderTable->sh_size;
572   }
573   return Header->e_shnum;
574 }
575
576 template <class ELFT>
577 typename ELFFile<ELFT>::uintX_t ELFFile<ELFT>::getStringTableIndex() const {
578   if (Header->e_shnum == ELF::SHN_UNDEF) {
579     if (Header->e_shstrndx == ELF::SHN_HIRESERVE)
580       return SectionHeaderTable->sh_link;
581     if (Header->e_shstrndx >= getNumSections())
582       return 0;
583   }
584   return Header->e_shstrndx;
585 }
586
587 template <class ELFT>
588 ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC)
589     : Buf(Object) {
590   const uint64_t FileSize = Buf.size();
591
592   if (sizeof(Elf_Ehdr) > FileSize) {
593     // File too short!
594     EC = object_error::parse_failed;
595     return;
596   }
597
598   Header = reinterpret_cast<const Elf_Ehdr *>(base());
599
600   if (Header->e_shoff == 0) {
601     scanDynamicTable();
602     return;
603   }
604
605   const uint64_t SectionTableOffset = Header->e_shoff;
606
607   if (SectionTableOffset + sizeof(Elf_Shdr) > FileSize) {
608     // Section header table goes past end of file!
609     EC = object_error::parse_failed;
610     return;
611   }
612
613   // The getNumSections() call below depends on SectionHeaderTable being set.
614   SectionHeaderTable =
615     reinterpret_cast<const Elf_Shdr *>(base() + SectionTableOffset);
616   const uint64_t SectionTableSize = getNumSections() * Header->e_shentsize;
617
618   if (SectionTableOffset + SectionTableSize > FileSize) {
619     // Section table goes past end of file!
620     EC = object_error::parse_failed;
621     return;
622   }
623
624   // Scan sections for special sections.
625
626   for (const Elf_Shdr &Sec : sections()) {
627     switch (Sec.sh_type) {
628     case ELF::SHT_HASH:
629       if (HashTable) {
630         EC = object_error::parse_failed;
631         return;
632       }
633       HashTable = reinterpret_cast<const Elf_Hash *>(base() + Sec.sh_offset);
634       break;
635     case ELF::SHT_SYMTAB_SHNDX:
636       if (SymbolTableSectionHeaderIndex) {
637         // More than one .symtab_shndx!
638         EC = object_error::parse_failed;
639         return;
640       }
641       SymbolTableSectionHeaderIndex = &Sec;
642       break;
643     case ELF::SHT_SYMTAB: {
644       if (dot_symtab_sec) {
645         // More than one .symtab!
646         EC = object_error::parse_failed;
647         return;
648       }
649       dot_symtab_sec = &Sec;
650       ErrorOr<StringRef> SymtabOrErr = getStringTableForSymtab(Sec);
651       if ((EC = SymtabOrErr.getError()))
652         return;
653       DotStrtab = *SymtabOrErr;
654     } break;
655     case ELF::SHT_DYNSYM: {
656       if (DotDynSymSec) {
657         // More than one .dynsym!
658         EC = object_error::parse_failed;
659         return;
660       }
661       DotDynSymSec = &Sec;
662       break;
663     }
664     case ELF::SHT_GNU_versym:
665       if (dot_gnu_version_sec != nullptr) {
666         // More than one .gnu.version section!
667         EC = object_error::parse_failed;
668         return;
669       }
670       dot_gnu_version_sec = &Sec;
671       break;
672     case ELF::SHT_GNU_verdef:
673       if (dot_gnu_version_d_sec != nullptr) {
674         // More than one .gnu.version_d section!
675         EC = object_error::parse_failed;
676         return;
677       }
678       dot_gnu_version_d_sec = &Sec;
679       break;
680     case ELF::SHT_GNU_verneed:
681       if (dot_gnu_version_r_sec != nullptr) {
682         // More than one .gnu.version_r section!
683         EC = object_error::parse_failed;
684         return;
685       }
686       dot_gnu_version_r_sec = &Sec;
687       break;
688     }
689   }
690
691   // Get string table sections.
692   ErrorOr<const Elf_Shdr *> StrTabSecOrErr = getSection(getStringTableIndex());
693   if ((EC = StrTabSecOrErr.getError()))
694     return;
695
696   ErrorOr<StringRef> SymtabOrErr = getStringTable(*StrTabSecOrErr);
697   if ((EC = SymtabOrErr.getError()))
698     return;
699   DotShstrtab = *SymtabOrErr;
700
701   // Build symbol name side-mapping if there is one.
702   if (SymbolTableSectionHeaderIndex) {
703     const Elf_Word *ShndxTable = reinterpret_cast<const Elf_Word*>(base() +
704                                       SymbolTableSectionHeaderIndex->sh_offset);
705     for (const Elf_Sym &S : symbols()) {
706       if (*ShndxTable != ELF::SHN_UNDEF)
707         ExtendedSymbolTable[&S] = *ShndxTable;
708       ++ShndxTable;
709     }
710   }
711
712   scanDynamicTable();
713
714   EC = std::error_code();
715 }
716
717 template <class ELFT>
718 static bool compareAddr(uint64_t VAddr, const Elf_Phdr_Impl<ELFT> *Phdr) {
719   return VAddr < Phdr->p_vaddr;
720 }
721
722 template <class ELFT> void ELFFile<ELFT>::scanDynamicTable() {
723   SmallVector<const Elf_Phdr *, 4> LoadSegments;
724   for (const Elf_Phdr &Phdr : program_headers()) {
725     if (Phdr.p_type == ELF::PT_DYNAMIC) {
726       DynamicRegion.Addr = base() + Phdr.p_offset;
727       DynamicRegion.Size = Phdr.p_filesz;
728       continue;
729     }
730     if (Phdr.p_type != ELF::PT_LOAD || Phdr.p_filesz == 0)
731       continue;
732     LoadSegments.push_back(&Phdr);
733   }
734
735   auto toMappedAddr = [&](uint64_t VAddr) -> const uint8_t * {
736     const Elf_Phdr **I = std::upper_bound(
737         LoadSegments.begin(), LoadSegments.end(), VAddr, compareAddr<ELFT>);
738     if (I == LoadSegments.begin())
739       report_fatal_error("Virtual address is not in any segment");
740     --I;
741     const Elf_Phdr &Phdr = **I;
742     uint64_t Delta = VAddr - Phdr.p_vaddr;
743     if (Delta >= Phdr.p_filesz)
744       report_fatal_error("Virtual address is not in any segment");
745     return this->base() + Phdr.p_offset + Delta;
746   };
747
748   uint64_t SONameOffset = 0;
749   for (const Elf_Dyn &Dyn : dynamic_table()) {
750     switch (Dyn.d_tag) {
751     case ELF::DT_HASH:
752       if (HashTable)
753         continue;
754       HashTable =
755           reinterpret_cast<const Elf_Hash *>(toMappedAddr(Dyn.getPtr()));
756       break;
757     case ELF::DT_STRTAB:
758       if (!DynStrRegion.Addr)
759         DynStrRegion.Addr = toMappedAddr(Dyn.getPtr());
760       break;
761     case ELF::DT_STRSZ:
762       if (!DynStrRegion.Size)
763         DynStrRegion.Size = Dyn.getVal();
764       break;
765     case ELF::DT_RELA:
766       if (!DynRelaRegion.Addr)
767         DynRelaRegion.Addr = toMappedAddr(Dyn.getPtr());
768       break;
769     case ELF::DT_RELASZ:
770       DynRelaRegion.Size = Dyn.getVal();
771       break;
772     case ELF::DT_RELAENT:
773       DynRelaRegion.EntSize = Dyn.getVal();
774       break;
775     case ELF::DT_SONAME:
776       SONameOffset = Dyn.getVal();
777       break;
778     }
779   }
780   if (SONameOffset)
781     DTSoname = getDynamicString(SONameOffset);
782 }
783
784 template <class ELFT>
785 const typename ELFFile<ELFT>::Elf_Shdr *ELFFile<ELFT>::section_begin() const {
786   if (Header->e_shentsize != sizeof(Elf_Shdr))
787     report_fatal_error(
788         "Invalid section header entry size (e_shentsize) in ELF header");
789   return reinterpret_cast<const Elf_Shdr *>(base() + Header->e_shoff);
790 }
791
792 template <class ELFT>
793 const typename ELFFile<ELFT>::Elf_Shdr *ELFFile<ELFT>::section_end() const {
794   return section_begin() + getNumSections();
795 }
796
797 template <class ELFT>
798 const typename ELFFile<ELFT>::Elf_Sym *ELFFile<ELFT>::symbol_begin() const {
799   if (!dot_symtab_sec)
800     return nullptr;
801   if (dot_symtab_sec->sh_entsize != sizeof(Elf_Sym))
802     report_fatal_error("Invalid symbol size");
803   return reinterpret_cast<const Elf_Sym *>(base() + dot_symtab_sec->sh_offset);
804 }
805
806 template <class ELFT>
807 const typename ELFFile<ELFT>::Elf_Sym *ELFFile<ELFT>::symbol_end() const {
808   if (!dot_symtab_sec)
809     return nullptr;
810   return reinterpret_cast<const Elf_Sym *>(base() + dot_symtab_sec->sh_offset +
811                                            dot_symtab_sec->sh_size);
812 }
813
814 template <class ELFT>
815 const typename ELFFile<ELFT>::Elf_Dyn *
816 ELFFile<ELFT>::dynamic_table_begin() const {
817   return reinterpret_cast<const Elf_Dyn *>(DynamicRegion.Addr);
818 }
819
820 template <class ELFT>
821 const typename ELFFile<ELFT>::Elf_Dyn *
822 ELFFile<ELFT>::dynamic_table_end() const {
823   uint64_t Size = DynamicRegion.Size;
824   if (Size % sizeof(Elf_Dyn))
825     report_fatal_error("Invalid dynamic table size");
826
827   return dynamic_table_begin() + Size / sizeof(Elf_Dyn);
828 }
829
830 template <class ELFT>
831 StringRef ELFFile<ELFT>::getLoadName() const {
832   return DTSoname;
833 }
834
835 template <class ELFT>
836 template <typename T>
837 const T *ELFFile<ELFT>::getEntry(uint32_t Section, uint32_t Entry) const {
838   ErrorOr<const Elf_Shdr *> Sec = getSection(Section);
839   if (std::error_code EC = Sec.getError())
840     report_fatal_error(EC.message());
841   return getEntry<T>(*Sec, Entry);
842 }
843
844 template <class ELFT>
845 template <typename T>
846 const T *ELFFile<ELFT>::getEntry(const Elf_Shdr *Section,
847                                  uint32_t Entry) const {
848   return reinterpret_cast<const T *>(base() + Section->sh_offset +
849                                      (Entry * Section->sh_entsize));
850 }
851
852 template <class ELFT>
853 ErrorOr<const typename ELFFile<ELFT>::Elf_Shdr *>
854 ELFFile<ELFT>::getSection(uint32_t Index) const {
855   assert(SectionHeaderTable && "SectionHeaderTable not initialized!");
856   if (Index >= getNumSections())
857     return object_error::invalid_section_index;
858
859   return reinterpret_cast<const Elf_Shdr *>(
860       reinterpret_cast<const char *>(SectionHeaderTable) +
861       (Index * Header->e_shentsize));
862 }
863
864 template <class ELFT>
865 ErrorOr<StringRef>
866 ELFFile<ELFT>::getStringTable(const Elf_Shdr *Section) const {
867   if (Section->sh_type != ELF::SHT_STRTAB)
868     return object_error::parse_failed;
869   uint64_t Offset = Section->sh_offset;
870   uint64_t Size = Section->sh_size;
871   if (Offset + Size > Buf.size())
872     return object_error::parse_failed;
873   StringRef Data((const char *)base() + Section->sh_offset, Size);
874   if (Data[Size - 1] != '\0')
875     return object_error::string_table_non_null_end;
876   return Data;
877 }
878
879 template <class ELFT>
880 ErrorOr<StringRef>
881 ELFFile<ELFT>::getStringTableForSymtab(const Elf_Shdr &Sec) const {
882   if (Sec.sh_type != ELF::SHT_SYMTAB && Sec.sh_type != ELF::SHT_DYNSYM)
883     return object_error::parse_failed;
884   ErrorOr<const Elf_Shdr *> SectionOrErr = getSection(Sec.sh_link);
885   if (std::error_code EC = SectionOrErr.getError())
886     return EC;
887   return getStringTable(*SectionOrErr);
888 }
889
890 template <class ELFT>
891 const char *ELFFile<ELFT>::getDynamicString(uintX_t Offset) const {
892   if (Offset >= DynStrRegion.Size)
893     return nullptr;
894   return (const char *)DynStrRegion.Addr + Offset;
895 }
896
897 template <class ELFT>
898 ErrorOr<StringRef>
899 ELFFile<ELFT>::getSectionName(const Elf_Shdr *Section) const {
900   uint32_t Offset = Section->sh_name;
901   if (Offset >= DotShstrtab.size())
902     return object_error::parse_failed;
903   return StringRef(DotShstrtab.data() + Offset);
904 }
905
906 template <class ELFT>
907 ErrorOr<StringRef> ELFFile<ELFT>::getSymbolVersion(const Elf_Shdr *section,
908                                                    const Elf_Sym *symb,
909                                                    bool &IsDefault) const {
910   StringRef StrTab;
911   if (section) {
912     ErrorOr<StringRef> StrTabOrErr = getStringTable(section);
913     if (std::error_code EC = StrTabOrErr.getError())
914       return EC;
915     StrTab = *StrTabOrErr;
916   }
917   // Handle non-dynamic symbols.
918   if (section != DotDynSymSec && section != nullptr) {
919     // Non-dynamic symbols can have versions in their names
920     // A name of the form 'foo@V1' indicates version 'V1', non-default.
921     // A name of the form 'foo@@V2' indicates version 'V2', default version.
922     ErrorOr<StringRef> SymName = symb->getName(StrTab);
923     if (!SymName)
924       return SymName;
925     StringRef Name = *SymName;
926     size_t atpos = Name.find('@');
927     if (atpos == StringRef::npos) {
928       IsDefault = false;
929       return StringRef("");
930     }
931     ++atpos;
932     if (atpos < Name.size() && Name[atpos] == '@') {
933       IsDefault = true;
934       ++atpos;
935     } else {
936       IsDefault = false;
937     }
938     return Name.substr(atpos);
939   }
940
941   // This is a dynamic symbol. Look in the GNU symbol version table.
942   if (!dot_gnu_version_sec) {
943     // No version table.
944     IsDefault = false;
945     return StringRef("");
946   }
947
948   // Determine the position in the symbol table of this entry.
949   size_t entry_index =
950       (reinterpret_cast<uintptr_t>(symb) - DotDynSymSec->sh_offset -
951        reinterpret_cast<uintptr_t>(base())) /
952       sizeof(Elf_Sym);
953
954   // Get the corresponding version index entry
955   const Elf_Versym *vs = getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index);
956   size_t version_index = vs->vs_index & ELF::VERSYM_VERSION;
957
958   // Special markers for unversioned symbols.
959   if (version_index == ELF::VER_NDX_LOCAL ||
960       version_index == ELF::VER_NDX_GLOBAL) {
961     IsDefault = false;
962     return StringRef("");
963   }
964
965   // Lookup this symbol in the version table
966   LoadVersionMap();
967   if (version_index >= VersionMap.size() || VersionMap[version_index].isNull())
968     return object_error::parse_failed;
969   const VersionMapEntry &entry = VersionMap[version_index];
970
971   // Get the version name string
972   size_t name_offset;
973   if (entry.isVerdef()) {
974     // The first Verdaux entry holds the name.
975     name_offset = entry.getVerdef()->getAux()->vda_name;
976   } else {
977     name_offset = entry.getVernaux()->vna_name;
978   }
979
980   // Set IsDefault
981   if (entry.isVerdef()) {
982     IsDefault = !(vs->vs_index & ELF::VERSYM_HIDDEN);
983   } else {
984     IsDefault = false;
985   }
986
987   if (name_offset >= DynStrRegion.Size)
988     return object_error::parse_failed;
989   return StringRef(getDynamicString(name_offset));
990 }
991
992 /// This function returns the hash value for a symbol in the .dynsym section
993 /// Name of the API remains consistent as specified in the libelf
994 /// REF : http://www.sco.com/developers/gabi/latest/ch5.dynamic.html#hash
995 static inline unsigned elf_hash(StringRef &symbolName) {
996   unsigned h = 0, g;
997   for (unsigned i = 0, j = symbolName.size(); i < j; i++) {
998     h = (h << 4) + symbolName[i];
999     g = h & 0xf0000000L;
1000     if (g != 0)
1001       h ^= g >> 24;
1002     h &= ~g;
1003   }
1004   return h;
1005 }
1006 } // end namespace object
1007 } // end namespace llvm
1008
1009 #endif