blob: 15e765277447c622bc0375df3d392a662202b624 [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;
296 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>
301 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;
313 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
314 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
315 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
316 virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000317
Michael J. Spencer25b15772011-06-25 17:55:23 +0000318 virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
319 virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
320 virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
321 virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
322 virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
323 virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000324 virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
325 bool &Result) const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000326
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000327 virtual error_code getRelocationNext(DataRefImpl Rel,
328 RelocationRef &Res) const;
329 virtual error_code getRelocationAddress(DataRefImpl Rel,
330 uint64_t &Res) const;
331 virtual error_code getRelocationSymbol(DataRefImpl Rel,
332 SymbolRef &Res) const;
333 virtual error_code getRelocationType(DataRefImpl Rel,
334 uint32_t &Res) const;
335 virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
336 int64_t &Res) const;
337
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000338public:
Michael J. Spencer001c9202011-06-25 17:54:50 +0000339 ELFObjectFile(MemoryBuffer *Object, error_code &ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000340 virtual symbol_iterator begin_symbols() const;
341 virtual symbol_iterator end_symbols() const;
342 virtual section_iterator begin_sections() const;
343 virtual section_iterator end_sections() const;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000344 virtual relocation_iterator begin_relocations() const;
345 virtual relocation_iterator end_relocations() const;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000346
347 virtual uint8_t getBytesInAddress() const;
348 virtual StringRef getFileFormatName() const;
349 virtual unsigned getArch() const;
350};
351} // end namespace
352
353template<support::endianness target_endianness, bool is64Bits>
354void ELFObjectFile<target_endianness, is64Bits>
355 ::validateSymbol(DataRefImpl Symb) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000356 const Elf_Sym *symb = getSymbol(Symb);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000357 const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000358 // FIXME: We really need to do proper error handling in the case of an invalid
359 // input file. Because we don't use exceptions, I think we'll just pass
360 // an error object around.
361 if (!( symb
362 && SymbolTableSection
Michael J. Spencer001c9202011-06-25 17:54:50 +0000363 && symb >= (const Elf_Sym*)(base()
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000364 + SymbolTableSection->sh_offset)
Michael J. Spencer001c9202011-06-25 17:54:50 +0000365 && symb < (const Elf_Sym*)(base()
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000366 + SymbolTableSection->sh_offset
367 + SymbolTableSection->sh_size)))
368 // FIXME: Proper error handling.
369 report_fatal_error("Symb must point to a valid symbol!");
370}
371
372template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000373error_code ELFObjectFile<target_endianness, is64Bits>
374 ::getSymbolNext(DataRefImpl Symb,
375 SymbolRef &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000376 validateSymbol(Symb);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000377 const Elf_Shdr *SymbolTableSection = SymbolTableSections[Symb.d.b];
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000378
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000379 ++Symb.d.a;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000380 // Check to see if we are at the end of this symbol table.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000381 if (Symb.d.a >= SymbolTableSection->getEntityCount()) {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000382 // We are at the end. If there are other symbol tables, jump to them.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000383 ++Symb.d.b;
384 Symb.d.a = 1; // The 0th symbol in ELF is fake.
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000385 // Otherwise return the terminator.
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000386 if (Symb.d.b >= SymbolTableSections.size()) {
387 Symb.d.a = std::numeric_limits<uint32_t>::max();
388 Symb.d.b = std::numeric_limits<uint32_t>::max();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000389 }
390 }
391
Michael J. Spencer25b15772011-06-25 17:55:23 +0000392 Result = SymbolRef(Symb, this);
393 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000394}
395
396template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000397error_code ELFObjectFile<target_endianness, is64Bits>
398 ::getSymbolName(DataRefImpl Symb,
399 StringRef &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000400 validateSymbol(Symb);
401 const Elf_Sym *symb = getSymbol(Symb);
402 if (symb->st_name == 0) {
403 const Elf_Shdr *section = getSection(symb->st_shndx);
404 if (!section)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000405 Result = "";
406 else
407 Result = getString(dot_shstrtab_sec, section->sh_name);
408 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000409 }
410
411 // Use the default symbol table name section.
Michael J. Spencer25b15772011-06-25 17:55:23 +0000412 Result = getString(dot_strtab_sec, symb->st_name);
413 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000414}
415
416template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000417error_code ELFObjectFile<target_endianness, is64Bits>
418 ::getSymbolAddress(DataRefImpl Symb,
419 uint64_t &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000420 validateSymbol(Symb);
421 const Elf_Sym *symb = getSymbol(Symb);
422 const Elf_Shdr *Section;
423 switch (symb->st_shndx) {
424 case ELF::SHN_COMMON:
425 // Undefined symbols have no address yet.
Michael J. Spencer25b15772011-06-25 17:55:23 +0000426 case ELF::SHN_UNDEF:
427 Result = UnknownAddressOrSize;
428 return object_error::success;
429 case ELF::SHN_ABS:
430 Result = symb->st_value;
431 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000432 default: Section = getSection(symb->st_shndx);
433 }
434
435 switch (symb->getType()) {
Michael J. Spencer25b15772011-06-25 17:55:23 +0000436 case ELF::STT_SECTION:
437 Result = Section ? Section->sh_addr : UnknownAddressOrSize;
438 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000439 case ELF::STT_FUNC:
440 case ELF::STT_OBJECT:
441 case ELF::STT_NOTYPE:
Michael J. Spencer25b15772011-06-25 17:55:23 +0000442 Result = symb->st_value;
443 return object_error::success;
444 default:
445 Result = UnknownAddressOrSize;
446 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000447 }
448}
449
450template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000451error_code ELFObjectFile<target_endianness, is64Bits>
452 ::getSymbolSize(DataRefImpl Symb,
453 uint64_t &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000454 validateSymbol(Symb);
455 const Elf_Sym *symb = getSymbol(Symb);
456 if (symb->st_size == 0)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000457 Result = UnknownAddressOrSize;
458 Result = symb->st_size;
459 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000460}
461
462template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000463error_code ELFObjectFile<target_endianness, is64Bits>
464 ::getSymbolNMTypeChar(DataRefImpl Symb,
465 char &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000466 validateSymbol(Symb);
467 const Elf_Sym *symb = getSymbol(Symb);
468 const Elf_Shdr *Section = getSection(symb->st_shndx);
469
470 char ret = '?';
471
472 if (Section) {
473 switch (Section->sh_type) {
474 case ELF::SHT_PROGBITS:
475 case ELF::SHT_DYNAMIC:
476 switch (Section->sh_flags) {
477 case (ELF::SHF_ALLOC | ELF::SHF_EXECINSTR):
478 ret = 't'; break;
479 case (ELF::SHF_ALLOC | ELF::SHF_WRITE):
480 ret = 'd'; break;
481 case ELF::SHF_ALLOC:
482 case (ELF::SHF_ALLOC | ELF::SHF_MERGE):
483 case (ELF::SHF_ALLOC | ELF::SHF_MERGE | ELF::SHF_STRINGS):
484 ret = 'r'; break;
485 }
486 break;
487 case ELF::SHT_NOBITS: ret = 'b';
488 }
489 }
490
491 switch (symb->st_shndx) {
492 case ELF::SHN_UNDEF:
493 if (ret == '?')
494 ret = 'U';
495 break;
496 case ELF::SHN_ABS: ret = 'a'; break;
497 case ELF::SHN_COMMON: ret = 'c'; break;
498 }
499
500 switch (symb->getBinding()) {
501 case ELF::STB_GLOBAL: ret = ::toupper(ret); break;
502 case ELF::STB_WEAK:
503 if (symb->st_shndx == ELF::SHN_UNDEF)
504 ret = 'w';
505 else
506 if (symb->getType() == ELF::STT_OBJECT)
507 ret = 'V';
508 else
509 ret = 'W';
510 }
511
Michael J. Spencer25b15772011-06-25 17:55:23 +0000512 if (ret == '?' && symb->getType() == ELF::STT_SECTION) {
513 StringRef name;
514 if (error_code ec = getSymbolName(Symb, name))
515 return ec;
516 Result = StringSwitch<char>(name)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000517 .StartsWith(".debug", 'N')
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000518 .StartsWith(".note", 'n')
519 .Default('?');
Michael J. Spencer25b15772011-06-25 17:55:23 +0000520 return object_error::success;
521 }
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000522
Michael J. Spencer25b15772011-06-25 17:55:23 +0000523 Result = ret;
524 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000525}
526
527template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000528error_code ELFObjectFile<target_endianness, is64Bits>
529 ::isSymbolInternal(DataRefImpl Symb,
530 bool &Result) const {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000531 validateSymbol(Symb);
532 const Elf_Sym *symb = getSymbol(Symb);
533
534 if ( symb->getType() == ELF::STT_FILE
535 || symb->getType() == ELF::STT_SECTION)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000536 Result = true;
537 Result = false;
538 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000539}
540
541template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000542error_code ELFObjectFile<target_endianness, is64Bits>
543 ::getSectionNext(DataRefImpl Sec, SectionRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000544 const uint8_t *sec = reinterpret_cast<const uint8_t *>(Sec.p);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000545 sec += Header->e_shentsize;
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000546 Sec.p = reinterpret_cast<intptr_t>(sec);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000547 Result = SectionRef(Sec, this);
548 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000549}
550
551template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000552error_code ELFObjectFile<target_endianness, is64Bits>
553 ::getSectionName(DataRefImpl Sec,
554 StringRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000555 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000556 Result = StringRef(getString(dot_shstrtab_sec, sec->sh_name));
557 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000558}
559
560template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000561error_code ELFObjectFile<target_endianness, is64Bits>
562 ::getSectionAddress(DataRefImpl Sec,
563 uint64_t &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000564 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000565 Result = sec->sh_addr;
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>
571 ::getSectionSize(DataRefImpl Sec,
572 uint64_t &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000573 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000574 Result = sec->sh_size;
575 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000576}
577
578template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000579error_code ELFObjectFile<target_endianness, is64Bits>
580 ::getSectionContents(DataRefImpl Sec,
581 StringRef &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000582 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencer25b15772011-06-25 17:55:23 +0000583 const char *start = (const char*)base() + sec->sh_offset;
584 Result = StringRef(start, sec->sh_size);
585 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000586}
587
588template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer25b15772011-06-25 17:55:23 +0000589error_code ELFObjectFile<target_endianness, is64Bits>
590 ::isSectionText(DataRefImpl Sec,
591 bool &Result) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000592 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000593 if (sec->sh_flags & ELF::SHF_EXECINSTR)
Michael J. Spencer25b15772011-06-25 17:55:23 +0000594 Result = true;
595 else
596 Result = false;
597 return object_error::success;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000598}
599
600template<support::endianness target_endianness, bool is64Bits>
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000601error_code ELFObjectFile<target_endianness, is64Bits>
602 ::sectionContainsSymbol(DataRefImpl Sec,
603 DataRefImpl Symb,
604 bool &Result) const {
605 // FIXME: Unimplemented.
606 Result = false;
607 return object_error::success;
608}
609
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000610// Relocations
611template<support::endianness target_endianness, bool is64Bits>
612error_code ELFObjectFile<target_endianness, is64Bits>
613 ::getRelocationNext(DataRefImpl Rel,
614 RelocationRef &Result) const {
615 const Elf_Shdr *RelocationTableSection = RelocationTableSections[Rel.d.b];
616
617 // Check to see if we are at the end of this relocation table.
618 if (++Rel.d.a >= RelocationTableSection->getEntityCount()) {
619 // We are at the end. If there are other relocation tables, jump to them.
620 Rel.d.a = 0;
621 // Otherwise return the terminator.
622 if (++Rel.d.b >= SymbolTableSections.size()) {
623 Rel.d.a = std::numeric_limits<uint32_t>::max();
624 Rel.d.b = std::numeric_limits<uint32_t>::max();
625 }
626 }
627
628 Result = RelocationRef(Rel, this);
629 return object_error::success;
630}
631
632template<support::endianness target_endianness, bool is64Bits>
633error_code ELFObjectFile<target_endianness, is64Bits>
634 ::getRelocationSymbol(DataRefImpl Rel,
635 SymbolRef &Result) const {
636 uint32_t symbolIdx;
637 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
638 switch (sec->sh_type) {
639 default :
640 report_fatal_error("Invalid section type in Rel!");
641 case ELF::SHT_REL : {
642 symbolIdx = getRel(Rel)->getSymbol();
643 break;
644 }
645 case ELF::SHT_RELA : {
646 symbolIdx = getRela(Rel)->getSymbol();
647 break;
648 }
649 }
650 DataRefImpl SymbolData;
651 IndexMap_t::const_iterator it = SymbolTableSectionsIndexMap.find(sec->sh_link);
652 if (it == SymbolTableSectionsIndexMap.end())
653 report_fatal_error("Relocation symbol table not found!");
654 SymbolData.d.a = symbolIdx;
655 SymbolData.d.b = it->second;
656 Result = SymbolRef(SymbolData, this);
657 return object_error::success;
658}
659
660template<support::endianness target_endianness, bool is64Bits>
661error_code ELFObjectFile<target_endianness, is64Bits>
662 ::getRelocationAddress(DataRefImpl Rel,
663 uint64_t &Result) const {
664 uint64_t offset;
665 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
666 switch (sec->sh_type) {
667 default :
668 report_fatal_error("Invalid section type in Rel!");
669 case ELF::SHT_REL : {
670 offset = getRel(Rel)->r_offset;
671 break;
672 }
673 case ELF::SHT_RELA : {
674 offset = getRela(Rel)->r_offset;
675 break;
676 }
677 }
678
679 const Elf_Shdr *secAddr = getSection(sec->sh_info);
680 Result = offset + reinterpret_cast<uintptr_t>(base() + secAddr->sh_offset);
681 return object_error::success;
682}
683
684template<support::endianness target_endianness, bool is64Bits>
685error_code ELFObjectFile<target_endianness, is64Bits>
686 ::getRelocationType(DataRefImpl Rel,
687 uint32_t &Result) const {
688 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
689 switch (sec->sh_type) {
690 default :
691 report_fatal_error("Invalid section type in Rel!");
692 case ELF::SHT_REL : {
693 Result = getRel(Rel)->getType();
694 break;
695 }
696 case ELF::SHT_RELA : {
697 Result = getRela(Rel)->getType();
698 break;
699 }
700 }
701 return object_error::success;
702}
703
704template<support::endianness target_endianness, bool is64Bits>
705error_code ELFObjectFile<target_endianness, is64Bits>
706 ::getRelocationAdditionalInfo(DataRefImpl Rel,
707 int64_t &Result) const {
708 const Elf_Shdr *sec = RelocationTableSections[Rel.d.b];
709 switch (sec->sh_type) {
710 default :
711 report_fatal_error("Invalid section type in Rel!");
712 case ELF::SHT_REL : {
713 Result = 0;
714 return object_error::success;
715 }
716 case ELF::SHT_RELA : {
717 Result = getRela(Rel)->r_addend;
718 return object_error::success;
719 }
720 }
721}
722
723
724
Benjamin Kramer07ea23a2011-07-15 18:39:21 +0000725template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencer001c9202011-06-25 17:54:50 +0000726ELFObjectFile<target_endianness, is64Bits>::ELFObjectFile(MemoryBuffer *Object
727 , error_code &ec)
728 : ObjectFile(Binary::isELF, Object, ec)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000729 , SectionHeaderTable(0)
730 , dot_shstrtab_sec(0)
731 , dot_strtab_sec(0) {
Michael J. Spencer001c9202011-06-25 17:54:50 +0000732 Header = reinterpret_cast<const Elf_Ehdr *>(base());
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000733
734 if (Header->e_shoff == 0)
735 return;
736
737 SectionHeaderTable =
Michael J. Spencer001c9202011-06-25 17:54:50 +0000738 reinterpret_cast<const Elf_Shdr *>(base() + Header->e_shoff);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000739 uint32_t SectionTableSize = Header->e_shnum * Header->e_shentsize;
740 if (!( (const uint8_t *)SectionHeaderTable + SectionTableSize
Michael J. Spencer001c9202011-06-25 17:54:50 +0000741 <= base() + Data->getBufferSize()))
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000742 // FIXME: Proper error handling.
743 report_fatal_error("Section table goes past end of file!");
744
745
746 // To find the symbol tables we walk the section table to find SHT_STMTAB.
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000747 const Elf_Shdr* sh =
748 reinterpret_cast<const Elf_Shdr*>(SectionHeaderTable);
749 for (unsigned i = 0; i < Header->e_shnum; ++i) {
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000750 if (sh->sh_type == ELF::SHT_SYMTAB) {
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000751 SymbolTableSectionsIndexMap[i] = SymbolTableSections.size();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000752 SymbolTableSections.push_back(sh);
753 }
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000754 if (sh->sh_type == ELF::SHT_REL || sh->sh_type == ELF::SHT_RELA) {
755 RelocationTableSections.push_back(sh);
756 }
757 ++sh;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000758 }
759
760 // Get string table sections.
761 dot_shstrtab_sec = getSection(Header->e_shstrndx);
762 if (dot_shstrtab_sec) {
763 // Verify that the last byte in the string table in a null.
Michael J. Spencer001c9202011-06-25 17:54:50 +0000764 if (((const char*)base() + dot_shstrtab_sec->sh_offset)
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000765 [dot_shstrtab_sec->sh_size - 1] != 0)
766 // FIXME: Proper error handling.
767 report_fatal_error("String table must end with a null terminator!");
768 }
769
770 // Merge this into the above loop.
771 for (const char *i = reinterpret_cast<const char *>(SectionHeaderTable),
772 *e = i + Header->e_shnum * Header->e_shentsize;
773 i != e; i += Header->e_shentsize) {
774 const Elf_Shdr *sh = reinterpret_cast<const Elf_Shdr*>(i);
775 if (sh->sh_type == ELF::SHT_STRTAB) {
776 StringRef SectionName(getString(dot_shstrtab_sec, sh->sh_name));
777 if (SectionName == ".strtab") {
778 if (dot_strtab_sec != 0)
779 // FIXME: Proper error handling.
780 report_fatal_error("Already found section named .strtab!");
781 dot_strtab_sec = sh;
Michael J. Spencer001c9202011-06-25 17:54:50 +0000782 const char *dot_strtab = (const char*)base() + sh->sh_offset;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000783 if (dot_strtab[sh->sh_size - 1] != 0)
784 // FIXME: Proper error handling.
785 report_fatal_error("String table must end with a null terminator!");
786 }
787 }
788 }
789}
790
791template<support::endianness target_endianness, bool is64Bits>
792ObjectFile::symbol_iterator ELFObjectFile<target_endianness, is64Bits>
793 ::begin_symbols() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000794 DataRefImpl SymbolData;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000795 memset(&SymbolData, 0, sizeof(SymbolData));
796 if (SymbolTableSections.size() == 0) {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000797 SymbolData.d.a = std::numeric_limits<uint32_t>::max();
798 SymbolData.d.b = std::numeric_limits<uint32_t>::max();
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000799 } else {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000800 SymbolData.d.a = 1; // The 0th symbol in ELF is fake.
801 SymbolData.d.b = 0;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000802 }
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000803 return symbol_iterator(SymbolRef(SymbolData, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000804}
805
806template<support::endianness target_endianness, bool is64Bits>
807ObjectFile::symbol_iterator ELFObjectFile<target_endianness, is64Bits>
808 ::end_symbols() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000809 DataRefImpl SymbolData;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000810 memset(&SymbolData, 0, sizeof(SymbolData));
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000811 SymbolData.d.a = std::numeric_limits<uint32_t>::max();
812 SymbolData.d.b = std::numeric_limits<uint32_t>::max();
813 return symbol_iterator(SymbolRef(SymbolData, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000814}
815
816template<support::endianness target_endianness, bool is64Bits>
817ObjectFile::section_iterator ELFObjectFile<target_endianness, is64Bits>
818 ::begin_sections() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000819 DataRefImpl ret;
Eric Christopher539d8d82011-04-03 22:53:19 +0000820 memset(&ret, 0, sizeof(DataRefImpl));
Michael J. Spencer001c9202011-06-25 17:54:50 +0000821 ret.p = reinterpret_cast<intptr_t>(base() + Header->e_shoff);
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000822 return section_iterator(SectionRef(ret, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000823}
824
825template<support::endianness target_endianness, bool is64Bits>
826ObjectFile::section_iterator ELFObjectFile<target_endianness, is64Bits>
827 ::end_sections() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000828 DataRefImpl ret;
Eric Christopher539d8d82011-04-03 22:53:19 +0000829 memset(&ret, 0, sizeof(DataRefImpl));
Michael J. Spencer001c9202011-06-25 17:54:50 +0000830 ret.p = reinterpret_cast<intptr_t>(base()
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000831 + Header->e_shoff
832 + (Header->e_shentsize * Header->e_shnum));
833 return section_iterator(SectionRef(ret, this));
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000834}
835
836template<support::endianness target_endianness, bool is64Bits>
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000837ObjectFile::relocation_iterator ELFObjectFile<target_endianness, is64Bits>
838 ::begin_relocations() const {
839 DataRefImpl RelData;
840 memset(&RelData, 0, sizeof(RelData));
841 if (RelocationTableSections.size() == 0) {
842 RelData.d.a = std::numeric_limits<uint32_t>::max();
843 RelData.d.b = std::numeric_limits<uint32_t>::max();
844 } else {
845 RelData.d.a = 0;
846 RelData.d.b = 0;
847 }
848 return relocation_iterator(RelocationRef(RelData, this));
849}
850
851template<support::endianness target_endianness, bool is64Bits>
852ObjectFile::relocation_iterator ELFObjectFile<target_endianness, is64Bits>
853 ::end_relocations() const {
854 DataRefImpl RelData;
855 memset(&RelData, 0, sizeof(RelData));
856 RelData.d.a = std::numeric_limits<uint32_t>::max();
857 RelData.d.b = std::numeric_limits<uint32_t>::max();
858 return relocation_iterator(RelocationRef(RelData, this));
859}
860
861template<support::endianness target_endianness, bool is64Bits>
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000862uint8_t ELFObjectFile<target_endianness, is64Bits>::getBytesInAddress() const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000863 return is64Bits ? 8 : 4;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000864}
865
866template<support::endianness target_endianness, bool is64Bits>
867StringRef ELFObjectFile<target_endianness, is64Bits>
868 ::getFileFormatName() const {
869 switch(Header->e_ident[ELF::EI_CLASS]) {
870 case ELF::ELFCLASS32:
871 switch(Header->e_machine) {
872 case ELF::EM_386:
873 return "ELF32-i386";
874 case ELF::EM_X86_64:
875 return "ELF32-x86-64";
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000876 case ELF::EM_ARM:
877 return "ELF32-arm";
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000878 default:
879 return "ELF32-unknown";
880 }
881 case ELF::ELFCLASS64:
882 switch(Header->e_machine) {
883 case ELF::EM_386:
884 return "ELF64-i386";
885 case ELF::EM_X86_64:
886 return "ELF64-x86-64";
887 default:
888 return "ELF64-unknown";
889 }
890 default:
891 // FIXME: Proper error handling.
892 report_fatal_error("Invalid ELFCLASS!");
893 }
894}
895
896template<support::endianness target_endianness, bool is64Bits>
897unsigned ELFObjectFile<target_endianness, is64Bits>::getArch() const {
898 switch(Header->e_machine) {
899 case ELF::EM_386:
900 return Triple::x86;
901 case ELF::EM_X86_64:
902 return Triple::x86_64;
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000903 case ELF::EM_ARM:
904 return Triple::arm;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000905 default:
906 return Triple::UnknownArch;
907 }
908}
909
910template<support::endianness target_endianness, bool is64Bits>
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000911template<typename T>
912inline const T *
913ELFObjectFile<target_endianness, is64Bits>::getEntry(DataRefImpl Entry,
914 Sections_t Sections) const {
915 const Elf_Shdr *sec = Sections[Entry.d.b];
916 return reinterpret_cast<const T *>(
Michael J. Spencer001c9202011-06-25 17:54:50 +0000917 base()
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000918 + sec->sh_offset
Benjamin Kramer0fcab072011-09-08 20:52:17 +0000919 + (Entry.d.a * sec->sh_entsize));
920}
921
922template<support::endianness target_endianness, bool is64Bits>
923const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Sym *
924ELFObjectFile<target_endianness, is64Bits>::getSymbol(DataRefImpl Symb) const {
925 return getEntry<Elf_Sym>(Symb, SymbolTableSections);
926}
927
928template<support::endianness target_endianness, bool is64Bits>
929const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Rel *
930ELFObjectFile<target_endianness, is64Bits>::getRel(DataRefImpl Rel) const {
931 return getEntry<Elf_Rel>(Rel, RelocationTableSections);
932}
933
934template<support::endianness target_endianness, bool is64Bits>
935const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Rela *
936ELFObjectFile<target_endianness, is64Bits>::getRela(DataRefImpl Rela) const {
937 return getEntry<Elf_Rela>(Rela, RelocationTableSections);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000938}
939
940template<support::endianness target_endianness, bool is64Bits>
941const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Shdr *
942ELFObjectFile<target_endianness, is64Bits>::getSection(DataRefImpl Symb) const {
Michael J. Spencer7acdb4d2011-01-21 02:27:02 +0000943 const Elf_Shdr *sec = getSection(Symb.d.b);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000944 if (sec->sh_type != ELF::SHT_SYMTAB)
945 // FIXME: Proper error handling.
946 report_fatal_error("Invalid symbol table section!");
947 return sec;
948}
949
950template<support::endianness target_endianness, bool is64Bits>
951const typename ELFObjectFile<target_endianness, is64Bits>::Elf_Shdr *
952ELFObjectFile<target_endianness, is64Bits>::getSection(uint16_t index) const {
953 if (index == 0 || index >= ELF::SHN_LORESERVE)
954 return 0;
955 if (!SectionHeaderTable || index >= Header->e_shnum)
956 // FIXME: Proper error handling.
957 report_fatal_error("Invalid section index!");
958
959 return reinterpret_cast<const Elf_Shdr *>(
960 reinterpret_cast<const char *>(SectionHeaderTable)
961 + (index * Header->e_shentsize));
962}
963
964template<support::endianness target_endianness, bool is64Bits>
965const char *ELFObjectFile<target_endianness, is64Bits>
966 ::getString(uint16_t section,
967 ELF::Elf32_Word offset) const {
968 return getString(getSection(section), offset);
969}
970
971template<support::endianness target_endianness, bool is64Bits>
972const char *ELFObjectFile<target_endianness, is64Bits>
973 ::getString(const Elf_Shdr *section,
974 ELF::Elf32_Word offset) const {
975 assert(section && section->sh_type == ELF::SHT_STRTAB && "Invalid section!");
976 if (offset >= section->sh_size)
977 // FIXME: Proper error handling.
Michael J. Spencer001c9202011-06-25 17:54:50 +0000978 report_fatal_error("Symbol name offset outside of string table!");
979 return (const char *)base() + section->sh_offset + offset;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000980}
981
982// EI_CLASS, EI_DATA.
983static std::pair<unsigned char, unsigned char>
984getElfArchType(MemoryBuffer *Object) {
985 if (Object->getBufferSize() < ELF::EI_NIDENT)
986 return std::make_pair((uint8_t)ELF::ELFCLASSNONE,(uint8_t)ELF::ELFDATANONE);
987 return std::make_pair( (uint8_t)Object->getBufferStart()[ELF::EI_CLASS]
988 , (uint8_t)Object->getBufferStart()[ELF::EI_DATA]);
989}
990
991namespace llvm {
992
993 ObjectFile *ObjectFile::createELFObjectFile(MemoryBuffer *Object) {
994 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object);
Michael J. Spencer001c9202011-06-25 17:54:50 +0000995 error_code ec;
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000996 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +0000997 return new ELFObjectFile<support::little, false>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +0000998 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +0000999 return new ELFObjectFile<support::big, false>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001000 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001001 return new ELFObjectFile<support::little, true>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001002 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
Michael J. Spencer001c9202011-06-25 17:54:50 +00001003 return new ELFObjectFile<support::big, true>(Object, ec);
Michael J. Spencerb84551a2011-01-20 06:38:47 +00001004 // FIXME: Proper error handling.
1005 report_fatal_error("Not an ELF object file!");
1006 }
1007
1008} // end namespace llvm