// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers // // This file is part of Bytecoin. // // Bytecoin is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Bytecoin is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with Bytecoin. If not, see . #include "Wallet.h" #include "wallet_errors.h" #include "string_tools.h" #include "serialization/binary_utils.h" #include "storages/portable_storage_template_helper.h" #include "WalletUtils.h" #include "WalletSerializer.h" #include #include #include "WalletSerialization.h" namespace { void throwNotDefined() { throw std::runtime_error("The behavior is not defined!"); } bool verifyKeys(const crypto::secret_key& sec, const crypto::public_key& expected_pub) { crypto::public_key pub; bool r = crypto::secret_key_to_public_key(sec, pub); return r && expected_pub == pub; } void throwIfKeysMissmatch(const crypto::secret_key& sec, const crypto::public_key& expected_pub) { if (!verifyKeys(sec, expected_pub)) throw std::system_error(make_error_code(cryptonote::error::WRONG_PASSWORD)); } class ContextCounterHolder { public: ContextCounterHolder(CryptoNote::WalletAsyncContextCounter& shutdowner) : m_shutdowner(shutdowner) {} ~ContextCounterHolder() { m_shutdowner.delAsyncContext(); } private: CryptoNote::WalletAsyncContextCounter& m_shutdowner; }; template void runAtomic(std::mutex& mutex, F f) { std::unique_lock lock(mutex); f(); } class InitWaiter : public CryptoNote::IWalletObserver { public: InitWaiter() : future(promise.get_future()) {} virtual void initCompleted(std::error_code result) override { promise.set_value(result); } std::error_code waitInit() { return future.get(); } private: std::promise promise; std::future future; }; class SaveWaiter : public CryptoNote::IWalletObserver { public: SaveWaiter() : future(promise.get_future()) {} virtual void saveCompleted(std::error_code result) override { promise.set_value(result); } std::error_code waitSave() { return future.get(); } private: std::promise promise; std::future future; }; } //namespace namespace CryptoNote { class SyncStarter : public CryptoNote::IWalletObserver { public: SyncStarter(BlockchainSynchronizer& sync) : m_sync(sync) {} virtual ~SyncStarter() {} virtual void initCompleted(std::error_code result) { if (!result) { m_sync.start(); } } BlockchainSynchronizer& m_sync; }; Wallet::Wallet(const cryptonote::Currency& currency, INode& node) : m_state(NOT_INITIALIZED), m_currency(currency), m_node(node), m_isStopping(false), m_blockchainSync(node, currency.genesisBlockHash()), m_transfersSync(currency, m_blockchainSync, node), m_transferDetails(nullptr), m_sender(nullptr), m_onInitSyncStarter(new SyncStarter(m_blockchainSync)) { addObserver(m_onInitSyncStarter.get()); m_blockchainSync.addObserver(this); } Wallet::~Wallet() { removeObserver(m_onInitSyncStarter.get()); { std::unique_lock lock(m_cacheMutex); if (m_state != NOT_INITIALIZED) { m_sender->stop(); m_isStopping = true; } } m_blockchainSync.removeObserver(this); m_blockchainSync.stop(); m_asyncContextCounter.waitAsyncContextsFinish(); m_sender.release(); } void Wallet::addObserver(IWalletObserver* observer) { m_observerManager.add(observer); } void Wallet::removeObserver(IWalletObserver* observer) { m_observerManager.remove(observer); } void Wallet::initAndGenerate(const std::string& password) { { std::unique_lock stateLock(m_cacheMutex); if (m_state != NOT_INITIALIZED) { throw std::system_error(make_error_code(cryptonote::error::ALREADY_INITIALIZED)); } m_account.generate(); m_password = password; initSync(); } m_observerManager.notify(&IWalletObserver::initCompleted, std::error_code()); } void Wallet::initWithKeys(const WalletAccountKeys& accountKeys, const std::string& password) { { std::unique_lock stateLock(m_cacheMutex); if (m_state != NOT_INITIALIZED) { throw std::system_error(make_error_code(cryptonote::error::ALREADY_INITIALIZED)); } cryptonote::account_keys keys; std::copy(accountKeys.spendPublicKey.begin(), accountKeys.spendPublicKey.end(), reinterpret_cast(&keys.m_account_address.m_spendPublicKey)); std::copy(accountKeys.viewPublicKey.begin(), accountKeys.viewPublicKey.end(), reinterpret_cast(&keys.m_account_address.m_viewPublicKey)); std::copy(accountKeys.spendSecretKey.begin(), accountKeys.spendSecretKey.end(), reinterpret_cast(&keys.m_spend_secret_key)); std::copy(accountKeys.viewSecretKey.begin(), accountKeys.viewSecretKey.end(), reinterpret_cast(&keys.m_view_secret_key)); m_account.set_keys(keys); m_account.set_createtime(0); m_password = password; initSync(); } m_observerManager.notify(&IWalletObserver::initCompleted, std::error_code()); } void Wallet::initAndLoad(std::istream& source, const std::string& password) { std::unique_lock stateLock(m_cacheMutex); if (m_state != NOT_INITIALIZED) { throw std::system_error(make_error_code(cryptonote::error::ALREADY_INITIALIZED)); } m_password = password; m_state = LOADING; m_asyncContextCounter.addAsyncContext(); std::thread loader(&Wallet::doLoad, this, std::ref(source)); loader.detach(); } void Wallet::initSync() { AccountSubscription sub; sub.keys = reinterpret_cast(m_account.get_keys()); sub.transactionSpendableAge = 1; sub.syncStart.height = 0; sub.syncStart.timestamp = m_account.get_createtime() - (60 * 60 * 24); auto& subObject = m_transfersSync.addSubscription(sub); m_transferDetails = &subObject.getContainer(); subObject.addObserver(this); m_sender.reset(new WalletTransactionSender(m_currency, m_transactionsCache, m_account.get_keys(), *m_transferDetails)); m_state = INITIALIZED; } void Wallet::doLoad(std::istream& source) { ContextCounterHolder counterHolder(m_asyncContextCounter); try { std::unique_lock lock(m_cacheMutex); std::string cache; WalletSerializer serializer(m_account, m_transactionsCache); serializer.deserialize(source, m_password, cache); initSync(); try { if (!cache.empty()) { std::stringstream stream(cache); m_transfersSync.load(stream); } } catch (const std::exception&) { // ignore cache loading errors } } catch (std::system_error& e) { runAtomic(m_cacheMutex, [this] () {this->m_state = Wallet::NOT_INITIALIZED;} ); m_observerManager.notify(&IWalletObserver::initCompleted, e.code()); return; } catch (std::exception&) { runAtomic(m_cacheMutex, [this] () {this->m_state = Wallet::NOT_INITIALIZED;} ); m_observerManager.notify(&IWalletObserver::initCompleted, make_error_code(cryptonote::error::INTERNAL_WALLET_ERROR)); return; } m_observerManager.notify(&IWalletObserver::initCompleted, std::error_code()); } void Wallet::decrypt(const std::string& cipher, std::string& plain, crypto::chacha8_iv iv, const std::string& password) { crypto::chacha8_key key; crypto::cn_context context; crypto::generate_chacha8_key(context, password, key); plain.resize(cipher.size()); crypto::chacha8(cipher.data(), cipher.size(), key, iv, &plain[0]); } void Wallet::shutdown() { { std::unique_lock lock(m_cacheMutex); if (m_isStopping) throwNotDefined(); m_isStopping = true; if (m_state != INITIALIZED) throwNotDefined(); m_sender->stop(); } m_blockchainSync.removeObserver(this); m_blockchainSync.stop(); m_asyncContextCounter.waitAsyncContextsFinish(); m_sender.release(); { std::unique_lock lock(m_cacheMutex); m_isStopping = false; m_state = NOT_INITIALIZED; } } void Wallet::reset() { InitWaiter initWaiter; SaveWaiter saveWaiter; addObserver(&initWaiter); addObserver(&saveWaiter); std::stringstream ss; try { save(ss, false, false); auto saveError = saveWaiter.waitSave(); if (!saveError) { shutdown(); initAndLoad(ss, m_password); initWaiter.waitInit(); } } catch (std::exception&) { } removeObserver(&saveWaiter); removeObserver(&initWaiter); } void Wallet::save(std::ostream& destination, bool saveDetailed, bool saveCache) { if(m_isStopping) { m_observerManager.notify(&IWalletObserver::saveCompleted, make_error_code(cryptonote::error::OPERATION_CANCELLED)); return; } { std::unique_lock lock(m_cacheMutex); throwIf(m_state != INITIALIZED, cryptonote::error::WRONG_STATE); m_state = SAVING; } m_asyncContextCounter.addAsyncContext(); std::thread saver(&Wallet::doSave, this, std::ref(destination), saveDetailed, saveCache); saver.detach(); } void Wallet::doSave(std::ostream& destination, bool saveDetailed, bool saveCache) { ContextCounterHolder counterHolder(m_asyncContextCounter); try { m_blockchainSync.stop(); std::unique_lock lock(m_cacheMutex); WalletSerializer serializer(m_account, m_transactionsCache); std::string cache; if (saveCache) { std::stringstream stream; m_transfersSync.save(stream); cache = stream.str(); } serializer.serialize(destination, m_password, saveDetailed, cache); m_state = INITIALIZED; m_blockchainSync.start(); //XXX: start can throw. what to do in this case? } catch (std::system_error& e) { runAtomic(m_cacheMutex, [this] () {this->m_state = Wallet::INITIALIZED;} ); m_observerManager.notify(&IWalletObserver::saveCompleted, e.code()); return; } catch (std::exception&) { runAtomic(m_cacheMutex, [this] () {this->m_state = Wallet::INITIALIZED;} ); m_observerManager.notify(&IWalletObserver::saveCompleted, make_error_code(cryptonote::error::INTERNAL_WALLET_ERROR)); return; } m_observerManager.notify(&IWalletObserver::saveCompleted, std::error_code()); } crypto::chacha8_iv Wallet::encrypt(const std::string& plain, std::string& cipher) { crypto::chacha8_key key; crypto::cn_context context; crypto::generate_chacha8_key(context, m_password, key); cipher.resize(plain.size()); crypto::chacha8_iv iv = crypto::rand(); crypto::chacha8(plain.data(), plain.size(), key, iv, &cipher[0]); return iv; } std::error_code Wallet::changePassword(const std::string& oldPassword, const std::string& newPassword) { std::unique_lock passLock(m_cacheMutex); throwIfNotInitialised(); if (m_password.compare(oldPassword)) return make_error_code(cryptonote::error::WRONG_PASSWORD); //we don't let the user to change the password while saving m_password = newPassword; return std::error_code(); } std::string Wallet::getAddress() { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_currency.accountAddressAsString(m_account); } uint64_t Wallet::actualBalance() { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transferDetails->balance(ITransfersContainer::IncludeKeyUnlocked) - m_transactionsCache.unconfrimedOutsAmount(); } uint64_t Wallet::pendingBalance() { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); uint64_t change = m_transactionsCache.unconfrimedOutsAmount() - m_transactionsCache.unconfirmedTransactionsAmount(); return m_transferDetails->balance(ITransfersContainer::IncludeKeyNotUnlocked) + change; } size_t Wallet::getTransactionCount() { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transactionsCache.getTransactionCount(); } size_t Wallet::getTransferCount() { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transactionsCache.getTransferCount(); } TransactionId Wallet::findTransactionByTransferId(TransferId transferId) { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transactionsCache.findTransactionByTransferId(transferId); } bool Wallet::getTransaction(TransactionId transactionId, TransactionInfo& transaction) { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transactionsCache.getTransaction(transactionId, transaction); } bool Wallet::getTransfer(TransferId transferId, Transfer& transfer) { std::unique_lock lock(m_cacheMutex); throwIfNotInitialised(); return m_transactionsCache.getTransfer(transferId, transfer); } TransactionId Wallet::sendTransaction(const Transfer& transfer, uint64_t fee, const std::string& extra, uint64_t mixIn, uint64_t unlockTimestamp) { std::vector transfers; transfers.push_back(transfer); throwIfNotInitialised(); return sendTransaction(transfers, fee, extra, mixIn, unlockTimestamp); } TransactionId Wallet::sendTransaction(const std::vector& transfers, uint64_t fee, const std::string& extra, uint64_t mixIn, uint64_t unlockTimestamp) { TransactionId txId = 0; std::shared_ptr request; std::deque > events; throwIfNotInitialised(); { std::unique_lock lock(m_cacheMutex); request = m_sender->makeSendRequest(txId, events, transfers, fee, extra, mixIn, unlockTimestamp); } notifyClients(events); if (request) { m_asyncContextCounter.addAsyncContext(); request->perform(m_node, std::bind(&Wallet::sendTransactionCallback, this, std::placeholders::_1, std::placeholders::_2)); } return txId; } void Wallet::sendTransactionCallback(WalletRequest::Callback callback, std::error_code ec) { ContextCounterHolder counterHolder(m_asyncContextCounter); std::deque > events; boost::optional > nextRequest; { std::unique_lock lock(m_cacheMutex); callback(events, nextRequest, ec); } notifyClients(events); if (nextRequest) { m_asyncContextCounter.addAsyncContext(); (*nextRequest)->perform(m_node, std::bind(&Wallet::synchronizationCallback, this, std::placeholders::_1, std::placeholders::_2)); } } void Wallet::synchronizationCallback(WalletRequest::Callback callback, std::error_code ec) { ContextCounterHolder counterHolder(m_asyncContextCounter); std::deque > events; boost::optional > nextRequest; { std::unique_lock lock(m_cacheMutex); callback(events, nextRequest, ec); } notifyClients(events); if (nextRequest) { m_asyncContextCounter.addAsyncContext(); (*nextRequest)->perform(m_node, std::bind(&Wallet::synchronizationCallback, this, std::placeholders::_1, std::placeholders::_2)); } } std::error_code Wallet::cancelTransaction(size_t transactionId) { return make_error_code(cryptonote::error::TX_CANCEL_IMPOSSIBLE); } void Wallet::synchronizationProgressUpdated(uint64_t current, uint64_t total) { // forward notification m_observerManager.notify(&IWalletObserver::synchronizationProgressUpdated, current, total); // check if balance has changed and notify client notifyIfBalanceChanged(); } void Wallet::synchronizationCompleted(std::error_code result) { if (result != std::make_error_code(std::errc::interrupted)) { m_observerManager.notify(&IWalletObserver::synchronizationCompleted, result); } if (!result) { notifyIfBalanceChanged(); } } void Wallet::onTransactionUpdated(ITransfersSubscription* object, const Hash& transactionHash) { std::shared_ptr event; TransactionInformation txInfo; int64_t txBalance; if (m_transferDetails->getTransactionInformation(transactionHash, txInfo, txBalance)) { std::unique_lock lock(m_cacheMutex); event = m_transactionsCache.onTransactionUpdated(txInfo, txBalance); } if (event.get()) { event->notify(m_observerManager); } } void Wallet::onTransactionDeleted(ITransfersSubscription* object, const Hash& transactionHash) { std::shared_ptr event; { std::unique_lock lock(m_cacheMutex); event = m_transactionsCache.onTransactionDeleted(transactionHash); } if (event.get()) { event->notify(m_observerManager); } } void Wallet::throwIfNotInitialised() { if (m_state == NOT_INITIALIZED || m_state == LOADING) throw std::system_error(make_error_code(cryptonote::error::NOT_INITIALIZED)); assert(m_transferDetails); } void Wallet::notifyClients(std::deque >& events) { while (!events.empty()) { std::shared_ptr event = events.front(); event->notify(m_observerManager); events.pop_front(); } } void Wallet::notifyIfBalanceChanged() { auto actual = actualBalance(); auto prevActual = m_lastNotifiedActualBalance.exchange(actual); if (prevActual != actual) { m_observerManager.notify(&IWalletObserver::actualBalanceUpdated, actual); } auto pending = pendingBalance(); auto prevPending = m_lastNotifiedPendingBalance.exchange(pending); if (prevPending != pending) { m_observerManager.notify(&IWalletObserver::pendingBalanceUpdated, pending); } } void Wallet::getAccountKeys(WalletAccountKeys& keys) { if (m_state == NOT_INITIALIZED) { throw std::system_error(make_error_code(cryptonote::error::NOT_INITIALIZED)); } const cryptonote::account_keys& accountKeys = m_account.get_keys(); std::copy(reinterpret_cast(&accountKeys.m_account_address.m_spendPublicKey), reinterpret_cast(&accountKeys.m_account_address.m_spendPublicKey) + sizeof(crypto::public_key), keys.spendPublicKey.begin()); std::copy(reinterpret_cast(&accountKeys.m_spend_secret_key), reinterpret_cast(&accountKeys.m_spend_secret_key) + sizeof(crypto::secret_key), keys.spendSecretKey.begin()); std::copy(reinterpret_cast(&accountKeys.m_account_address.m_viewPublicKey), reinterpret_cast(&accountKeys.m_account_address.m_viewPublicKey) + sizeof(crypto::public_key), keys.viewPublicKey.begin()); std::copy(reinterpret_cast(&accountKeys.m_view_secret_key), reinterpret_cast(&accountKeys.m_view_secret_key) + sizeof(crypto::secret_key), keys.viewSecretKey.begin()); } } //namespace CryptoNote