LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
DynamicRelocationBase.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 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_PE_LOAD_CONFIGURATION_DYNAMIC_RELOCATION_H
17#define LIEF_PE_LOAD_CONFIGURATION_DYNAMIC_RELOCATION_H
18
19#include <ostream>
20#include <cstdint>
21#include <memory>
22#include <string>
23
24#include "LIEF/visibility.h"
25
26namespace LIEF {
27namespace PE {
28class DynamicFixup;
29
34 public:
63
66
69
72
73 virtual std::unique_ptr<DynamicRelocation> clone() const = 0;
74
76 uint32_t version() const {
77 return version_;
78 }
79
82 uint64_t symbol() const {
83 return symbol_;
84 }
85
86 const DynamicFixup* fixups() const {
87 return fixups_.get();
88 }
89
93 return fixups_.get();
94 }
95
96 DynamicRelocation& symbol(uint64_t value) {
97 symbol_ = value;
98 return *this;
99 }
100
101 DynamicRelocation& fixups(std::unique_ptr<DynamicFixup> F);
102
103 virtual std::string to_string() const = 0;
104
105 template<class T>
106 T* as() {
107 static_assert(std::is_base_of<DynamicRelocation, T>::value,
108 "Require DynamicRelocation inheritance");
109 if (T::classof(this)) {
110 return static_cast<T*>(this);
111 }
112 return nullptr;
113 }
114
115 template<class T>
116 const T* as() const {
117 return const_cast<DynamicRelocation*>(this)->as<T>();
118 }
119
120 LIEF_API friend
121 std::ostream& operator<<(std::ostream& os, const DynamicRelocation& reloc)
122 {
123 os << reloc.to_string();
124 return os;
125 }
126
128
129 protected:
130 uint32_t version_ = 0;
131 uint64_t symbol_ = 0;
132 std::unique_ptr<DynamicFixup> fixups_;
133};
134
136
137}
138}
139
140#endif
This is the base class for any fixups located in DynamicRelocation.
Definition DynamicFixup.hpp:34
DynamicRelocation & operator=(DynamicRelocation &&)
uint32_t version() const
Version of the structure.
Definition DynamicRelocationBase.hpp:76
friend std::ostream & operator<<(std::ostream &os, const DynamicRelocation &reloc)
Definition DynamicRelocationBase.hpp:121
DynamicRelocation & fixups(std::unique_ptr< DynamicFixup > F)
DynamicRelocation & symbol(uint64_t value)
Definition DynamicRelocationBase.hpp:96
uint64_t symbol() const
Symbol address. Some values have a special meaning (c.f. IMAGE_DYNAMIC_RELOCATION) and define how fix...
Definition DynamicRelocationBase.hpp:82
virtual std::unique_ptr< DynamicRelocation > clone() const =0
DynamicRelocation(const DynamicRelocation &)
IMAGE_DYNAMIC_RELOCATION
Special symbol values as defined in link.exe - GetDVRTSpecialSymbolName.
Definition DynamicRelocationBase.hpp:36
@ RELOCATION_GUARD_INDIR_CONTROL_TRANSFER
Mirror IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER.
Definition DynamicRelocationBase.hpp:47
@ RELOCATION_GUARD_RF_PROLOGUE
Mirror IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE.
Definition DynamicRelocationBase.hpp:38
@ RELOCATION_ARM64_KERNEL_IMPORT_CALL_TRANSFER
Mirror IMAGE_DYNAMIC_RELOCATION_ARM64_KERNEL_IMPORT_CALL_TRANSFER.
Definition DynamicRelocationBase.hpp:59
@ RELOCATION_FUNCTION_OVERRIDE
Mirror IMAGE_DYNAMIC_RELOCATION_FUNCTION_OVERRIDE.
Definition DynamicRelocationBase.hpp:56
@ RELOCATION_GUARD_SWITCHTABLE_BRANCH
Mirror IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH.
Definition DynamicRelocationBase.hpp:50
@ _RELOC_LAST_ENTRY
Definition DynamicRelocationBase.hpp:61
@ RELOCATION_ARM64X
Mirror IMAGE_DYNAMIC_RELOCATION_ARM64X.
Definition DynamicRelocationBase.hpp:53
@ RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER
Mirror IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER.
Definition DynamicRelocationBase.hpp:44
@ RELOCATION_GUARD_RF_EPILOGUE
Mirror IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE.
Definition DynamicRelocationBase.hpp:41
T * as()
Definition DynamicRelocationBase.hpp:106
DynamicFixup * fixups()
Return fixups information, where the interpretation may depend on the symbol's value.
Definition DynamicRelocationBase.hpp:92
DynamicRelocation(uint32_t version)
DynamicRelocation & operator=(const DynamicRelocation &)
virtual std::string to_string() const =0
DynamicRelocation(DynamicRelocation &&)
const T * as() const
Definition DynamicRelocationBase.hpp:116
const DynamicFixup * fixups() const
Definition DynamicRelocationBase.hpp:86
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
const char * to_string(CODE_PAGES e)
@ F
Definition AcceleratorCodes.hpp:83
@ T
Definition AcceleratorCodes.hpp:97
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:41