File: C:/Users/fred/anaconda3/Library/include/LIEF/PE/LoadConfigurations/LoadConfigurationV6.hpp
/* Copyright 2017 - 2022 R. Thomas
* Copyright 2017 - 2022 Quarkslab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LIEF_PE_LOAD_CONFIGURATION_V6_H_
#define LIEF_PE_LOAD_CONFIGURATION_V6_H_
#include <iostream>
#include "LIEF/visibility.h"
#include "LIEF/PE/enums.hpp"
#include "LIEF/PE/LoadConfigurations/LoadConfigurationV5.hpp"
namespace LIEF {
namespace PE {
namespace details {
template<class T>
struct load_configuration_v6;
}
//! @brief Load Configuration enhanced with Hotpatch and improved RFG
class LIEF_API LoadConfigurationV6 : public LoadConfigurationV5 {
public:
static constexpr WIN_VERSION VERSION = WIN_VERSION::WIN10_0_15002;
LoadConfigurationV6();
template<class T>
LIEF_LOCAL LoadConfigurationV6(const details::load_configuration_v6<T>& header);
LoadConfigurationV6& operator=(const LoadConfigurationV6&);
LoadConfigurationV6(const LoadConfigurationV6&);
WIN_VERSION version() const override;
//! @brief VA of the Function verifying the stack pointer
uint64_t guard_rf_verify_stackpointer_function_pointer() const;
//! @brief Offset to the *hotpatch* table
uint32_t hotpatch_table_offset() const;
void guard_rf_verify_stackpointer_function_pointer(uint64_t value);
void hotpatch_table_offset(uint32_t value);
virtual ~LoadConfigurationV6();
void accept(Visitor& visitor) const override;
bool operator==(const LoadConfigurationV6& rhs) const;
bool operator!=(const LoadConfigurationV6& rhs) const;
std::ostream& print(std::ostream& os) const override;
protected:
uint64_t guardrf_verify_stackpointer_function_pointer_;
uint32_t hotpatch_table_offset_;
};
}
}
#endif