mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-05-11 19:09:33 +00:00
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
/* Copyright 2017 - 2021 R. Thomas
|
|
* Copyright 2017 - 2021 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.
|
|
*/
|
|
#include "pyPE.hpp"
|
|
|
|
#include "LIEF/PE/hash.hpp"
|
|
#include "LIEF/PE/LoadConfigurations.hpp"
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
namespace LIEF {
|
|
namespace PE {
|
|
|
|
template<class T>
|
|
using getter_t = T (LoadConfigurationV5::*)(void) const;
|
|
|
|
template<class T>
|
|
using setter_t = void (LoadConfigurationV5::*)(T);
|
|
|
|
|
|
template<>
|
|
void create<LoadConfigurationV5>(py::module& m) {
|
|
py::class_<LoadConfigurationV5, LoadConfigurationV4>(m, "LoadConfigurationV5",
|
|
"" RST_CLASS_REF(lief.PE.LoadConfigurationV4) " enhanced with Return Flow Guard. \n\n"
|
|
"It is associated with the " RST_CLASS_REF(lief.PE.WIN_VERSION) ": "
|
|
":attr:`~lief.PE.WIN_VERSION.WIN10_0_14901`")
|
|
|
|
.def(py::init<>())
|
|
|
|
.def_property("guard_rf_failure_routine",
|
|
static_cast<getter_t<uint64_t>>(&LoadConfigurationV5::guard_rf_failure_routine),
|
|
static_cast<setter_t<uint64_t>>(&LoadConfigurationV5::guard_rf_failure_routine),
|
|
"VA of the failure routine")
|
|
|
|
.def_property("guard_rf_failure_routine_function_pointer",
|
|
static_cast<getter_t<uint64_t>>(&LoadConfigurationV5::guard_rf_failure_routine_function_pointer),
|
|
static_cast<setter_t<uint64_t>>(&LoadConfigurationV5::guard_rf_failure_routine_function_pointer),
|
|
"VA of the failure routine ``fptr``")
|
|
|
|
.def_property("dynamic_value_reloctable_offset",
|
|
static_cast<getter_t<uint32_t>>(&LoadConfigurationV5::dynamic_value_reloctable_offset),
|
|
static_cast<setter_t<uint32_t>>(&LoadConfigurationV5::dynamic_value_reloctable_offset),
|
|
"Offset of dynamic relocation table relative to the relocation table")
|
|
|
|
.def_property("dynamic_value_reloctable_section",
|
|
static_cast<getter_t<uint16_t>>(&LoadConfigurationV5::dynamic_value_reloctable_section),
|
|
static_cast<setter_t<uint16_t>>(&LoadConfigurationV5::dynamic_value_reloctable_section),
|
|
"The section index of the dynamic value relocation table")
|
|
|
|
.def_property("reserved2",
|
|
static_cast<getter_t<uint16_t>>(&LoadConfigurationV5::reserved2),
|
|
static_cast<setter_t<uint16_t>>(&LoadConfigurationV5::reserved2),
|
|
"Must be zero")
|
|
|
|
|
|
.def("__eq__", &LoadConfigurationV5::operator==)
|
|
.def("__ne__", &LoadConfigurationV5::operator!=)
|
|
.def("__hash__",
|
|
[] (const LoadConfigurationV5& config) {
|
|
return Hash::hash(config);
|
|
})
|
|
|
|
|
|
.def("__str__", [] (const LoadConfigurationV5& config)
|
|
{
|
|
std::ostringstream stream;
|
|
stream << config;
|
|
std::string str = stream.str();
|
|
return str;
|
|
});
|
|
}
|
|
|
|
}
|
|
}
|