LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
Needed.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_NEEDED_H
17#define LIEF_ELF_NOTE_DETAILS_PROPERTIES_NEEDED_H
18#include <vector>
19
20#include "LIEF/visibility.h"
22
23namespace LIEF {
24class BinaryStream;
25
26namespace ELF {
27
32class LIEF_API Needed : public NoteGnuProperty::Property {
33 public:
34 enum class NEED {
35 UNKNOWN = 0,
36 INDIRECT_EXTERN_ACCESS,
37 };
38
40 const std::vector<NEED>& needs() const {
41 return needs_;
42 }
43
44 static bool classof(const NoteGnuProperty::Property* prop) {
46 }
47
48 static std::unique_ptr<Needed> create(BinaryStream& stream);
49
50 void dump(std::ostream& os) const override;
51
52 ~Needed() override = default;
53
54 protected:
55 Needed(std::vector<NEED> needs) :
56 NoteGnuProperty::Property(NoteGnuProperty::Property::TYPE::NEEDED),
57 needs_(std::move(needs)) {}
58
59 std::vector<NEED> needs_;
60};
61
63
64}
65}
66
67#endif
Class that is used to a read stream of data from different sources.
Definition BinaryStream.hpp:33
NEED
Definition Needed.hpp:34
void dump(std::ostream &os) const override
static std::unique_ptr< Needed > create(BinaryStream &stream)
const std::vector< NEED > & needs() const
Return the list of needed features.
Definition Needed.hpp:40
~Needed() override=default
static bool classof(const NoteGnuProperty::Property *prop)
Definition Needed.hpp:44
This class wraps the different properties that can be used in a NT_GNU_PROPERTY_TYPE_0 note.
Definition NoteGnuProperty.hpp:34
TYPE
LIEF's mirror types of the original GNU_PROPERTY_ values.
Definition NoteGnuProperty.hpp:37
@ NEEDED
Definition NoteGnuProperty.hpp:47
TYPE type() const
Return the LIEF's mirror type of the note.
Definition NoteGnuProperty.hpp:51
Class that wraps the NT_GNU_PROPERTY_TYPE_0 note.
Definition NoteGnuProperty.hpp:30
Namespace related to the LIEF's ELF module.
Definition Abstract/Header.hpp:28
const char * to_string(DynamicEntry::TAG e)
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:45