2016-02-15 13:04:00 -05:00
|
|
|
// Copyright (c) 2014-2016, 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.
|
|
|
|
//
|
|
|
|
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
|
|
|
|
|
|
|
#include "wallet2_api.h"
|
|
|
|
#include "wallet2.h"
|
2016-03-12 09:41:11 -05:00
|
|
|
#include "mnemonics/electrum-words.h"
|
2016-02-15 13:04:00 -05:00
|
|
|
#include <memory>
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
namespace epee {
|
|
|
|
unsigned int g_test_dbg_lock_sleep = 0;
|
|
|
|
}
|
2016-02-20 11:04:56 -05:00
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
namespace Bitmonero {
|
|
|
|
|
|
|
|
struct WalletManagerImpl;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
static WalletManagerImpl * g_walletManager = nullptr;
|
2016-02-20 11:04:56 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
}
|
|
|
|
|
2016-02-21 13:18:16 -05:00
|
|
|
Wallet::~Wallet() {}
|
2016-02-15 13:04:00 -05:00
|
|
|
|
|
|
|
///////////////////////// Wallet implementation ////////////////////////////////
|
|
|
|
class WalletImpl : public Wallet
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WalletImpl();
|
|
|
|
~WalletImpl();
|
|
|
|
bool create(const std::string &path, const std::string &password,
|
|
|
|
const std::string &language);
|
|
|
|
bool open(const std::string &path, const std::string &password);
|
2016-03-12 09:41:11 -05:00
|
|
|
bool recover(const std::string &path, const std::string &seed);
|
2016-03-10 11:43:10 -05:00
|
|
|
bool close();
|
2016-02-15 13:04:00 -05:00
|
|
|
std::string seed() const;
|
2016-02-21 13:18:16 -05:00
|
|
|
std::string getSeedLanguage() const;
|
|
|
|
void setSeedLanguage(const std::string &arg);
|
2016-03-10 11:43:10 -05:00
|
|
|
void setListener(Listener *) {}
|
|
|
|
int status() const;
|
|
|
|
std::string errorString() const;
|
2016-03-11 09:05:36 -05:00
|
|
|
bool setPassword(const std::string &password);
|
2016-03-12 09:52:58 -05:00
|
|
|
std::string address() const;
|
2016-03-15 16:11:38 -04:00
|
|
|
bool store(const std::string &path);
|
2016-03-10 11:43:10 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
void clearStatus();
|
2016-02-15 13:04:00 -05:00
|
|
|
|
|
|
|
private:
|
2016-02-21 13:18:16 -05:00
|
|
|
//std::unique_ptr<tools::wallet2> m_wallet;
|
|
|
|
tools::wallet2 * m_wallet;
|
2016-03-10 11:43:10 -05:00
|
|
|
int m_status;
|
|
|
|
std::string m_errorString;
|
2016-03-15 16:11:38 -04:00
|
|
|
std::string m_password;
|
2016-02-15 13:04:00 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
WalletImpl::WalletImpl()
|
2016-03-10 11:43:10 -05:00
|
|
|
:m_wallet(nullptr), m_status(Wallet::Status_Ok)
|
2016-02-15 13:04:00 -05:00
|
|
|
{
|
2016-03-10 11:43:10 -05:00
|
|
|
m_wallet = new tools::wallet2();
|
2016-02-15 13:04:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
WalletImpl::~WalletImpl()
|
|
|
|
{
|
2016-02-21 13:18:16 -05:00
|
|
|
delete m_wallet;
|
2016-02-15 13:04:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool WalletImpl::create(const std::string &path, const std::string &password, const std::string &language)
|
|
|
|
{
|
2016-03-10 11:43:10 -05:00
|
|
|
|
|
|
|
clearStatus();
|
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
bool keys_file_exists;
|
|
|
|
bool wallet_file_exists;
|
|
|
|
tools::wallet2::wallet_exists(path, keys_file_exists, wallet_file_exists);
|
2016-02-21 13:18:16 -05:00
|
|
|
// TODO: figure out how to setup logger;
|
2016-02-15 13:04:00 -05:00
|
|
|
LOG_PRINT_L3("wallet_path: " << path << "");
|
|
|
|
LOG_PRINT_L3("keys_file_exists: " << std::boolalpha << keys_file_exists << std::noboolalpha
|
|
|
|
<< " wallet_file_exists: " << std::boolalpha << wallet_file_exists << std::noboolalpha);
|
|
|
|
|
|
|
|
|
|
|
|
// add logic to error out if new wallet requested but named wallet file exists
|
|
|
|
if (keys_file_exists || wallet_file_exists) {
|
2016-03-10 11:43:10 -05:00
|
|
|
m_errorString = "attempting to generate or restore wallet, but specified file(s) exist. Exiting to not risk overwriting.";
|
|
|
|
LOG_ERROR(m_errorString);
|
|
|
|
m_status = Status_Error;
|
2016-02-15 13:04:00 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// TODO: validate language
|
2016-03-10 11:43:10 -05:00
|
|
|
m_wallet->set_seed_language(language);
|
2016-02-15 13:04:00 -05:00
|
|
|
crypto::secret_key recovery_val, secret_key;
|
|
|
|
try {
|
|
|
|
recovery_val = m_wallet->generate(path, password, secret_key, false, false);
|
2016-03-15 16:11:38 -04:00
|
|
|
m_password = password;
|
|
|
|
m_status = Status_Ok;
|
2016-03-10 11:43:10 -05:00
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LOG_ERROR("Error creating wallet: " << e.what());
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
2016-02-15 13:04:00 -05:00
|
|
|
return false;
|
|
|
|
}
|
2016-03-15 16:11:38 -04:00
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
bool WalletImpl::open(const std::string &path, const std::string &password)
|
|
|
|
{
|
|
|
|
clearStatus();
|
|
|
|
try {
|
|
|
|
// TODO: handle "deprecated"
|
|
|
|
m_wallet->load(path, password);
|
2016-03-15 16:11:38 -04:00
|
|
|
|
|
|
|
m_password = password;
|
2016-03-11 09:05:36 -05:00
|
|
|
} catch (const std::exception &e) {
|
2016-03-10 11:43:10 -05:00
|
|
|
LOG_ERROR("Error opening wallet: " << e.what());
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
|
|
|
}
|
2016-03-15 16:11:38 -04:00
|
|
|
return m_status == Status_Ok;
|
2016-03-10 11:43:10 -05:00
|
|
|
}
|
|
|
|
|
2016-03-12 09:41:11 -05:00
|
|
|
bool WalletImpl::recover(const std::string &path, const std::string &seed)
|
|
|
|
{
|
2016-03-15 16:11:38 -04:00
|
|
|
clearStatus();
|
2016-03-12 09:41:11 -05:00
|
|
|
m_errorString.clear();
|
|
|
|
if (seed.empty()) {
|
|
|
|
m_errorString = "Electrum seed is empty";
|
|
|
|
LOG_ERROR(m_errorString);
|
|
|
|
m_status = Status_Error;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
crypto::secret_key recovery_key;
|
|
|
|
std::string old_language;
|
|
|
|
if (!crypto::ElectrumWords::words_to_bytes(seed, recovery_key, old_language)) {
|
|
|
|
m_errorString = "Electrum-style word list failed verification";
|
|
|
|
m_status = Status_Error;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
m_wallet->set_seed_language(old_language);
|
|
|
|
m_wallet->generate(path, "", recovery_key, true, false);
|
|
|
|
// TODO: wallet->init(daemon_address);
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
|
|
|
}
|
2016-03-15 16:11:38 -04:00
|
|
|
return m_status == Status_Ok;
|
2016-03-12 09:41:11 -05:00
|
|
|
}
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
bool WalletImpl::close()
|
|
|
|
{
|
2016-03-15 16:11:38 -04:00
|
|
|
clearStatus();
|
2016-03-10 11:43:10 -05:00
|
|
|
bool result = false;
|
|
|
|
try {
|
|
|
|
m_wallet->store();
|
|
|
|
m_wallet->stop();
|
|
|
|
result = true;
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
|
|
|
LOG_ERROR("Error closing wallet: " << e.what());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-02-20 11:04:56 -05:00
|
|
|
std::string WalletImpl::seed() const
|
|
|
|
{
|
2016-02-21 13:18:16 -05:00
|
|
|
std::string seed;
|
|
|
|
if (m_wallet)
|
|
|
|
m_wallet->get_seed(seed);
|
|
|
|
return seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string WalletImpl::getSeedLanguage() const
|
|
|
|
{
|
|
|
|
return m_wallet->get_seed_language();
|
2016-02-20 11:04:56 -05:00
|
|
|
}
|
|
|
|
|
2016-02-21 13:18:16 -05:00
|
|
|
void WalletImpl::setSeedLanguage(const std::string &arg)
|
|
|
|
{
|
|
|
|
m_wallet->set_seed_language(arg);
|
|
|
|
}
|
2016-02-15 13:04:00 -05:00
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
int WalletImpl::status() const
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string WalletImpl::errorString() const
|
|
|
|
{
|
|
|
|
return m_errorString;
|
|
|
|
}
|
|
|
|
|
2016-03-11 09:05:36 -05:00
|
|
|
bool WalletImpl::setPassword(const std::string &password)
|
|
|
|
{
|
2016-03-15 16:11:38 -04:00
|
|
|
clearStatus();
|
2016-03-11 09:05:36 -05:00
|
|
|
try {
|
|
|
|
m_wallet->rewrite(m_wallet->get_wallet_file(), password);
|
2016-03-15 16:11:38 -04:00
|
|
|
m_password = password;
|
2016-03-11 09:05:36 -05:00
|
|
|
} catch (const std::exception &e) {
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
|
|
|
}
|
2016-03-15 16:11:38 -04:00
|
|
|
return m_status == Status_Ok;
|
2016-03-11 09:05:36 -05:00
|
|
|
}
|
|
|
|
|
2016-03-12 09:52:58 -05:00
|
|
|
std::string WalletImpl::address() const
|
|
|
|
{
|
|
|
|
return m_wallet->get_account().get_public_address_str(m_wallet->testnet());
|
|
|
|
}
|
|
|
|
|
2016-03-15 16:11:38 -04:00
|
|
|
bool WalletImpl::store(const std::string &path)
|
|
|
|
{
|
|
|
|
clearStatus();
|
|
|
|
try {
|
|
|
|
if (path.empty()) {
|
|
|
|
m_wallet->store();
|
|
|
|
} else {
|
|
|
|
m_wallet->store_to(path, m_password);
|
|
|
|
}
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
LOG_ERROR("Error storing wallet: " << e.what());
|
|
|
|
m_status = Status_Error;
|
|
|
|
m_errorString = e.what();
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_status == Status_Ok;
|
|
|
|
}
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
void WalletImpl::clearStatus()
|
|
|
|
{
|
|
|
|
m_status = Status_Ok;
|
|
|
|
m_errorString.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
|
|
|
|
///////////////////////// WalletManager implementation /////////////////////////
|
|
|
|
class WalletManagerImpl : public WalletManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Wallet * createWallet(const std::string &path, const std::string &password,
|
|
|
|
const std::string &language);
|
2016-02-20 11:04:56 -05:00
|
|
|
Wallet * openWallet(const std::string &path, const std::string &password);
|
2016-03-12 09:41:11 -05:00
|
|
|
virtual Wallet * recoveryWallet(const std::string &path, const std::string &memo);
|
2016-03-10 11:43:10 -05:00
|
|
|
virtual bool closeWallet(Wallet *wallet);
|
2016-02-20 11:04:56 -05:00
|
|
|
bool walletExists(const std::string &path);
|
2016-03-10 11:43:10 -05:00
|
|
|
std::string errorString() const;
|
2016-03-21 09:17:03 -04:00
|
|
|
void setDaemonHost(const std::string &hostname);
|
2016-03-10 11:43:10 -05:00
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
WalletManagerImpl() {}
|
|
|
|
friend struct WalletManagerFactory;
|
2016-03-10 11:43:10 -05:00
|
|
|
|
|
|
|
std::string m_errorString;
|
2016-02-15 13:04:00 -05:00
|
|
|
};
|
|
|
|
|
2016-02-20 11:04:56 -05:00
|
|
|
Wallet *WalletManagerImpl::createWallet(const std::string &path, const std::string &password,
|
2016-02-15 13:04:00 -05:00
|
|
|
const std::string &language)
|
|
|
|
{
|
|
|
|
WalletImpl * wallet = new WalletImpl();
|
2016-03-10 11:43:10 -05:00
|
|
|
wallet->create(path, password, language);
|
2016-02-15 13:04:00 -05:00
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
2016-02-20 11:04:56 -05:00
|
|
|
Wallet *WalletManagerImpl::openWallet(const std::string &path, const std::string &password)
|
2016-03-10 11:43:10 -05:00
|
|
|
{
|
|
|
|
WalletImpl * wallet = new WalletImpl();
|
|
|
|
wallet->open(path, password);
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
2016-03-12 09:41:11 -05:00
|
|
|
Wallet *WalletManagerImpl::recoveryWallet(const std::string &path, const std::string &memo)
|
2016-02-20 11:04:56 -05:00
|
|
|
{
|
2016-03-12 09:41:11 -05:00
|
|
|
WalletImpl * wallet = new WalletImpl();
|
|
|
|
wallet->recover(path, memo);
|
|
|
|
return wallet;
|
2016-02-20 11:04:56 -05:00
|
|
|
}
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
bool WalletManagerImpl::closeWallet(Wallet *wallet)
|
|
|
|
{
|
|
|
|
WalletImpl * wallet_ = dynamic_cast<WalletImpl*>(wallet);
|
|
|
|
bool result = wallet_->close();
|
|
|
|
if (!result) {
|
|
|
|
m_errorString = wallet_->errorString();
|
|
|
|
} else {
|
|
|
|
delete wallet_;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-02-20 11:04:56 -05:00
|
|
|
bool WalletManagerImpl::walletExists(const std::string &path)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
std::string WalletManagerImpl::errorString() const
|
2016-02-20 11:04:56 -05:00
|
|
|
{
|
2016-03-10 11:43:10 -05:00
|
|
|
return m_errorString;
|
2016-02-20 11:04:56 -05:00
|
|
|
}
|
|
|
|
|
2016-03-21 09:17:03 -04:00
|
|
|
void WalletManagerImpl::setDaemonHost(const std::string &hostname)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-20 11:04:56 -05:00
|
|
|
|
2016-03-10 11:43:10 -05:00
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
///////////////////// WalletManagerFactory implementation //////////////////////
|
|
|
|
WalletManager *WalletManagerFactory::getWalletManager()
|
|
|
|
{
|
2016-03-15 16:11:38 -04:00
|
|
|
|
2016-02-15 13:04:00 -05:00
|
|
|
if (!g_walletManager) {
|
2016-03-15 16:11:38 -04:00
|
|
|
epee::log_space::log_singletone::add_logger(LOGGER_CONSOLE, NULL, NULL, LOG_LEVEL_0);
|
2016-02-15 13:04:00 -05:00
|
|
|
g_walletManager = new WalletManagerImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_walletManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|