1 // elfcpp_file.h -- file access for elfcpp -*- C++ -*-
3 // This header file defines the class Elf_file which can be used to
4 // read useful data from an ELF file. The functions here are all
5 // templates which take a file interface object as a parameter. This
6 // type must have a subtype View. This type must support two methods:
7 // View view(off_t file_offset, off_t data_size)
8 // returns a View for the specified part of the file.
9 // void error(const char* printf_format, ...)
10 // prints an error message and does not return. The subtype View must
12 // const unsigned char* data()
13 // which returns a pointer to a buffer containing the requested data.
14 // This general interface is used to read data from the file. Objects
15 // of type View will never survive longer than the elfcpp function.
17 // Some of these functions must return a reference to part of the
18 // file. To use these, the file interface must support a subtype
20 // Location(off_t file_offset, off_t data_size)
21 // To use this in conjunction with the accessors types Shdr, etc., the
22 // file interface should support an overload of view:
23 // View view(Location)
24 // This permits writing
25 // elfcpp::Shdr shdr(file, ef.section_header(n));
36 // This object is used to read an ELF file.
37 // SIZE: The size of file, 32 or 64.
38 // BIG_ENDIAN: Whether the file is in big-endian format.
39 // FILE: A file reading type as described above.
41 template<int size
, bool big_endian
, typename File
>
45 typedef Elf_file
<size
, big_endian
, File
> This
;
48 static const int ehdr_size
= Elf_sizes
<size
>::ehdr_size
;
49 static const int phdr_size
= Elf_sizes
<size
>::phdr_size
;
50 static const int shdr_size
= Elf_sizes
<size
>::shdr_size
;
51 static const int sym_size
= Elf_sizes
<size
>::sym_size
;
52 static const int rel_size
= Elf_sizes
<size
>::rel_size
;
53 static const int rela_size
= Elf_sizes
<size
>::rela_size
;
55 typedef Ehdr
<size
, big_endian
> Ef_ehdr
;
56 typedef Phdr
<size
, big_endian
> Ef_phdr
;
57 typedef Shdr
<size
, big_endian
> Ef_shdr
;
58 typedef Sym
<size
, big_endian
> Ef_sym
;
60 // Construct an Elf_file given an ELF file header.
61 Elf_file(File
* file
, const Ef_ehdr
& ehdr
)
62 { this->construct(file
, ehdr
); }
64 // Construct an ELF file.
68 // Return the file offset to the section headers.
71 { return this->shoff_
; }
73 // Return the number of sections.
77 this->initialize_shnum();
81 // Return the section index of the section name string table.
85 this->initialize_shnum();
86 return this->shstrndx_
;
89 // Return the location of the header of section SHNDX.
90 typename
File::Location
91 section_header(unsigned int shndx
)
93 return typename
File::Location(this->section_header_offset(shndx
),
97 // Return the name of section SHNDX.
99 section_name(unsigned int shndx
);
101 // Return the location of the contents of section SHNDX.
102 typename
File::Location
103 section_contents(unsigned int shndx
);
106 // Shared constructor code.
108 construct(File
* file
, const Ef_ehdr
& ehdr
);
110 // Initialize shnum_ and shstrndx_.
114 // Return the file offset of the header of section SHNDX.
116 section_header_offset(unsigned int shndx
);
118 // The file we are reading.
120 // The file offset to the section headers.
122 // The number of sections.
124 // The section index of the section name string table.
125 unsigned int shstrndx_
;
128 // Template function definitions.
130 // Construct an Elf_file given an ELF file header.
132 template<int size
, bool big_endian
, typename File
>
134 Elf_file
<size
, big_endian
, File
>::construct(File
* file
, const Ef_ehdr
& ehdr
)
137 this->shoff_
= ehdr
.get_e_shoff();
138 this->shnum_
= ehdr
.get_e_shnum();
139 this->shstrndx_
= ehdr
.get_e_shstrndx();
140 if (ehdr
.get_e_ehsize() != This::ehdr_size
)
141 file
->error(_("bad e_ehsize (%d != %d)"),
142 ehdr
.get_e_ehsize(), This::ehdr_size
);
143 if (ehdr
.get_e_shentsize() != This::shdr_size
)
144 file
->error(_("bad e_shentsize (%d != %d)"),
145 ehdr
.get_e_shentsize(), This::shdr_size
);
148 // Construct an ELF file.
150 template<int size
, bool big_endian
, typename File
>
152 Elf_file
<size
, big_endian
, File
>::Elf_file(File
* file
)
154 typename
File::View
v(file
->view(file_header_offset
, This::ehdr_size
));
155 this->construct(file
, Ef_ehdr(v
.data()));
158 // Initialize the shnum_ and shstrndx_ fields, handling overflow.
160 template<int size
, bool big_endian
, typename File
>
162 Elf_file
<size
, big_endian
, File
>::initialize_shnum()
164 if ((this->shnum_
== 0 || this->shstrndx_
== SHN_XINDEX
)
165 && this->shoff_
!= 0)
167 typename
File::View
v(this->file_
->view(this->shoff_
, This::shdr_size
));
168 Ef_shdr
shdr(v
.data());
169 if (this->shnum_
== 0)
170 this->shnum_
= shdr
.get_sh_size();
171 if (this->shstrndx_
== SHN_XINDEX
)
172 this->shstrndx_
= shdr
.get_sh_link();
176 // Return the file offset of the section header of section SHNDX.
178 template<int size
, bool big_endian
, typename File
>
180 Elf_file
<size
, big_endian
, File
>::section_header_offset(unsigned int shndx
)
182 if (shndx
>= this->shnum())
183 this->file_
->error(_("section_header_offset: bad shndx %u >= %u"),
184 shndx
, this->shnum());
185 return this->shoff_
+ This::shdr_size
* shndx
;
188 // Return the name of section SHNDX.
190 template<int size
, bool big_endian
, typename File
>
192 Elf_file
<size
, big_endian
, File
>::section_name(unsigned int shndx
)
194 File
* const file
= this->file_
;
196 // Get the section name offset.
197 unsigned int sh_name
;
199 typename
File::View
v(file
->view(this->section_header_offset(shndx
),
201 Ef_shdr
shdr(v
.data());
202 sh_name
= shdr
.get_sh_name();
205 // Get the file offset for the section name string table data.
209 const unsigned int shstrndx
= this->shstrndx_
;
210 typename
File::View
v(file
->view(this->section_header_offset(shstrndx
),
212 Ef_shdr
shstr_shdr(v
.data());
213 shstr_off
= shstr_shdr
.get_sh_offset();
214 shstr_size
= shstr_shdr
.get_sh_size();
217 if (sh_name
>= shstr_size
)
218 file
->error(_("bad section name offset for section %u: %u"),
221 typename
File::View
v(file
->view(shstr_off
, shstr_size
));
223 const unsigned char* datau
= v
.data();
224 const char* data
= reinterpret_cast<const char*>(datau
);
225 const void* p
= ::memchr(data
+ sh_name
, '\0', shstr_size
- sh_name
);
227 file
->error(_("missing null terminator for name of section %u"),
230 size_t len
= static_cast<const char*>(p
) - (data
+ sh_name
);
232 return std::string(data
+ sh_name
, len
);
235 // Return the contents of section SHNDX.
237 template<int size
, bool big_endian
, typename File
>
238 typename
File::Location
239 Elf_file
<size
, big_endian
, File
>::section_contents(unsigned int shndx
)
241 File
* const file
= this->file_
;
243 if (shndx
>= this->shnum())
244 file
->error(_("section_contents: bad shndx %u >= %u"),
245 shndx
, this->shnum());
247 typename
File::View
v(file
->view(this->section_header_offset(shndx
),
249 Ef_shdr
shdr(v
.data());
250 return typename
File::Location(shdr
.get_sh_offset(), shdr
.get_sh_size());
253 } // End namespace elfcpp.
255 #endif // !defined(ELFCPP_FILE_H)