-
-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add relocation in the Abstract layer
The abstracted attributes are: * Address: virtual address where the relocation occurs * Size: size in bits of the relocation See: LIEF::Relocation / lief.Relocation and abstract_reader Resolve: #53
- Loading branch information
1 parent
58bf7a2
commit 9503f2f
Showing
42 changed files
with
782 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
set(LIEF_PYTHON_ABSTRACT_SRC | ||
"${CMAKE_CURRENT_LIST_DIR}/init.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pyBinary.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pyHeader.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pySection.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pyParser.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pySymbol.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/objects/pyRelocation.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/pyEnums.cpp" | ||
) | ||
|
||
|
||
set(LIEF_PYTHON_ABSTRACT_HDR | ||
"${CMAKE_CURRENT_LIST_DIR}/init.hpp" | ||
) | ||
|
||
source_group("Source Files\\Abstract" FILES ${LIEF_PYTHON_ABSTRACT_SRC}) | ||
source_group("Header Files\\Abstract" FILES ${LIEF_PYTHON_ABSTRACT_HDR}) | ||
|
||
target_sources(pyLIEF PRIVATE "${LIEF_PYTHON_ABSTRACT_SRC}" "${LIEF_PYTHON_ABSTRACT_HDR}") | ||
target_include_directories(pyLIEF PUBLIC "${CMAKE_CURRENT_LIST_DIR}") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* Copyright 2017 R. Thomas | ||
* Copyright 2017 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 "init.hpp" | ||
|
||
#include "LIEF/visitors/Hash.hpp" | ||
|
||
#include "LIEF/Abstract/Relocation.hpp" | ||
|
||
template<class T> | ||
using getter_t = T (LIEF::Relocation::*)(void) const; | ||
|
||
template<class T> | ||
using setter_t = void (LIEF::Relocation::*)(T); | ||
|
||
void init_LIEF_Relocation_class(py::module& m) { | ||
py::class_<LIEF::Relocation>(m, "Relocation") | ||
.def(py::init(), | ||
"Default constructor") | ||
|
||
.def(py::init<uint64_t, uint8_t>(), | ||
"Constructor from :attr:`~lief.Relocation.address` and :attr:`~lief.Relocation.size`", | ||
"address"_a, "size"_a) | ||
|
||
.def_property("address", | ||
static_cast<getter_t<uint64_t>>(&LIEF::Relocation::address), | ||
static_cast<setter_t<uint64_t>>(&LIEF::Relocation::address), | ||
"Relocation's address") | ||
|
||
.def_property("size", | ||
static_cast<getter_t<size_t>>(&LIEF::Relocation::size), | ||
static_cast<setter_t<size_t>>(&LIEF::Relocation::size), | ||
"Relocation's size (in **bits**)") | ||
|
||
.def("__eq__", &LIEF::Relocation::operator==) | ||
.def("__ne__", &LIEF::Relocation::operator!=) | ||
.def("__hash__", | ||
[] (const LIEF::Relocation& relocation) { | ||
return LIEF::Hash::hash(relocation); | ||
}) | ||
|
||
.def("__str__", | ||
[] (const LIEF::Relocation& entry) | ||
{ | ||
std::ostringstream stream; | ||
stream << entry; | ||
std::string str = stream.str(); | ||
return str; | ||
}); | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.