LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
Abstract/Binary.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2026 R. Thomas
2 * Copyright 2017 - 2026 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_ABSTRACT_BINARY_H
17#define LIEF_ABSTRACT_BINARY_H
18
19#include <vector>
20#include <memory>
21#include <unordered_map>
22
23#include "LIEF/visibility.h"
24#include "LIEF/Object.hpp"
25#include "LIEF/iterators.hpp"
26#include "LIEF/errors.hpp"
27#include "LIEF/span.hpp"
28
31
34
35namespace llvm {
36class MCInst;
37}
38
40namespace LIEF {
41class Section;
42class Relocation;
43class Symbol;
44
45class DebugInfo;
46
47namespace assembly {
48class Engine;
49}
50
59class LIEF_API Binary : public Object {
60 public:
62 enum class VA_TYPES {
65 AUTO = 0,
66
68 RVA = 1,
69
71 VA = 2,
72 };
73
81
82 using functions_t = std::vector<Function>;
83
85 using sections_t = std::vector<Section*>;
86
89
92
94 using symbols_t = std::vector<Symbol*>;
95
98
101
103 using relocations_t = std::vector<Relocation*>;
104
107
110
113
114 public:
117
118 ~Binary() override;
119
120 Binary& operator=(const Binary&) = delete;
121 Binary(const Binary&) = delete;
122
124 FORMATS format() const {
125 return format_;
126 }
127
129 Header header() const {
130 return get_abstract_header();
131 }
132
136 return get_abstract_symbols();
137 }
138
142 return const_cast<Binary*>(this)->get_abstract_symbols();
143 }
144
146 bool has_symbol(const std::string& name) const {
147 return get_symbol(name) != nullptr;
148 }
149
152 const Symbol* get_symbol(const std::string& name) const;
153
154 Symbol* get_symbol(const std::string& name) {
155 return const_cast<Symbol*>(static_cast<const Binary*>(this)->get_symbol(name));
156 }
157
160 return get_abstract_sections();
161 }
162
164 return const_cast<Binary*>(this)->get_abstract_sections();
165 }
166
168 virtual void remove_section(const std::string& name, bool clear = false) = 0;
169
172 return get_abstract_relocations();
173 }
174
176 return const_cast<Binary*>(this)->get_abstract_relocations();
177 }
178
180 virtual uint64_t entrypoint() const = 0;
181
183 uint64_t original_size() const {
184 return original_size_;
185 }
186
189 return get_abstract_exported_functions();
190 }
191
193 std::vector<std::string> imported_libraries() const {
194 return get_abstract_imported_libraries();
195 }
196
199 return get_abstract_imported_functions();
200 }
201
203 virtual result<uint64_t>
204 get_function_address(const std::string& func_name) const;
205
207 void accept(Visitor& visitor) const override;
208
209 std::vector<uint64_t> xref(uint64_t address) const;
210
217 virtual void patch_address(uint64_t address,
218 const std::vector<uint8_t>& patch_value,
219 VA_TYPES addr_type = VA_TYPES::AUTO) = 0;
220
228 virtual void patch_address(uint64_t address, uint64_t patch_value,
229 size_t size = sizeof(uint64_t),
230 VA_TYPES addr_type = VA_TYPES::AUTO) = 0;
231
234 uint64_t virtual_address, uint64_t size, VA_TYPES addr_type = VA_TYPES::AUTO
235 ) const = 0;
236
238 template<class T>
241 VA_TYPES addr_type = VA_TYPES::AUTO) const {
242 T value;
243 static_assert(std::is_integral<T>::value, "Require an integral type");
245 get_content_from_virtual_address(va, sizeof(T), addr_type);
246 if (raw.empty() || raw.size() < sizeof(T)) {
248 }
249
250 std::copy(raw.data(), raw.data() + sizeof(T),
251 reinterpret_cast<uint8_t*>(&value));
252 return value;
253 }
254
260 void original_size(uint64_t size) {
261 original_size_ = size;
262 }
263
265 virtual bool is_pie() const = 0;
266
268 virtual bool has_nx() const = 0;
269
271 virtual uint64_t imagebase() const = 0;
272
274 virtual functions_t ctor_functions() const = 0;
275
282 uint64_t slide = 0) const = 0;
283
284 virtual std::ostream& print(std::ostream& os) const {
285 return os;
286 }
287
288 LIEF_API friend std::ostream& operator<<(std::ostream& os,
289 const Binary& binary) {
290 binary.print(os);
291 return os;
292 }
293
308
320 instructions_it disassemble(uint64_t address, size_t size) const;
321
332 instructions_it disassemble(uint64_t address) const;
333
344 instructions_it disassemble(const std::string& function) const;
345
350 instructions_it disassemble(const uint8_t* buffer, size_t size,
351 uint64_t address = 0) const;
352
353
358 instructions_it disassemble(const std::vector<uint8_t>& buffer,
359 uint64_t address = 0) const {
360 return disassemble(buffer.data(), buffer.size(), address);
361 }
362
364 uint64_t address = 0) const {
365 return disassemble(buffer.data(), buffer.size(), address);
366 }
367
369 uint64_t address = 0) const {
370 return disassemble(buffer.data(), buffer.size(), address);
371 }
372
386 std::vector<uint8_t> assemble(uint64_t address, const std::string& Asm,
389
394 std::vector<uint8_t> assemble(uint64_t address, const llvm::MCInst& inst);
395
400 std::vector<uint8_t> assemble(uint64_t address,
401 const std::vector<llvm::MCInst>& insts);
402
405 virtual uint64_t page_size() const;
406
425 DebugInfo* load_debug_info(const std::string& path);
426
428 virtual uint64_t virtual_size() const {
429 return 0;
430 }
431
432 protected:
433 FORMATS format_ = FORMATS::UNKNOWN;
434 mutable std::unique_ptr<DebugInfo> debug_info_;
435 mutable std::unordered_map<uint32_t, std::unique_ptr<assembly::Engine>> engines_;
436 uint64_t original_size_ = 0;
437
438 assembly::Engine* get_engine(uint64_t address) const;
439
440 template<uint32_t Key, class F>
441 LIEF_LOCAL assembly::Engine* get_cache_engine(uint64_t address, F&& f) const;
442
443 // These functions need to be overloaded by the object that claims to extend this
444 // Abstract Binary
445 virtual Header get_abstract_header() const = 0;
446 virtual symbols_t get_abstract_symbols() = 0;
447 virtual sections_t get_abstract_sections() = 0;
448 virtual relocations_t get_abstract_relocations() = 0;
449
450 virtual functions_t get_abstract_exported_functions() const = 0;
451 virtual functions_t get_abstract_imported_functions() const = 0;
452 virtual std::vector<std::string> get_abstract_imported_libraries() const = 0;
453};
454
457
458}
459
460
461#endif
Header header() const
Return the abstract header of the binary.
Definition Abstract/Binary.hpp:129
ref_iterator< symbols_t > it_symbols
Iterator that outputs LIEF::Symbol&.
Definition Abstract/Binary.hpp:97
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:82
functions_t imported_functions() const
Return functions imported by the binary.
Definition Abstract/Binary.hpp:198
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:109
FORMATS
Definition Abstract/Binary.hpp:74
@ UNKNOWN
Definition Abstract/Binary.hpp:75
@ ELF
Definition Abstract/Binary.hpp:76
@ OAT
Definition Abstract/Binary.hpp:79
@ PE
Definition Abstract/Binary.hpp:77
@ MACHO
Definition Abstract/Binary.hpp:78
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:146
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:154
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:240
FORMATS format() const
Executable format (ELF, PE, Mach-O) of the underlying binary.
Definition Abstract/Binary.hpp:124
friend std::ostream & operator<<(std::ostream &os, const Binary &binary)
Definition Abstract/Binary.hpp:288
ref_iterator< sections_t > it_sections
Iterator that outputs LIEF::Section&.
Definition Abstract/Binary.hpp:88
it_const_sections sections() const
Definition Abstract/Binary.hpp:163
const_ref_iterator< sections_t > it_const_sections
Iterator that outputs const LIEF::Section&.
Definition Abstract/Binary.hpp:91
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:171
it_const_symbols symbols() const
Return an iterator over the abstracted symbols in which the elements can't be modified.
Definition Abstract/Binary.hpp:141
std::vector< Symbol * > symbols_t
Internal container.
Definition Abstract/Binary.hpp:94
~Binary() override
instructions_it disassemble(uint64_t address, size_t size) const
Disassemble code starting at the given virtual address and with the given size.
virtual uint64_t virtual_size() const
Size of the binary when mapped in memory.
Definition Abstract/Binary.hpp:428
DebugInfo * load_debug_info(const std::string &path)
Load and associate an external debug file (e.g., DWARF or PDB) with this binary.
void original_size(uint64_t size)
Change binary's original size.
Definition Abstract/Binary.hpp:260
VA_TYPES
Enumeration of virtual address types used for patching and memory access.
Definition Abstract/Binary.hpp:62
@ AUTO
Automatically determine if the address is absolute or relative (default behavior).
Definition Abstract/Binary.hpp:65
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:85
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:188
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:284
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:100
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:135
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:159
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 at 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:112
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:193
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:358
Binary(FORMATS fmt)
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:183
void accept(Visitor &visitor) const override
Method so that a visitor can visit us.
it_const_relocations relocations() const
Definition Abstract/Binary.hpp:175
ref_iterator< relocations_t > it_relocations
Iterator that outputs LIEF::Relocation&.
Definition Abstract/Binary.hpp:106
std::vector< Relocation * > relocations_t
Internal container.
Definition Abstract/Binary.hpp:103
instructions_it disassemble(LIEF::span< uint8_t > buffer, uint64_t address=0) const
Definition Abstract/Binary.hpp:368
Binary(const Binary &)=delete
instructions_it disassemble(LIEF::span< const uint8_t > buffer, uint64_t address=0) const
Definition Abstract/Binary.hpp:363
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.
This class provides a generic interface for accessing debug information from different formats such a...
Definition Abstract/DebugInfo.hpp:38
Definition Abstract/Header.hpp:40
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:212
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:567
Iterator which returns reference on container's values.
Definition iterators.hpp:45
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:77
@ read_error
Definition errors.hpp:25
tl::unexpected< lief_errors > make_error_code(lief_errors e)
Create an standard error code from lief_errors.
Definition errors.hpp:53
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:286
const char * to_string(Binary::VA_TYPES e)
Definition Abstract/Binary.hpp:35
#define LIEF_API
Definition visibility.h:43
#define LIEF_LOCAL
Definition visibility.h:44