2018-08-23 21:50:53 +00:00
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "device_trezor_base.hpp"
|
2018-11-11 23:07:25 +00:00
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
#include <boost/regex.hpp>
|
2018-08-23 21:50:53 +00:00
|
|
|
|
|
|
|
namespace hw {
|
|
|
|
namespace trezor {
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
#ifdef WITH_DEVICE_TREZOR
|
2018-08-23 21:50:53 +00:00
|
|
|
|
|
|
|
#undef MONERO_DEFAULT_LOG_CATEGORY
|
|
|
|
#define MONERO_DEFAULT_LOG_CATEGORY "device.trezor"
|
2018-11-11 23:07:25 +00:00
|
|
|
#define TREZOR_BIP44_HARDENED_ZERO 0x80000000
|
2018-08-23 21:50:53 +00:00
|
|
|
|
2018-11-11 23:07:25 +00:00
|
|
|
const uint32_t device_trezor_base::DEFAULT_BIP44_PATH[] = {0x8000002c, 0x80000080};
|
2018-08-23 21:50:53 +00:00
|
|
|
|
2018-11-11 19:07:25 +00:00
|
|
|
device_trezor_base::device_trezor_base(): m_callback(nullptr) {
|
2018-11-20 13:40:51 +00:00
|
|
|
#ifdef WITH_TREZOR_DEBUGGING
|
|
|
|
m_debug = false;
|
|
|
|
#endif
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
device_trezor_base::~device_trezor_base() {
|
|
|
|
try {
|
|
|
|
disconnect();
|
|
|
|
release();
|
|
|
|
} catch(std::exception const& e){
|
|
|
|
MERROR("Could not disconnect and release: " << e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ======================================================================= */
|
|
|
|
/* SETUP/TEARDOWN */
|
|
|
|
/* ======================================================================= */
|
|
|
|
|
|
|
|
bool device_trezor_base::reset() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::set_name(const std::string & name) {
|
2018-11-28 21:22:11 +00:00
|
|
|
this->m_full_name = name;
|
2018-08-23 21:50:53 +00:00
|
|
|
this->name = "";
|
|
|
|
|
|
|
|
auto delim = name.find(':');
|
|
|
|
if (delim != std::string::npos && delim + 1 < name.length()) {
|
|
|
|
this->name = name.substr(delim + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string device_trezor_base::get_name() const {
|
2018-11-28 21:22:11 +00:00
|
|
|
if (this->m_full_name.empty()) {
|
2018-08-23 21:50:53 +00:00
|
|
|
return std::string("<disconnected:").append(this->name).append(">");
|
|
|
|
}
|
2018-11-28 21:22:11 +00:00
|
|
|
return this->m_full_name;
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::init() {
|
|
|
|
if (!release()){
|
|
|
|
MERROR("Release failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::release() {
|
|
|
|
try {
|
|
|
|
disconnect();
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch(std::exception const& e){
|
|
|
|
MERROR("Release exception: " << e.what());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::connect() {
|
|
|
|
disconnect();
|
|
|
|
|
|
|
|
// Enumerate all available devices
|
|
|
|
try {
|
|
|
|
hw::trezor::t_transport_vect trans;
|
|
|
|
|
|
|
|
MDEBUG("Enumerating Trezor devices...");
|
|
|
|
enumerate(trans);
|
|
|
|
|
|
|
|
MDEBUG("Enumeration yielded " << trans.size() << " devices");
|
|
|
|
for (auto &cur : trans) {
|
|
|
|
MDEBUG(" device: " << *(cur.get()));
|
|
|
|
std::string cur_path = cur->get_path();
|
|
|
|
if (boost::starts_with(cur_path, this->name)) {
|
|
|
|
MDEBUG("Device Match: " << cur_path);
|
|
|
|
m_transport = cur;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_transport) {
|
|
|
|
MERROR("No matching Trezor device found. Device specifier: \"" + this->name + "\"");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_transport->open();
|
2018-11-20 13:40:51 +00:00
|
|
|
|
|
|
|
#ifdef WITH_TREZOR_DEBUGGING
|
|
|
|
setup_debug();
|
|
|
|
#endif
|
2018-08-23 21:50:53 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch(std::exception const& e){
|
|
|
|
MERROR("Open exception: " << e.what());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::disconnect() {
|
2018-11-28 21:22:11 +00:00
|
|
|
m_device_state.clear();
|
|
|
|
m_features.reset();
|
|
|
|
|
2018-08-23 21:50:53 +00:00
|
|
|
if (m_transport){
|
|
|
|
try {
|
|
|
|
m_transport->close();
|
|
|
|
m_transport = nullptr;
|
|
|
|
|
|
|
|
} catch(std::exception const& e){
|
|
|
|
MERROR("Disconnect exception: " << e.what());
|
|
|
|
m_transport = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-11-20 13:40:51 +00:00
|
|
|
|
|
|
|
#ifdef WITH_TREZOR_DEBUGGING
|
|
|
|
if (m_debug_callback) {
|
|
|
|
m_debug_callback->on_disconnect();
|
|
|
|
m_debug_callback = nullptr;
|
|
|
|
}
|
|
|
|
#endif
|
2018-08-23 21:50:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ======================================================================= */
|
|
|
|
/* LOCKER */
|
|
|
|
/* ======================================================================= */
|
|
|
|
|
|
|
|
//lock the device for a long sequence
|
|
|
|
void device_trezor_base::lock() {
|
|
|
|
MTRACE("Ask for LOCKING for device " << this->name << " in thread ");
|
|
|
|
device_locker.lock();
|
|
|
|
MTRACE("Device " << this->name << " LOCKed");
|
|
|
|
}
|
|
|
|
|
|
|
|
//lock the device for a long sequence
|
|
|
|
bool device_trezor_base::try_lock() {
|
|
|
|
MTRACE("Ask for LOCKING(try) for device " << this->name << " in thread ");
|
|
|
|
bool r = device_locker.try_lock();
|
|
|
|
if (r) {
|
|
|
|
MTRACE("Device " << this->name << " LOCKed(try)");
|
|
|
|
} else {
|
|
|
|
MDEBUG("Device " << this->name << " not LOCKed(try)");
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
//unlock the device
|
|
|
|
void device_trezor_base::unlock() {
|
|
|
|
MTRACE("Ask for UNLOCKING for device " << this->name << " in thread ");
|
|
|
|
device_locker.unlock();
|
|
|
|
MTRACE("Device " << this->name << " UNLOCKed");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ======================================================================= */
|
|
|
|
/* Helpers */
|
|
|
|
/* ======================================================================= */
|
|
|
|
|
|
|
|
void device_trezor_base::require_connected(){
|
|
|
|
if (!m_transport){
|
|
|
|
throw exc::NotConnectedException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-28 21:22:11 +00:00
|
|
|
void device_trezor_base::require_initialized(){
|
|
|
|
if (!m_features){
|
|
|
|
throw exc::TrezorException("Device state not initialized");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_features->has_bootloader_mode() && m_features->bootloader_mode()){
|
|
|
|
throw exc::TrezorException("Device is in the bootloader mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_features->has_firmware_present() && !m_features->firmware_present()){
|
|
|
|
throw exc::TrezorException("Device has no firmware loaded");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hard requirement on initialized field, has to be there.
|
|
|
|
if (!m_features->has_initialized() || !m_features->initialized()){
|
|
|
|
throw exc::TrezorException("Device is not initialized");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 21:50:53 +00:00
|
|
|
void device_trezor_base::call_ping_unsafe(){
|
|
|
|
auto pingMsg = std::make_shared<messages::management::Ping>();
|
|
|
|
pingMsg->set_message("PING");
|
|
|
|
|
|
|
|
auto success = this->client_exchange<messages::common::Success>(pingMsg); // messages::MessageType_Success
|
|
|
|
MDEBUG("Ping response " << success->message());
|
|
|
|
(void)success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void device_trezor_base::test_ping(){
|
|
|
|
require_connected();
|
|
|
|
|
|
|
|
try {
|
|
|
|
this->call_ping_unsafe();
|
|
|
|
|
|
|
|
} catch(exc::TrezorException const& e){
|
|
|
|
MINFO("Trezor does not respond: " << e.what());
|
|
|
|
throw exc::DeviceNotResponsiveException(std::string("Trezor not responding: ") + e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
void device_trezor_base::write_raw(const google::protobuf::Message * msg){
|
|
|
|
require_connected();
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(msg, "Empty message");
|
2018-11-28 21:22:11 +00:00
|
|
|
this->get_transport()->write(*msg);
|
2018-11-04 23:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GenericMessage device_trezor_base::read_raw(){
|
|
|
|
require_connected();
|
|
|
|
std::shared_ptr<google::protobuf::Message> msg_resp;
|
|
|
|
hw::trezor::messages::MessageType msg_resp_type;
|
|
|
|
|
2018-11-28 21:22:11 +00:00
|
|
|
this->get_transport()->read(msg_resp, &msg_resp_type);
|
2018-11-04 23:38:58 +00:00
|
|
|
return GenericMessage(msg_resp_type, msg_resp);
|
|
|
|
}
|
|
|
|
|
|
|
|
GenericMessage device_trezor_base::call_raw(const google::protobuf::Message * msg) {
|
|
|
|
write_raw(msg);
|
|
|
|
return read_raw();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool device_trezor_base::message_handler(GenericMessage & input){
|
|
|
|
// Later if needed this generic message handler can be replaced by a pointer to
|
|
|
|
// a protocol message handler which by default points to the device class which implements
|
|
|
|
// the default handler.
|
|
|
|
switch(input.m_type){
|
|
|
|
case messages::MessageType_ButtonRequest:
|
|
|
|
on_button_request(input, dynamic_cast<const messages::common::ButtonRequest*>(input.m_msg.get()));
|
|
|
|
return true;
|
|
|
|
case messages::MessageType_PassphraseRequest:
|
|
|
|
on_passphrase_request(input, dynamic_cast<const messages::common::PassphraseRequest*>(input.m_msg.get()));
|
|
|
|
return true;
|
|
|
|
case messages::MessageType_PassphraseStateRequest:
|
|
|
|
on_passphrase_state_request(input, dynamic_cast<const messages::common::PassphraseStateRequest*>(input.m_msg.get()));
|
|
|
|
return true;
|
|
|
|
case messages::MessageType_PinMatrixRequest:
|
|
|
|
on_pin_request(input, dynamic_cast<const messages::common::PinMatrixRequest*>(input.m_msg.get()));
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-11 23:07:25 +00:00
|
|
|
void device_trezor_base::ensure_derivation_path() noexcept {
|
|
|
|
if (m_wallet_deriv_path.empty()){
|
|
|
|
m_wallet_deriv_path.push_back(TREZOR_BIP44_HARDENED_ZERO); // default 0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void device_trezor_base::set_derivation_path(const std::string &deriv_path){
|
|
|
|
this->m_wallet_deriv_path.clear();
|
|
|
|
|
|
|
|
if (deriv_path.empty() || deriv_path == "-"){
|
|
|
|
ensure_derivation_path();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(deriv_path.size() <= 255, "Derivation path is too long");
|
|
|
|
|
|
|
|
std::vector<std::string> fields;
|
|
|
|
boost::split(fields, deriv_path, boost::is_any_of("/"));
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(fields.size() <= 10, "Derivation path is too long");
|
|
|
|
|
|
|
|
boost::regex rgx("^([0-9]+)'?$");
|
|
|
|
boost::cmatch match;
|
|
|
|
|
|
|
|
this->m_wallet_deriv_path.reserve(fields.size());
|
|
|
|
for(const std::string & cur : fields){
|
|
|
|
const bool ok = boost::regex_match(cur.c_str(), match, rgx);
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(ok, "Invalid wallet code: " << deriv_path << ". Invalid path element: " << cur);
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(match[0].length() > 0, "Invalid wallet code: " << deriv_path << ". Invalid path element: " << cur);
|
|
|
|
|
|
|
|
const unsigned long cidx = std::stoul(match[0].str()) | TREZOR_BIP44_HARDENED_ZERO;
|
|
|
|
this->m_wallet_deriv_path.push_back((unsigned int)cidx);
|
|
|
|
}
|
|
|
|
}
|
2018-11-04 23:38:58 +00:00
|
|
|
|
2018-08-23 21:50:53 +00:00
|
|
|
/* ======================================================================= */
|
|
|
|
/* TREZOR PROTOCOL */
|
|
|
|
/* ======================================================================= */
|
|
|
|
|
|
|
|
bool device_trezor_base::ping() {
|
|
|
|
AUTO_LOCK_CMD();
|
|
|
|
if (!m_transport){
|
|
|
|
MINFO("Ping failed, device not connected");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
this->call_ping_unsafe();
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} catch(std::exception const& e) {
|
|
|
|
MERROR("Ping failed, exception thrown " << e.what());
|
|
|
|
} catch(...){
|
|
|
|
MERROR("Ping failed, general exception thrown" << boost::current_exception_diagnostic_information());
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-28 21:22:11 +00:00
|
|
|
void device_trezor_base::device_state_reset_unsafe()
|
|
|
|
{
|
|
|
|
require_connected();
|
|
|
|
auto initMsg = std::make_shared<messages::management::Initialize>();
|
|
|
|
|
|
|
|
if(!m_device_state.empty()) {
|
|
|
|
initMsg->set_allocated_state(&m_device_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_features = this->client_exchange<messages::management::Features>(initMsg);
|
|
|
|
initMsg->release_state();
|
|
|
|
}
|
|
|
|
|
|
|
|
void device_trezor_base::device_state_reset()
|
|
|
|
{
|
|
|
|
AUTO_LOCK_CMD();
|
|
|
|
device_state_reset_unsafe();
|
|
|
|
}
|
|
|
|
|
2018-11-20 13:40:51 +00:00
|
|
|
#ifdef WITH_TREZOR_DEBUGGING
|
|
|
|
#define TREZOR_CALLBACK(method, ...) do { \
|
|
|
|
if (m_debug_callback) m_debug_callback->method(__VA_ARGS__); \
|
|
|
|
if (m_callback) m_callback->method(__VA_ARGS__); \
|
|
|
|
}while(0)
|
|
|
|
|
|
|
|
void device_trezor_base::setup_debug(){
|
|
|
|
if (!m_debug){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_debug_callback){
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(m_transport, "Transport does not exist");
|
|
|
|
auto debug_transport = m_transport->find_debug();
|
|
|
|
if (debug_transport) {
|
|
|
|
m_debug_callback = std::make_shared<trezor_debug_callback>(debug_transport);
|
|
|
|
} else {
|
|
|
|
MDEBUG("Transport does not have debug link option");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define TREZOR_CALLBACK(method, ...) do { if (m_callback) m_callback->method(__VA_ARGS__); } while(0)
|
|
|
|
#endif
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
void device_trezor_base::on_button_request(GenericMessage & resp, const messages::common::ButtonRequest * msg)
|
2018-08-23 21:50:53 +00:00
|
|
|
{
|
2018-11-04 23:38:58 +00:00
|
|
|
CHECK_AND_ASSERT_THROW_MES(msg, "Empty message");
|
|
|
|
MDEBUG("on_button_request, code: " << msg->code());
|
|
|
|
|
|
|
|
messages::common::ButtonAck ack;
|
|
|
|
write_raw(&ack);
|
|
|
|
|
2018-11-20 13:40:51 +00:00
|
|
|
TREZOR_CALLBACK(on_button_request);
|
2018-11-04 23:38:58 +00:00
|
|
|
resp = read_raw();
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
void device_trezor_base::on_pin_request(GenericMessage & resp, const messages::common::PinMatrixRequest * msg)
|
2018-08-23 21:50:53 +00:00
|
|
|
{
|
2018-11-04 23:38:58 +00:00
|
|
|
MDEBUG("on_pin_request");
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(msg, "Empty message");
|
|
|
|
|
|
|
|
epee::wipeable_string pin;
|
|
|
|
|
2018-11-20 13:40:51 +00:00
|
|
|
TREZOR_CALLBACK(on_pin_request, pin);
|
2018-11-04 23:38:58 +00:00
|
|
|
|
|
|
|
// TODO: remove PIN from memory
|
|
|
|
messages::common::PinMatrixAck m;
|
|
|
|
m.set_pin(pin.data(), pin.size());
|
|
|
|
resp = call_raw(&m);
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
void device_trezor_base::on_passphrase_request(GenericMessage & resp, const messages::common::PassphraseRequest * msg)
|
2018-08-23 21:50:53 +00:00
|
|
|
{
|
2018-11-04 23:38:58 +00:00
|
|
|
CHECK_AND_ASSERT_THROW_MES(msg, "Empty message");
|
|
|
|
MDEBUG("on_passhprase_request, on device: " << msg->on_device());
|
|
|
|
epee::wipeable_string passphrase;
|
|
|
|
|
2018-11-20 13:40:51 +00:00
|
|
|
TREZOR_CALLBACK(on_passphrase_request, msg->on_device(), passphrase);
|
2018-11-04 23:38:58 +00:00
|
|
|
|
|
|
|
messages::common::PassphraseAck m;
|
|
|
|
if (!msg->on_device()){
|
|
|
|
// TODO: remove passphrase from memory
|
|
|
|
m.set_passphrase(passphrase.data(), passphrase.size());
|
|
|
|
}
|
2018-11-28 21:22:11 +00:00
|
|
|
|
|
|
|
if (!m_device_state.empty()){
|
|
|
|
m.set_allocated_state(&m_device_state);
|
|
|
|
}
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
resp = call_raw(&m);
|
2018-11-28 21:22:11 +00:00
|
|
|
m.release_state();
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 23:38:58 +00:00
|
|
|
void device_trezor_base::on_passphrase_state_request(GenericMessage & resp, const messages::common::PassphraseStateRequest * msg)
|
2018-08-23 21:50:53 +00:00
|
|
|
{
|
2018-11-04 23:38:58 +00:00
|
|
|
MDEBUG("on_passhprase_state_request");
|
|
|
|
CHECK_AND_ASSERT_THROW_MES(msg, "Empty message");
|
|
|
|
|
2018-11-28 21:22:11 +00:00
|
|
|
m_device_state = msg->state();
|
2018-11-04 23:38:58 +00:00
|
|
|
messages::common::PassphraseStateAck m;
|
|
|
|
resp = call_raw(&m);
|
2018-08-23 21:50:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-20 13:40:51 +00:00
|
|
|
#ifdef WITH_TREZOR_DEBUGGING
|
|
|
|
void device_trezor_base::wipe_device()
|
|
|
|
{
|
|
|
|
auto msg = std::make_shared<messages::management::WipeDevice>();
|
|
|
|
auto ret = client_exchange<messages::common::Success>(msg);
|
|
|
|
(void)ret;
|
|
|
|
init_device();
|
|
|
|
}
|
|
|
|
|
|
|
|
void device_trezor_base::init_device()
|
|
|
|
{
|
|
|
|
auto msg = std::make_shared<messages::management::Initialize>();
|
|
|
|
m_features = client_exchange<messages::management::Features>(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void device_trezor_base::load_device(const std::string & mnemonic, const std::string & pin,
|
|
|
|
bool passphrase_protection, const std::string & label, const std::string & language,
|
|
|
|
bool skip_checksum, bool expand)
|
|
|
|
{
|
|
|
|
if (m_features && m_features->initialized()){
|
|
|
|
throw std::runtime_error("Device is initialized already. Call device.wipe() and try again.");
|
|
|
|
}
|
|
|
|
|
|
|
|
auto msg = std::make_shared<messages::management::LoadDevice>();
|
|
|
|
msg->set_mnemonic(mnemonic);
|
|
|
|
msg->set_pin(pin);
|
|
|
|
msg->set_passphrase_protection(passphrase_protection);
|
|
|
|
msg->set_label(label);
|
|
|
|
msg->set_language(language);
|
|
|
|
msg->set_skip_checksum(skip_checksum);
|
|
|
|
auto ret = client_exchange<messages::common::Success>(msg);
|
|
|
|
(void)ret;
|
|
|
|
|
|
|
|
init_device();
|
|
|
|
}
|
|
|
|
|
|
|
|
trezor_debug_callback::trezor_debug_callback(std::shared_ptr<Transport> & debug_transport){
|
|
|
|
m_debug_link = std::make_shared<DebugLink>();
|
|
|
|
m_debug_link->init(debug_transport);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trezor_debug_callback::on_button_request() {
|
|
|
|
if (m_debug_link) m_debug_link->press_yes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void trezor_debug_callback::on_pin_request(epee::wipeable_string &pin) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void trezor_debug_callback::on_passphrase_request(bool on_device, epee::wipeable_string &passphrase) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void trezor_debug_callback::on_passphrase_state_request(const std::string &state) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void trezor_debug_callback::on_disconnect(){
|
|
|
|
if (m_debug_link) m_debug_link->close();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-08-23 21:50:53 +00:00
|
|
|
#endif //WITH_DEVICE_TREZOR
|
|
|
|
}}
|