Files
lief-project-LIEF/api/python/MachO/objects/pyParser.cpp
T
Romain Thomas 969411f8ef Welcome 2023
2023-01-03 10:38:09 +01:00

89 lines
2.9 KiB
C++

/* Copyright 2017 - 2023 R. Thomas
* Copyright 2017 - 2023 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 <string>
#include <memory>
#include "PyIOStream.hpp"
#include "LIEF/MachO/Parser.hpp"
#include "LIEF/MachO/FatBinary.hpp"
#include "logging.hpp"
#include "pyMachO.hpp"
namespace LIEF {
namespace MachO {
template<>
void create<Parser>(py::module& m) {
// Parser (Parser)
m.def("parse",
static_cast<std::unique_ptr<FatBinary> (*) (const std::string&, const ParserConfig&)>(&LIEF::MachO::Parser::parse),
R"delim(
Parse the given binary and return a :class:`~lief.MachO.FatBinary` object
One can configure the parsing with the ``config`` parameter. See :class:`~lief.MachO.ParserConfig`,
)delim",
"filename"_a,
"config"_a = ParserConfig::deep(),
py::return_value_policy::take_ownership);
m.def("parse",
static_cast<std::unique_ptr<FatBinary> (*) (const std::vector<uint8_t>&, const std::string&, const ParserConfig&)>(&LIEF::MachO::Parser::parse),
R"delim(
Parse the given binary (from raw bytes) and return a :class:`~lief.MachO.FatBinary` object
One can configure the parsing with the ``config`` parameter. See :class:`~lief.MachO.ParserConfig`
)delim",
"raw"_a,
"name"_a = "",
"config"_a = ParserConfig::quick(),
py::return_value_policy::take_ownership);
m.def("parse_from_memory",
static_cast<std::unique_ptr<FatBinary> (*) (uintptr_t, const ParserConfig&)>(&MachO::Parser::parse_from_memory),
R"delim(
Parse the Mach-O binary from the address given in the first parameter
)delim",
"address"_a,
"config"_a = ParserConfig::deep(),
py::return_value_policy::take_ownership);
m.def("parse",
[] (py::object byteio, std::string name, const ParserConfig& config) -> py::object {
if (auto stream = PyIOStream::from_python(byteio)) {
auto ptr = std::make_unique<PyIOStream>(std::move(*stream));
return py::cast(MachO::Parser::parse(std::move(ptr), config));
}
LIEF_ERR("Can't create a LIEF stream interface over the provided io");
return py::none();
},
R"delim(
Parse the given binary from a Python IO interface and return a :class:`~lief.MachO.FatBinary` object
One can configure the parsing with the ``config`` parameter. See :class:`~lief.MachO.ParserConfig`
)delim",
"io"_a,
"name"_a = "",
"config"_a = ParserConfig::quick(),
py::return_value_policy::take_ownership);
}
}
}