16#ifndef LIEF_ELF_PARSER_H
17#define LIEF_ELF_PARSER_H
19#include <unordered_map>
20#include <unordered_set>
75 static std::unique_ptr<Binary>
80 template<
class PathT, enable_if_path_t<PathT> = 0>
81 static std::unique_ptr<Binary>
83 return parse(file.string(), conf);
96 static std::unique_ptr<Binary>
97 parse(
const std::vector<uint8_t>& data,
110 static std::unique_ptr<Binary>
111 parse(std::unique_ptr<BinaryStream> stream,
120 static std::unique_ptr<Binary>
131 static std::unique_ptr<Binary>
144 static std::unique_ptr<Binary>
150 template<
class PathT, enable_if_path_t<PathT> = 0>
151 static std::unique_ptr<Binary>
159 static std::unique_ptr<Binary>
165 static std::unique_ptr<Binary>
190 template<
typename ELF_T>
193 template<
typename ELF_T>
196 template<
typename ELF_T>
199 template<
typename ELF_T>
203 get_dynamic_string_table(
BinaryStream* stream =
nullptr)
const;
206 get_dynamic_string_table_from_segments(
BinaryStream* stream =
nullptr)
const;
208 LIEF_LOCAL uint64_t get_dynamic_string_table_from_sections()
const;
211 template<
typename ELF_T>
216 template<
typename ELF_T>
220 template<
typename ELF_T>
224 template<
typename ELF_T>
228 template<
typename ELF_T>
232 template<
typename ELF_T>
235 template<
typename ELF_T>
238 template<
typename ELF_T>
250 template<
typename ELF_T>
252 const Section& string_section);
257 template<
typename ELF_T,
typename REL_T>
266 template<
typename ELF_T,
typename REL_T>
271 template<
typename ELF_T>
275 template<
typename ELF_T>
278 template<
typename ELF_T>
283 template<
typename ELF_T,
typename REL_T>
291 template<
typename ELF_T>
293 uint32_t nb_entries);
301 template<
typename ELF_T>
303 uint32_t nb_entries);
317 template<
typename ELF_T>
323 LIEF_LOCAL std::unique_ptr<Note> get_note(uint32_t type, std::string name,
324 std::vector<uint8_t> desc_bytes);
331 template<
typename ELF_T,
typename REL_T>
332 LIEF_LOCAL uint32_t max_relocation_index(uint64_t relocations_offset,
333 uint64_t size)
const;
342 template<
class ELF_T>
345 std::unique_ptr<BinaryStream> stream_;
346 std::unique_ptr<Binary> binary_;
355 std::unordered_map<size_t, Section*> sections_idx_;
356 uint64_t memory_address_ = 0;
357 std::unordered_set<uint64_t> notes_offset_;
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:35
Generic interface representing a binary executable.
Definition Abstract/Binary.hpp:60
static std::unique_ptr< Binary > parse_from_dump(std::string_view filepath, uint64_t addr, const ParserConfig &conf=ParserConfig::all())
Parse an ELF binary from a memory dump located on disk.
static std::unique_ptr< Binary > parse(std::string_view file, const ParserConfig &conf=ParserConfig::all())
Parse an ELF file and return a LIEF::ELF::Binary object.
static std::unique_ptr< Binary > parse(const PathT &file, const ParserConfig &conf=ParserConfig::all())
Same as parse(std::string_view, const ParserConfig&) but the file is given as a std::filesystem::path...
Definition ELF/Parser.hpp:82
static std::unique_ptr< Binary > parse_from_dump(BinaryStream &stream, uint64_t addr, const ParserConfig &conf=ParserConfig::all())
Same as parse_from_dump(std::string_view, uint64_t, const ParserConfig&) but the dump is wrapped in t...
static constexpr uint32_t NB_MAX_BUCKETS
Definition ELF/Parser.hpp:53
friend class OAT::Parser
Definition ELF/Parser.hpp:48
static constexpr uint32_t NB_MAX_SYMBOLS
Definition ELF/Parser.hpp:51
static std::unique_ptr< Binary > parse_from_dump(const PathT &filepath, uint64_t addr, const ParserConfig &conf=ParserConfig::all())
Same as parse_from_dump(std::string_view, uint64_t, const ParserConfig&) but the dump file is given a...
Definition ELF/Parser.hpp:152
static std::unique_ptr< Binary > parse(std::unique_ptr< BinaryStream > stream, const ParserConfig &conf=ParserConfig::all())
Parse the ELF binary from the given stream and return a LIEF::ELF::Binary object.
static std::unique_ptr< Binary > parse_from_dump(std::unique_ptr< BinaryStream > stream, uint64_t addr, const ParserConfig &conf=ParserConfig::all())
Same as parse_from_dump(std::string_view, uint64_t, const ParserConfig&) but the dump is wrapped in t...
static constexpr uint32_t DELTA_NB_SYMBOLS
Definition ELF/Parser.hpp:52
static constexpr uint32_t NB_MAX_RELOCATIONS
Definition ELF/Parser.hpp:56
static std::unique_ptr< Binary > parse(const std::vector< uint8_t > &data, const ParserConfig &conf=ParserConfig::all())
Parse the given raw data as an ELF binary and return a LIEF::ELF::Binary object.
static std::unique_ptr< Binary > parse_from_memory(uintptr_t address, const ParserConfig &conf=ParserConfig::all())
Parse the ELF binary from the given memory address.
static std::unique_ptr< Binary > parse_from_memory(uintptr_t address, size_t size, const ParserConfig &conf=ParserConfig::all())
Parse the ELF binary from the given memory address with the given size.
static constexpr uint32_t NB_MAX_CHAINS
Definition ELF/Parser.hpp:54
ELF_TYPE
Definition ELF/Parser.hpp:60
@ ELF64
Definition ELF/Parser.hpp:63
@ ELF_UNKNOWN
Definition ELF/Parser.hpp:61
@ ELF32
Definition ELF/Parser.hpp:62
static constexpr uint32_t MAX_SEGMENT_SIZE
Definition ELF/Parser.hpp:58
Parser(const Parser &)=delete
Parser & operator=(const Parser &)=delete
static constexpr uint32_t NB_MAX_SEGMENTS
Definition ELF/Parser.hpp:55
static constexpr uint32_t NB_MAX_DYNAMIC_ENTRIES
Definition ELF/Parser.hpp:57
Class that represents an ELF relocation.
Definition ELF/Relocation.hpp:43
Class which represents an ELF Section.
Definition ELF/Section.hpp:49
Class which represents the ELF segments.
Definition Segment.hpp:49
Class which represents an ELF symbol.
Definition ELF/Symbol.hpp:34
Class to parse an OAT file to produce an OAT::Binary.
Definition OAT/Parser.hpp:42
Main interface to parse an executable regardless of its format.
Definition Abstract/Parser.hpp:32
Class which represents an abstracted Relocation.
Definition Abstract/Relocation.hpp:27
Class which represents an abstracted section.
Definition Abstract/Section.hpp:31
This class represents a symbol in an executable format.
Definition Abstract/Symbol.hpp:30
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:119
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:79
Namespace related to the LIEF's ELF module.
Definition Abstract/Header.hpp:28
Definition ELF/Parser.hpp:34
LIEF namespace.
Definition Abstract/Binary.hpp:41
This structure is used to tweak the ELF Parser (ELF::Parser).
Definition ELF/ParserConfig.hpp:26
DYNSYM_COUNT
Methods that can be used by the LIEF::ELF::Parser to count the number of dynamic symbols.
Definition ELF/ParserConfig.hpp:29
static ParserConfig all()
This returns a ParserConfig object configured to process all the ELF elements.
Definition ELF/ParserConfig.hpp:45
#define LIEF_API
Definition visibility.h:45
#define LIEF_LOCAL
Definition visibility.h:46