LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
NoteAbi.hpp
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 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_ABI_H
17#define LIEF_ELF_NOTE_ABI_H
18
19#include <vector>
20#include <ostream>
21#include <array>
22#include <memory>
23
24#include "LIEF/visibility.h"
25#include "LIEF/ELF/Note.hpp"
26
27namespace LIEF {
28namespace ELF {
29
31class LIEF_API NoteAbi : public Note {
32 public:
34 enum class ABI {
35 LINUX = 0,
36 GNU,
37 SOLARIS2,
38 FREEBSD,
39 NETBSD,
40 SYLLABLE,
41 NACL
42 };
44 using version_t = std::array<uint32_t, 3>;
45
46 static constexpr size_t abi_offset = 0;
47 static constexpr size_t abi_size = sizeof(uint32_t);
48
49 static constexpr size_t version_offset = abi_size;
50 static constexpr size_t version_size = 3 * sizeof(uint32_t);
51
52 public:
53 using Note::Note;
54
55 std::unique_ptr<Note> clone() const override {
56 return std::unique_ptr<Note>(new NoteAbi(*this));
57 }
58
61
64
65 void version(const version_t& version);
66 void version(ABI abi);
67
68 void dump(std::ostream& os) const override;
69
70 void accept(Visitor& visitor) const override;
71
72 static bool classof(const Note* note) {
73 return note->type() == Note::TYPE::GNU_ABI_TAG;
74 }
75
77 static constexpr uint8_t description_size() {
78 return /* abi */ sizeof(uint32_t) + /* version */ 3 * sizeof(uint32_t);
79 }
80
81 ~NoteAbi() override = default;
82
83 LIEF_API friend
84 std::ostream& operator<<(std::ostream& os, const NoteAbi& note) {
85 note.dump(os);
86 return os;
87 }
88};
89
90LIEF_API const char* to_string(NoteAbi::ABI abi);
91
92} // namepsace ELF
93} // namespace LIEF
94
95#endif
Class that wraps the NT_GNU_ABI_TAG note.
Definition NoteAbi.hpp:31
std::unique_ptr< Note > clone() const override
Clone the current note and keep its polymorphic type.
Definition NoteAbi.hpp:55
result< ABI > abi() const
Return the ABI or an error if it can't be parsed.
std::array< uint32_t, 3 > version_t
Version type: (Major, Minor, Patch)
Definition NoteAbi.hpp:44
result< version_t > version() const
Return the version or an error if it can't be parsed.
ABI
ABI recognized by this note.
Definition NoteAbi.hpp:34
Class which represents an ELF note. This class can be instantiated using the static Note::create func...
Definition Note.hpp:36
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:178
Definition Visitor.hpp:219
LIEF namespace.
Definition Abstract/Binary.hpp:32
tl::expected< T, lief_errors > result
Wrapper that contains an Object (T) or an error.
Definition errors.hpp:72