LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
LoadCommand.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_MACHO_LOAD_COMMAND_H
17#define LIEF_MACHO_LOAD_COMMAND_H
18
19#include <memory>
20#include <vector>
21
22#include "LIEF/Object.hpp"
24#include "LIEF/visibility.h"
25#include "LIEF/span.hpp"
26
27namespace LIEF {
28namespace MachO {
29class Builder;
30class BinaryParser;
31class Binary;
32
33namespace details {
34struct load_command;
35}
36
38class LIEF_API LoadCommand : public Object {
39 friend class Builder;
40 friend class BinaryParser;
41 friend class Binary;
42
43 public:
44 using raw_t = std::vector<uint8_t>;
45
46 enum class TYPE : uint64_t {
48 SEGMENT = 0x00000001u,
49 SYMTAB = 0x00000002u,
50 SYMSEG = 0x00000003u,
51 THREAD = 0x00000004u,
52 UNIXTHREAD = 0x00000005u,
53 LOADFVMLIB = 0x00000006u,
54 IDFVMLIB = 0x00000007u,
55 IDENT = 0x00000008u,
56 FVMFILE = 0x00000009u,
57 PREPAGE = 0x0000000Au,
58 DYSYMTAB = 0x0000000Bu,
59 LOAD_DYLIB = 0x0000000Cu,
60 ID_DYLIB = 0x0000000Du,
61 LOAD_DYLINKER = 0x0000000Eu,
62 ID_DYLINKER = 0x0000000Fu,
63 PREBOUND_DYLIB = 0x00000010u,
64 ROUTINES = 0x00000011u,
65 SUB_FRAMEWORK = 0x00000012u,
66 SUB_UMBRELLA = 0x00000013u,
67 SUB_CLIENT = 0x00000014u,
68 SUB_LIBRARY = 0x00000015u,
69 TWOLEVEL_HINTS = 0x00000016u,
70 PREBIND_CKSUM = 0x00000017u,
71 LOAD_WEAK_DYLIB = 0x80000018u,
72 SEGMENT_64 = 0x00000019u,
73 ROUTINES_64 = 0x0000001Au,
74 UUID = 0x0000001Bu,
75 RPATH = 0x8000001Cu,
76 CODE_SIGNATURE = 0x0000001Du,
77 SEGMENT_SPLIT_INFO = 0x0000001Eu,
78 REEXPORT_DYLIB = 0x8000001Fu,
79 LAZY_LOAD_DYLIB = 0x00000020u,
80 ENCRYPTION_INFO = 0x00000021u,
81 DYLD_INFO = 0x00000022u,
82 DYLD_INFO_ONLY = 0x80000022u,
83 LOAD_UPWARD_DYLIB = 0x80000023u,
84 VERSION_MIN_MACOSX = 0x00000024u,
85 VERSION_MIN_IPHONEOS = 0x00000025u,
86 FUNCTION_STARTS = 0x00000026u,
87 DYLD_ENVIRONMENT = 0x00000027u,
88 MAIN = 0x80000028u,
89 DATA_IN_CODE = 0x00000029u,
90 SOURCE_VERSION = 0x0000002Au,
91 DYLIB_CODE_SIGN_DRS = 0x0000002Bu,
92 ENCRYPTION_INFO_64 = 0x0000002Cu,
93 LINKER_OPTION = 0x0000002Du,
94 LINKER_OPTIMIZATION_HINT = 0x0000002Eu,
95 VERSION_MIN_TVOS = 0x0000002Fu,
96 VERSION_MIN_WATCHOS = 0x00000030u,
97 NOTE = 0x00000031u,
98 BUILD_VERSION = 0x00000032u,
99 DYLD_EXPORTS_TRIE = 0x80000033u,
100 DYLD_CHAINED_FIXUPS = 0x80000034u,
101 FILESET_ENTRY = 0x80000035u,
102 ATOM_INFO = 0x00000036u,
103 FUNCTION_VARIANTS = 0x00000037u,
104 FUNCTION_VARIANT_FIXUPS = 0x00000038u,
105 TARGET_TRIPLE = 0x00000039u,
106 LAZY_LOAD_DYLIB_INFO = 0x0000003Au,
107
108 LIEF_UNKNOWN = 0xffee0001u,
109 };
110
111 public:
112 LoadCommand() = default;
113 LoadCommand(const details::load_command& command);
115 command_(type),
116 size_(size) {}
117
118 LoadCommand& operator=(const LoadCommand& copy) = default;
119 LoadCommand(const LoadCommand& copy) = default;
120
121 void swap(LoadCommand& other) noexcept;
122
123 virtual std::unique_ptr<LoadCommand> clone() const {
124 return std::unique_ptr<LoadCommand>(new LoadCommand(*this));
125 }
126
127 ~LoadCommand() override = default;
128
131 return command_;
132 }
133
135 uint32_t size() const {
136 return size_;
137 }
138
141 return original_data_;
142 }
143
145 uint64_t command_offset() const {
146 return command_offset_;
147 }
148
150 original_data_ = std::move(data);
151 }
152
154 command_ = command;
155 }
156
157 void size(uint32_t size) {
158 size_ = size;
159 }
160
161 void command_offset(uint64_t offset) {
162 command_offset_ = offset;
163 }
164
165 virtual std::ostream& print(std::ostream& os) const;
166
167 void accept(Visitor& visitor) const override;
168
169 static bool is_linkedit_data(const LoadCommand& cmd);
170
171 template<class T>
172 const T* cast() const {
173 static_assert(std::is_base_of<LoadCommand, T>::value,
174 "Require LoadCommand inheritance");
175 if (T::classof(this)) {
176 return static_cast<const T*>(this);
177 }
178 return nullptr;
179 }
180
181 template<class T>
182 T* cast() {
183 return const_cast<T*>(static_cast<const LoadCommand*>(this)->cast<T>());
184 }
185
186
187 LIEF_API friend std::ostream& operator<<(std::ostream& os,
188 const LoadCommand& cmd) {
189 return cmd.print(os);
190 }
191
192 protected:
193 raw_t original_data_;
195 uint32_t size_ = 0;
196 uint64_t command_offset_ = 0;
197};
198
200
201}
202}
203#endif
Class used to parse a single binary (i.e. non-FAT).
Definition BinaryParser.hpp:79
Class which represents a MachO binary.
Definition MachO/Binary.hpp:91
Class used to rebuild a Mach-O file.
Definition MachO/Builder.hpp:64
void command_offset(uint64_t offset)
Definition LoadCommand.hpp:161
void accept(Visitor &visitor) const override
virtual std::ostream & print(std::ostream &os) const
void data(raw_t data)
Definition LoadCommand.hpp:149
LoadCommand(const details::load_command &command)
friend std::ostream & operator<<(std::ostream &os, const LoadCommand &cmd)
Definition LoadCommand.hpp:187
uint32_t size() const
Size of the command (should be greater than sizeof(load_command)).
Definition LoadCommand.hpp:135
friend class BinaryParser
Definition LoadCommand.hpp:40
virtual std::unique_ptr< LoadCommand > clone() const
Definition LoadCommand.hpp:123
static bool is_linkedit_data(const LoadCommand &cmd)
void size(uint32_t size)
Definition LoadCommand.hpp:157
friend class Builder
Definition LoadCommand.hpp:39
LoadCommand::TYPE command() const
Command type.
Definition LoadCommand.hpp:130
span< const uint8_t > data() const
Raw command.
Definition LoadCommand.hpp:140
void command(LoadCommand::TYPE command)
Definition LoadCommand.hpp:153
void swap(LoadCommand &other) noexcept
friend class Binary
Definition LoadCommand.hpp:41
uint64_t command_offset() const
Offset of the command within the Load Command Table.
Definition LoadCommand.hpp:145
LoadCommand & operator=(const LoadCommand &copy)=default
~LoadCommand() override=default
const T * cast() const
Definition LoadCommand.hpp:172
TYPE
Definition LoadCommand.hpp:46
@ UNKNOWN
Definition LoadCommand.hpp:47
T * cast()
Definition LoadCommand.hpp:182
LoadCommand(const LoadCommand &copy)=default
LoadCommand(LoadCommand::TYPE type, uint32_t size)
Definition LoadCommand.hpp:114
std::vector< uint8_t > raw_t
Definition LoadCommand.hpp:44
Definition Visitor.hpp:212
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Definition endianness_support.hpp:60
Namespace related to the LIEF's Mach-O module.
Definition Abstract/Header.hpp:36
@ UNKNOWN
Definition MachO/enums.hpp:24
const char * to_string(BuildToolVersion::TOOLS tool)
LIEF namespace.
Definition Abstract/Binary.hpp:41
tcb::span< ElementType, Extent > span
Definition span.hpp:22
#define LIEF_API
Definition visibility.h:45