LIEF: Library to Instrument Executable Formats Version 2.0.0
Loading...
Searching...
No Matches
Note.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_ELF_NOTE_H
17#define LIEF_ELF_NOTE_H
18
19#include <string_view>
20#include <memory>
21#include <ostream>
22#include <vector>
23
24#include "LIEF/Object.hpp"
26#include "LIEF/errors.hpp"
27#include "LIEF/span.hpp"
28#include "LIEF/visibility.h"
29
30#include "LIEF/ELF/Header.hpp"
31
32namespace LIEF {
33class BinaryStream;
34namespace ELF {
35class Binary;
36class Parser;
37class Builder;
38
41class LIEF_API Note : public Object {
42 friend class Parser;
43 friend class Builder;
44 friend class Binary;
45
46 public:
48 using description_t = std::vector<uint8_t>;
49
51 enum class TYPE {
52 UNKNOWN = 0,
56 GNU_ABI_TAG,
57
59 GNU_HWCAP,
60
62 GNU_BUILD_ID,
63
65 GNU_GOLD_VERSION,
66
69 GNU_PROPERTY_TYPE_0,
70
71 GNU_BUILD_ATTRIBUTE_OPEN,
72 GNU_BUILD_ATTRIBUTE_FUNC,
73
75 CRASHPAD,
76
78 CORE_PRSTATUS,
79 CORE_FPREGSET,
80
84 CORE_PRPSINFO,
85 CORE_TASKSTRUCT,
86
90 CORE_AUXV,
91 CORE_PSTATUS,
93 CORE_FPREGS,
95 CORE_PSINFO,
96 CORE_LWPSTATUS,
97 CORE_LWPSINFO,
98 CORE_WIN32PSTATUS,
99 CORE_FILE,
100 CORE_PRXFPREG,
101 CORE_SIGINFO,
102
103 CORE_ARM_VFP,
104 CORE_ARM_TLS,
105 CORE_ARM_HW_BREAK,
106 CORE_ARM_HW_WATCH,
107 CORE_ARM_SYSTEM_CALL,
108 CORE_ARM_SVE,
109 CORE_ARM_PAC_MASK,
110 CORE_ARM_PACA_KEYS,
111 CORE_ARM_PACG_KEYS,
112 CORE_TAGGED_ADDR_CTRL,
113 CORE_PAC_ENABLED_KEYS,
114
115 CORE_X86_TLS,
116 CORE_X86_IOPERM,
117 CORE_X86_XSTATE,
118 CORE_X86_CET,
119
124 ANDROID_IDENT,
125 ANDROID_MEMTAG,
126 ANDROID_KUSER,
127
129 GO_BUILDID,
130
132 STAPSDT,
133
135 QNX_STACK,
136 };
137
138 public:
141 const std::string& name);
142
146
148 std::string_view sec_name = note.section_name();
149 if (sec_name.empty()) {
150 return type_to_section(note.type());
151 }
152 return std::string(sec_name);
153 }
154
157
161 static std::unique_ptr<Note>
162 create(const std::string& name, uint32_t type, description_t description,
163 std::string section_name,
166
170 static std::unique_ptr<Note> create(const std::string& name, TYPE type,
172 std::string section_name,
173 ARCH arch = ARCH::NONE,
175
179 static std::unique_ptr<Note>
180 create(BinaryStream& stream, std::string section_name,
183
184 Note& operator=(const Note& copy) = default;
185 Note(const Note& copy) = default;
186
187 ~Note() override = default;
188
190 virtual std::unique_ptr<Note> clone() const {
191 return std::make_unique<Note>(*this);
192 }
193
195 std::string_view name() const LIEF_LIFETIMEBOUND {
196 return name_;
197 }
198
200 std::string_view section_name() const LIEF_LIFETIMEBOUND {
201 return section_name_;
202 }
203
206 TYPE type() const {
207 return type_;
208 }
209
212 uint32_t original_type() const {
213 return original_type_;
214 }
215
218 return description_;
219 }
220
222 return description_;
223 }
224
225 void name(std::string name) {
226 name_ = std::move(name);
227 }
228
231 description_ = std::move(description);
232 }
233
235 uint64_t size() const;
236
237 virtual void dump(std::ostream& os) const;
238
239 void accept(Visitor& visitor) const override;
240
241 LIEF_API friend std::ostream& operator<<(std::ostream& os, const Note& note) {
242 note.dump(os);
243 return os;
244 }
245
246 template<class T>
247 const T* cast() const {
248 static_assert(std::is_base_of_v<Note, T>, "Require Note inheritance");
249 if (T::classof(this)) {
250 return static_cast<const T*>(this);
251 }
252 return nullptr;
253 }
254
255 template<class T>
256 T* cast() {
257 return const_cast<T*>(static_cast<const Note*>(this)->cast<T>());
258 }
259
260 protected:
261 Note() = default;
262 Note(std::string name, TYPE type, uint32_t original_type,
263 description_t description, std::string section) :
264 name_(std::move(name)),
265 type_(type),
266 original_type_(original_type),
267 description_(std::move(description)),
268 section_name_(std::move(section)) {}
269
270 template<class T>
271 LIEF_LOCAL result<T> read_at(size_t offset) const;
272
273 template<class T>
274 LIEF_LOCAL ok_error_t write_at(size_t offset, const T& value);
275
276 LIEF_LOCAL ok_error_t write_string_at(size_t offset, const std::string& value);
277
278 LIEF_LOCAL result<std::string> read_string_at(size_t offset,
279 size_t maxsize = 0) const;
280
281 std::string name_;
282 TYPE type_ = TYPE::UNKNOWN;
283 uint32_t original_type_ = 0;
284 description_t description_;
285 std::string section_name_;
286};
287
288LIEF_API const char* to_string(Note::TYPE type);
289
290
291}
292}
293#endif
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:35
Class which represents an ELF binary.
Definition ELF/Binary.hpp:61
Class which takes an ELF::Binary object and reconstructs a valid binary.
Definition ELF/Builder.hpp:48
FILE_TYPE
The type of the underlying ELF file. This enum matches the semantic of ET_NONE, ET_REL,...
Definition ELF/Header.hpp:59
@ NONE
Can't be determined.
Definition ELF/Header.hpp:60
CLASS
Match the result of Elfxx_Ehdr.e_ident[EI_CLASS].
Definition ELF/Header.hpp:74
@ NONE
Invalid class.
Definition ELF/Header.hpp:75
Class which represents an ELF note. This class can be instantiated using the static Note::create func...
Definition Note.hpp:41
std::vector< uint8_t > description_t
Container used to handle the description data.
Definition Note.hpp:48
TYPE
LIEF representation of the ELF NT_ values.
Definition Note.hpp:51
const T * cast() const
Definition Note.hpp:247
TYPE type() const
Return the type of the note. This type does not match the NT_ type value. For accessing the original ...
Definition Note.hpp:206
static result< const char * > type_owner(TYPE type)
Try to determine the owner's name of the TYPE provided in parameter.
static std::unique_ptr< Note > create(const std::string &name, TYPE type, description_t description, std::string section_name, ARCH arch=ARCH::NONE, Header::CLASS cls=Header::CLASS::NONE)
Create a new note from the given parameters. Additional information such as the architecture or the E...
friend std::ostream & operator<<(std::ostream &os, const Note &note)
Definition Note.hpp:241
static result< std::string > note_to_section(const Note &note)
Definition Note.hpp:147
static std::unique_ptr< Note > create(const std::string &name, uint32_t type, description_t description, std::string section_name, Header::FILE_TYPE ftype=Header::FILE_TYPE::NONE, ARCH arch=ARCH::NONE, Header::CLASS cls=Header::CLASS::NONE)
Create a new note from the given parameters. Additional information such as the architecture or the E...
uint32_t original_type() const
The original NT_xxx integer value. The meaning of this value likely depends on the owner of the note.
Definition Note.hpp:212
static std::unique_ptr< Note > create(BinaryStream &stream, std::string section_name, Header::FILE_TYPE ftype=Header::FILE_TYPE::NONE, ARCH arch=ARCH::NONE, Header::CLASS cls=Header::CLASS::NONE)
Create a new note from the given stream. Additional information such as the architecture or the ELF c...
virtual void dump(std::ostream &os) const
std::string_view name() const
Return the name of the note (also known as 'owner' ).
Definition Note.hpp:195
friend class Builder
Definition Note.hpp:43
~Note() override=default
static result< const char * > type_to_section(TYPE type)
Try to determine the ELF section name associated with the TYPE provided in parameter.
T * cast()
Definition Note.hpp:256
void description(description_t description)
Change the description of the note.
Definition Note.hpp:230
friend class Binary
Definition Note.hpp:44
uint64_t size() const
Size of the raw note which includes padding.
void accept(Visitor &visitor) const override
static result< TYPE > convert_type(Header::FILE_TYPE ftype, uint32_t type, const std::string &name)
Convert the raw integer note type into a TYPE according to the owner.
friend class Parser
Definition Note.hpp:42
virtual std::unique_ptr< Note > clone() const
Clone the current note and keep its polymorphic type.
Definition Note.hpp:190
Note & operator=(const Note &copy)=default
std::string_view section_name() const
Return the section name in which the note is or should be stored.
Definition Note.hpp:200
Note(const Note &copy)=default
span< const uint8_t > description() const
Return the description associated with the note.
Definition Note.hpp:217
span< uint8_t > description()
Definition Note.hpp:221
void name(std::string name)
Definition Note.hpp:225
Class which parses and transforms an ELF file into a ELF::Binary object.
Definition ELF/Parser.hpp:45
Definition Visitor.hpp:212
Opaque structure that is used by LIEF to avoid writing result<void> f(...). Instead,...
Definition errors.hpp:119
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:79
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Namespace related to the LIEF's ELF module.
Definition Abstract/Header.hpp:28
const char * to_string(DynamicEntry::TAG e)
ARCH
Definition ELF/enums.hpp:28
@ NONE
Definition ELF/enums.hpp:29
LIEF namespace.
Definition Abstract/Binary.hpp:41
tcb::span< ElementType, Extent > span
Definition span.hpp:22
#define LIEF_API
Definition visibility.h:45
#define LIEF_LOCAL
Definition visibility.h:46