/* 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 #include namespace LIEF { namespace PE { template using getter_t = T (LoadConfiguration::*)(void) const; template using setter_t = void (LoadConfiguration::*)(T); template<> void create(py::module& m) { py::class_(m, "LoadConfiguration", "Class modeling the default PE's ``LoadConfiguration``\n\n" "It's the base class for any future version of the structure" ) .def(py::init<>()) .def_property_readonly("version", &LoadConfiguration::version, "(SDK) Version of the structure. (" RST_CLASS_REF(lief.PE.WIN_VERSION) ")") .def_property("characteristics", static_cast>(&LoadConfiguration::characteristics), static_cast>(&LoadConfiguration::characteristics), "Characteristics of the structure.") .def_property("timedatestamp", static_cast>(&LoadConfiguration::timedatestamp), static_cast>(&LoadConfiguration::timedatestamp), "Date and time stamp value") .def_property("major_version", static_cast>(&LoadConfiguration::major_version), static_cast>(&LoadConfiguration::major_version), "Major Version") .def_property("minor_version", static_cast>(&LoadConfiguration::minor_version), static_cast>(&LoadConfiguration::minor_version), "Minor version") .def_property("global_flags_clear", static_cast>(&LoadConfiguration::global_flags_clear), static_cast>(&LoadConfiguration::global_flags_clear), "The global loader flags to clear for this process as the loader start the process.") .def_property("global_flags_set", static_cast>(&LoadConfiguration::global_flags_set), static_cast>(&LoadConfiguration::global_flags_set), "The global loader flags to set for this process as the loader starts the process.") .def_property("critical_section_default_timeout", static_cast>(&LoadConfiguration::critical_section_default_timeout), static_cast>(&LoadConfiguration::critical_section_default_timeout), "The default timeout value to use for is process’s critical sections that are abandoned.") .def_property("decommit_free_block_threshold", static_cast>(&LoadConfiguration::decommit_free_block_threshold), static_cast>(&LoadConfiguration::decommit_free_block_threshold), "Memory that must be freed before it is returned to the system, in bytes.") .def_property("decommit_total_free_threshold", static_cast>(&LoadConfiguration::decommit_total_free_threshold), static_cast>(&LoadConfiguration::decommit_total_free_threshold), "Total amount of free memory, in bytes") .def_property("lock_prefix_table", static_cast>(&LoadConfiguration::lock_prefix_table), static_cast>(&LoadConfiguration::lock_prefix_table), "The **VA** of a list of addresses where the ``LOCK`` prefix " "is used so that they can be replaced with ``NOP`` on single processor machines.") .def_property("maximum_allocation_size", static_cast>(&LoadConfiguration::maximum_allocation_size), static_cast>(&LoadConfiguration::maximum_allocation_size), "Maximum allocation size, in bytes.") .def_property("virtual_memory_threshold", static_cast>(&LoadConfiguration::virtual_memory_threshold), static_cast>(&LoadConfiguration::virtual_memory_threshold), "Maximum virtual memory size, in bytes.") .def_property("process_affinity_mask", static_cast>(&LoadConfiguration::process_affinity_mask), static_cast>(&LoadConfiguration::process_affinity_mask), "Setting this field to a non-zero value is equivalent to calling " "``SetProcessAffinityMask`` with this value during process startup (.exe only)") .def_property("process_heap_flags", static_cast>(&LoadConfiguration::process_heap_flags), static_cast>(&LoadConfiguration::process_heap_flags), "Process heap flags that correspond to the first argument of the " "``HeapCreate`` function. These flags apply to the process heap that is " "created during process startup.") .def_property("csd_version", static_cast>(&LoadConfiguration::csd_version), static_cast>(&LoadConfiguration::csd_version), "The service pack version identifier.") .def_property("reserved1", static_cast>(&LoadConfiguration::reserved1), static_cast>(&LoadConfiguration::reserved1), "Must be zero.") .def_property("editlist", static_cast>(&LoadConfiguration::editlist), static_cast>(&LoadConfiguration::editlist), "Reserved for use by the system.") .def_property("security_cookie", static_cast>(&LoadConfiguration::security_cookie), static_cast>(&LoadConfiguration::security_cookie), "A pointer to a cookie that is used by Visual C++ or GS implementation.") .def("__eq__", &LoadConfiguration::operator==) .def("__ne__", &LoadConfiguration::operator!=) .def("__hash__", [] (const LoadConfiguration& config) { return Hash::hash(config); }) .def("__str__", [] (const LoadConfiguration& config) { std::ostringstream stream; stream << config; std::string str = stream.str(); return str; }); } } }