blob: 3a151d3154fa3349d0fda401c61a1b62134a1479 [file] [log] [blame]
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001//===- ELFObjectFile.cpp - 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 defines the ELFObjectFile class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/SmallVector.h"
15#include "llvm/ADT/StringSwitch.h"
16#include "llvm/ADT/Triple.h"
Benjamin Kramer0fcab072011-09-08 20:52:17 +000017#include "llvm/ADT/DenseMap.h"
Michael J. Spencerb84551a2011-01-20 06:38:47 +000018#include "llvm/Object/ObjectFile.h"
19#include "llvm/Support/ELF.h"
20#include "llvm/Support/Endian.h"
21#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/MemoryBuffer.h"
23#include <limits>
24#include <utility>
25
26using namespace llvm;
27using namespace object;
28
29// Templates to choose Elf_Addr and Elf_Off depending on is64Bits.
30namespace {
31template<support::endianness target_endianness>
32struct ELFDataTypeTypedefHelperCommon {
33 typedef support::detail::packed_endian_specific_integral
34 <uint16_t, target_endianness, support::aligned> Elf_Half;
35 typedef support::detail::packed_endian_specific_integral
36 <uint32_t, target_endianness, support::aligned> Elf_Word;
37 typedef support::detail::packed_endian_specific_integral
38 <int32_t, target_endianness, support::aligned> Elf_Sword;
39 typedef support::detail::packed_endian_specific_integral
40 <uint64_t, target_endianness, support::aligned> Elf_Xword;
41 typedef support::detail::packed_endian_specific_integral
42 <int64_t, target_endianness, support::aligned> Elf_Sxword;
43};
44}
45
46namespace {
47template<support::endianness target_endianness, bool is64Bits>
48struct ELFDataTypeTypedefHelper;
49
50/// ELF 32bit types.
51template<support::endianness target_endianness>
52struct ELFDataTypeTypedefHelper<target_endianness, false>
53 : ELFDataTypeTypedefHelperCommon<target_endianness> {
54 typedef support::detail::packed_endian_specific_integral
55 <uint32_t, target_endianness, support::aligned> Elf_Addr;
56 typedef support::detail::packed_endian_specific_integral
57 <uint32_t, target_endianness, support::aligned> Elf_Off;
58};
59
60/// ELF 64bit types.
61template<support::endianness target_endianness>
62struct ELFDataTypeTypedefHelper<target_endianness, true>
63 : ELFDataTypeTypedefHelperCommon<target_endianness>{
64 typedef support::detail::packed_endian_specific_integral
65 <uint64_t, target_endianness, support::aligned> Elf_Addr;
66 typedef support::detail::packed_endian_specific_integral
67 <uint64_t, target_endianness, support::aligned> Elf_Off;
68};
69}
70
71// I really don't like doing this, but the alternative is copypasta.
72#define LLVM_ELF_IMPORT_TYPES(target_endianness, is64Bits) \
73typedef typename \
74 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Addr Elf_Addr; \
75typedef typename \
76 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Off Elf_Off; \
77typedef typename \
78 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Half Elf_Half; \
79typedef typename \
80 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Word Elf_Word; \
81typedef typename \
82 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Sword Elf_Sword; \
83typedef typename \
84 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Xword Elf_Xword; \
85typedef typename \
86 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Sxword Elf_Sxword;
87
88 // Section header.
89namespace {
90template<support::endianness target_endianness, bool is64Bits>
91struct Elf_Shdr_Base;
92
93template<support::endianness target_endianness>
94struct Elf_Shdr_Base<target_endianness, false> {
95 LLVM_ELF_IMPORT_TYPES(target_endianness, false)
96 Elf_Word sh_name; // Section name (index into string table)
97 Elf_Word sh_type; // Section type (SHT_*)
98 Elf_Word sh_flags; // Section flags (SHF_*)
99 Elf_Addr sh_addr; // Address where section is to be loaded
100 Elf_Off sh_offset; // File offset of section data, in bytes
101 Elf_Word sh_size; // Size of section, in bytes
102 Elf_Word sh_link; // Section type-specific header table index link
103 Elf_Word sh_info; // Section type-specific extra information
104 Elf_Word sh_addralign;// Section address alignment
105 Elf_Word sh_entsize; // Size of records contained within the section
106};
107
108template<support::endianness target_endianness>
109struct Elf_Shdr_Base<target_endianness, true> {
110 LLVM_ELF_IMPORT_TYPES(target_endianness, true)
111 Elf_Word sh_name; // Section name (index into string table)
112 Elf_Word sh_type; // Section type (SHT_*)
113 Elf_Xword sh_flags; // Section flags (SHF_*)
114 Elf_Addr sh_addr; // Address where section is to be loaded
115 Elf_Off sh_offset; // File offset of section data, in bytes
116 Elf_Xword sh_size; // Size of section, in bytes
117 Elf_Word sh_link; // Section type-specific header table index link
118 Elf_Word sh_info; // Section type-specific extra information
119 Elf_Xword sh_addralign;// Section address alignment
120 Elf_Xword sh_entsize; // Size of records contained within the section
121};
122
123template<support::endianness target_endianness, bool is64Bits>
124struct Elf_Shdr_Impl : Elf_Shdr_Base<target_endianness, is64Bits> {
125 using Elf_Shdr_Base<target_endianness, is64Bits>::sh_entsize;
126 using Elf_Shdr_Base<target_endianness, is64Bits>::sh_size;
127
128 /// @brief Get the number of entities this section contains if it has any.
129 unsigned getEntityCount() const {
130 if (sh_entsize == 0)
131 return 0;
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000132 return sh_size / sh_entsize;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000133 }
134};
135}
136
137namespace {
138template<support::endianness target_endianness, bool is64Bits>
139struct Elf_Sym_Base;
140
141template<support::endianness target_endianness>
142struct Elf_Sym_Base<target_endianness, false> {
143 LLVM_ELF_IMPORT_TYPES(target_endianness, false)
144 Elf_Word st_name; // Symbol name (index into string table)
145 Elf_Addr st_value; // Value or address associated with the symbol
146 Elf_Word st_size; // Size of the symbol
147 unsigned char st_info; // Symbol's type and binding attributes
148 unsigned char st_other; // Must be zero; reserved
149 Elf_Half st_shndx; // Which section (header table index) it's defined in
150};
151
152template<support::endianness target_endianness>
153struct Elf_Sym_Base<target_endianness, true> {
154 LLVM_ELF_IMPORT_TYPES(target_endianness, true)
155 Elf_Word st_name; // Symbol name (index into string table)
156 unsigned char st_info; // Symbol's type and binding attributes
157 unsigned char st_other; // Must be zero; reserved
158 Elf_Half st_shndx; // Which section (header table index) it's defined in
159 Elf_Addr st_value; // Value or address associated with the symbol
160 Elf_Xword st_size; // Size of the symbol
161};
162
163template<support::endianness target_endianness, bool is64Bits>
164struct Elf_Sym_Impl : Elf_Sym_Base<target_endianness, is64Bits> {
165 using Elf_Sym_Base<target_endianness, is64Bits>::st_info;
166
167 // These accessors and mutators correspond to the ELF32_ST_BIND,
168 // ELF32_ST_TYPE, and ELF32_ST_INFO macros defined in the ELF specification:
169 unsigned char getBinding() const { return st_info >> 4; }
170 unsigned char getType() const { return st_info & 0x0f; }
171 void setBinding(unsigned char b) { setBindingAndType(b, getType()); }
172 void setType(unsigned char t) { setBindingAndType(getBinding(), t); }
173 void setBindingAndType(unsigned char b, unsigned char t) {
174 st_info = (b << 4) + (t & 0x0f);
175 }
176};
177}
178
179namespace {
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000180template<support::endianness target_endianness, bool is64Bits, bool isRela>
181struct Elf_Rel_Base;
182
183template<support::endianness target_endianness>
184struct Elf_Rel_Base<target_endianness, false, false> {
185 LLVM_ELF_IMPORT_TYPES(target_endianness, false)
186 Elf_Addr r_offset; // Location (file byte offset, or program virtual addr)
187 Elf_Word r_info; // Symbol table index and type of relocation to apply
188};
189
190template<support::endianness target_endianness>
191struct Elf_Rel_Base<target_endianness, true, false> {
192 LLVM_ELF_IMPORT_TYPES(target_endianness, true)
193 Elf_Addr r_offset; // Location (file byte offset, or program virtual addr)
194 Elf_Xword r_info; // Symbol table index and type of relocation to apply
195};
196
197template<support::endianness target_endianness>
198struct Elf_Rel_Base<target_endianness, false, true> {
199 LLVM_ELF_IMPORT_TYPES(target_endianness, false)
200 Elf_Addr r_offset; // Location (file byte offset, or program virtual addr)
201 Elf_Word r_info; // Symbol table index and type of relocation to apply
202 Elf_Sword r_addend; // Compute value for relocatable field by adding this
203};
204
205template<support::endianness target_endianness>
206struct Elf_Rel_Base<target_endianness, true, true> {
207 LLVM_ELF_IMPORT_TYPES(target_endianness, true)
208 Elf_Addr r_offset; // Location (file byte offset, or program virtual addr)
209 Elf_Xword r_info; // Symbol table index and type of relocation to apply
210 Elf_Sxword r_addend; // Compute value for relocatable field by adding this.
211};
212
213template<support::endianness target_endianness, bool is64Bits, bool isRela>
214struct Elf_Rel_Impl;
215
216template<support::endianness target_endianness, bool isRela>
217struct Elf_Rel_Impl<target_endianness, true, isRela>
218 : Elf_Rel_Base<target_endianness, true, isRela> {
219 using Elf_Rel_Base<target_endianness, true, isRela>::r_info;
220 LLVM_ELF_IMPORT_TYPES(target_endianness, true)
221
222 // These accessors and mutators correspond to the ELF64_R_SYM, ELF64_R_TYPE,
223 // and ELF64_R_INFO macros defined in the ELF specification:
224 uint64_t getSymbol() const { return (r_info >> 32); }
225 unsigned char getType() const {
226 return (unsigned char) (r_info & 0xffffffffL);
227 }
228 void setSymbol(uint64_t s) { setSymbolAndType(s, getType()); }
229 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
230 void setSymbolAndType(uint64_t s, unsigned char t) {
231 r_info = (s << 32) + (t&0xffffffffL);
232 }
233};
234
235template<support::endianness target_endianness, bool isRela>
236struct Elf_Rel_Impl<target_endianness, false, isRela>
237 : Elf_Rel_Base<target_endianness, false, isRela> {
238 using Elf_Rel_Base<target_endianness, false, isRela>::r_info;
239 LLVM_ELF_IMPORT_TYPES(target_endianness, false)
240
241 // These accessors and mutators correspond to the ELF32_R_SYM, ELF32_R_TYPE,
242 // and ELF32_R_INFO macros defined in the ELF specification:
243 uint32_t getSymbol() const { return (r_info >> 8); }
244 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
245 void setSymbol(uint32_t s) { setSymbolAndType(s, getType()); }
246 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); }
247 void setSymbolAndType(uint32_t s, unsigned char t) {
248 r_info = (s << 8) + t;
249 }
250};
251
252}
253
254namespace {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000255template<support::endianness target_endianness, bool is64Bits>
256class ELFObjectFile : public ObjectFile {
257 LLVM_ELF_IMPORT_TYPES(target_endianness, is64Bits)
258
259 typedef Elf_Shdr_Impl<target_endianness, is64Bits> Elf_Shdr;
260 typedef Elf_Sym_Impl<target_endianness, is64Bits> Elf_Sym;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000261 typedef Elf_Rel_Impl<target_endianness, is64Bits, false> Elf_Rel;
262 typedef Elf_Rel_Impl<target_endianness, is64Bits, true> Elf_Rela;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000263
264 struct Elf_Ehdr {
265 unsigned char e_ident[ELF::EI_NIDENT]; // ELF Identification bytes
266 Elf_Half e_type; // Type of file (see ET_*)
267 Elf_Half e_machine; // Required architecture for this file (see EM_*)
268 Elf_Word e_version; // Must be equal to 1
269 Elf_Addr e_entry; // Address to jump to in order to start program
270 Elf_Off e_phoff; // Program header table's file offset, in bytes
271 Elf_Off e_shoff; // Section header table's file offset, in bytes
272 Elf_Word e_flags; // Processor-specific flags
273 Elf_Half e_ehsize; // Size of ELF header, in bytes
274 Elf_Half e_phentsize;// Size of an entry in the program header table
275 Elf_Half e_phnum; // Number of entries in the program header table
276 Elf_Half e_shentsize;// Size of an entry in the section header table
277 Elf_Half e_shnum; // Number of entries in the section header table
278 Elf_Half e_shstrndx; // Section header table index of section name
279 // string table
280 bool checkMagic() const {
281 return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
282 }
283 unsigned char getFileClass() const { return e_ident[ELF::EI_CLASS]; }
284 unsigned char getDataEncoding() const { return e_ident[ELF::EI_DATA]; }
285 };
286
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000287 typedef SmallVector<const Elf_Shdr*, 1> Sections_t;
288 typedef DenseMap<unsigned, unsigned> IndexMap_t;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000289
290 const Elf_Ehdr *Header;
291 const Elf_Shdr *SectionHeaderTable;
292 const Elf_Shdr *dot_shstrtab_sec; // Section header string table.
293 const Elf_Shdr *dot_strtab_sec; // Symbol header string table.
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000294 Sections_t SymbolTableSections;
295 IndexMap_t SymbolTableSectionsIndexMap;
Bill Wendlinga48ad132011-10-07 18:25:37 +0000296 Sections_t RelocationTableSections;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000297
298 void validateSymbol(DataRefImpl Symb) const;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000299 bool isRelocationHasAddend(DataRefImpl Rel) const;
300 template<typename T>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000301 const T *getEntry(DataRefImpl Entry, Sections_t Sections) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000302 const Elf_Sym *getSymbol(DataRefImpl Symb) const;
303 const Elf_Shdr *getSection(DataRefImpl index) const;
304 const Elf_Shdr *getSection(uint16_t index) const;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000305 const Elf_Rel *getRel(DataRefImpl Rel) const;
306 const Elf_Rela *getRela(DataRefImpl Rela) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000307 const char *getString(uint16_t section, uint32_t offset) const;
308 const char *getString(const Elf_Shdr *section, uint32_t offset) const;
309
310protected:
Michael J. Spencer25b15772011-06-25 17:55:23 +0000311 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
312 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000313 virtual error_code getSymbolOffset(DataRefImpl Symb, uint64_t &Res) const;
Michael J. Spencer25b15772011-06-25 17:55:23 +0000314 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
315 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
316 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
317 virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const;
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000318 virtual error_code isSymbolGlobal(DataRefImpl Symb, bool &Res) const;
319 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::SymbolType &Res) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000320
Michael J. Spencer25b15772011-06-25 17:55:23 +0000321 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
322 virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
323 virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
324 virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
325 virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
326 virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
Michael J. Spencer13afc5e2011-09-28 20:57:30 +0000327 virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
328 virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const;
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000329 virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
330 bool &Result) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000331
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000332 virtual error_code getRelocationNext(DataRefImpl Rel,
333 RelocationRef &Res) const;
334 virtual error_code getRelocationAddress(DataRefImpl Rel,
335 uint64_t &Res) const;
336 virtual error_code getRelocationSymbol(DataRefImpl Rel,
337 SymbolRef &Res) const;
338 virtual error_code getRelocationType(DataRefImpl Rel,
339 uint32_t &Res) const;
340 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
341 int64_t &Res) const;
342
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000343public:
Michael J. Spencer001c9202011-06-25 17:54:50 +0000344 ELFObjectFile(MemoryBuffer *Object, error_code &ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000345 virtual symbol_iterator begin_symbols() const;
346 virtual symbol_iterator end_symbols() const;
347 virtual section_iterator begin_sections() const;
348 virtual section_iterator end_sections() const;
Bill Wendlinga48ad132011-10-07 18:25:37 +0000349 virtual relocation_iterator begin_relocations() const;
350 virtual relocation_iterator end_relocations() const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000351
352 virtual uint8_t getBytesInAddress() const;
353 virtual StringRef getFileFormatName() const;
354 virtual unsigned getArch() const;
355};
356} // end namespace
357
358template<support::endianness target_endianness, bool is64Bits>
359void ELFObjectFile<target_endianness, is64Bits>
360 ::validateSymbol(DataRefImpl Symb) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000361 const Elf_Sym *symb = getSymbol(Symb);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000362 const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000363 // FIXME: We really need to do proper error handling in the case of an invalid
364 // input file. Because we don't use exceptions, I think we'll just pass
365 // an error object around.
366 if (!( symb
367 && SymbolTableSection
Michael J. Spencer001c9202011-06-25 17:54:50 +0000368 && symb >= (const Elf_Sym*)(base()
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000369 + SymbolTableSection->sh_offset)
Michael J. Spencer001c9202011-06-25 17:54:50 +0000370 && symb < (const Elf_Sym*)(base()
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000371 + SymbolTableSection->sh_offset
372 + SymbolTableSection->sh_size)))
373 // FIXME: Proper error handling.
374 report_fatal_error("Symb must point to a valid symbol!");
375}
376
377template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000378error_code ELFObjectFile<target_endianness, is64Bits>
379 ::getSymbolNext(DataRefImpl Symb,
380 SymbolRef &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000381 validateSymbol(Symb);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000382 const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000383
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000384 ++Symb.d.a;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000385 // Check to see if we are at the end of this symbol table.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000386 if (Symb.d.a >= SymbolTableSection->getEntityCount()) {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000387 // We are at the end. If there are other symbol tables, jump to them.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000388 ++Symb.d.b;
389 Symb.d.a = 1; // The 0th symbol in ELF is fake.
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000390 // Otherwise return the terminator.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000391 if (Symb.d.b >= SymbolTableSections.size()) {
392 Symb.d.a = std::numeric_limits<uint32_t>::max();
393 Symb.d.b = std::numeric_limits<uint32_t>::max();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000394 }
395 }
396
Michael J. Spencer25b15772011-06-25 17:55:23 +0000397 Result = SymbolRef(Symb, this);
398 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000399}
400
401template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000402error_code ELFObjectFile<target_endianness, is64Bits>
403 ::getSymbolName(DataRefImpl Symb,
404 StringRef &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000405 validateSymbol(Symb);
406 const Elf_Sym *symb = getSymbol(Symb);
Bill Wendlinga48ad132011-10-07 18:25:37 +0000407 if (symb->st_name == 0) {
408 const Elf_Shdr *section = getSection(symb->st_shndx);
409 if (!section)
410 Result = "";
411 else
412 Result = getString(dot_shstrtab_sec, section->sh_name);
413 return object_error::success;
414 }
415
416 // Use the default symbol table name section.
417 Result = getString(dot_strtab_sec, symb->st_name);
418 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000419}
420
421template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000422error_code ELFObjectFile<target_endianness, is64Bits>
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000423 ::getSymbolOffset(DataRefImpl Symb,
Michael J. Spencer25b15772011-06-25 17:55:23 +0000424 uint64_t &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000425 validateSymbol(Symb);
426 const Elf_Sym *symb = getSymbol(Symb);
427 const Elf_Shdr *Section;
428 switch (symb->st_shndx) {
429 case ELF::SHN_COMMON:
430 // Undefined symbols have no address yet.
Michael J. Spencer25b15772011-06-25 17:55:23 +0000431 case ELF::SHN_UNDEF:
432 Result = UnknownAddressOrSize;
433 return object_error::success;
434 case ELF::SHN_ABS:
435 Result = symb->st_value;
436 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000437 default: Section = getSection(symb->st_shndx);
438 }
439
440 switch (symb->getType()) {
Michael J. Spencer25b15772011-06-25 17:55:23 +0000441 case ELF::STT_SECTION:
442 Result = Section ? Section->sh_addr : UnknownAddressOrSize;
443 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000444 case ELF::STT_FUNC:
445 case ELF::STT_OBJECT:
446 case ELF::STT_NOTYPE:
Michael J. Spencer25b15772011-06-25 17:55:23 +0000447 Result = symb->st_value;
448 return object_error::success;
449 default:
450 Result = UnknownAddressOrSize;
451 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000452 }
453}
454
455template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000456error_code ELFObjectFile<target_endianness, is64Bits>
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000457 ::getSymbolAddress(DataRefImpl Symb,
458 uint64_t &Result) const {
459 validateSymbol(Symb);
460 const Elf_Sym *symb = getSymbol(Symb);
461 const Elf_Shdr *Section;
462 switch (symb->st_shndx) {
463 case ELF::SHN_COMMON: // Fall through.
464 // Undefined symbols have no address yet.
465 case ELF::SHN_UNDEF:
466 Result = UnknownAddressOrSize;
467 return object_error::success;
468 case ELF::SHN_ABS:
469 Result = reinterpret_cast<uintptr_t>(base()+symb->st_value);
470 return object_error::success;
471 default: Section = getSection(symb->st_shndx);
472 }
473 const uint8_t* addr = base();
474 if (Section)
475 addr += Section->sh_offset;
476 switch (symb->getType()) {
477 case ELF::STT_SECTION:
478 Result = reinterpret_cast<uintptr_t>(addr);
479 return object_error::success;
480 case ELF::STT_FUNC: // Fall through.
481 case ELF::STT_OBJECT: // Fall through.
482 case ELF::STT_NOTYPE:
483 addr += symb->st_value;
484 Result = reinterpret_cast<uintptr_t>(addr);
485 return object_error::success;
486 default:
487 Result = UnknownAddressOrSize;
488 return object_error::success;
489 }
490}
491
492template<support::endianness target_endianness, bool is64Bits>
493error_code ELFObjectFile<target_endianness, is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000494 ::getSymbolSize(DataRefImpl Symb,
495 uint64_t &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000496 validateSymbol(Symb);
497 const Elf_Sym *symb = getSymbol(Symb);
498 if (symb->st_size == 0)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000499 Result = UnknownAddressOrSize;
500 Result = symb->st_size;
501 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000502}
503
504template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000505error_code ELFObjectFile<target_endianness, is64Bits>
506 ::getSymbolNMTypeChar(DataRefImpl Symb,
507 char &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000508 validateSymbol(Symb);
509 const Elf_Sym *symb = getSymbol(Symb);
510 const Elf_Shdr *Section = getSection(symb->st_shndx);
511
512 char ret = '?';
513
514 if (Section) {
515 switch (Section->sh_type) {
516 case ELF::SHT_PROGBITS:
517 case ELF::SHT_DYNAMIC:
518 switch (Section->sh_flags) {
519 case (ELF::SHF_ALLOC | ELF::SHF_EXECINSTR):
520 ret = 't'; break;
521 case (ELF::SHF_ALLOC | ELF::SHF_WRITE):
522 ret = 'd'; break;
523 case ELF::SHF_ALLOC:
524 case (ELF::SHF_ALLOC | ELF::SHF_MERGE):
525 case (ELF::SHF_ALLOC | ELF::SHF_MERGE | ELF::SHF_STRINGS):
526 ret = 'r'; break;
527 }
528 break;
529 case ELF::SHT_NOBITS: ret = 'b';
530 }
531 }
532
533 switch (symb->st_shndx) {
534 case ELF::SHN_UNDEF:
535 if (ret == '?')
536 ret = 'U';
537 break;
538 case ELF::SHN_ABS: ret = 'a'; break;
539 case ELF::SHN_COMMON: ret = 'c'; break;
540 }
541
542 switch (symb->getBinding()) {
543 case ELF::STB_GLOBAL: ret = ::toupper(ret); break;
544 case ELF::STB_WEAK:
545 if (symb->st_shndx == ELF::SHN_UNDEF)
546 ret = 'w';
547 else
548 if (symb->getType() == ELF::STT_OBJECT)
549 ret = 'V';
550 else
551 ret = 'W';
552 }
553
Michael J. Spencer25b15772011-06-25 17:55:23 +0000554 if (ret == '?' && symb->getType() == ELF::STT_SECTION) {
555 StringRef name;
556 if (error_code ec = getSymbolName(Symb, name))
557 return ec;
558 Result = StringSwitch<char>(name)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000559 .StartsWith(".debug", 'N')
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000560 .StartsWith(".note", 'n')
561 .Default('?');
Michael J. Spencer25b15772011-06-25 17:55:23 +0000562 return object_error::success;
563 }
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000564
Michael J. Spencer25b15772011-06-25 17:55:23 +0000565 Result = ret;
566 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000567}
568
569template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000570error_code ELFObjectFile<target_endianness, is64Bits>
Benjamin Kramerac241fe2011-09-14 01:22:52 +0000571 ::getSymbolType(DataRefImpl Symb,
572 SymbolRef::SymbolType &Result) const {
573 validateSymbol(Symb);
574 const Elf_Sym *symb = getSymbol(Symb);
575
576 if (symb->st_shndx == ELF::SHN_UNDEF) {
577 Result = SymbolRef::ST_External;
578 return object_error::success;
579 }
580
581 switch (symb->getType()) {
582 case ELF::STT_FUNC:
583 Result = SymbolRef::ST_Function;
584 break;
585 case ELF::STT_OBJECT:
586 Result = SymbolRef::ST_Data;
587 break;
588 default:
589 Result = SymbolRef::ST_Other;
590 break;
591 }
592 return object_error::success;
593}
594
595template<support::endianness target_endianness, bool is64Bits>
596error_code ELFObjectFile<target_endianness, is64Bits>
597 ::isSymbolGlobal(DataRefImpl Symb,
598 bool &Result) const {
599 validateSymbol(Symb);
600 const Elf_Sym *symb = getSymbol(Symb);
601
602 Result = symb->getBinding() == ELF::STB_GLOBAL;
603 return object_error::success;
604}
605
606template<support::endianness target_endianness, bool is64Bits>
607error_code ELFObjectFile<target_endianness, is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000608 ::isSymbolInternal(DataRefImpl Symb,
609 bool &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000610 validateSymbol(Symb);
611 const Elf_Sym *symb = getSymbol(Symb);
612
613 if ( symb->getType() == ELF::STT_FILE
614 || symb->getType() == ELF::STT_SECTION)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000615 Result = true;
616 Result = false;
617 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000618}
619
620template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000621error_code ELFObjectFile<target_endianness, is64Bits>
622 ::getSectionNext(DataRefImpl Sec, SectionRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000623 const uint8_t *sec = reinterpret_cast<const uint8_t *>(Sec.p);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000624 sec += Header->e_shentsize;
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000625 Sec.p = reinterpret_cast<intptr_t>(sec);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000626 Result = SectionRef(Sec, this);
627 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000628}
629
630template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000631error_code ELFObjectFile<target_endianness, is64Bits>
632 ::getSectionName(DataRefImpl Sec,
633 StringRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000634 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000635 Result = StringRef(getString(dot_shstrtab_sec, sec->sh_name));
636 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000637}
638
639template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000640error_code ELFObjectFile<target_endianness, is64Bits>
641 ::getSectionAddress(DataRefImpl Sec,
642 uint64_t &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000643 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000644 Result = sec->sh_addr;
645 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000646}
647
648template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000649error_code ELFObjectFile<target_endianness, is64Bits>
650 ::getSectionSize(DataRefImpl Sec,
651 uint64_t &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000652 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000653 Result = sec->sh_size;
654 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000655}
656
657template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000658error_code ELFObjectFile<target_endianness, is64Bits>
659 ::getSectionContents(DataRefImpl Sec,
660 StringRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000661 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000662 const char *start = (const char*)base() + sec->sh_offset;
663 Result = StringRef(start, sec->sh_size);
664 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000665}
666
667template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000668error_code ELFObjectFile<target_endianness, is64Bits>
669 ::isSectionText(DataRefImpl Sec,
670 bool &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000671 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000672 if (sec->sh_flags & ELF::SHF_EXECINSTR)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000673 Result = true;
674 else
675 Result = false;
676 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000677}
678
679template<support::endianness target_endianness, bool is64Bits>
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000680error_code ELFObjectFile<target_endianness, is64Bits>
Michael J. Spencer13afc5e2011-09-28 20:57:30 +0000681 ::isSectionData(DataRefImpl Sec,
682 bool &Result) const {
683 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
684 if (sec->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE)
685 && sec->sh_type == ELF::SHT_PROGBITS)
686 Result = true;
687 else
688 Result = false;
689 return object_error::success;
690}
691
692template<support::endianness target_endianness, bool is64Bits>
693error_code ELFObjectFile<target_endianness, is64Bits>
694 ::isSectionBSS(DataRefImpl Sec,
695 bool &Result) const {
696 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
697 if (sec->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE)
698 && sec->sh_type == ELF::SHT_NOBITS)
699 Result = true;
700 else
701 Result = false;
702 return object_error::success;
703}
704
705template<support::endianness target_endianness, bool is64Bits>
706error_code ELFObjectFile<target_endianness, is64Bits>
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000707 ::sectionContainsSymbol(DataRefImpl Sec,
708 DataRefImpl Symb,
709 bool &Result) const {
710 // FIXME: Unimplemented.
711 Result = false;
712 return object_error::success;
713}
714
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000715// Relocations
716template<support::endianness target_endianness, bool is64Bits>
717error_code ELFObjectFile<target_endianness, is64Bits>
718 ::getRelocationNext(DataRefImpl Rel,
719 RelocationRef &Result) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +0000720 const Elf_Shdr *RelocationTableSection = RelocationTableSections[Rel.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000721
Bill Wendlinga48ad132011-10-07 18:25:37 +0000722 // Check to see if we are at the end of this relocation table.
723 if (++Rel.d.a >= RelocationTableSection->getEntityCount()) {
724 // We are at the end. If there are other relocation tables, jump to them.
725 Rel.d.a = 0;
726 // Otherwise return the terminator.
727 if (++Rel.d.b >= SymbolTableSections.size()) {
728 Rel.d.a = std::numeric_limits<uint32_t>::max();
729 Rel.d.b = std::numeric_limits<uint32_t>::max();
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000730 }
731 }
Bill Wendlinga48ad132011-10-07 18:25:37 +0000732
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000733 Result = RelocationRef(Rel, this);
734 return object_error::success;
735}
736
737template<support::endianness target_endianness, bool is64Bits>
738error_code ELFObjectFile<target_endianness, is64Bits>
739 ::getRelocationSymbol(DataRefImpl Rel,
740 SymbolRef &Result) const {
741 uint32_t symbolIdx;
Bill Wendlinga48ad132011-10-07 18:25:37 +0000742 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000743 switch (sec->sh_type) {
744 default :
745 report_fatal_error("Invalid section type in Rel!");
746 case ELF::SHT_REL : {
747 symbolIdx = getRel(Rel)->getSymbol();
748 break;
749 }
750 case ELF::SHT_RELA : {
751 symbolIdx = getRela(Rel)->getSymbol();
752 break;
753 }
754 }
755 DataRefImpl SymbolData;
756 IndexMap_t::const_iterator it = SymbolTableSectionsIndexMap.find(sec->sh_link);
757 if (it == SymbolTableSectionsIndexMap.end())
758 report_fatal_error("Relocation symbol table not found!");
759 SymbolData.d.a = symbolIdx;
760 SymbolData.d.b = it->second;
761 Result = SymbolRef(SymbolData, this);
762 return object_error::success;
763}
764
765template<support::endianness target_endianness, bool is64Bits>
766error_code ELFObjectFile<target_endianness, is64Bits>
767 ::getRelocationAddress(DataRefImpl Rel,
768 uint64_t &Result) const {
769 uint64_t offset;
Bill Wendlinga48ad132011-10-07 18:25:37 +0000770 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000771 switch (sec->sh_type) {
772 default :
773 report_fatal_error("Invalid section type in Rel!");
774 case ELF::SHT_REL : {
775 offset = getRel(Rel)->r_offset;
776 break;
777 }
778 case ELF::SHT_RELA : {
779 offset = getRela(Rel)->r_offset;
780 break;
781 }
782 }
783
Bill Wendlinga48ad132011-10-07 18:25:37 +0000784 const Elf_Shdr *secAddr = getSection(sec->sh_info);
785 Result = offset + reinterpret_cast<uintptr_t>(base() + secAddr->sh_offset);
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000786 return object_error::success;
787}
788
789template<support::endianness target_endianness, bool is64Bits>
790error_code ELFObjectFile<target_endianness, is64Bits>
791 ::getRelocationType(DataRefImpl Rel,
792 uint32_t &Result) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +0000793 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000794 switch (sec->sh_type) {
795 default :
796 report_fatal_error("Invalid section type in Rel!");
797 case ELF::SHT_REL : {
798 Result = getRel(Rel)->getType();
799 break;
800 }
801 case ELF::SHT_RELA : {
802 Result = getRela(Rel)->getType();
803 break;
804 }
805 }
806 return object_error::success;
807}
808
809template<support::endianness target_endianness, bool is64Bits>
810error_code ELFObjectFile<target_endianness, is64Bits>
811 ::getRelocationAdditionalInfo(DataRefImpl Rel,
812 int64_t &Result) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +0000813 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000814 switch (sec->sh_type) {
815 default :
816 report_fatal_error("Invalid section type in Rel!");
817 case ELF::SHT_REL : {
818 Result = 0;
819 return object_error::success;
820 }
821 case ELF::SHT_RELA : {
822 Result = getRela(Rel)->r_addend;
823 return object_error::success;
824 }
825 }
826}
827
Bill Wendlinga48ad132011-10-07 18:25:37 +0000828
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000829
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000830template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer001c9202011-06-25 17:54:50 +0000831ELFObjectFile<target_endianness, is64Bits>::ELFObjectFile(MemoryBuffer *Object
832 , error_code &ec)
833 : ObjectFile(Binary::isELF, Object, ec)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000834 , SectionHeaderTable(0)
835 , dot_shstrtab_sec(0)
836 , dot_strtab_sec(0) {
Michael J. Spencer001c9202011-06-25 17:54:50 +0000837 Header = reinterpret_cast<const Elf_Ehdr *>(base());
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000838
839 if (Header->e_shoff == 0)
840 return;
841
842 SectionHeaderTable =
Michael J. Spencer001c9202011-06-25 17:54:50 +0000843 reinterpret_cast<const Elf_Shdr *>(base() + Header->e_shoff);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000844 uint32_t SectionTableSize = Header->e_shnum * Header->e_shentsize;
845 if (!( (const uint8_t *)SectionHeaderTable + SectionTableSize
Michael J. Spencer001c9202011-06-25 17:54:50 +0000846 <= base() + Data->getBufferSize()))
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000847 // FIXME: Proper error handling.
848 report_fatal_error("Section table goes past end of file!");
849
850
851 // To find the symbol tables we walk the section table to find SHT_STMTAB.
Bill Wendlinga48ad132011-10-07 18:25:37 +0000852 const Elf_Shdr* sh =
853 reinterpret_cast<const Elf_Shdr*>(SectionHeaderTable);
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000854 for (unsigned i = 0; i < Header->e_shnum; ++i) {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000855 if (sh->sh_type == ELF::SHT_SYMTAB) {
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000856 SymbolTableSectionsIndexMap[i] = SymbolTableSections.size();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000857 SymbolTableSections.push_back(sh);
858 }
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000859 if (sh->sh_type == ELF::SHT_REL || sh->sh_type == ELF::SHT_RELA) {
Bill Wendlinga48ad132011-10-07 18:25:37 +0000860 RelocationTableSections.push_back(sh);
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000861 }
862 ++sh;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000863 }
864
865 // Get string table sections.
866 dot_shstrtab_sec = getSection(Header->e_shstrndx);
867 if (dot_shstrtab_sec) {
868 // Verify that the last byte in the string table in a null.
Michael J. Spencer001c9202011-06-25 17:54:50 +0000869 if (((const char*)base() + dot_shstrtab_sec->sh_offset)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000870 [dot_shstrtab_sec->sh_size - 1] != 0)
871 // FIXME: Proper error handling.
872 report_fatal_error("String table must end with a null terminator!");
873 }
874
875 // Merge this into the above loop.
876 for (const char *i = reinterpret_cast<const char *>(SectionHeaderTable),
877 *e = i + Header->e_shnum * Header->e_shentsize;
878 i != e; i += Header->e_shentsize) {
879 const Elf_Shdr *sh = reinterpret_cast<const Elf_Shdr*>(i);
880 if (sh->sh_type == ELF::SHT_STRTAB) {
881 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
882 if (SectionName == ".strtab") {
883 if (dot_strtab_sec != 0)
884 // FIXME: Proper error handling.
885 report_fatal_error("Already found section named .strtab!");
886 dot_strtab_sec = sh;
Michael J. Spencer001c9202011-06-25 17:54:50 +0000887 const char *dot_strtab = (const char*)base() + sh->sh_offset;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000888 if (dot_strtab[sh->sh_size - 1] != 0)
889 // FIXME: Proper error handling.
890 report_fatal_error("String table must end with a null terminator!");
891 }
892 }
893 }
894}
895
896template<support::endianness target_endianness, bool is64Bits>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000897ObjectFile::symbol_iterator ELFObjectFile<target_endianness, is64Bits>
898 ::begin_symbols() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000899 DataRefImpl SymbolData;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000900 memset(&SymbolData, 0, sizeof(SymbolData));
901 if (SymbolTableSections.size() == 0) {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000902 SymbolData.d.a = std::numeric_limits<uint32_t>::max();
903 SymbolData.d.b = std::numeric_limits<uint32_t>::max();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000904 } else {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000905 SymbolData.d.a = 1; // The 0th symbol in ELF is fake.
906 SymbolData.d.b = 0;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000907 }
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000908 return symbol_iterator(SymbolRef(SymbolData, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000909}
910
911template<support::endianness target_endianness, bool is64Bits>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000912ObjectFile::symbol_iterator ELFObjectFile<target_endianness, is64Bits>
913 ::end_symbols() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000914 DataRefImpl SymbolData;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000915 memset(&SymbolData, 0, sizeof(SymbolData));
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000916 SymbolData.d.a = std::numeric_limits<uint32_t>::max();
917 SymbolData.d.b = std::numeric_limits<uint32_t>::max();
918 return symbol_iterator(SymbolRef(SymbolData, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000919}
920
921template<support::endianness target_endianness, bool is64Bits>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000922ObjectFile::section_iterator ELFObjectFile<target_endianness, is64Bits>
923 ::begin_sections() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000924 DataRefImpl ret;
Eric Christopher539d8d82011-04-03 22:53:19 +0000925 memset(&ret, 0, sizeof(DataRefImpl));
Michael J. Spencer001c9202011-06-25 17:54:50 +0000926 ret.p = reinterpret_cast<intptr_t>(base() + Header->e_shoff);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000927 return section_iterator(SectionRef(ret, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000928}
929
930template<support::endianness target_endianness, bool is64Bits>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000931ObjectFile::section_iterator ELFObjectFile<target_endianness, is64Bits>
932 ::end_sections() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000933 DataRefImpl ret;
Eric Christopher539d8d82011-04-03 22:53:19 +0000934 memset(&ret, 0, sizeof(DataRefImpl));
Michael J. Spencer001c9202011-06-25 17:54:50 +0000935 ret.p = reinterpret_cast<intptr_t>(base()
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000936 + Header->e_shoff
937 + (Header->e_shentsize * Header->e_shnum));
938 return section_iterator(SectionRef(ret, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000939}
940
941template<support::endianness target_endianness, bool is64Bits>
Bill Wendlinga48ad132011-10-07 18:25:37 +0000942ObjectFile::relocation_iterator ELFObjectFile<target_endianness, is64Bits>
943 ::begin_relocations() const {
944 DataRefImpl RelData;
945 memset(&RelData, 0, sizeof(RelData));
946 if (RelocationTableSections.size() == 0) {
947 RelData.d.a = std::numeric_limits<uint32_t>::max();
948 RelData.d.b = std::numeric_limits<uint32_t>::max();
949 } else {
950 RelData.d.a = 0;
951 RelData.d.b = 0;
952 }
953 return relocation_iterator(RelocationRef(RelData, this));
954}
955
956template<support::endianness target_endianness, bool is64Bits>
957ObjectFile::relocation_iterator ELFObjectFile<target_endianness, is64Bits>
958 ::end_relocations() const {
959 DataRefImpl RelData;
960 memset(&RelData, 0, sizeof(RelData));
961 RelData.d.a = std::numeric_limits<uint32_t>::max();
962 RelData.d.b = std::numeric_limits<uint32_t>::max();
963 return relocation_iterator(RelocationRef(RelData, this));
964}
965
966template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000967uint8_t ELFObjectFile<target_endianness, is64Bits>::getBytesInAddress() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000968 return is64Bits ? 8 : 4;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000969}
970
971template<support::endianness target_endianness, bool is64Bits>
972StringRef ELFObjectFile<target_endianness, is64Bits>
973 ::getFileFormatName() const {
974 switch(Header->e_ident[ELF::EI_CLASS]) {
975 case ELF::ELFCLASS32:
976 switch(Header->e_machine) {
977 case ELF::EM_386:
978 return "ELF32-i386";
979 case ELF::EM_X86_64:
980 return "ELF32-x86-64";
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000981 case ELF::EM_ARM:
982 return "ELF32-arm";
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000983 default:
984 return "ELF32-unknown";
985 }
986 case ELF::ELFCLASS64:
987 switch(Header->e_machine) {
988 case ELF::EM_386:
989 return "ELF64-i386";
990 case ELF::EM_X86_64:
991 return "ELF64-x86-64";
992 default:
993 return "ELF64-unknown";
994 }
995 default:
996 // FIXME: Proper error handling.
997 report_fatal_error("Invalid ELFCLASS!");
998 }
999}
1000
1001template<support::endianness target_endianness, bool is64Bits>
1002unsigned ELFObjectFile<target_endianness, is64Bits>::getArch() const {
1003 switch(Header->e_machine) {
1004 case ELF::EM_386:
1005 return Triple::x86;
1006 case ELF::EM_X86_64:
1007 return Triple::x86_64;
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001008 case ELF::EM_ARM:
1009 return Triple::arm;
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001010 default:
1011 return Triple::UnknownArch;
1012 }
1013}
1014
1015template<support::endianness target_endianness, bool is64Bits>
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001016template<typename T>
1017inline const T *
Bill Wendlinga48ad132011-10-07 18:25:37 +00001018ELFObjectFile<target_endianness, is64Bits>::getEntry(DataRefImpl Entry,
1019 Sections_t Sections) const {
1020 const Elf_Shdr *sec = Sections[Entry.d.b];
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001021 return reinterpret_cast<const T *>(
Michael J. Spencer001c9202011-06-25 17:54:50 +00001022 base()
Bill Wendlinga48ad132011-10-07 18:25:37 +00001023 + sec->sh_offset
1024 + (Entry.d.a * sec->sh_entsize));
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001025}
1026
1027template<support::endianness target_endianness, bool is64Bits>
1028const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Sym *
1029ELFObjectFile<target_endianness, is64Bits>::getSymbol(DataRefImpl Symb) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +00001030 return getEntry<Elf_Sym>(Symb, SymbolTableSections);
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001031}
1032
1033template<support::endianness target_endianness, bool is64Bits>
1034const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Rel *
1035ELFObjectFile<target_endianness, is64Bits>::getRel(DataRefImpl Rel) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +00001036 return getEntry<Elf_Rel>(Rel, RelocationTableSections);
Benjamin Kramer0fcab072011-09-08 20:52:17 +00001037}
1038
1039template<support::endianness target_endianness, bool is64Bits>
1040const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Rela *
1041ELFObjectFile<target_endianness, is64Bits>::getRela(DataRefImpl Rela) const {
Bill Wendlinga48ad132011-10-07 18:25:37 +00001042 return getEntry<Elf_Rela>(Rela, RelocationTableSections);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001043}
1044
1045template<support::endianness target_endianness, bool is64Bits>
1046const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Shdr *
1047ELFObjectFile<target_endianness, is64Bits>::getSection(DataRefImpl Symb) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +00001048 const Elf_Shdr *sec = getSection(Symb.d.b);
Bill Wendlinga48ad132011-10-07 18:25:37 +00001049 if (sec->sh_type != ELF::SHT_SYMTAB)
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001050 // FIXME: Proper error handling.
1051 report_fatal_error("Invalid symbol table section!");
1052 return sec;
1053}
1054
1055template<support::endianness target_endianness, bool is64Bits>
1056const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Shdr *
1057ELFObjectFile<target_endianness, is64Bits>::getSection(uint16_t index) const {
1058 if (index == 0 || index >= ELF::SHN_LORESERVE)
1059 return 0;
1060 if (!SectionHeaderTable || index >= Header->e_shnum)
1061 // FIXME: Proper error handling.
1062 report_fatal_error("Invalid section index!");
1063
1064 return reinterpret_cast<const Elf_Shdr *>(
1065 reinterpret_cast<const char *>(SectionHeaderTable)
1066 + (index * Header->e_shentsize));
1067}
1068
1069template<support::endianness target_endianness, bool is64Bits>
1070const char *ELFObjectFile<target_endianness, is64Bits>
1071 ::getString(uint16_t section,
1072 ELF::Elf32_Word offset) const {
1073 return getString(getSection(section), offset);
1074}
1075
1076template<support::endianness target_endianness, bool is64Bits>
1077const char *ELFObjectFile<target_endianness, is64Bits>
1078 ::getString(const Elf_Shdr *section,
1079 ELF::Elf32_Word offset) const {
1080 assert(section && section->sh_type == ELF::SHT_STRTAB && "Invalid section!");
1081 if (offset >= section->sh_size)
1082 // FIXME: Proper error handling.
Michael J. Spencer001c9202011-06-25 17:54:50 +00001083 report_fatal_error("Symbol name offset outside of string table!");
1084 return (const char *)base() + section->sh_offset + offset;
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001085}
1086
1087// EI_CLASS, EI_DATA.
1088static std::pair<unsigned char, unsigned char>
1089getElfArchType(MemoryBuffer *Object) {
1090 if (Object->getBufferSize() < ELF::EI_NIDENT)
1091 return std::make_pair((uint8_t)ELF::ELFCLASSNONE,(uint8_t)ELF::ELFDATANONE);
1092 return std::make_pair( (uint8_t)Object->getBufferStart()[ELF::EI_CLASS]
1093 , (uint8_t)Object->getBufferStart()[ELF::EI_DATA]);
1094}
1095
1096namespace llvm {
1097
1098 ObjectFile *ObjectFile::createELFObjectFile(MemoryBuffer *Object) {
1099 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object);
Michael J. Spencer001c9202011-06-25 17:54:50 +00001100 error_code ec;
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001101 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001102 return new ELFObjectFile<support::little, false>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001103 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001104 return new ELFObjectFile<support::big, false>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001105 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001106 return new ELFObjectFile<support::little, true>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001107 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001108 return new ELFObjectFile<support::big, true>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001109 // FIXME: Proper error handling.
1110 report_fatal_error("Not an ELF object file!");
1111 }
1112
1113} // end namespace llvm