LIEF: Library to Instrument Executable Formats
Version 1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
lief-install
x86_64
static
include
LIEF
ELF
NoteDetails
properties
AArch64Feature.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_DETAILS_PROPERTIES_AARCH64_FEATURE_H
17
#define LIEF_ELF_NOTE_DETAILS_PROPERTIES_AARCH64_FEATURE_H
18
19
#include "
LIEF/visibility.h
"
20
#include "
LIEF/ELF/NoteDetails/NoteGnuProperty.hpp
"
21
22
namespace
LIEF
{
23
class
BinaryStream
;
24
25
namespace
ELF
{
26
28
class
LIEF_API
AArch64Feature :
public
NoteGnuProperty::Property
{
29
public
:
30
enum class
FEATURE
{
31
UNKNOWN = 0,
32
BTI,
33
PAC,
34
};
35
37
const
std::vector<FEATURE>&
features
()
const
{
38
return
features_;
39
}
40
41
static
bool
classof
(
const
NoteGnuProperty::Property
* prop) {
42
return
prop->
type
() ==
NoteGnuProperty::Property::TYPE::AARCH64_FEATURES
;
43
}
44
45
static
std::unique_ptr<AArch64Feature>
create
(
BinaryStream
& stream);
46
47
void
dump
(std::ostream &os)
const override
;
48
49
~AArch64Feature
()
override
=
default
;
50
51
protected
:
52
AArch64Feature() :
53
NoteGnuProperty
::Property(
NoteGnuProperty
::Property::
TYPE
::AARCH64_FEATURES)
54
{}
55
56
AArch64Feature
(std::vector<FEATURE> features) :
57
NoteGnuProperty
::Property(
NoteGnuProperty
::Property::TYPE::AARCH64_FEATURES),
58
features_(std::move(features))
59
{}
60
61
std::vector<FEATURE> features_;
62
};
63
64
65
LIEF_API
const
char
*
to_string
(
AArch64Feature::FEATURE
feature);
66
}
67
}
68
69
70
#endif
NoteGnuProperty.hpp
LIEF::BinaryStream
Class that is used to a read stream of data from different sources.
Definition
BinaryStream.hpp:33
LIEF::ELF::AArch64Feature
This class represents the GNU_PROPERTY_AARCH64_FEATURE_1_AND property.
Definition
AArch64Feature.hpp:28
LIEF::ELF::AArch64Feature::dump
void dump(std::ostream &os) const override
LIEF::ELF::AArch64Feature::FEATURE
FEATURE
Definition
AArch64Feature.hpp:30
LIEF::ELF::AArch64Feature::create
static std::unique_ptr< AArch64Feature > create(BinaryStream &stream)
LIEF::ELF::AArch64Feature::features
const std::vector< FEATURE > & features() const
Return the list of the supported features.
Definition
AArch64Feature.hpp:37
LIEF::ELF::AArch64Feature::~AArch64Feature
~AArch64Feature() override=default
LIEF::ELF::AArch64Feature::classof
static bool classof(const NoteGnuProperty::Property *prop)
Definition
AArch64Feature.hpp:41
LIEF::ELF::NoteGnuProperty::Property
This class wraps the different properties that can be used in a NT_GNU_PROPERTY_TYPE_0 note.
Definition
NoteGnuProperty.hpp:35
LIEF::ELF::NoteGnuProperty::Property::TYPE
TYPE
LIEF's mirror types of the original GNU_PROPERTY_ values.
Definition
NoteGnuProperty.hpp:39
LIEF::ELF::NoteGnuProperty::Property::TYPE::AARCH64_FEATURES
@ AARCH64_FEATURES
Mirror of GNU_PROPERTY_AARCH64_FEATURE_1_AND.
Definition
NoteGnuProperty.hpp:42
LIEF::ELF::NoteGnuProperty::Property::type
TYPE type() const
Return the LIEF's mirror type of the note.
Definition
NoteGnuProperty.hpp:52
LIEF::ELF::NoteGnuProperty
Class that wraps the NT_GNU_PROPERTY_TYPE_0 note.
Definition
NoteGnuProperty.hpp:30
LIEF::ELF
Namespace related to the LIEF's ELF module.
Definition
Abstract/Header.hpp:28
LIEF::ELF::to_string
const char * to_string(DynamicEntry::TAG e)
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:41
Generated by
1.17.0