16#ifndef LIEF_MACHO_FILESET_COMMAND_H
17#define LIEF_MACHO_FILESET_COMMAND_H
31struct fileset_entry_command;
43 name_(std::move(
name))
51 std::unique_ptr<LoadCommand>
clone()
const override {
58 const std::string&
name()
const {
64 return virtual_address_;
83 name_ = std::move(
name);
93 std::ostream&
print(std::ostream& os)
const override;
101 uint64_t virtual_address_ = 0;
102 uint64_t file_offset_ = 0;
103 Binary* binary_ =
nullptr;
Class used to parse a single binary (i.e. non-FAT).
Definition BinaryParser.hpp:78
Class which represents a MachO binary.
Definition MachO/Binary.hpp:88
void virtual_address(uint64_t virtual_address)
Definition FilesetCommand.hpp:86
uint64_t file_offset() const
Original offset in the kernel cache.
Definition FilesetCommand.hpp:68
std::unique_ptr< LoadCommand > clone() const override
Definition FilesetCommand.hpp:51
void name(std::string name)
Definition FilesetCommand.hpp:82
friend class BinaryParser
Definition FilesetCommand.hpp:37
uint64_t virtual_address() const
Memory address where the MachO file should be mapped.
Definition FilesetCommand.hpp:63
static bool classof(const LoadCommand *cmd)
Definition FilesetCommand.hpp:95
void swap(FilesetCommand &other) noexcept
FilesetCommand & operator=(FilesetCommand copy)
FilesetCommand(std::string name)
Definition FilesetCommand.hpp:42
std::ostream & print(std::ostream &os) const override
const Binary * binary() const
Return a pointer on the LIEF::MachO::Binary associated with this entry.
Definition FilesetCommand.hpp:74
FilesetCommand(const details::fileset_entry_command &command)
std::vector< uint8_t > content_t
Definition FilesetCommand.hpp:38
const std::string & name() const
Name of the underlying MachO binary (e.g. com.apple.security.quarantine).
Definition FilesetCommand.hpp:58
void file_offset(uint64_t file_offset)
Definition FilesetCommand.hpp:89
FilesetCommand(const FilesetCommand ©)
~FilesetCommand() override=default
Binary * binary()
Definition FilesetCommand.hpp:78
LoadCommand::TYPE command() const
Command type.
Definition LoadCommand.hpp:128
friend class Binary
Definition LoadCommand.hpp:40
@ FILESET_ENTRY
Definition LoadCommand.hpp:99
Definition endianness_support.hpp:59
Namespace related to the LIEF's Mach-O module.
Definition Abstract/Header.hpp:36
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:41