-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[for review] TREZOR: initial integration proposal #4241
Merged
+4,591
−39
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Submodule trezor-common
added at
588f8e
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 |
---|---|---|
|
@@ -145,3 +145,4 @@ if(PER_BLOCK_CHECKPOINT) | |
endif() | ||
|
||
add_subdirectory(device) | ||
add_subdirectory(device_trezor) |
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,71 @@ | ||
// Copyright (c) 2017-2018, The Monero Project | ||
// | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, are | ||
// permitted provided that the following conditions are met: | ||
// | ||
// 1. Redistributions of source code must retain the above copyright notice, this list of | ||
// conditions and the following disclaimer. | ||
// | ||
// 2. Redistributions in binary form must reproduce the above copyright notice, this list | ||
// of conditions and the following disclaimer in the documentation and/or other | ||
// materials provided with the distribution. | ||
// | ||
// 3. Neither the name of the copyright holder nor the names of its contributors may be | ||
// used to endorse or promote products derived from this software without specific | ||
// prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | ||
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
// | ||
|
||
#ifndef MONERO_DEVICE_COLD_H | ||
#define MONERO_DEVICE_COLD_H | ||
|
||
#include "wallet/wallet2.h" | ||
#include <boost/function.hpp> | ||
|
||
|
||
namespace hw { | ||
|
||
typedef struct wallet_shim { | ||
boost::function<crypto::public_key (const tools::wallet2::transfer_details &td)> get_tx_pub_key_from_received_outs; | ||
} wallet_shim; | ||
|
||
class tx_aux_data { | ||
public: | ||
std::vector<std::string> tx_device_aux; // device generated aux data | ||
std::vector<cryptonote::address_parse_info> tx_recipients; // as entered by user | ||
}; | ||
|
||
class device_cold { | ||
public: | ||
|
||
using exported_key_image = std::vector<std::pair<crypto::key_image, crypto::signature>>; | ||
|
||
/** | ||
* Key image sync with the cold protocol. | ||
*/ | ||
virtual void ki_sync(wallet_shim * wallet, | ||
const std::vector<::tools::wallet2::transfer_details> & transfers, | ||
exported_key_image & ski) =0; | ||
|
||
/** | ||
* Signs unsigned transaction with the cold protocol. | ||
*/ | ||
virtual void tx_sign(wallet_shim * wallet, | ||
const ::tools::wallet2::unsigned_tx_set & unsigned_tx, | ||
::tools::wallet2::signed_tx_set & signed_tx, | ||
tx_aux_data & aux_data) =0; | ||
}; | ||
} | ||
|
||
#endif //MONERO_DEVICE_COLD_H |
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,123 @@ | ||
# Copyright (c) 2014-2017, The Monero Project | ||
# | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without modification, are | ||
# permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this list of | ||
# conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, this list | ||
# of conditions and the following disclaimer in the documentation and/or other | ||
# materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its contributors may be | ||
# used to endorse or promote products derived from this software without specific | ||
# prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
# THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | ||
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
set(TREZOR_PROTOB_H | ||
trezor/messages/messages.pb.h | ||
trezor/messages/messages-common.pb.h | ||
trezor/messages/messages-management.pb.h | ||
trezor/messages/messages-monero.pb.h | ||
) | ||
|
||
set(TREZOR_PROTOB_CPP | ||
trezor/messages/messages.pb.cc | ||
trezor/messages/messages-common.pb.cc | ||
trezor/messages/messages-management.pb.cc | ||
trezor/messages/messages-monero.pb.cc | ||
) | ||
|
||
set(trezor_headers | ||
trezor/exceptions.hpp | ||
trezor/messages_map.hpp | ||
trezor/protocol.hpp | ||
trezor/transport.hpp | ||
device_trezor_base.hpp | ||
device_trezor.hpp | ||
trezor.hpp | ||
${TREZOR_PROTOB_H} | ||
) | ||
|
||
set(trezor_sources | ||
trezor/messages_map.cpp | ||
trezor/protocol.cpp | ||
trezor/transport.cpp | ||
device_trezor_base.cpp | ||
device_trezor.cpp | ||
${TREZOR_PROTOB_CPP} | ||
) | ||
|
||
set(trezor_private_headers) | ||
|
||
|
||
include(FindProtobuf) | ||
find_package(Protobuf) # REQUIRED | ||
|
||
# Test for HAVE_PROTOBUF from the parent | ||
if(Protobuf_FOUND AND HAVE_PROTOBUF) | ||
if ("$ENV{PYTHON3}" STREQUAL "") | ||
set(PYTHON3 "python3") | ||
else() | ||
set(PYTHON3 "$ENV{PYTHON3}" CACHE INTERNAL "Copied from environment variable") | ||
endif() | ||
|
||
execute_process(COMMAND ${PYTHON3} tools/build_protob.py WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/trezor RESULT_VARIABLE RET OUTPUT_VARIABLE OUT ERROR_VARIABLE ERR) | ||
if(RET) | ||
message(WARNING "Trezor protobuf messages could not be regenerated (err=${RET}, python ${PYTHON})." | ||
"OUT: ${OUT}, ERR: ${ERR}." | ||
"Please read src/device_trezor/trezor/tools/README.md") | ||
else() | ||
message(STATUS "Trezor protobuf messages regenerated ${OUT}") | ||
set(TREZOR_PROTOBUF_GENERATED 1) | ||
endif() | ||
endif() | ||
|
||
|
||
if(TREZOR_PROTOBUF_GENERATED) | ||
message(STATUS "Trezor support enabled") | ||
|
||
add_definitions(-DPROTOBUF_INLINE_NOT_IN_HEADERS=0) | ||
|
||
monero_private_headers(device_trezor | ||
${device_private_headers} | ||
${PROTOBUF_INCLUDE_DIR}) | ||
|
||
monero_add_library(device_trezor | ||
${trezor_sources} | ||
${trezor_headers} | ||
${trezor_private_headers}) | ||
|
||
target_link_libraries(device_trezor | ||
PUBLIC | ||
device | ||
cncrypto | ||
ringct_basic | ||
cryptonote_core | ||
common | ||
${SODIUM_LIBRARY} | ||
${Boost_CHRONO_LIBRARY} | ||
${PROTOBUF_LIBRARY} | ||
PRIVATE | ||
${EXTRA_LIBRARIES}) | ||
|
||
# set(WITH_DEVICE_TREZOR 1 PARENT_SCOPE) | ||
# add_definitions(-DWITH_DEVICE_TREZOR=1) | ||
|
||
else() | ||
monero_private_headers(device_trezor) | ||
monero_add_library(device_trezor device_trezor.cpp) | ||
target_link_libraries(device_trezor PUBLIC cncrypto) | ||
endif() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't used anywhere, shouldn't the function definition be removed then?