16#ifndef LIEF_PE_IMPORT_H
17#define LIEF_PE_IMPORT_H
49 Import(
const details::pe_import&
import);
51 name_(std::move(name))
63 return forwarder_chain_;
69 return timedatestamp_;
88 return import_address_table_RVA_;
96 return import_lookup_table_RVA_;
107 return const_cast<ImportEntry*
>(
static_cast<const Import*
>(
this)->get_entry(name));
112 const std::string&
name()
const {
118 name_ = std::move(name);
137 return iat_directory_;
140 return iat_directory_;
145 entries_.push_back(std::move(entry));
146 return entries_.back();
151 entries_.emplace_back(name);
152 return entries_.back();
156 import_lookup_table_RVA_ = rva;
159 import_address_table_RVA_ = rva;
170 uint32_t import_lookup_table_RVA_ = 0;
171 uint32_t timedatestamp_ = 0;
172 uint32_t forwarder_chain_ = 0;
173 uint32_t name_RVA_ = 0;
174 uint32_t import_address_table_RVA_ = 0;
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
Class that represents a PE data directory entry.
Definition DataDirectory.hpp:38
Class that represents an entry (i.e. an import) in the import table (Import).
Definition ImportEntry.hpp:36
Class that represents a PE import.
Definition Import.hpp:39
~Import() override=default
it_entries entries()
Definition Import.hpp:77
DataDirectory * directory()
Return the PE::DataDirectory associated with this import. It should be the one at index PE::DataDirec...
Definition Import.hpp:125
it_const_entries entries() const
Iterator over the PE::ImportEntry.
Definition Import.hpp:73
const ImportEntry * get_entry(const std::string &name) const
ImportEntry & add_entry(const std::string &name)
Add a new import entry with the given name (i.e. an imported function)
Definition Import.hpp:150
void import_lookup_table_rva(uint32_t rva)
Definition Import.hpp:155
const DataDirectory * directory() const
Definition Import.hpp:128
uint32_t forwarder_chain() const
The index of the first forwarder reference.
Definition Import.hpp:62
Import(std::string name)
Definition Import.hpp:50
ImportEntry * get_entry(const std::string &name)
Return the imported function with the given name.
Definition Import.hpp:106
void import_address_table_rva(uint32_t rva)
Definition Import.hpp:158
Import & operator=(Import &&other) noexcept=default
Import(const details::pe_import &import)
Import(const Import &other)=default
uint32_t import_lookup_table_rva() const
Return the relative virtual address of the import lookup table.
Definition Import.hpp:95
uint32_t import_address_table_rva() const
The RVA of the import address table (IAT). The content of this table is identical to the content of t...
Definition Import.hpp:87
Import(Import &&other) noexcept=default
Import & operator=(const Import &other)=default
uint32_t timedatestamp() const
The stamp that is set to zero until the image is bound. After the image is bound, this field is set t...
Definition Import.hpp:68
friend std::ostream & operator<<(std::ostream &os, const Import &entry)
void accept(Visitor &visitor) const override
result< uint32_t > get_function_rva_from_iat(const std::string &function) const
Return the Function's RVA from the import address table (IAT)
const DataDirectory * iat_directory() const
Definition Import.hpp:139
const std::string & name() const
Return the library's name (e.g. kernel32.dll)
Definition Import.hpp:112
ImportEntry & add_entry(ImportEntry entry)
Add a new import entry (i.e. an imported function)
Definition Import.hpp:144
DataDirectory * iat_directory()
Return the PE::DataDirectory associated associated with the IAT. It should be the one at index PE::Da...
Definition Import.hpp:136
std::vector< ImportEntry > entries_t
Definition Import.hpp:45
void name(std::string name)
Change the current import name.
Definition Import.hpp:117
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
Definition Visitor.hpp:224
Iterator which returns reference on container's values.
Definition iterators.hpp:48
PE_TYPE
Definition PE/enums.hpp:680
LIEF namespace.
Definition Abstract/Binary.hpp:32
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:74
#define LIEF_API
Definition visibility.h:41