blob: 721a2a133151f88cf1e435acb497effee15c1c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#ifndef ELF_HH_
#define ELF_HH_
#include "elf_sections.hh"
#include <paludis/util/exception.hh>
#include <paludis/util/private_implementation_pattern.hh>
#include <paludis/util/wrapped_forward_iterator-fwd.hh>
#include <iosfwd>
#include <elf.h>
class InvalidElfFileError :
public paludis::Exception
{
public:
InvalidElfFileError(const InvalidElfFileError &);
InvalidElfFileError() throw ();
};
template <typename ElfType_>
class ElfObject :
private paludis::PrivateImplementationPattern<ElfObject<ElfType_> >
{
using paludis::PrivateImplementationPattern<ElfObject>::_imp;
private:
typename ElfType_::Header _hdr;
public:
static bool is_valid_elf(std::istream & stream);
ElfObject(std::istream & stream);
~ElfObject();
/**
* Returns e_type from the ELF header
*/
unsigned int get_type() const
{
return _hdr.e_type;
}
/**
* Returns e_machine from the ELF header
*/
unsigned int get_arch() const
{
return _hdr.e_machine;
}
/**
* Returns the OS ABI field from the ident field
*/
unsigned char get_os_abi() const
{
return _hdr.e_ident[EI_OSABI];
}
/**
* Returns the OS ABI Version field from the ident field
*/
unsigned char get_os_abi_version() const
{
return _hdr.e_ident[EI_ABIVERSION];
}
/**
* Returns the processor-specific flags
*/
unsigned int get_flags() const
{
return _hdr.e_flags;
}
/**
* Returns whether this ELF file uses big-endian or little-endian
* Please note: If you didn't use is_valid_elf(...) to check whether
* this is an ELF object, this might be wrong
*/
unsigned int is_big_endian() const
{
// We already checked in is_valid_elf_type whether it's valid or not
return (_hdr.e_ident[EI_DATA] == ELFDATA2MSB);
}
unsigned int get_number_of_sections() const
{
return _hdr.e_shnum;
}
struct SectionIteratorTag;
typedef paludis::WrappedForwardIterator<SectionIteratorTag, Section<ElfType_> > SectionIterator;
SectionIterator section_begin() const;
SectionIterator section_end() const;
SectionIterator get_section_by_index(unsigned int index) const;
void resolve_all_strings();
};
#endif /*ELF_HH_*/
|