16#ifndef LIEF_ABSTRACT_BINARY_H
17#define LIEF_ABSTRACT_BINARY_H
21#include <unordered_map>
119 return get_abstract_header();
124 return get_abstract_symbols();
129 return const_cast<Binary*
>(
this)->get_abstract_symbols();
142 return const_cast<Symbol*
>(
static_cast<const Binary*
>(
this)->get_symbol(name));
147 return get_abstract_sections();
151 return const_cast<Binary*
>(
this)->get_abstract_sections();
159 return get_abstract_relocations();
163 return const_cast<Binary*
>(
this)->get_abstract_relocations();
171 return original_size_;
176 return get_abstract_exported_functions();
181 return get_abstract_imported_libraries();
186 return get_abstract_imported_functions();
195 std::vector<uint64_t>
xref(uint64_t address)
const;
203 virtual void patch_address(uint64_t address,
const std::vector<uint8_t>& patch_value,
212 virtual void patch_address(uint64_t address, uint64_t patch_value,
size_t size =
sizeof(uint64_t),
226 static_assert(std::is_integral<T>::value,
"Require an integral type");
228 if (raw.empty() || raw.size() <
sizeof(T)) {
232 std::copy(raw.data(), raw.data() +
sizeof(T),
233 reinterpret_cast<uint8_t*
>(&value));
243 original_size_ = size;
264 virtual std::ostream&
print(std::ostream& os)
const {
330 uint64_t address = 0)
const;
338 uint64_t address = 0)
const {
339 return disassemble(buffer.data(), buffer.size(), address);
343 uint64_t address = 0)
const {
344 return disassemble(buffer.data(), buffer.size(), address);
348 return disassemble(buffer.data(), buffer.size(), address);
364 std::vector<uint8_t>
assemble(uint64_t address,
const std::string& Asm,
371 std::vector<uint8_t>
assemble(uint64_t address,
const llvm::MCInst& inst);
378 const std::vector<llvm::MCInst>& insts);
386 mutable std::unique_ptr<DebugInfo> debug_info_;
387 mutable std::unordered_map<uint32_t, std::unique_ptr<assembly::Engine>> engines_;
388 uint64_t original_size_ = 0;
392 template<u
int32_t Key,
class F>
396 virtual Header get_abstract_header()
const = 0;
397 virtual symbols_t get_abstract_symbols() = 0;
398 virtual sections_t get_abstract_sections() = 0;
401 virtual functions_t get_abstract_exported_functions()
const = 0;
402 virtual functions_t get_abstract_imported_functions()
const = 0;
403 virtual std::vector<std::string> get_abstract_imported_libraries()
const = 0;
Header header() const
Return the abstract header of the binary.
Definition Abstract/Binary.hpp:118
ref_iterator< symbols_t > it_symbols
Iterator that outputs LIEF::Symbol&.
Definition Abstract/Binary.hpp:86
virtual void patch_address(uint64_t address, const std::vector< uint8_t > &patch_value, VA_TYPES addr_type=VA_TYPES::AUTO)=0
Patch the content at virtual address address with patch_value.
std::vector< Function > functions_t
Definition Abstract/Binary.hpp:71
functions_t imported_functions() const
Return functions imported by the binary.
Definition Abstract/Binary.hpp:185
virtual uint64_t entrypoint() const =0
Binary's entrypoint (if any).
const_ref_iterator< relocations_t > it_const_relocations
Iterator that outputs const LIEF::Relocation&.
Definition Abstract/Binary.hpp:98
FORMATS
Definition Abstract/Binary.hpp:63
@ UNKNOWN
Definition Abstract/Binary.hpp:64
@ ELF
Definition Abstract/Binary.hpp:65
@ OAT
Definition Abstract/Binary.hpp:68
@ PE
Definition Abstract/Binary.hpp:66
@ MACHO
Definition Abstract/Binary.hpp:67
virtual result< uint64_t > offset_to_virtual_address(uint64_t offset, uint64_t slide=0) const =0
Convert the given offset into a virtual address.
bool has_symbol(const std::string &name) const
Check if a Symbol with the given name exists.
Definition Abstract/Binary.hpp:133
const Symbol * get_symbol(const std::string &name) const
Return the Symbol with the given name If the symbol does not exist, return a nullptr.
Symbol * get_symbol(const std::string &name)
Definition Abstract/Binary.hpp:141
LIEF::result< T > get_int_from_virtual_address(uint64_t va, VA_TYPES addr_type=VA_TYPES::AUTO) const
Get the integer value at the given virtual address.
Definition Abstract/Binary.hpp:222
FORMATS format() const
Executable format (ELF, PE, Mach-O) of the underlying binary.
Definition Abstract/Binary.hpp:113
friend std::ostream & operator<<(std::ostream &os, const Binary &binary)
Definition Abstract/Binary.hpp:268
ref_iterator< sections_t > it_sections
Iterator that outputs LIEF::Section&.
Definition Abstract/Binary.hpp:77
it_const_sections sections() const
Definition Abstract/Binary.hpp:150
const_ref_iterator< sections_t > it_const_sections
Iterator that outputs const LIEF::Section&.
Definition Abstract/Binary.hpp:80
virtual void remove_section(const std::string &name, bool clear=false)=0
Remove all the sections in the underlying binary.
it_relocations relocations()
Return an iterator over the binary relocation (LIEF::Relocation).
Definition Abstract/Binary.hpp:158
it_const_symbols symbols() const
Return an iterator over the abstracted symbols in which the elements can't be modified.
Definition Abstract/Binary.hpp:128
std::vector< Symbol * > symbols_t
Internal container.
Definition Abstract/Binary.hpp:83
instructions_it disassemble(uint64_t address, size_t size) const
Disassemble code starting a the given virtual address and with the given size.
void original_size(uint64_t size)
Change binary's original size.
Definition Abstract/Binary.hpp:242
VA_TYPES
Type of a virtual address.
Definition Abstract/Binary.hpp:57
@ VA
Absolute.
Definition Abstract/Binary.hpp:60
@ RVA
Relative.
Definition Abstract/Binary.hpp:59
@ AUTO
Try to guess if it's relative or not.
Definition Abstract/Binary.hpp:58
instructions_it disassemble(const std::string &function) const
Disassemble code for the given symbol name.
std::vector< uint64_t > xref(uint64_t address) const
std::vector< Section * > sections_t
Internal container.
Definition Abstract/Binary.hpp:74
virtual bool is_pie() const =0
Check if the binary is position independent.
functions_t exported_functions() const
Return the functions exported by the binary.
Definition Abstract/Binary.hpp:175
virtual uint64_t page_size() const
Get the default memory page size according to the architecture and the format of the current binary.
virtual span< const uint8_t > get_content_from_virtual_address(uint64_t virtual_address, uint64_t size, VA_TYPES addr_type=VA_TYPES::AUTO) const =0
Return the content located at the given virtual address.
virtual std::ostream & print(std::ostream &os) const
Definition Abstract/Binary.hpp:264
std::vector< uint8_t > assemble(uint64_t address, const std::string &Asm, assembly::AssemblerConfig &config=assembly::AssemblerConfig::default_config())
Assemble and patch the provided assembly code at the specified address.
const_ref_iterator< symbols_t > it_const_symbols
Iterator that outputs const LIEF::Symbol&.
Definition Abstract/Binary.hpp:89
virtual void patch_address(uint64_t address, uint64_t patch_value, size_t size=sizeof(uint64_t), VA_TYPES addr_type=VA_TYPES::AUTO)=0
Patch the address with the given value.
it_symbols symbols()
Return an iterator over the abstracted symbols in which the elements can be modified.
Definition Abstract/Binary.hpp:123
virtual result< uint64_t > get_function_address(const std::string &func_name) const
Return the address of the given function name.
std::vector< uint8_t > assemble(uint64_t address, const std::vector< llvm::MCInst > &insts)
Assemble and patch the address with the given LLVM MCInst.
it_sections sections()
Return an iterator over the binary's sections (LIEF::Section).
Definition Abstract/Binary.hpp:146
virtual functions_t ctor_functions() const =0
Constructor functions that are called prior any other functions.
instructions_it disassemble(uint64_t address) const
Disassemble code starting a the given virtual address.
std::vector< uint8_t > assemble(uint64_t address, const llvm::MCInst &inst)
Assemble and patch the address with the given LLVM MCInst.
Binary & operator=(const Binary &)=delete
iterator_range< assembly::Instruction::Iterator > instructions_it
Instruction iterator.
Definition Abstract/Binary.hpp:101
virtual uint64_t imagebase() const =0
Default image base address if the ASLR is not enabled.
std::vector< std::string > imported_libraries() const
Return libraries which are imported by the binary.
Definition Abstract/Binary.hpp:180
instructions_it disassemble(const std::vector< uint8_t > &buffer, uint64_t address=0) const
Disassemble code provided by the given vector of bytes at the specified address parameter.
Definition Abstract/Binary.hpp:337
DebugInfo * debug_info() const
Return the debug info if present. It can be either a LIEF::dwarf::DebugInfo or a LIEF::pdb::DebugInfo...
uint64_t original_size() const
Binary's original size.
Definition Abstract/Binary.hpp:170
void accept(Visitor &visitor) const override
Method so that a visitor can visit us.
it_const_relocations relocations() const
Definition Abstract/Binary.hpp:162
ref_iterator< relocations_t > it_relocations
Iterator that outputs LIEF::Relocation&.
Definition Abstract/Binary.hpp:95
std::vector< Relocation * > relocations_t
Internal container.
Definition Abstract/Binary.hpp:92
instructions_it disassemble(LIEF::span< uint8_t > buffer, uint64_t address=0) const
Definition Abstract/Binary.hpp:347
Binary(const Binary &)=delete
instructions_it disassemble(LIEF::span< const uint8_t > buffer, uint64_t address=0) const
Definition Abstract/Binary.hpp:342
instructions_it disassemble(const uint8_t *buffer, size_t size, uint64_t address=0) const
Disassemble code provided by the given buffer at the specified address parameter.
virtual bool has_nx() const =0
Check if the binary uses NX protection.
Definition Abstract/DebugInfo.hpp:25
Class which represents an abstracted Relocation.
Definition Abstract/Relocation.hpp:27
Class which represents an abstracted section.
Definition Abstract/Section.hpp:29
This class represents a symbol in an executable format.
Definition Abstract/Symbol.hpp:28
Definition Visitor.hpp:210
This class exposes the different elements that can be configured to assemble code.
Definition AssemblerConfig.hpp:29
static AssemblerConfig & default_config()
Default configuration.
Definition AssemblerConfig.hpp:50
This class interfaces the assembler/disassembler support.
Definition Engine.hpp:36
Definition iterators.hpp:486
Iterator which returns reference on container's values.
Definition iterators.hpp:46
@ read_error
Definition errors.hpp:24
tl::unexpected< lief_errors > make_error_code(lief_errors e)
Create an standard error code from lief_errors.
Definition errors.hpp:52
Namespace related to assembly/disassembly support.
Definition Abstract/Binary.hpp:47
LIEF namespace.
Definition Abstract/Binary.hpp:40
tcb::span< ElementType, Extent > span
Definition span.hpp:22
ref_iterator< CT, U, typename decay_t< CT >::const_iterator > const_ref_iterator
Iterator which return const ref on container's values.
Definition iterators.hpp:257
const char * to_string(Binary::VA_TYPES e)
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:75
Definition Abstract/Binary.hpp:35
#define LIEF_API
Definition visibility.h:41
#define LIEF_LOCAL
Definition visibility.h:42