16#ifndef LIEF_COFF_BINARY_H
17#define LIEF_COFF_BINARY_H
27#include <unordered_map>
51 using sections_t = std::vector<std::unique_ptr<Section>>;
79 using symbols_t = std::vector<std::unique_ptr<Symbol>>;
134 return strings_table_;
138 return strings_table_;
146 auto it = std::find_if(strings_table_.begin(), strings_table_.end(),
147 [offset](
const String& item) {
148 return offset == item.offset();
150 return it == strings_table_.end() ? nullptr : &*it;
154 return const_cast<Binary*
>(
this)->
find_string(offset);
166 return const_cast<Symbol*
>(
167 static_cast<const Binary*
>(
this)->find_function(name)
176 return const_cast<Symbol*
>(
177 static_cast<const Binary*
>(
this)->find_demangled_function(name)
211 uint64_t address = 0)
const;
219 uint64_t address = 0)
const {
220 return disassemble(buffer.data(), buffer.size(), address);
224 uint64_t address = 0)
const {
225 return disassemble(buffer.data(), buffer.size(), address);
229 uint64_t address = 0)
const {
230 return disassemble(buffer.data(), buffer.size(), address);
250 static_cast<const Binary*
>(
this)->get_section(name)
267 std::unique_ptr<Header> header_;
273 mutable std::unordered_map<uint32_t, std::unique_ptr<assembly::Engine>> engines_;
277 template<u
int32_t Key,
class F>
std::vector< std::unique_ptr< Symbol > > symbols_t
Internal container used to store COFF's symbols.
Definition COFF/Binary.hpp:79
ref_iterator< relocations_t &, Relocation * > it_relocations
Iterator that outputs Relocation& object.
Definition COFF/Binary.hpp:63
const Header & header() const
The COFF header.
Definition COFF/Binary.hpp:97
it_symbols symbols()
Iterator over the COFF's symbols.
Definition COFF/Binary.hpp:124
const_ref_iterator< const relocations_t &, const Relocation * > it_const_relocations
Iterator that outputs const Relocation& object.
Definition COFF/Binary.hpp:66
const String * find_string(uint32_t offset) const
Definition COFF/Binary.hpp:153
iterator_range< assembly::Instruction::Iterator > instructions_it
Instruction iterator.
Definition COFF/Binary.hpp:88
instructions_it disassemble(LIEF::span< uint8_t > buffer, uint64_t address=0) const
Definition COFF/Binary.hpp:228
instructions_it disassemble(LIEF::span< const uint8_t > buffer, uint64_t address=0) const
Definition COFF/Binary.hpp:223
const_ref_iterator< const strings_table_t & > it_const_strings_table
Iterator that outputs const String& object.
Definition COFF/Binary.hpp:76
it_sections sections()
Iterator over the different sections located in this COFF binary.
Definition COFF/Binary.hpp:106
it_const_symbols symbols() const
Definition COFF/Binary.hpp:128
it_const_strings_table string_table() const
Iterator over the COFF's strings.
Definition COFF/Binary.hpp:133
ref_iterator< strings_table_t & > it_strings_table
Iterator that outputs String& object.
Definition COFF/Binary.hpp:73
Symbol * find_demangled_function(const std::string &name)
Definition COFF/Binary.hpp:175
filter_iterator< symbols_t &, Symbol * > it_functions
Iterator which outputs COFF symbols representing functions.
Definition COFF/Binary.hpp:91
const_filter_iterator< const symbols_t &, const Symbol * > it_const_function
Iterator which outputs COFF symbols representing functions.
Definition COFF/Binary.hpp:94
ref_iterator< symbols_t &, Symbol * > it_symbols
Iterator that outputs Symbol& object.
Definition COFF/Binary.hpp:82
const_ref_iterator< const sections_t &, const Section * > it_const_sections
Iterator that outputs const Section& object.
Definition COFF/Binary.hpp:57
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.
const_ref_iterator< const symbols_t &, const Symbol * > it_const_symbols
Iterator that outputs Symbol& object.
Definition COFF/Binary.hpp:85
const Section * get_section(std::string_view name) const
it_strings_table string_table()
Definition COFF/Binary.hpp:137
it_const_relocations relocations() const
Definition COFF/Binary.hpp:119
it_const_function functions() const
Iterator over the functions implemented in this COFF.
const Symbol * find_demangled_function(const std::string &name) const
Try to find the function (symbol) with the given demangled name.
friend class Parser
Definition COFF/Binary.hpp:48
std::string to_string() const
it_const_sections sections() const
Definition COFF/Binary.hpp:110
Section * get_section(std::string_view name)
Return the section matching the given name or a nullptr if it can't be found.
Definition COFF/Binary.hpp:248
Header & header()
Definition COFF/Binary.hpp:101
ref_iterator< sections_t &, Section * > it_sections
Iterator that outputs Section& object.
Definition COFF/Binary.hpp:54
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 COFF/Binary.hpp:218
String * find_string(uint32_t offset)
Try to find the COFF string at the given offset in the COFF string table.
Definition COFF/Binary.hpp:145
instructions_it disassemble(const Symbol &symbol) const
Disassemble code for the given symbol.
std::vector< String > strings_table_t
Internal container used to store COFF's strings.
Definition COFF/Binary.hpp:70
std::vector< std::unique_ptr< Relocation > > relocations_t
Internal container used to store COFF's relocations.
Definition COFF/Binary.hpp:60
const Symbol * find_function(const std::string &name) const
Try to find the function (symbol) with the given name.
instructions_it disassemble(const std::string &symbol) const
Disassemble code for the given symbol name.
friend std::ostream & operator<<(std::ostream &os, const Binary &bin)
Definition COFF/Binary.hpp:258
std::vector< std::unique_ptr< Section > > sections_t
Internal container used to store COFF's section.
Definition COFF/Binary.hpp:51
it_relocations relocations()
Iterator over all the relocations used by this COFF binary.
Definition COFF/Binary.hpp:115
Definition COFF/Parser.hpp:34
This class represents a COFF relocation.
Definition COFF/Relocation.hpp:34
This class represents a COFF section.
Definition COFF/Section.hpp:41
This class represents a string located in the COFF string table.
Definition String.hpp:35
This class represents a COFF symbol.
Definition COFF/Symbol.hpp:37
This class interfaces the assembler/disassembler support.
Definition Engine.hpp:37
Iterator which returns a ref on container's values given predicates.
Definition iterators.hpp:323
Definition iterators.hpp:591
Iterator which returns reference on container's values.
Definition iterators.hpp:47
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Definition AuxiliarySymbol.hpp:30
Namespace related to assembly/disassembly support.
Definition Abstract/Binary.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:41
filter_iterator< CT, U, typename decay_t< CT >::const_iterator > const_filter_iterator
Iterator which returns a const ref on container's values given predicates.
Definition iterators.hpp:583
tcb::span< ElementType, Extent > span
Definition span.hpp:22
ref_iterator< CT, U, typename decay_t< CT >::const_iterator > const_ref_iterator
Iterator which returns a const ref on container's values.
Definition iterators.hpp:316
#define LIEF_API
Definition visibility.h:45
#define LIEF_LOCAL
Definition visibility.h:46