/* 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 #include #include #include "LIEF/MachO/hash.hpp" #include "LIEF/MachO/BindingInfo.hpp" #include "pyMachO.hpp" namespace LIEF { namespace MachO { template using getter_t = T (BindingInfo::*)(void) const; template using setter_t = void (BindingInfo::*)(T); template<> void create(py::module& m) { py::class_(m, "BindingInfo", R"delim( Class that provides an interface over an entry in DyldInfo structure This class does not represent a structure that exists in the Mach-O format specifications but it provides a *view* on an entry of the Dyld binding opcodes. )delim") .def_property("binding_class", static_cast>(&BindingInfo::binding_class), static_cast>(&BindingInfo::binding_class), "" RST_CLASS_REF(lief.MachO.BINDING_CLASS) " of the binding") .def_property("address", static_cast>(&BindingInfo::address), static_cast>(&BindingInfo::address), "Binding's address") .def_property("binding_type", static_cast>(&BindingInfo::binding_type), static_cast>(&BindingInfo::binding_type), R"delim( :class:`~lief.MachO.BIND_TYPES` of the binding. Usually, it is :attr:`~lief.MachO.BIND_TYPES.POINTER`. )delim") .def_property("library_ordinal", static_cast>(&BindingInfo::library_ordinal), static_cast>(&BindingInfo::library_ordinal)) .def_property("addend", static_cast>(&BindingInfo::addend), static_cast>(&BindingInfo::addend), "Value added to the segment's virtual address when binding") .def_property("weak_import", static_cast>(&BindingInfo::is_weak_import), static_cast>(&BindingInfo::set_weak_import)) .def_property_readonly("has_library", &BindingInfo::has_library, "``True`` if the binding info has a " RST_CLASS_REF(lief.MachO.DylibCommand) " associated with") .def_property_readonly("library", static_cast(&BindingInfo::library), "" RST_CLASS_REF(lief.MachO.DylibCommand) " associated with the binding (if any)", py::return_value_policy::reference) .def_property_readonly("has_segment", &BindingInfo::has_segment, "``True`` if the binding info has a " RST_CLASS_REF(lief.MachO.SegmentCommand) " associated with") .def_property_readonly("segment", static_cast(&BindingInfo::segment), "" RST_CLASS_REF(lief.MachO.SegmentCommand) " associated with the binding (if any)", py::return_value_policy::reference) .def_property_readonly("has_symbol", &BindingInfo::has_symbol, "``True`` if the binding info has a " RST_CLASS_REF(lief.MachO.Symbol) " associated with") .def_property_readonly("symbol", static_cast(&BindingInfo::symbol), "" RST_CLASS_REF(lief.MachO.Symbol) " associated with the binding (if any)", py::return_value_policy::reference) .def_property_readonly("original_offset", &BindingInfo::original_offset, "Original relative offset of the binding opcodes") .def("__eq__", &BindingInfo::operator==) .def("__ne__", &BindingInfo::operator!=) .def("__hash__", [] (const BindingInfo& binding_info) { return Hash::hash(binding_info); }) .def("__str__", [] (const BindingInfo& binding_info) { std::ostringstream stream; stream << binding_info; std::string str = stream.str(); return str; }); } } }