/* 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. */ #include #include #include #include "LIEF/MachO/hash.hpp" #include "LIEF/MachO/BindingInfo.hpp" #include "LIEF/MachO/SegmentCommand.hpp" #include "LIEF/MachO/Symbol.hpp" #include "LIEF/MachO/DylibCommand.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* of a binding operation that is performed by the Dyld binding bytecode (`LC_DYLD_INFO`) or the Dyld chained fixups (`DYLD_CHAINED_FIXUPS`) See: :class:`~lief.MachO.ChainedBindingInfo`, :class:`~lief.MachO.DyldBindingInfo` )delim") .def_property("address", static_cast>(&BindingInfo::address), static_cast>(&BindingInfo::address), "Binding's address") .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, or None", 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, or None", 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, or None", py::return_value_policy::reference) .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; }); } } }