2012-04-15 23:39:49 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2015-02-03 21:09:47 +01:00
|
|
|
#include "wallet/walletdb.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include "base58.h"
|
2016-07-11 16:34:21 +02:00
|
|
|
#include "consensus/tx_verify.h"
|
2015-01-24 15:57:12 +01:00
|
|
|
#include "consensus/validation.h"
|
2017-03-01 16:54:22 +01:00
|
|
|
#include "fs.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "protocol.h"
|
|
|
|
#include "serialize.h"
|
|
|
|
#include "sync.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "util.h"
|
2014-09-14 12:43:56 +02:00
|
|
|
#include "utiltime.h"
|
2015-02-03 21:09:47 +01:00
|
|
|
#include "wallet/wallet.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2016-11-27 04:32:30 +01:00
|
|
|
#include <atomic>
|
|
|
|
|
2016-01-05 21:58:48 +01:00
|
|
|
#include <boost/version.hpp>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/foreach.hpp>
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include <boost/thread.hpp>
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
static uint64_t nAccountingEntryNumber = 0;
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2016-11-27 04:32:30 +01:00
|
|
|
static std::atomic<unsigned int> nWalletDBUpdateCounter;
|
|
|
|
|
2012-04-15 23:39:49 +02:00
|
|
|
//
|
|
|
|
// CWalletDB
|
|
|
|
//
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::WriteName(const std::string& strAddress, const std::string& strName)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("name"), strAddress), strName);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::EraseName(const std::string& strAddress)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
// This should only be used for sending addresses, never for receiving addresses,
|
|
|
|
// receiving addresses must always have an address book entry if they're not change return.
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("name"), strAddress));
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::WritePurpose(const std::string& strAddress, const std::string& strPurpose)
|
2013-07-22 08:50:39 +02:00
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("purpose"), strAddress), strPurpose);
|
2013-07-22 08:50:39 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::ErasePurpose(const std::string& strPurpose)
|
2013-07-22 08:50:39 +02:00
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("purpose"), strPurpose));
|
2013-07-22 08:50:39 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 09:15:12 +02:00
|
|
|
bool CWalletDB::WriteTx(const CWalletTx& wtx)
|
2013-04-13 07:13:08 +02:00
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("tx"), wtx.GetHash()), wtx);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::EraseTx(uint256 hash)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("tx"), hash));
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteKey(const CPubKey& vchPubKey, const CPrivKey& vchPrivKey, const CKeyMetadata& keyMeta)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
if (!batch.Write(std::make_pair(std::string("keymeta"), vchPubKey),
|
2013-04-13 07:13:08 +02:00
|
|
|
keyMeta, false))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// hash pubkey/privkey to accelerate wallet load
|
|
|
|
std::vector<unsigned char> vchKey;
|
|
|
|
vchKey.reserve(vchPubKey.size() + vchPrivKey.size());
|
|
|
|
vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end());
|
|
|
|
vchKey.insert(vchKey.end(), vchPrivKey.begin(), vchPrivKey.end());
|
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("key"), vchPubKey), std::make_pair(vchPrivKey, Hash(vchKey.begin(), vchKey.end())), false);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
2013-11-15 12:24:34 +01:00
|
|
|
bool CWalletDB::WriteCryptedKey(const CPubKey& vchPubKey,
|
|
|
|
const std::vector<unsigned char>& vchCryptedSecret,
|
2013-04-13 07:13:08 +02:00
|
|
|
const CKeyMetadata &keyMeta)
|
|
|
|
{
|
|
|
|
const bool fEraseUnencryptedKey = true;
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
if (!batch.Write(std::make_pair(std::string("keymeta"), vchPubKey),
|
2013-04-13 07:13:08 +02:00
|
|
|
keyMeta))
|
|
|
|
return false;
|
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
if (!batch.Write(std::make_pair(std::string("ckey"), vchPubKey), vchCryptedSecret, false))
|
2013-04-13 07:13:08 +02:00
|
|
|
return false;
|
|
|
|
if (fEraseUnencryptedKey)
|
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
batch.Erase(std::make_pair(std::string("key"), vchPubKey));
|
|
|
|
batch.Erase(std::make_pair(std::string("wkey"), vchPubKey));
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("cscript"), hash), *(const CScriptBase*)(&redeemScript), false);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 22:55:02 +01:00
|
|
|
bool CWalletDB::WriteWatchOnly(const CScript &dest, const CKeyMetadata& keyMeta)
|
2013-07-26 01:06:01 +02:00
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
if (!batch.Write(std::make_pair(std::string("watchmeta"), *(const CScriptBase*)(&dest)), keyMeta))
|
2016-11-08 22:55:02 +01:00
|
|
|
return false;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("watchs"), *(const CScriptBase*)(&dest)), '1');
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 21:05:11 +02:00
|
|
|
bool CWalletDB::EraseWatchOnly(const CScript &dest)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
if (!batch.Erase(std::make_pair(std::string("watchmeta"), *(const CScriptBase*)(&dest))))
|
2016-11-08 22:55:02 +01:00
|
|
|
return false;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("watchs"), *(const CScriptBase*)(&dest)));
|
2014-07-26 21:05:11 +02:00
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
bool CWalletDB::WriteBestBlock(const CBlockLocator& locator)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
batch.Write(std::string("bestblock"), CBlockLocator()); // Write empty block locator so versions that require a merkle branch automatically rescan
|
|
|
|
return batch.Write(std::string("bestblock_nomerkle"), locator);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ReadBestBlock(CBlockLocator& locator)
|
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
if (batch.Read(std::string("bestblock"), locator) && !locator.vHave.empty()) return true;
|
|
|
|
return batch.Read(std::string("bestblock_nomerkle"), locator);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteOrderPosNext(int64_t nOrderPosNext)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::string("orderposnext"), nOrderPosNext);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteDefaultKey(const CPubKey& vchPubKey)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::string("defaultkey"), vchPubKey);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ReadPool(int64_t nPool, CKeyPool& keypool)
|
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Read(std::make_pair(std::string("pool"), nPool), keypool);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WritePool(int64_t nPool, const CKeyPool& keypool)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("pool"), nPool), keypool);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ErasePool(int64_t nPool)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("pool"), nPool));
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteMinVersion(int nVersion)
|
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::string("minversion"), nVersion);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::ReadAccount(const std::string& strAccount, CAccount& account)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
account.SetNull();
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Read(std::make_pair(std::string("acc"), strAccount), account);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
bool CWalletDB::WriteAccount(const std::string& strAccount, const CAccount& account)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("acc"), strAccount), account);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry)
|
2012-05-28 01:06:09 +02:00
|
|
|
{
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("acentry"), std::make_pair(acentry.strAccount, nAccEntryNum)), acentry);
|
2012-05-28 01:06:09 +02:00
|
|
|
}
|
|
|
|
|
2015-10-19 11:19:38 +02:00
|
|
|
bool CWalletDB::WriteAccountingEntry_Backend(const CAccountingEntry& acentry)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2012-05-28 01:06:09 +02:00
|
|
|
return WriteAccountingEntry(++nAccountingEntryNumber, acentry);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
CAmount CWalletDB::GetAccountCreditDebit(const std::string& strAccount)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2017-01-27 02:33:45 +01:00
|
|
|
std::list<CAccountingEntry> entries;
|
2012-04-15 23:39:49 +02:00
|
|
|
ListAccountCreditDebit(strAccount, entries);
|
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount nCreditDebit = 0;
|
2012-04-15 23:39:49 +02:00
|
|
|
BOOST_FOREACH (const CAccountingEntry& entry, entries)
|
|
|
|
nCreditDebit += entry.nCreditDebit;
|
|
|
|
|
|
|
|
return nCreditDebit;
|
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
void CWalletDB::ListAccountCreditDebit(const std::string& strAccount, std::list<CAccountingEntry>& entries)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
bool fAllAccounts = (strAccount == "*");
|
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
Dbc* pcursor = batch.GetCursor();
|
2012-04-15 23:39:49 +02:00
|
|
|
if (!pcursor)
|
2017-01-27 02:33:45 +01:00
|
|
|
throw std::runtime_error(std::string(__func__) + ": cannot create DB cursor");
|
2016-08-23 15:36:23 +02:00
|
|
|
bool setRange = true;
|
2013-07-31 06:06:44 +02:00
|
|
|
while (true)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
// Read next record
|
2012-04-16 14:56:45 +02:00
|
|
|
CDataStream ssKey(SER_DISK, CLIENT_VERSION);
|
2016-08-23 15:36:23 +02:00
|
|
|
if (setRange)
|
2017-01-27 02:33:45 +01:00
|
|
|
ssKey << std::make_pair(std::string("acentry"), std::make_pair((fAllAccounts ? std::string("") : strAccount), uint64_t(0)));
|
2012-04-16 14:56:45 +02:00
|
|
|
CDataStream ssValue(SER_DISK, CLIENT_VERSION);
|
2017-03-08 17:20:08 +01:00
|
|
|
int ret = batch.ReadAtCursor(pcursor, ssKey, ssValue, setRange);
|
2016-08-23 15:36:23 +02:00
|
|
|
setRange = false;
|
2012-04-15 23:39:49 +02:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
break;
|
|
|
|
else if (ret != 0)
|
|
|
|
{
|
|
|
|
pcursor->close();
|
2017-01-27 02:33:45 +01:00
|
|
|
throw std::runtime_error(std::string(__func__) + ": error scanning DB");
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unserialize
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strType;
|
2012-04-15 23:39:49 +02:00
|
|
|
ssKey >> strType;
|
|
|
|
if (strType != "acentry")
|
|
|
|
break;
|
|
|
|
CAccountingEntry acentry;
|
|
|
|
ssKey >> acentry.strAccount;
|
|
|
|
if (!fAllAccounts && acentry.strAccount != strAccount)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ssValue >> acentry;
|
2012-05-28 01:06:09 +02:00
|
|
|
ssKey >> acentry.nEntryNo;
|
2012-04-15 23:39:49 +02:00
|
|
|
entries.push_back(acentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
pcursor->close();
|
|
|
|
}
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
class CWalletScanState {
|
|
|
|
public:
|
|
|
|
unsigned int nKeys;
|
|
|
|
unsigned int nCKeys;
|
2016-11-08 22:55:02 +01:00
|
|
|
unsigned int nWatchKeys;
|
2013-06-10 15:36:29 +02:00
|
|
|
unsigned int nKeyMeta;
|
|
|
|
bool fIsEncrypted;
|
|
|
|
bool fAnyUnordered;
|
|
|
|
int nFileVersion;
|
2017-01-27 02:33:45 +01:00
|
|
|
std::vector<uint256> vWalletUpgrade;
|
2013-06-10 15:36:29 +02:00
|
|
|
|
|
|
|
CWalletScanState() {
|
2016-11-08 22:55:02 +01:00
|
|
|
nKeys = nCKeys = nWatchKeys = nKeyMeta = 0;
|
2013-06-10 15:36:29 +02:00
|
|
|
fIsEncrypted = false;
|
|
|
|
fAnyUnordered = false;
|
|
|
|
nFileVersion = 0;
|
|
|
|
}
|
|
|
|
};
|
2012-05-28 01:06:09 +02:00
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
bool
|
|
|
|
ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue,
|
2017-01-27 02:33:45 +01:00
|
|
|
CWalletScanState &wss, std::string& strType, std::string& strErr)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
// Unserialize
|
|
|
|
// Taking advantage of the fact that pair serialization
|
|
|
|
// is just the two items serialized one after the other
|
|
|
|
ssKey >> strType;
|
|
|
|
if (strType == "name")
|
|
|
|
{
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strAddress;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> strAddress;
|
2013-07-15 07:20:50 +02:00
|
|
|
ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()].name;
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
2013-07-22 08:50:39 +02:00
|
|
|
else if (strType == "purpose")
|
|
|
|
{
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strAddress;
|
2013-07-22 08:50:39 +02:00
|
|
|
ssKey >> strAddress;
|
|
|
|
ssValue >> pwallet->mapAddressBook[CBitcoinAddress(strAddress).Get()].purpose;
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
else if (strType == "tx")
|
|
|
|
{
|
|
|
|
uint256 hash;
|
|
|
|
ssKey >> hash;
|
2013-12-16 17:17:39 +01:00
|
|
|
CWalletTx wtx;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssValue >> wtx;
|
2013-01-27 00:14:11 +01:00
|
|
|
CValidationState state;
|
2014-02-18 15:23:24 +01:00
|
|
|
if (!(CheckTransaction(wtx, state) && (wtx.GetHash() == hash) && state.IsValid()))
|
2012-09-18 20:30:47 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Undo serialize changes in 31600
|
|
|
|
if (31404 <= wtx.fTimeReceivedIsTxTime && wtx.fTimeReceivedIsTxTime <= 31703)
|
|
|
|
{
|
|
|
|
if (!ssValue.empty())
|
|
|
|
{
|
|
|
|
char fTmp;
|
|
|
|
char fUnused;
|
|
|
|
ssValue >> fTmp >> fUnused >> wtx.strFromAccount;
|
|
|
|
strErr = strprintf("LoadWallet() upgrading tx ver=%d %d '%s' %s",
|
2014-01-16 16:15:27 +01:00
|
|
|
wtx.fTimeReceivedIsTxTime, fTmp, wtx.strFromAccount, hash.ToString());
|
2012-09-18 20:30:47 +02:00
|
|
|
wtx.fTimeReceivedIsTxTime = fTmp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-16 16:15:27 +01:00
|
|
|
strErr = strprintf("LoadWallet() repairing tx ver=%d %s", wtx.fTimeReceivedIsTxTime, hash.ToString());
|
2012-09-18 20:30:47 +02:00
|
|
|
wtx.fTimeReceivedIsTxTime = 0;
|
|
|
|
}
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.vWalletUpgrade.push_back(hash);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (wtx.nOrderPos == -1)
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.fAnyUnordered = true;
|
2012-09-18 20:30:47 +02:00
|
|
|
|
2016-06-08 06:25:31 +02:00
|
|
|
pwallet->LoadToWallet(wtx);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
else if (strType == "acentry")
|
|
|
|
{
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strAccount;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> strAccount;
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nNumber;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> nNumber;
|
|
|
|
if (nNumber > nAccountingEntryNumber)
|
|
|
|
nAccountingEntryNumber = nNumber;
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
if (!wss.fAnyUnordered)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
CAccountingEntry acentry;
|
|
|
|
ssValue >> acentry;
|
|
|
|
if (acentry.nOrderPos == -1)
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.fAnyUnordered = true;
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-09 21:11:59 +02:00
|
|
|
else if (strType == "watchs")
|
2013-07-26 01:06:01 +02:00
|
|
|
{
|
2016-11-08 22:55:02 +01:00
|
|
|
wss.nWatchKeys++;
|
2014-06-09 21:11:59 +02:00
|
|
|
CScript script;
|
2015-10-29 07:11:24 +01:00
|
|
|
ssKey >> *(CScriptBase*)(&script);
|
2013-07-26 01:06:01 +02:00
|
|
|
char fYes;
|
|
|
|
ssValue >> fYes;
|
|
|
|
if (fYes == '1')
|
2014-06-09 21:11:59 +02:00
|
|
|
pwallet->LoadWatchOnly(script);
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
else if (strType == "key" || strType == "wkey")
|
|
|
|
{
|
2013-05-01 06:52:05 +02:00
|
|
|
CPubKey vchPubKey;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> vchPubKey;
|
2013-05-01 06:52:05 +02:00
|
|
|
if (!vchPubKey.IsValid())
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: CPubKey corrupt";
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
CKey key;
|
2013-05-01 06:52:05 +02:00
|
|
|
CPrivKey pkey;
|
2014-12-15 09:11:16 +01:00
|
|
|
uint256 hash;
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
if (strType == "key")
|
2013-06-10 15:36:29 +02:00
|
|
|
{
|
|
|
|
wss.nKeys++;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssValue >> pkey;
|
2013-06-10 15:36:29 +02:00
|
|
|
} else {
|
2012-09-18 20:30:47 +02:00
|
|
|
CWalletKey wkey;
|
|
|
|
ssValue >> wkey;
|
2013-05-01 06:52:05 +02:00
|
|
|
pkey = wkey.vchPrivKey;
|
|
|
|
}
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2013-10-13 08:44:28 +02:00
|
|
|
// Old wallets store keys as "key" [pubkey] => [privkey]
|
|
|
|
// ... which was slow for wallets with lots of keys, because the public key is re-derived from the private key
|
|
|
|
// using EC operations as a checksum.
|
|
|
|
// Newer wallets store keys as "key"[pubkey] => [privkey][hash(pubkey,privkey)], which is much faster while
|
|
|
|
// remaining backwards-compatible.
|
2013-08-29 08:53:26 +02:00
|
|
|
try
|
2013-05-01 06:52:05 +02:00
|
|
|
{
|
2013-08-29 08:53:26 +02:00
|
|
|
ssValue >> hash;
|
2013-05-01 06:52:05 +02:00
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
catch (...) {}
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2013-08-29 08:53:26 +02:00
|
|
|
bool fSkipCheck = false;
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2014-12-15 09:11:16 +01:00
|
|
|
if (!hash.IsNull())
|
2013-05-01 06:52:05 +02:00
|
|
|
{
|
2013-08-29 08:53:26 +02:00
|
|
|
// hash pubkey/privkey to accelerate wallet load
|
|
|
|
std::vector<unsigned char> vchKey;
|
|
|
|
vchKey.reserve(vchPubKey.size() + pkey.size());
|
|
|
|
vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end());
|
|
|
|
vchKey.insert(vchKey.end(), pkey.begin(), pkey.end());
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2013-08-29 08:53:26 +02:00
|
|
|
if (Hash(vchKey.begin(), vchKey.end()) != hash)
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: CPubKey/CPrivKey corrupt";
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2013-08-29 08:53:26 +02:00
|
|
|
fSkipCheck = true;
|
|
|
|
}
|
2013-11-15 12:24:34 +01:00
|
|
|
|
2013-08-29 08:53:26 +02:00
|
|
|
if (!key.Load(pkey, vchPubKey, fSkipCheck))
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: CPrivKey corrupt";
|
2013-05-01 06:52:05 +02:00
|
|
|
return false;
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
2013-05-01 06:52:05 +02:00
|
|
|
if (!pwallet->LoadKey(key, vchPubKey))
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: LoadKey failed";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strType == "mkey")
|
|
|
|
{
|
|
|
|
unsigned int nID;
|
|
|
|
ssKey >> nID;
|
|
|
|
CMasterKey kMasterKey;
|
|
|
|
ssValue >> kMasterKey;
|
|
|
|
if(pwallet->mapMasterKeys.count(nID) != 0)
|
|
|
|
{
|
|
|
|
strErr = strprintf("Error reading wallet database: duplicate CMasterKey id %u", nID);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pwallet->mapMasterKeys[nID] = kMasterKey;
|
|
|
|
if (pwallet->nMasterKeyMaxID < nID)
|
|
|
|
pwallet->nMasterKeyMaxID = nID;
|
|
|
|
}
|
|
|
|
else if (strType == "ckey")
|
|
|
|
{
|
2015-10-29 19:24:49 +01:00
|
|
|
CPubKey vchPubKey;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> vchPubKey;
|
2015-10-29 19:24:49 +01:00
|
|
|
if (!vchPubKey.IsValid())
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: CPubKey corrupt";
|
|
|
|
return false;
|
|
|
|
}
|
2017-01-27 02:33:45 +01:00
|
|
|
std::vector<unsigned char> vchPrivKey;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssValue >> vchPrivKey;
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.nCKeys++;
|
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey))
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: LoadCryptedKey failed";
|
|
|
|
return false;
|
|
|
|
}
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.fIsEncrypted = true;
|
|
|
|
}
|
2016-11-08 22:55:02 +01:00
|
|
|
else if (strType == "keymeta" || strType == "watchmeta")
|
2013-06-10 15:36:29 +02:00
|
|
|
{
|
2016-11-08 22:55:02 +01:00
|
|
|
CTxDestination keyID;
|
|
|
|
if (strType == "keymeta")
|
|
|
|
{
|
|
|
|
CPubKey vchPubKey;
|
|
|
|
ssKey >> vchPubKey;
|
|
|
|
keyID = vchPubKey.GetID();
|
|
|
|
}
|
|
|
|
else if (strType == "watchmeta")
|
|
|
|
{
|
|
|
|
CScript script;
|
|
|
|
ssKey >> *(CScriptBase*)(&script);
|
|
|
|
keyID = CScriptID(script);
|
|
|
|
}
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
CKeyMetadata keyMeta;
|
|
|
|
ssValue >> keyMeta;
|
|
|
|
wss.nKeyMeta++;
|
|
|
|
|
2016-11-08 22:55:02 +01:00
|
|
|
pwallet->LoadKeyMetadata(keyID, keyMeta);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
else if (strType == "defaultkey")
|
|
|
|
{
|
|
|
|
ssValue >> pwallet->vchDefaultKey;
|
|
|
|
}
|
|
|
|
else if (strType == "pool")
|
|
|
|
{
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nIndex;
|
2012-09-18 20:30:47 +02:00
|
|
|
ssKey >> nIndex;
|
2013-04-29 19:50:40 +02:00
|
|
|
CKeyPool keypool;
|
|
|
|
ssValue >> keypool;
|
2016-08-02 02:14:40 +02:00
|
|
|
|
|
|
|
pwallet->LoadKeyPool(nIndex, keypool);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
else if (strType == "version")
|
|
|
|
{
|
2013-06-10 15:36:29 +02:00
|
|
|
ssValue >> wss.nFileVersion;
|
|
|
|
if (wss.nFileVersion == 10300)
|
|
|
|
wss.nFileVersion = 300;
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
else if (strType == "cscript")
|
|
|
|
{
|
|
|
|
uint160 hash;
|
|
|
|
ssKey >> hash;
|
|
|
|
CScript script;
|
2015-10-29 07:11:24 +01:00
|
|
|
ssValue >> *(CScriptBase*)(&script);
|
2012-09-18 20:30:47 +02:00
|
|
|
if (!pwallet->LoadCScript(script))
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: LoadCScript failed";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strType == "orderposnext")
|
|
|
|
{
|
|
|
|
ssValue >> pwallet->nOrderPosNext;
|
|
|
|
}
|
2013-11-18 16:55:54 +01:00
|
|
|
else if (strType == "destdata")
|
|
|
|
{
|
|
|
|
std::string strAddress, strKey, strValue;
|
|
|
|
ssKey >> strAddress;
|
|
|
|
ssKey >> strKey;
|
|
|
|
ssValue >> strValue;
|
|
|
|
if (!pwallet->LoadDestData(CBitcoinAddress(strAddress).Get(), strKey, strValue))
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: LoadDestData failed";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-01-02 12:34:08 +01:00
|
|
|
else if (strType == "hdchain")
|
|
|
|
{
|
|
|
|
CHDChain chain;
|
|
|
|
ssValue >> chain;
|
|
|
|
if (!pwallet->SetHDChain(chain, true))
|
|
|
|
{
|
|
|
|
strErr = "Error reading wallet database: SetHDChain failed";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
} catch (...)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-24 09:57:23 +02:00
|
|
|
bool CWalletDB::IsKeyType(const std::string& strType)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
return (strType== "key" || strType == "wkey" ||
|
|
|
|
strType == "mkey" || strType == "ckey");
|
|
|
|
}
|
|
|
|
|
|
|
|
DBErrors CWalletDB::LoadWallet(CWallet* pwallet)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2012-05-14 19:07:52 +02:00
|
|
|
pwallet->vchDefaultKey = CPubKey();
|
2013-06-10 15:36:29 +02:00
|
|
|
CWalletScanState wss;
|
2012-09-18 20:30:47 +02:00
|
|
|
bool fNoncriticalErrors = false;
|
|
|
|
DBErrors result = DB_LOAD_OK;
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2017-02-15 23:01:30 +01:00
|
|
|
LOCK(pwallet->cs_wallet);
|
2012-09-18 20:30:47 +02:00
|
|
|
try {
|
2012-04-15 23:39:49 +02:00
|
|
|
int nMinVersion = 0;
|
2017-03-08 17:20:08 +01:00
|
|
|
if (batch.Read((std::string)"minversion", nMinVersion))
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
if (nMinVersion > CLIENT_VERSION)
|
|
|
|
return DB_TOO_NEW;
|
|
|
|
pwallet->LoadMinVersion(nMinVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get cursor
|
2017-03-08 17:20:08 +01:00
|
|
|
Dbc* pcursor = batch.GetCursor();
|
2012-04-15 23:39:49 +02:00
|
|
|
if (!pcursor)
|
|
|
|
{
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrintf("Error getting wallet database cursor\n");
|
2012-04-15 23:39:49 +02:00
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2013-07-31 06:06:44 +02:00
|
|
|
while (true)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
// Read next record
|
2012-04-16 14:56:45 +02:00
|
|
|
CDataStream ssKey(SER_DISK, CLIENT_VERSION);
|
|
|
|
CDataStream ssValue(SER_DISK, CLIENT_VERSION);
|
2017-03-08 17:20:08 +01:00
|
|
|
int ret = batch.ReadAtCursor(pcursor, ssKey, ssValue);
|
2012-04-15 23:39:49 +02:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
break;
|
|
|
|
else if (ret != 0)
|
|
|
|
{
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrintf("Error reading next record from wallet database\n");
|
2012-04-15 23:39:49 +02:00
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
// Try to be tolerant of single corrupt records:
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strType, strErr;
|
2013-06-10 15:36:29 +02:00
|
|
|
if (!ReadKeyValue(pwallet, ssKey, ssValue, wss, strType, strErr))
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2012-09-18 20:30:47 +02:00
|
|
|
// losing keys is considered a catastrophic error, anything else
|
|
|
|
// we assume the user can live with:
|
|
|
|
if (IsKeyType(strType))
|
|
|
|
result = DB_CORRUPT;
|
2012-04-15 23:39:49 +02:00
|
|
|
else
|
|
|
|
{
|
2012-09-18 20:30:47 +02:00
|
|
|
// Leave other errors alone, if we try to fix them we might make things worse.
|
|
|
|
fNoncriticalErrors = true; // ... but do warn the user there is something wrong.
|
|
|
|
if (strType == "tx")
|
|
|
|
// Rescan if there is a bad transaction record:
|
|
|
|
SoftSetBoolArg("-rescan", true);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
2012-09-08 06:55:36 +02:00
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
if (!strErr.empty())
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("%s\n", strErr);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
pcursor->close();
|
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
catch (const boost::thread_interrupted&) {
|
2013-03-09 18:02:57 +01:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch (...) {
|
2012-09-18 20:30:47 +02:00
|
|
|
result = DB_CORRUPT;
|
|
|
|
}
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
if (fNoncriticalErrors && result == DB_LOAD_OK)
|
|
|
|
result = DB_NONCRITICAL_ERROR;
|
|
|
|
|
|
|
|
// Any wallet corruption at all: skip any rewriting or
|
|
|
|
// upgrading, we don't want to make it worse.
|
|
|
|
if (result != DB_LOAD_OK)
|
|
|
|
return result;
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrintf("nFileVersion = %d\n", wss.nFileVersion);
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrintf("Keys: %u plaintext, %u encrypted, %u w/ metadata, %u total\n",
|
2013-06-10 15:36:29 +02:00
|
|
|
wss.nKeys, wss.nCKeys, wss.nKeyMeta, wss.nKeys + wss.nCKeys);
|
|
|
|
|
|
|
|
// nTimeFirstKey is only reliable if all keys have metadata
|
2016-11-08 22:55:02 +01:00
|
|
|
if ((wss.nKeys + wss.nCKeys + wss.nWatchKeys) != wss.nKeyMeta)
|
2016-11-08 22:28:20 +01:00
|
|
|
pwallet->UpdateTimeFirstKey(1);
|
2013-06-10 15:36:29 +02:00
|
|
|
|
|
|
|
BOOST_FOREACH(uint256 hash, wss.vWalletUpgrade)
|
2016-05-09 09:15:12 +02:00
|
|
|
WriteTx(pwallet->mapWallet[hash]);
|
2012-04-15 23:39:49 +02:00
|
|
|
|
|
|
|
// Rewrite encrypted wallets of versions 0.4.0 and 0.5.0rc:
|
2013-06-10 15:36:29 +02:00
|
|
|
if (wss.fIsEncrypted && (wss.nFileVersion == 40000 || wss.nFileVersion == 50000))
|
2012-04-15 23:39:49 +02:00
|
|
|
return DB_NEED_REWRITE;
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
if (wss.nFileVersion < CLIENT_VERSION) // Update
|
2012-04-15 23:39:49 +02:00
|
|
|
WriteVersion(CLIENT_VERSION);
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
if (wss.fAnyUnordered)
|
2016-09-28 17:57:25 +02:00
|
|
|
result = pwallet->ReorderTransactions();
|
2012-05-28 01:06:09 +02:00
|
|
|
|
2015-10-19 11:19:38 +02:00
|
|
|
pwallet->laccentries.clear();
|
|
|
|
ListAccountCreditDebit("*", pwallet->laccentries);
|
|
|
|
BOOST_FOREACH(CAccountingEntry& entry, pwallet->laccentries) {
|
|
|
|
pwallet->wtxOrdered.insert(make_pair(entry.nOrderPos, CWallet::TxPair((CWalletTx*)0, &entry)));
|
|
|
|
}
|
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
return result;
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
DBErrors CWalletDB::FindWalletTx(std::vector<uint256>& vTxHash, std::vector<CWalletTx>& vWtx)
|
2014-02-14 17:33:07 +01:00
|
|
|
{
|
|
|
|
bool fNoncriticalErrors = false;
|
|
|
|
DBErrors result = DB_LOAD_OK;
|
|
|
|
|
|
|
|
try {
|
|
|
|
int nMinVersion = 0;
|
2017-03-08 17:20:08 +01:00
|
|
|
if (batch.Read((std::string)"minversion", nMinVersion))
|
2014-02-14 17:33:07 +01:00
|
|
|
{
|
|
|
|
if (nMinVersion > CLIENT_VERSION)
|
|
|
|
return DB_TOO_NEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get cursor
|
2017-03-08 17:20:08 +01:00
|
|
|
Dbc* pcursor = batch.GetCursor();
|
2014-02-14 17:33:07 +01:00
|
|
|
if (!pcursor)
|
|
|
|
{
|
|
|
|
LogPrintf("Error getting wallet database cursor\n");
|
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
// Read next record
|
|
|
|
CDataStream ssKey(SER_DISK, CLIENT_VERSION);
|
|
|
|
CDataStream ssValue(SER_DISK, CLIENT_VERSION);
|
2017-03-08 17:20:08 +01:00
|
|
|
int ret = batch.ReadAtCursor(pcursor, ssKey, ssValue);
|
2014-02-14 17:33:07 +01:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
break;
|
|
|
|
else if (ret != 0)
|
|
|
|
{
|
|
|
|
LogPrintf("Error reading next record from wallet database\n");
|
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
std::string strType;
|
2014-02-14 17:33:07 +01:00
|
|
|
ssKey >> strType;
|
|
|
|
if (strType == "tx") {
|
|
|
|
uint256 hash;
|
|
|
|
ssKey >> hash;
|
|
|
|
|
2014-02-14 18:27:15 +01:00
|
|
|
CWalletTx wtx;
|
|
|
|
ssValue >> wtx;
|
|
|
|
|
2014-02-14 17:33:07 +01:00
|
|
|
vTxHash.push_back(hash);
|
2014-02-14 18:27:15 +01:00
|
|
|
vWtx.push_back(wtx);
|
2014-02-14 17:33:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pcursor->close();
|
|
|
|
}
|
2014-12-07 13:29:06 +01:00
|
|
|
catch (const boost::thread_interrupted&) {
|
2014-02-14 17:33:07 +01:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
result = DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fNoncriticalErrors && result == DB_LOAD_OK)
|
|
|
|
result = DB_NONCRITICAL_ERROR;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
DBErrors CWalletDB::ZapSelectTx(std::vector<uint256>& vTxHashIn, std::vector<uint256>& vTxHashOut)
|
2016-03-07 14:51:06 +01:00
|
|
|
{
|
|
|
|
// build list of wallet TXs and hashes
|
2017-01-27 02:33:45 +01:00
|
|
|
std::vector<uint256> vTxHash;
|
|
|
|
std::vector<CWalletTx> vWtx;
|
2016-11-12 10:53:18 +01:00
|
|
|
DBErrors err = FindWalletTx(vTxHash, vWtx);
|
2016-03-07 14:51:06 +01:00
|
|
|
if (err != DB_LOAD_OK) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(vTxHash.begin(), vTxHash.end());
|
|
|
|
std::sort(vTxHashIn.begin(), vTxHashIn.end());
|
|
|
|
|
|
|
|
// erase each matching wallet TX
|
|
|
|
bool delerror = false;
|
2017-01-27 02:33:45 +01:00
|
|
|
std::vector<uint256>::iterator it = vTxHashIn.begin();
|
2016-03-07 14:51:06 +01:00
|
|
|
BOOST_FOREACH (uint256 hash, vTxHash) {
|
|
|
|
while (it < vTxHashIn.end() && (*it) < hash) {
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
if (it == vTxHashIn.end()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if ((*it) == hash) {
|
|
|
|
if(!EraseTx(hash)) {
|
2016-12-25 21:19:40 +01:00
|
|
|
LogPrint(BCLog::DB, "Transaction was found for deletion but returned database error: %s\n", hash.GetHex());
|
2016-03-07 14:51:06 +01:00
|
|
|
delerror = true;
|
|
|
|
}
|
|
|
|
vTxHashOut.push_back(hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (delerror) {
|
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
return DB_LOAD_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-27 02:33:45 +01:00
|
|
|
DBErrors CWalletDB::ZapWalletTx(std::vector<CWalletTx>& vWtx)
|
2014-02-14 17:33:07 +01:00
|
|
|
{
|
|
|
|
// build list of wallet TXs
|
2017-01-27 02:33:45 +01:00
|
|
|
std::vector<uint256> vTxHash;
|
2016-11-12 10:53:18 +01:00
|
|
|
DBErrors err = FindWalletTx(vTxHash, vWtx);
|
2014-02-14 17:33:07 +01:00
|
|
|
if (err != DB_LOAD_OK)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
// erase each wallet TX
|
|
|
|
BOOST_FOREACH (uint256& hash, vTxHash) {
|
|
|
|
if (!EraseTx(hash))
|
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DB_LOAD_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-23 15:27:59 +01:00
|
|
|
void MaybeCompactWalletDB()
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2017-02-08 19:19:18 +01:00
|
|
|
static std::atomic<bool> fOneThread;
|
|
|
|
if (fOneThread.exchange(true)) {
|
2012-04-15 23:39:49 +02:00
|
|
|
return;
|
2017-02-08 19:19:18 +01:00
|
|
|
}
|
|
|
|
if (!GetBoolArg("-flushwallet", DEFAULT_FLUSHWALLET)) {
|
2012-04-15 23:39:49 +02:00
|
|
|
return;
|
2017-02-08 19:19:18 +01:00
|
|
|
}
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2017-02-08 19:19:18 +01:00
|
|
|
static unsigned int nLastSeen = CWalletDB::GetUpdateCounter();
|
|
|
|
static unsigned int nLastFlushed = CWalletDB::GetUpdateCounter();
|
|
|
|
static int64_t nLastWalletUpdate = GetTime();
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2017-02-08 19:19:18 +01:00
|
|
|
if (nLastSeen != CWalletDB::GetUpdateCounter())
|
|
|
|
{
|
|
|
|
nLastSeen = CWalletDB::GetUpdateCounter();
|
|
|
|
nLastWalletUpdate = GetTime();
|
|
|
|
}
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2017-02-08 19:19:18 +01:00
|
|
|
if (nLastFlushed != CWalletDB::GetUpdateCounter() && GetTime() - nLastWalletUpdate >= 2)
|
|
|
|
{
|
2017-03-08 11:48:58 +01:00
|
|
|
if (CDB::PeriodicFlush(pwalletMain->GetDBHandle())) {
|
2017-02-08 19:19:18 +01:00
|
|
|
nLastFlushed = CWalletDB::GetUpdateCounter();
|
2017-03-08 11:48:58 +01:00
|
|
|
}
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
2017-02-08 19:19:18 +01:00
|
|
|
fOneThread = false;
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
//
|
2016-02-26 12:48:53 +01:00
|
|
|
// Try to (very carefully!) recover wallet file if there is a problem.
|
2012-09-18 20:30:47 +02:00
|
|
|
//
|
2016-08-24 09:57:23 +02:00
|
|
|
bool CWalletDB::Recover(const std::string& filename, void *callbackDataIn, bool (*recoverKVcallback)(void* callbackData, CDataStream ssKey, CDataStream ssValue))
|
|
|
|
{
|
|
|
|
return CDB::Recover(filename, callbackDataIn, recoverKVcallback);
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
|
2016-08-24 09:57:23 +02:00
|
|
|
bool CWalletDB::Recover(const std::string& filename)
|
|
|
|
{
|
|
|
|
// recover without a key filter callback
|
|
|
|
// results in recovering all record types
|
|
|
|
return CWalletDB::Recover(filename, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::RecoverKeysOnlyFilter(void *callbackData, CDataStream ssKey, CDataStream ssValue)
|
|
|
|
{
|
|
|
|
CWallet *dummyWallet = reinterpret_cast<CWallet*>(callbackData);
|
|
|
|
CWalletScanState dummyWss;
|
|
|
|
std::string strType, strErr;
|
|
|
|
bool fReadOK;
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
2016-08-24 09:57:23 +02:00
|
|
|
// Required in LoadKeyMetadata():
|
|
|
|
LOCK(dummyWallet->cs_wallet);
|
|
|
|
fReadOK = ReadKeyValue(dummyWallet, ssKey, ssValue,
|
|
|
|
dummyWss, strType, strErr);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
2016-08-24 09:57:23 +02:00
|
|
|
if (!IsKeyType(strType) && strType != "hdchain")
|
|
|
|
return false;
|
|
|
|
if (!fReadOK)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
2016-08-24 09:57:23 +02:00
|
|
|
LogPrintf("WARNING: CWalletDB::Recover skipping %s: %s\n", strType, strErr);
|
2012-09-18 20:30:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-24 09:57:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
|
2017-03-01 17:05:50 +01:00
|
|
|
bool CWalletDB::VerifyEnvironment(const std::string& walletFile, const fs::path& dataDir, std::string& errorStr)
|
2016-08-24 09:57:23 +02:00
|
|
|
{
|
|
|
|
return CDB::VerifyEnvironment(walletFile, dataDir, errorStr);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-01 17:05:50 +01:00
|
|
|
bool CWalletDB::VerifyDatabaseFile(const std::string& walletFile, const fs::path& dataDir, std::string& warningStr, std::string& errorStr)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
2016-08-24 09:57:23 +02:00
|
|
|
return CDB::VerifyDatabaseFile(walletFile, dataDir, errorStr, warningStr, CWalletDB::Recover);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
2013-11-18 16:55:54 +01:00
|
|
|
|
|
|
|
bool CWalletDB::WriteDestData(const std::string &address, const std::string &key, const std::string &value)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::make_pair(std::string("destdata"), std::make_pair(address, key)), value);
|
2013-11-18 16:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::EraseDestData(const std::string &address, const std::string &key)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Erase(std::make_pair(std::string("destdata"), std::make_pair(address, key)));
|
2013-11-18 16:55:54 +01:00
|
|
|
}
|
2016-01-02 12:34:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool CWalletDB::WriteHDChain(const CHDChain& chain)
|
|
|
|
{
|
2016-11-27 04:32:30 +01:00
|
|
|
nWalletDBUpdateCounter++;
|
2017-03-08 17:20:08 +01:00
|
|
|
return batch.Write(std::string("hdchain"), chain);
|
2016-01-02 12:34:08 +01:00
|
|
|
}
|
2016-11-27 04:32:30 +01:00
|
|
|
|
|
|
|
void CWalletDB::IncrementUpdateCounter()
|
|
|
|
{
|
|
|
|
nWalletDBUpdateCounter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CWalletDB::GetUpdateCounter()
|
|
|
|
{
|
|
|
|
return nWalletDBUpdateCounter;
|
|
|
|
}
|
2017-03-08 11:48:58 +01:00
|
|
|
|
2017-03-08 17:20:08 +01:00
|
|
|
bool CWalletDB::TxnBegin()
|
|
|
|
{
|
|
|
|
return batch.TxnBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::TxnCommit()
|
|
|
|
{
|
|
|
|
return batch.TxnCommit();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::TxnAbort()
|
|
|
|
{
|
|
|
|
return batch.TxnAbort();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ReadVersion(int& nVersion)
|
|
|
|
{
|
|
|
|
return batch.ReadVersion(nVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteVersion(int nVersion)
|
|
|
|
{
|
|
|
|
return batch.WriteVersion(nVersion);
|
|
|
|
}
|