LIEF: Library to Instrument Executable Formats Version 1.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 <vector>
20#include <ostream>
21#include <memory>
22
23#include "LIEF/Object.hpp"
25#include "LIEF/visibility.h"
26#include "LIEF/errors.hpp"
27#include "LIEF/span.hpp"
28
29#include "LIEF/ELF/Header.hpp"
30
31namespace LIEF {
32class BinaryStream;
33namespace ELF {
34class Binary;
35class Parser;
36class Builder;
37
40class LIEF_API Note : public Object {
41 friend class Parser;
42 friend class Builder;
43 friend class Binary;
44
45 public:
47 using description_t = std::vector<uint8_t>;
48
50 enum class TYPE {
51 UNKNOWN = 0,
55 GNU_ABI_TAG,
56
58 GNU_HWCAP,
59
61 GNU_BUILD_ID,
62
64 GNU_GOLD_VERSION,
65
68 GNU_PROPERTY_TYPE_0,
69
70 GNU_BUILD_ATTRIBUTE_OPEN,
71 GNU_BUILD_ATTRIBUTE_FUNC,
72
74 CRASHPAD,
75
77 CORE_PRSTATUS,
78 CORE_FPREGSET,
79
83 CORE_PRPSINFO,
84 CORE_TASKSTRUCT,
85
89 CORE_AUXV,
90 CORE_PSTATUS,
92 CORE_FPREGS,
94 CORE_PSINFO,
95 CORE_LWPSTATUS,
96 CORE_LWPSINFO,
97 CORE_WIN32PSTATUS,
98 CORE_FILE,
99 CORE_PRXFPREG,
100 CORE_SIGINFO,
101
102 CORE_ARM_VFP,
103 CORE_ARM_TLS,
104 CORE_ARM_HW_BREAK,
105 CORE_ARM_HW_WATCH,
106 CORE_ARM_SYSTEM_CALL,
107 CORE_ARM_SVE,
108 CORE_ARM_PAC_MASK,
109 CORE_ARM_PACA_KEYS,
110 CORE_ARM_PACG_KEYS,
111 CORE_TAGGED_ADDR_CTRL,
112 CORE_PAC_ENABLED_KEYS,
113
114 CORE_X86_TLS,
115 CORE_X86_IOPERM,
116 CORE_X86_XSTATE,
117 CORE_X86_CET,
118
123 ANDROID_IDENT,
124 ANDROID_MEMTAG,
125 ANDROID_KUSER,
126
128 GO_BUILDID,
129
131 STAPSDT,
132
134 QNX_STACK,
135 };
136
137 public:
140 const std::string& name);
141
145
147 const std::string& sec_name = note.section_name();
148 if (sec_name.empty()) {
149 return type_to_section(note.type());
150 }
151 return sec_name;
152 }
153
156
160 static std::unique_ptr<Note>
161 create(const std::string& name, uint32_t type, description_t description,
162 std::string section_name,
165
169 static std::unique_ptr<Note> create(const std::string& name, TYPE type,
171 std::string section_name,
172 ARCH arch = ARCH::NONE,
174
178 static std::unique_ptr<Note>
179 create(BinaryStream& stream, std::string section_name,
182
183 Note& operator=(const Note& copy) = default;
184 Note(const Note& copy) = default;
185
186 ~Note() override = default;
187
189 virtual std::unique_ptr<Note> clone() const {
190 return std::unique_ptr<Note>(new Note(*this));
191 }
192
194 const std::string& name() const {
195 return name_;
196 }
197
199 const std::string& section_name() const {
200 return section_name_;
201 }
202
205 TYPE type() const {
206 return type_;
207 }
208
211 uint32_t original_type() const {
212 return original_type_;
213 }
214
217 return description_;
218 }
219
221 return description_;
222 }
223
224 void name(std::string name) {
225 name_ = std::move(name);
226 }
227
230 description_ = std::move(description);
231 }
232
234 uint64_t size() const;
235
236 virtual void dump(std::ostream& os) const;
237
238 void accept(Visitor& visitor) const override;
239
240 LIEF_API friend std::ostream& operator<<(std::ostream& os, const Note& note) {
241 note.dump(os);
242 return os;
243 }
244
245 template<class T>
246 const T* cast() const {
247 static_assert(std::is_base_of<Note, T>::value, "Require Note inheritance");
248 if (T::classof(this)) {
249 return static_cast<const T*>(this);
250 }
251 return nullptr;
252 }
253
254 template<class T>
255 T* cast() {
256 return const_cast<T*>(static_cast<const Note*>(this)->cast<T>());
257 }
258
259 protected:
260 Note() = default;
261 Note(std::string name, TYPE type, uint32_t original_type,
262 description_t description, std::string section) :
263 name_(std::move(name)),
264 type_(type),
265 original_type_(original_type),
266 description_(std::move(description)),
267 section_name_(std::move(section)) {}
268
269 template<class T>
270 LIEF_LOCAL result<T> read_at(size_t offset) const;
271
272 template<class T>
273 LIEF_LOCAL ok_error_t write_at(size_t offset, const T& value);
274
275 LIEF_LOCAL ok_error_t write_string_at(size_t offset, const std::string& value);
276
277 LIEF_LOCAL result<std::string> read_string_at(size_t offset,
278 size_t maxsize = 0) const;
279
280 std::string name_;
281 TYPE type_ = TYPE::UNKNOWN;
282 uint32_t original_type_ = 0;
283 description_t description_;
284 std::string section_name_;
285};
286
287LIEF_API const char* to_string(Note::TYPE type);
288
289
290} // namespace ELF
291} // namespace LIEF
292#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:60
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:40
std::vector< uint8_t > description_t
Container used to handle the description data.
Definition Note.hpp:47
TYPE
LIEF representation of the ELF NT_ values.
Definition Note.hpp:50
const T * cast() const
Definition Note.hpp:246
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:205
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:240
static result< std::string > note_to_section(const Note &note)
Definition Note.hpp:146
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:211
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
friend class Builder
Definition Note.hpp:42
~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:255
void description(description_t description)
Change the description of the note.
Definition Note.hpp:229
friend class Binary
Definition Note.hpp:43
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:41
const std::string & section_name() const
Return the section name in which the note is or should be stored.
Definition Note.hpp:199
const std::string & name() const
Return the name of the note (also known as 'owner' ).
Definition Note.hpp:194
virtual std::unique_ptr< Note > clone() const
Clone the current note and keep its polymorphic type.
Definition Note.hpp:189
Note & operator=(const Note &copy)=default
Note(const Note &copy)=default
span< const uint8_t > description() const
Return the description associated with the note.
Definition Note.hpp:216
span< uint8_t > description()
Definition Note.hpp:220
void name(std::string name)
Definition Note.hpp:224
Class which parses and transforms an ELF file into a ELF::Binary object.
Definition ELF/Parser.hpp:44
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:30
@ NONE
Definition ELF/enums.hpp:31
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