Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Parse LC_SOURCE_VERSION. Resolve #45
- Loading branch information
1 parent
ba9be1f
commit c359778
Showing
14 changed files
with
322 additions
and
0 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
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,61 @@ | ||
/* 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 <algorithm> | ||
|
||
#include <string> | ||
#include <sstream> | ||
|
||
#include "LIEF/visitors/Hash.hpp" | ||
#include "LIEF/MachO/SourceVersion.hpp" | ||
|
||
#include "pyMachO.hpp" | ||
|
||
template<class T> | ||
using getter_t = T (SourceVersion::*)(void) const; | ||
|
||
template<class T> | ||
using setter_t = void (SourceVersion::*)(T); | ||
|
||
|
||
void init_MachO_SourceVersion_class(py::module& m) { | ||
|
||
py::class_<SourceVersion, LoadCommand>(m, "SourceVersion") | ||
|
||
.def_property("version", | ||
static_cast<getter_t<const version_t&>>(&SourceVersion::version), | ||
static_cast<setter_t<const version_t&>>(&SourceVersion::version), | ||
"TODO", | ||
py::return_value_policy::reference_internal) | ||
|
||
|
||
.def("__eq__", &SourceVersion::operator==) | ||
.def("__ne__", &SourceVersion::operator!=) | ||
.def("__hash__", | ||
[] (const SourceVersion& version) { | ||
return LIEF::Hash::hash(version); | ||
}) | ||
|
||
|
||
.def("__str__", | ||
[] (const SourceVersion& version) | ||
{ | ||
std::ostringstream stream; | ||
stream << version; | ||
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
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,58 @@ | ||
/* 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. | ||
*/ | ||
#ifndef LIEF_MACHO_SOURCE_VERSION_COMMAND_H_ | ||
#define LIEF_MACHO_SOURCE_VERSION_COMMAND_H_ | ||
#include <string> | ||
#include <vector> | ||
#include <iostream> | ||
#include <array> | ||
|
||
#include "LIEF/visibility.h" | ||
#include "LIEF/types.hpp" | ||
|
||
#include "LIEF/MachO/LoadCommand.hpp" | ||
|
||
namespace LIEF { | ||
namespace MachO { | ||
using version_t = std::array<uint32_t, 5>; | ||
|
||
class DLL_PUBLIC SourceVersion : public LoadCommand { | ||
public: | ||
SourceVersion(void); | ||
SourceVersion(const source_version_command *version_cmd); | ||
|
||
SourceVersion& operator=(const SourceVersion& copy); | ||
SourceVersion(const SourceVersion& copy); | ||
|
||
virtual ~SourceVersion(void); | ||
|
||
const version_t& version(void) const; | ||
void version(const version_t& version); | ||
|
||
bool operator==(const SourceVersion& rhs) const; | ||
bool operator!=(const SourceVersion& rhs) const; | ||
|
||
virtual void accept(Visitor& visitor) const override; | ||
|
||
virtual std::ostream& print(std::ostream& os) const override; | ||
|
||
private: | ||
version_t version_; | ||
}; | ||
|
||
} | ||
} | ||
#endif |
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.