17#ifndef LIEF_MACHO_BINARY_H
18#define LIEF_MACHO_BINARY_H
91 using commands_t = std::vector<std::unique_ptr<LoadCommand>>;
220 return get_symbol(name) !=
nullptr;
233 return {symbols_, [] (
const std::unique_ptr<Symbol>& symbol) {
234 return is_exported(*symbol); }
238 return {symbols_, [] (
const std::unique_ptr<Symbol>& symbol) {
239 return is_exported(*symbol);
248 return {symbols_, [] (
const std::unique_ptr<Symbol>& symbol) {
249 return is_imported(*symbol);
254 return {symbols_, [] (
const std::unique_ptr<Symbol>& symbol) {
255 return is_imported(*symbol);
291 void write(
const std::string& filename)
override;
296 void write(std::ostream& os)
override;
299 std::vector<uint8_t>
raw();
346 void remove_section(
const std::string& segname,
const std::string& secname,
bool clear =
false);
381 return get_section(name) !=
nullptr;
401 return get_segment(name) !=
nullptr;
479 std::ostream&
print(std::ostream& os)
const override;
487 void patch_address(uint64_t address,
const std::vector<uint8_t>& patch_value,
498 size_t size =
sizeof(uint64_t),
503 uint64_t virtual_address, uint64_t size,
511 return header().has(Header::FLAGS::PIE);
516 return !has_nx_stack();
521 return !header().has(Header::FLAGS::ALLOW_STACK_EXECUTION);
526 return !header().has(Header::FLAGS::NO_HEAP_EXECUTION);
533 return has_main_command() || has_thread_command();
722 template<
class CMD,
class Func>
746 return fileset_name_;
763 return in_memory_base_addr_;
768 static constexpr auto CPU_SUBTYPE_ARM64E = 2;
769 return header().cpu_type() == Header::CPU_TYPE::ARM64 &&
770 (header().cpu_subtype() &
~Header::CPU_SUBTYPE_MASK) == CPU_SUBTYPE_ARM64E;
776 return bin->
format() == Binary::FORMATS::MACHO;
787 void shift_command(
size_t width, uint64_t from_offset);
792 void refresh_seg_offset();
803 std::vector<std::string> get_abstract_imported_libraries()
const override;
805 relocations_t& relocations_list() {
806 return this->relocations_;
809 const relocations_t& relocations_list()
const {
810 return this->relocations_;
813 size_t pointer_size()
const {
814 return this->is64_ ?
sizeof(uint64_t) : sizeof(uint32_t);
819 commands_t commands_;
823 libraries_cache_t libraries_;
827 sections_cache_t sections_;
830 segments_cache_t segments_;
832 fileset_binaries_t filesets_;
835 mutable relocations_t relocations_;
836 int32_t available_command_space_ = 0;
840 std::map<uint64_t, SegmentCommand*> offset_seg_;
843 uint64_t fat_offset_ = 0;
844 uint64_t fileset_offset_ = 0;
845 uint64_t in_memory_base_addr_ = 0;
846 std::string fileset_name_;
847 std::vector<uint8_t> overlay_;
Abstract binary that exposes an uniform API for the different executable file formats.
Definition Abstract/Binary.hpp:41
std::vector< Function > functions_t
Definition Abstract/Binary.hpp:59
FORMATS format() const
Executable format (ELF, PE, Mach-O) of the underlying binary.
Definition Abstract/Binary.hpp:98
std::vector< Symbol * > symbols_t
Internal container.
Definition Abstract/Binary.hpp:71
VA_TYPES
Type of a virtual address.
Definition Abstract/Binary.hpp:45
@ AUTO
Try to guess if it's relative or not.
std::vector< Section * > sections_t
Internal container.
Definition Abstract/Binary.hpp:62
std::vector< Relocation * > relocations_t
Internal container.
Definition Abstract/Binary.hpp:80
Class used to parse a single binary (i.e. non-FAT)
Definition BinaryParser.hpp:74
Class which represents a MachO binary.
Definition MachO/Binary.hpp:77
Symbol * add_local_symbol(uint64_t address, const std::string &name)
Add a symbol in LC_SYMTAB command of the current binary.
UUIDCommand * uuid()
Return the MachO::UUIDCommand if present, a nullptr otherwise.
bool has_build_version() const
true if the binary has the BuildVersion command.
std::vector< uint8_t > raw()
Reconstruct the binary object and return its content as bytes.
size_t count_commands() const
static bool classof(const LIEF::Binary *bin)
Definition MachO/Binary.hpp:775
bool is_pie() const override
Check if the binary is position independent.
Definition MachO/Binary.hpp:510
bool has_function_starts() const
true if the binary has a MachO::FunctionStarts command.
uint64_t entrypoint() const override
The binary entrypoint.
bool has_segment_split_info() const
true if the binary has segment split info.
it_imported_symbols imported_symbols()
Return binary's imported symbols (iterator over LIEF::MachO::Symbol)
Definition MachO/Binary.hpp:247
const ThreadCommand * thread_command() const
Section * section_from_offset(uint64_t offset)
Return the MachO::Section that encompasses the provided offset. If a section can't be found,...
const SegmentSplitInfo * segment_split_info() const
const Section * section_from_offset(uint64_t offset) const
bool has_source_version() const
true if the binary has a MachO::SourceVersion command.
const SegmentCommand * get_segment(const std::string &name) const
Return the segment from the given name.
const UUIDCommand * uuid() const
it_commands commands()
Return an iterator over the MachO LoadCommand present in the binary.
Definition MachO/Binary.hpp:192
range_t off_ranges() const
Return the range of offsets.
const DataInCode * data_in_code() const
result< uint64_t > offset_to_virtual_address(uint64_t offset, uint64_t slide=0) const override
Convert the given offset into a virtual address.
const SegmentCommand * segment_from_virtual_address(uint64_t virtual_address) const
result< uint64_t > virtual_address_to_offset(uint64_t virtual_address) const
Convert a virtual address to an offset in the file.
bool has_dynamic_symbol_command() const
true if the binary has a MachO::DynamicSymbolCommand command.
const DyldInfo * dyld_info() const
TwoLevelHints * two_level_hints()
Return the MachO::DyldChainedFixups if present, a nullptr otherwise.
bool is_valid_addr(uint64_t address) const
Check if the given address is encompassed in the binary's virtual addresses range.
LoadCommand * add(const DylibCommand &library)
Insert the given DylibCommand.
DylinkerCommand * dylinker()
Return the MachO::DylinkerCommand if present, a nullptr otherwise.
bool has_dylinker() const
true if the binary has a MachO::DylinkerCommand.
Section * get_section(const std::string &segname, const std::string &secname)
Return the section from the segment with the name given in the first parameter and with the section's...
const VersionMin * version_min() const
bool has_dyld_chained_fixups() const
true if the binary has the command LC_DYLD_CHAINED_FIXUPS.
void write(const std::string &filename) override
Reconstruct the binary object and write the result in the given filename
bool has_dyld_info() const
true if the binary has a MachO::DyldInfo command.
EncryptionInfo * encryption_info()
Return the MachO::DyldEnvironment if present, a nullptr otherwise.
DataInCode * data_in_code()
Return the MachO::DataInCode if present, a nullptr otherwise.
const TwoLevelHints * two_level_hints() const
std::vector< DylibCommand * > libraries_cache_t
Internal container for storing Mach-O DylibCommand.
Definition MachO/Binary.hpp:139
std::string loader() const
Return the binary's loader (e.g. /usr/lib/dyld) or an empty string if the binary does not use a loade...
bool has_symbol(const std::string &name) const
Check if a symbol with the given name exists.
Definition MachO/Binary.hpp:219
BuildVersion * build_version()
Return the MachO::BuildVersion if present, a nullptr otherwise.
bool has_symbol_command() const
true if the binary has a MachO::SymbolCommand command.
const LoadCommand * operator[](LoadCommand::TYPE type) const
Definition MachO/Binary.hpp:728
size_t segment_index(const SegmentCommand &segment) const
Return the index of the given SegmentCommand.
bool has_rpath() const
true if the binary has a MachO::RPathCommand command.
it_const_fileset_binaries filesets() const
Definition MachO/Binary.hpp:206
ok_error_t shift_linkedit(size_t width)
Shift the position on the __LINKEDIT data by width
std::vector< SegmentCommand * > segments_cache_t
Internal container for storing Mach-O SegmentCommand.
Definition MachO/Binary.hpp:130
it_relocations relocations()
Return an iterator over the MachO::Relocation.
bool extend(const LoadCommand &command, uint64_t size)
Extend the size of the given LoadCommand.
VersionMin * version_min()
Return the MachO::VersionMin command if present, a nullptr otherwise.
bool remove_signature()
Remove the LC_SIGNATURE command.
bool has_nx() const override
Check if the binary uses NX protection.
Definition MachO/Binary.hpp:515
bool can_remove(const Symbol &sym) const
Check if the given symbol can be safely removed.
const SourceVersion * source_version() const
void remove_section(const std::string &segname, const std::string &secname, bool clear=false)
Remove the section from the segment with the name given in the first parameter and with the section's...
uint64_t imagebase() const override
Return the binary's imagebase. 0 if not relevant.
std::ostream & print(std::ostream &os) const override
bool disable_pie()
Remove the PIE flag.
bool can_remove_symbol(const std::string &name) const
Check if the MachO::Symbol with the given name can be safely removed.
ThreadCommand * thread_command()
Return the MachO::ThreadCommand command if present, a nullptr otherwise.
Section * section_from_virtual_address(uint64_t virtual_address)
Return the MachO::Section that encompasses the provided virtual address. If a section can't be found,...
bool has_segment(const std::string &name) const
Check if a segment with the given name exists.
Definition MachO/Binary.hpp:400
bool has_uuid() const
true if the binary has a MachO::UUIDCommand command.
const Section * section_from_virtual_address(uint64_t virtual_address) const
bool remove_symbol(const std::string &name)
Remove the symbol with the given name.
DyldExportsTrie * dyld_exports_trie()
Return the MachO::DyldChainedFixups if present, a nullptr otherwise.
const DyldEnvironment * dyld_environment() const
it_const_sections sections() const
Definition MachO/Binary.hpp:280
it_const_symbols symbols() const
Definition MachO/Binary.hpp:214
std::vector< std::unique_ptr< LoadCommand > > commands_t
Internal container for storing Mach-O LoadCommand.
Definition MachO/Binary.hpp:91
void accept(LIEF::Visitor &visitor) const override
Method so that the visitor can visit us.
bool has_dyld_exports_trie() const
true if the binary has the command LC_DYLD_CHAINED_FIXUPS.
bool remove(LoadCommand::TYPE type)
Remove all LoadCommand with the given type (MachO::LoadCommand::TYPE)
it_symbols symbols()
Return binary's symbols .
Definition MachO/Binary.hpp:211
LoadCommand * operator[](LoadCommand::TYPE type)
Definition MachO/Binary.hpp:725
bool has_linker_opt_hint() const
true if the binary has the command LC_LINKER_OPTIMIZATION_HINT.
const DyldChainedFixups * dyld_chained_fixups() const
ok_error_t shift(size_t value)
Shift the content located right after the Load commands table. This operation can be used to add a ne...
std::vector< std::unique_ptr< Binary > > fileset_binaries_t
Internal container for storing Mach-O Fileset Binary.
Definition MachO/Binary.hpp:148
LIEF::Binary::functions_t ctor_functions() const override
Return the list of the MachO's constructors.
std::unique_ptr< objc::Metadata > objc_metadata() const
Return Objective-C metadata if present.
const FunctionStarts * function_starts() const
it_segments segments()
Return an iterator over the SegmentCommand.
Definition MachO/Binary.hpp:269
Binary(const Binary &)=delete
Section * get_section(const std::string &name)
Return the section from the given name of a nullptr if the section can't be found.
it_fileset_binaries filesets()
Return an iterator over the MachO::Binary associated with the LoadCommand::TYPE::FILESET_ENTRY comman...
Definition MachO/Binary.hpp:202
Binary & operator=(const Binary &)=delete
it_const_segments segments() const
Definition MachO/Binary.hpp:272
bool has_nx_stack() const
Return True if the heap is flagged as non-executable. False otherwise.
Definition MachO/Binary.hpp:520
it_libraries libraries()
Return binary imported libraries (MachO::DylibCommand)
Definition MachO/Binary.hpp:260
bool has_data_in_code() const
true if the binary has a MachO::DataInCode command.
const SubFramework * sub_framework() const
const Section * get_section(const std::string &name) const
Return the section from the given name or a nullptr if the section can't be found.
static bool is_exported(const Symbol &symbol)
Check if the given symbol is exported.
Section * add_section(const Section §ion)
Add a new MachO::Section in the __TEXT segment.
const SegmentCommand * segment_from_offset(uint64_t offset) const
it_exported_symbols exported_symbols()
Return binary's exported symbols (iterator over LIEF::MachO::Symbol)
Definition MachO/Binary.hpp:232
const MainCommand * main_command() const
it_const_relocations relocations() const
span< const uint8_t > overlay() const
Definition MachO/Binary.hpp:779
SegmentCommand * segment_from_virtual_address(uint64_t virtual_address)
Return the binary's SegmentCommand which encompasses the given virtual address or a nullptr if not fo...
DyldChainedFixups * dyld_chained_fixups()
Return the MachO::DyldChainedFixups if present, a nullptr otherwise.
const RPathCommand * rpath() const
const CodeSignature * code_signature() const
RPathCommand * rpath()
Return the MachO::RPathCommand command if present, a nullptr otherwise.
SegmentCommand * get_segment(const std::string &name)
Return the segment from the given name.
span< const uint8_t > get_content_from_virtual_address(uint64_t virtual_address, uint64_t size, Binary::VA_TYPES addr_type=Binary::VA_TYPES::AUTO) const override
Return the content located at virtual address.
const CodeSignatureDir * code_signature_dir() const
bool extend_segment(const SegmentCommand &segment, size_t size)
Extend the content of the given SegmentCommand.
const DynamicSymbolCommand * dynamic_symbol_command() const
const T * command() const
SymbolCommand * symbol_command()
Return the MachO::SymbolCommand if present, a nullptr otherwise.
LinkerOptHint * linker_opt_hint()
Return the MachO::LinkerOptHint if present, a nullptr otherwise.
uint64_t fat_offset() const
Return binary's fat offset. 0 if not relevant.
Definition MachO/Binary.hpp:457
const Header & header() const
Definition MachO/Binary.hpp:186
it_rpaths rpaths()
Iterator over all the MachO::RPathCommand commands.
bool has_nx_heap() const
Return True if the stack is flagged as non-executable. False otherwise.
Definition MachO/Binary.hpp:525
uint32_t page_size() const
LoadCommand * add(const LoadCommand &command)
Insert a new LoadCommand.
bool remove(const Symbol &sym)
Remove the given symbol.
bool has_version_min() const
true if the binary has a MachO::VersionMin command.
DyldEnvironment * dyld_environment()
Return the MachO::DyldEnvironment if present, a nullptr otherwise.
bool remove(const LoadCommand &command)
Remove the given LoadCommand.
SourceVersion * source_version()
Return the MachO::SourceVersion command if present, a nullptr otherwise.
static bool is_imported(const Symbol &symbol)
Check if the given symbol is an imported one.
LoadCommand * add(const LoadCommand &command, size_t index)
Insert a new LoadCommand at the specified index
std::vector< std::unique_ptr< Symbol > > symbols_t
Internal container for storing Mach-O Symbol.
Definition MachO/Binary.hpp:100
void patch_address(uint64_t address, uint64_t patch_value, size_t size=sizeof(uint64_t), LIEF::Binary::VA_TYPES addr_type=LIEF::Binary::VA_TYPES::AUTO) override
Patch the address with the given value.
CodeSignature * code_signature()
Return the MachO::CodeSignature if present, a nullptr otherwise.
LoadCommand * add_library(const std::string &name)
Insert a new shared library through a LC_LOAD_DYLIB command.
Section * add_section(const SegmentCommand &segment, const Section §ion)
Add a section in the given MachO::SegmentCommand.
void remove_section(const std::string &name, bool clear=false) override
Remove the section with the name provided in the first parameter.
const Symbol * get_symbol(const std::string &name) const
Return Symbol from the given name. If the symbol does not exists, it returns a null pointer.
bool remove_command(size_t index)
Remove the Load Command at the provided index
uint64_t memory_base_address() const
If this Mach-O binary has been parsed from memory, it returns the in-memory base address of this bina...
Definition MachO/Binary.hpp:762
bool has_sub_framework() const
true if the binary has a sub framework command.
LIEF::Binary::functions_t functions() const
Return all the functions found in this MachO.
const LoadCommand * get(LoadCommand::TYPE type) const
Return the LoadCommand associated with the given LoadCommand::TYPE or a nullptr if the command can't ...
const LinkerOptHint * linker_opt_hint() const
FunctionStarts * function_starts()
Return the MachO::FunctionStarts command if present, a nullptr otherwise.
SegmentSplitInfo * segment_split_info()
Return the MachO::SegmentSplitInfo if present, a nullptr otherwise.
LoadCommand * add(const SegmentCommand &segment)
Add a new LC_SEGMENT command from the given SegmentCommand.
LoadCommand * get(LoadCommand::TYPE type)
bool has_entrypoint() const
true if the binary has an entrypoint.
Definition MachO/Binary.hpp:532
bool has_two_level_hints() const
true if the binary has the command LC_TWO_LEVEL_HINTS.
it_const_rpaths rpaths() const
DyldInfo * dyld_info()
Return the MachO::Dyld command if present, a nullptr otherwise.
void patch_address(uint64_t address, const std::vector< uint8_t > &patch_value, LIEF::Binary::VA_TYPES addr_type=LIEF::Binary::VA_TYPES::AUTO) override
Patch the content at virtual address address with patch_value.
const EncryptionInfo * encryption_info() const
MainCommand * main_command()
Return the MachO::MainCommand if present, a nullptr otherwise.
bool has_encryption_info() const
true if the binary has Encryption Info.
bool has(LoadCommand::TYPE type) const
Check if the current binary has the given MachO::LoadCommand::TYPE.
const DyldExportsTrie * dyld_exports_trie() const
uint64_t virtual_size() const
Size of the binary in memory when mapped by the loader (dyld)
const SymbolCommand * symbol_command() const
range_t va_ranges() const
Return the range of virtual addresses.
DynamicSymbolCommand * dynamic_symbol_command()
Return the MachO::SymbolCommand if present, a nullptr otherwise.
bool has_code_signature_dir() const
true if the binary is signed with the command DYLIB_CODE_SIGN_DRS
CodeSignatureDir * code_signature_dir()
Return the MachO::CodeSignatureDir if present, a nullptr otherwise.
std::set< Relocation *, KeyCmp > relocations_t
Internal container that store all the relocations found in a Mach-O. The relocations are actually own...
Definition MachO/Binary.hpp:163
bool has_code_signature() const
true if the binary is signed with LC_CODE_SIGNATURE command
std::vector< Section * > sections_cache_t
Internal container for caching Mach-O Section.
Definition MachO/Binary.hpp:121
const Section * get_section(const std::string &segname, const std::string &secname) const
bool has_section(const std::string &name) const
Check if a section with the given name exists.
Definition MachO/Binary.hpp:380
it_const_imported_symbols imported_symbols() const
Definition MachO/Binary.hpp:253
bool has_main_command() const
true if the binary has a MachO::MainCommand command.
Header & header()
Return a reference to the MachO::Header.
Definition MachO/Binary.hpp:182
ExportInfo * add_exported_function(uint64_t address, const std::string &name)
Add a symbol in the export trie of the current binary.
bool support_arm64_ptr_auth() const
Definition MachO/Binary.hpp:767
it_const_commands commands() const
Definition MachO/Binary.hpp:196
bool has_dyld_environment() const
true if the binary has Dyld envrionment variables.
it_const_libraries libraries() const
Definition MachO/Binary.hpp:264
const std::string & fileset_name() const
Name associated with the LC_FILESET_ENTRY binary.
Definition MachO/Binary.hpp:745
Binary & for_commands(Func f)
bool has_filesets() const
true if the binary has a LoadCommand::TYPE::FILESET_ENTRY command
Symbol * get_symbol(const std::string &name)
SegmentCommand * segment_from_offset(uint64_t offset)
Return the binary's SegmentCommand that encompasses the provided offset.
const DylinkerCommand * dylinker() const
bool unexport(const std::string &name)
Remove the given MachO::Symbol with the given name from the export table.
LIEF::Binary::functions_t unwind_functions() const
Return the functions found in the __unwind_info section.
it_const_exported_symbols exported_symbols() const
Definition MachO/Binary.hpp:237
bool has_thread_command() const
true if the binary has a MachO::ThreadCommand command.
void write(std::ostream &os) override
Reconstruct the binary object and write the result in the given os stream.
bool unexport(const Symbol &sym)
Remove the given symbol from the export table.
const BuildVersion * build_version() const
SubFramework * sub_framework()
Return the MachO::SubFramework if present, a nullptr otherwise.
it_sections sections()
Return an iterator over the MachO::Section.
Definition MachO/Binary.hpp:277
Definition BuildVersion.hpp:34
Class used to rebuild a Mach-O file.
Definition MachO/Builder.hpp:55
Definition CodeSignatureDir.hpp:36
Definition CodeSignature.hpp:37
Interface of the LC_DATA_IN_CODE command This command is used to list slices of code sections that co...
Definition DataInCode.hpp:42
Class that represents the LC_DYLD_CHAINED_FIXUPS command.
Definition DyldChainedFixups.hpp:46
Class that represents a LC_DYLD_ENVIRONMENT command which is used by the Mach-O linker/loader to init...
Definition DyldEnvironment.hpp:34
Class that represents the LC_DYLD_EXPORTS_TRIE command.
Definition DyldExportsTrie.hpp:40
Class that represents the LC_DYLD_INFO and LC_DYLD_INFO_ONLY commands.
Definition DyldInfo.hpp:49
Class which represents a library dependency.
Definition DylibCommand.hpp:34
Class that represents the Mach-O linker, also named loader. Most of the time, DylinkerCommand::name()...
Definition DylinkerCommand.hpp:34
Class that represents the LC_DYSYMTAB command.
Definition DynamicSymbolCommand.hpp:39
Class that represents the LC_ENCRYPTION_INFO / LC_ENCRYPTION_INFO_64 commands.
Definition EncryptionInfo.hpp:35
Class that provides an interface over the Dyld export info.
Definition ExportInfo.hpp:38
Class which represents the LC_FUNCTION_STARTS command.
Definition FunctionStarts.hpp:39
Class which represents the LC_LINKER_OPTIMIZATION_HINT command.
Definition LinkerOptHint.hpp:37
Based class for the Mach-O load commands.
Definition LoadCommand.hpp:36
TYPE
Definition LoadCommand.hpp:42
Class that represent the LC_MAIN command. This kind of command can be used to determine the entrypoin...
Definition MainCommand.hpp:33
The main interface to parse a Mach-O binary.
Definition MachO/Parser.hpp:42
Class that represents the LC_RPATH command.
Definition RPathCommand.hpp:36
Class that represents a Mach-O relocation.
Definition MachO/Relocation.hpp:40
Class that represents a Mach-O section.
Definition MachO/Section.hpp:44
Class which represents a LoadCommand::TYPE::SEGMENT / LoadCommand::TYPE::SEGMENT_64 command.
Definition SegmentCommand.hpp:48
Class that represents the LoadCommand::TYPE::SEGMENT_SPLIT_INFO command.
Definition SegmentSplitInfo.hpp:35
Class that represents the MachO LoadCommand::TYPE::SOURCE_VERSION This command is used to provide the...
Definition SourceVersion.hpp:35
Class that represents the SubFramework command. Accodring to the Mach-O loader.h documentation:
Definition SubFramework.hpp:46
Class that represents the LC_SYMTAB command.
Definition SymbolCommand.hpp:35
Class that represents a Symbol in a Mach-O file.
Definition MachO/Symbol.hpp:47
Class that represents the LC_THREAD / LC_UNIXTHREAD commands and that can be used to get the binary e...
Definition ThreadCommand.hpp:41
Class which represents the LC_TWOLEVEL_HINTS command.
Definition TwoLevelHints.hpp:39
Class that represents the UUID command.
Definition UUIDCommand.hpp:35
Class that wraps the LC_VERSION_MIN_MACOSX, LC_VERSION_MIN_IPHONEOS, ... commands.
Definition VersionMin.hpp:33
Definition Visitor.hpp:224
Iterator which return a ref on container's values given predicates.
Definition iterators.hpp:265
Iterator which returns reference on container's values.
Definition iterators.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:32
result< ok_t > ok_error_t
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:108
tcb::span< ElementType, Extent > span
Definition span.hpp:22
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:74
Definition MachO/Binary.hpp:156
Definition MachO/Binary.hpp:85
#define LIEF_API
Definition visibility.h:41
#define LIEF_LOCAL
Definition visibility.h:42