2012-04-15 23:39:49 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 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"
|
2015-01-24 15:57:12 +01:00
|
|
|
#include "consensus/validation.h"
|
2015-07-05 14:30:07 +02:00
|
|
|
#include "main.h" // For CheckTransaction
|
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
|
|
|
|
2012-04-15 23:39:49 +02:00
|
|
|
#include <boost/filesystem.hpp>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2014-09-28 16:09:19 +02:00
|
|
|
#include <boost/scoped_ptr.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
|
|
|
|
2014-09-28 16:09:19 +02:00
|
|
|
using namespace std;
|
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
|
|
|
|
|
|
|
//
|
|
|
|
// CWalletDB
|
|
|
|
//
|
|
|
|
|
|
|
|
bool CWalletDB::WriteName(const string& strAddress, const string& strName)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(make_pair(string("name"), strAddress), strName);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::EraseName(const string& strAddress)
|
|
|
|
{
|
|
|
|
// 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.
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Erase(make_pair(string("name"), strAddress));
|
|
|
|
}
|
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
bool CWalletDB::WritePurpose(const string& strAddress, const string& strPurpose)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(make_pair(string("purpose"), strAddress), strPurpose);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ErasePurpose(const string& strPurpose)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Erase(make_pair(string("purpose"), strPurpose));
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
bool CWalletDB::WriteTx(uint256 hash, const CWalletTx& wtx)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::make_pair(std::string("tx"), hash), wtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::EraseTx(uint256 hash)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Erase(std::make_pair(std::string("tx"), hash));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteKey(const CPubKey& vchPubKey, const CPrivKey& vchPrivKey, const CKeyMetadata& keyMeta)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
|
|
|
|
if (!Write(std::make_pair(std::string("keymeta"), vchPubKey),
|
|
|
|
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());
|
|
|
|
|
|
|
|
return Write(std::make_pair(std::string("key"), vchPubKey), std::make_pair(vchPrivKey, Hash(vchKey.begin(), vchKey.end())), false);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
|
|
|
|
if (!Write(std::make_pair(std::string("keymeta"), vchPubKey),
|
|
|
|
keyMeta))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!Write(std::make_pair(std::string("ckey"), vchPubKey), vchCryptedSecret, false))
|
|
|
|
return false;
|
|
|
|
if (fEraseUnencryptedKey)
|
|
|
|
{
|
|
|
|
Erase(std::make_pair(std::string("key"), vchPubKey));
|
|
|
|
Erase(std::make_pair(std::string("wkey"), vchPubKey));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::make_pair(std::string("cscript"), hash), redeemScript, false);
|
|
|
|
}
|
|
|
|
|
2014-06-09 21:11:59 +02:00
|
|
|
bool CWalletDB::WriteWatchOnly(const CScript &dest)
|
2013-07-26 01:06:01 +02:00
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
2014-06-09 21:11:59 +02:00
|
|
|
return Write(std::make_pair(std::string("watchs"), dest), '1');
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 21:05:11 +02:00
|
|
|
bool CWalletDB::EraseWatchOnly(const CScript &dest)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Erase(std::make_pair(std::string("watchs"), dest));
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
bool CWalletDB::WriteBestBlock(const CBlockLocator& locator)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
2015-08-11 21:03:31 +02:00
|
|
|
Write(std::string("bestblock"), CBlockLocator()); // Write empty block locator so versions that require a merkle branch automatically rescan
|
|
|
|
return Write(std::string("bestblock_nomerkle"), locator);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ReadBestBlock(CBlockLocator& locator)
|
|
|
|
{
|
2015-08-11 21:03:31 +02:00
|
|
|
if (Read(std::string("bestblock"), locator) && !locator.vHave.empty()) return true;
|
|
|
|
return Read(std::string("bestblock_nomerkle"), locator);
|
2013-04-13 07:13:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteOrderPosNext(int64_t nOrderPosNext)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::string("orderposnext"), nOrderPosNext);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteDefaultKey(const CPubKey& vchPubKey)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::string("defaultkey"), vchPubKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ReadPool(int64_t nPool, CKeyPool& keypool)
|
|
|
|
{
|
|
|
|
return Read(std::make_pair(std::string("pool"), nPool), keypool);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WritePool(int64_t nPool, const CKeyPool& keypool)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Write(std::make_pair(std::string("pool"), nPool), keypool);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::ErasePool(int64_t nPool)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
|
|
|
return Erase(std::make_pair(std::string("pool"), nPool));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteMinVersion(int nVersion)
|
|
|
|
{
|
|
|
|
return Write(std::string("minversion"), nVersion);
|
|
|
|
}
|
|
|
|
|
2012-04-15 23:39:49 +02:00
|
|
|
bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account)
|
|
|
|
{
|
|
|
|
account.SetNull();
|
|
|
|
return Read(make_pair(string("acc"), strAccount), account);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account)
|
|
|
|
{
|
|
|
|
return Write(make_pair(string("acc"), strAccount), account);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2014-10-08 20:28:03 +02:00
|
|
|
return 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
|
|
|
}
|
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount CWalletDB::GetAccountCreditDebit(const string& strAccount)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
list<CAccountingEntry> entries;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries)
|
|
|
|
{
|
|
|
|
bool fAllAccounts = (strAccount == "*");
|
|
|
|
|
|
|
|
Dbc* pcursor = GetCursor();
|
|
|
|
if (!pcursor)
|
2015-01-08 11:44:25 +01:00
|
|
|
throw runtime_error("CWalletDB::ListAccountCreditDebit(): cannot create DB cursor");
|
2012-04-15 23:39:49 +02:00
|
|
|
unsigned int fFlags = DB_SET_RANGE;
|
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);
|
2012-04-15 23:39:49 +02:00
|
|
|
if (fFlags == DB_SET_RANGE)
|
2014-10-08 20:28:03 +02:00
|
|
|
ssKey << std::make_pair(std::string("acentry"), std::make_pair((fAllAccounts ? string("") : strAccount), uint64_t(0)));
|
2012-04-16 14:56:45 +02:00
|
|
|
CDataStream ssValue(SER_DISK, CLIENT_VERSION);
|
2012-04-15 23:39:49 +02:00
|
|
|
int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags);
|
|
|
|
fFlags = DB_NEXT;
|
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
break;
|
|
|
|
else if (ret != 0)
|
|
|
|
{
|
|
|
|
pcursor->close();
|
2015-01-08 11:44:25 +01:00
|
|
|
throw runtime_error("CWalletDB::ListAccountCreditDebit(): error scanning DB");
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unserialize
|
|
|
|
string strType;
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2014-09-16 15:18:33 +02:00
|
|
|
DBErrors CWalletDB::ReorderTransactions(CWallet* pwallet)
|
2012-05-28 01:06:09 +02:00
|
|
|
{
|
|
|
|
LOCK(pwallet->cs_wallet);
|
|
|
|
// Old wallets didn't have any defined order for transactions
|
|
|
|
// Probably a bad idea to change the output of this
|
|
|
|
|
|
|
|
// First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap.
|
|
|
|
typedef pair<CWalletTx*, CAccountingEntry*> TxPair;
|
2013-04-13 07:13:08 +02:00
|
|
|
typedef multimap<int64_t, TxPair > TxItems;
|
2012-05-28 01:06:09 +02:00
|
|
|
TxItems txByTime;
|
|
|
|
|
|
|
|
for (map<uint256, CWalletTx>::iterator it = pwallet->mapWallet.begin(); it != pwallet->mapWallet.end(); ++it)
|
|
|
|
{
|
|
|
|
CWalletTx* wtx = &((*it).second);
|
|
|
|
txByTime.insert(make_pair(wtx->nTimeReceived, TxPair(wtx, (CAccountingEntry*)0)));
|
|
|
|
}
|
|
|
|
list<CAccountingEntry> acentries;
|
|
|
|
ListAccountCreditDebit("", acentries);
|
|
|
|
BOOST_FOREACH(CAccountingEntry& entry, acentries)
|
|
|
|
{
|
|
|
|
txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry)));
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t& nOrderPosNext = pwallet->nOrderPosNext;
|
2012-05-28 01:06:09 +02:00
|
|
|
nOrderPosNext = 0;
|
2013-04-13 07:13:08 +02:00
|
|
|
std::vector<int64_t> nOrderPosOffsets;
|
2012-05-28 01:06:09 +02:00
|
|
|
for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it)
|
|
|
|
{
|
|
|
|
CWalletTx *const pwtx = (*it).second.first;
|
|
|
|
CAccountingEntry *const pacentry = (*it).second.second;
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t& nOrderPos = (pwtx != 0) ? pwtx->nOrderPos : pacentry->nOrderPos;
|
2012-05-28 01:06:09 +02:00
|
|
|
|
|
|
|
if (nOrderPos == -1)
|
|
|
|
{
|
|
|
|
nOrderPos = nOrderPosNext++;
|
|
|
|
nOrderPosOffsets.push_back(nOrderPos);
|
|
|
|
|
2014-08-14 16:15:09 +02:00
|
|
|
if (pwtx)
|
|
|
|
{
|
|
|
|
if (!WriteTx(pwtx->GetHash(), *pwtx))
|
|
|
|
return DB_LOAD_FAIL;
|
|
|
|
}
|
|
|
|
else
|
2012-05-28 01:06:09 +02:00
|
|
|
if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry))
|
|
|
|
return DB_LOAD_FAIL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nOrderPosOff = 0;
|
|
|
|
BOOST_FOREACH(const int64_t& nOffsetStart, nOrderPosOffsets)
|
2012-05-28 01:06:09 +02:00
|
|
|
{
|
|
|
|
if (nOrderPos >= nOffsetStart)
|
|
|
|
++nOrderPosOff;
|
|
|
|
}
|
|
|
|
nOrderPos += nOrderPosOff;
|
|
|
|
nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1);
|
|
|
|
|
|
|
|
if (!nOrderPosOff)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Since we're changing the order, write it back
|
|
|
|
if (pwtx)
|
|
|
|
{
|
|
|
|
if (!WriteTx(pwtx->GetHash(), *pwtx))
|
|
|
|
return DB_LOAD_FAIL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry))
|
|
|
|
return DB_LOAD_FAIL;
|
|
|
|
}
|
|
|
|
}
|
2014-08-14 16:15:09 +02:00
|
|
|
WriteOrderPosNext(nOrderPosNext);
|
2012-05-28 01:06:09 +02:00
|
|
|
|
|
|
|
return DB_LOAD_OK;
|
|
|
|
}
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
class CWalletScanState {
|
|
|
|
public:
|
|
|
|
unsigned int nKeys;
|
|
|
|
unsigned int nCKeys;
|
|
|
|
unsigned int nKeyMeta;
|
|
|
|
bool fIsEncrypted;
|
|
|
|
bool fAnyUnordered;
|
|
|
|
int nFileVersion;
|
|
|
|
vector<uint256> vWalletUpgrade;
|
|
|
|
|
|
|
|
CWalletScanState() {
|
|
|
|
nKeys = nCKeys = nKeyMeta = 0;
|
|
|
|
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,
|
2013-06-10 15:36:29 +02:00
|
|
|
CWalletScanState &wss, string& strType, 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")
|
|
|
|
{
|
|
|
|
string strAddress;
|
|
|
|
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")
|
|
|
|
{
|
|
|
|
string strAddress;
|
|
|
|
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
|
|
|
|
2014-08-31 05:55:27 +02:00
|
|
|
pwallet->AddToWallet(wtx, true, NULL);
|
2012-09-18 20:30:47 +02:00
|
|
|
}
|
|
|
|
else if (strType == "acentry")
|
|
|
|
{
|
|
|
|
string strAccount;
|
|
|
|
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
|
|
|
{
|
2014-06-09 21:11:59 +02:00
|
|
|
CScript script;
|
|
|
|
ssKey >> 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
|
|
|
|
|
|
|
// Watch-only addresses have no birthday information for now,
|
|
|
|
// so set the wallet birthday to the beginning of time.
|
|
|
|
pwallet->nTimeFirstKey = 1;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
vector<unsigned char> vchPrivKey;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if (strType == "keymeta")
|
|
|
|
{
|
2013-06-20 01:13:55 +02:00
|
|
|
CPubKey vchPubKey;
|
2013-06-10 15:36:29 +02:00
|
|
|
ssKey >> vchPubKey;
|
|
|
|
CKeyMetadata keyMeta;
|
|
|
|
ssValue >> keyMeta;
|
|
|
|
wss.nKeyMeta++;
|
|
|
|
|
2013-06-20 01:13:55 +02:00
|
|
|
pwallet->LoadKeyMetadata(vchPubKey, keyMeta);
|
|
|
|
|
2013-06-10 15:36:29 +02:00
|
|
|
// find earliest key creation time, as wallet birthday
|
|
|
|
if (!pwallet->nTimeFirstKey ||
|
|
|
|
(keyMeta.nCreateTime < pwallet->nTimeFirstKey))
|
|
|
|
pwallet->nTimeFirstKey = keyMeta.nCreateTime;
|
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;
|
2012-09-18 20:30:47 +02:00
|
|
|
pwallet->setKeyPool.insert(nIndex);
|
2013-04-29 19:50:40 +02:00
|
|
|
|
|
|
|
// If no metadata exists yet, create a default with the pool key's
|
|
|
|
// creation time. Note that this may be overwritten by actually
|
|
|
|
// stored metadata for that key later, which is fine.
|
|
|
|
CKeyID keyid = keypool.vchPubKey.GetID();
|
|
|
|
if (pwallet->mapKeyMetadata.count(keyid) == 0)
|
|
|
|
pwallet->mapKeyMetadata[keyid] = CKeyMetadata(keypool.nTime);
|
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;
|
|
|
|
ssValue >> script;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
} catch (...)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool IsKeyType(string strType)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2012-09-18 20:30:47 +02:00
|
|
|
try {
|
2012-04-15 23:39:49 +02:00
|
|
|
LOCK(pwallet->cs_wallet);
|
|
|
|
int nMinVersion = 0;
|
|
|
|
if (Read((string)"minversion", nMinVersion))
|
|
|
|
{
|
|
|
|
if (nMinVersion > CLIENT_VERSION)
|
|
|
|
return DB_TOO_NEW;
|
|
|
|
pwallet->LoadMinVersion(nMinVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get cursor
|
|
|
|
Dbc* pcursor = GetCursor();
|
|
|
|
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);
|
2012-04-15 23:39:49 +02:00
|
|
|
int ret = ReadAtCursor(pcursor, ssKey, ssValue);
|
|
|
|
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:
|
|
|
|
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
|
|
|
|
if ((wss.nKeys + wss.nCKeys) != wss.nKeyMeta)
|
2013-06-20 01:13:55 +02:00
|
|
|
pwallet->nTimeFirstKey = 1; // 0 would be considered 'no value'
|
2013-06-10 15:36:29 +02:00
|
|
|
|
|
|
|
BOOST_FOREACH(uint256 hash, wss.vWalletUpgrade)
|
2012-09-18 20:30:47 +02:00
|
|
|
WriteTx(hash, 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)
|
2012-09-18 20:30:47 +02:00
|
|
|
result = ReorderTransactions(pwallet);
|
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
|
|
|
}
|
|
|
|
|
2014-02-14 18:27:15 +01:00
|
|
|
DBErrors CWalletDB::FindWalletTx(CWallet* pwallet, vector<uint256>& vTxHash, vector<CWalletTx>& vWtx)
|
2014-02-14 17:33:07 +01:00
|
|
|
{
|
|
|
|
pwallet->vchDefaultKey = CPubKey();
|
|
|
|
bool fNoncriticalErrors = false;
|
|
|
|
DBErrors result = DB_LOAD_OK;
|
|
|
|
|
|
|
|
try {
|
|
|
|
LOCK(pwallet->cs_wallet);
|
|
|
|
int nMinVersion = 0;
|
|
|
|
if (Read((string)"minversion", nMinVersion))
|
|
|
|
{
|
|
|
|
if (nMinVersion > CLIENT_VERSION)
|
|
|
|
return DB_TOO_NEW;
|
|
|
|
pwallet->LoadMinVersion(nMinVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get cursor
|
|
|
|
Dbc* pcursor = GetCursor();
|
|
|
|
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);
|
|
|
|
int ret = ReadAtCursor(pcursor, ssKey, ssValue);
|
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
break;
|
|
|
|
else if (ret != 0)
|
|
|
|
{
|
|
|
|
LogPrintf("Error reading next record from wallet database\n");
|
|
|
|
return DB_CORRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
string strType;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-02-14 18:27:15 +01:00
|
|
|
DBErrors CWalletDB::ZapWalletTx(CWallet* pwallet, vector<CWalletTx>& vWtx)
|
2014-02-14 17:33:07 +01:00
|
|
|
{
|
|
|
|
// build list of wallet TXs
|
|
|
|
vector<uint256> vTxHash;
|
2014-02-14 18:27:15 +01:00
|
|
|
DBErrors err = FindWalletTx(pwallet, 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;
|
|
|
|
}
|
|
|
|
|
2013-03-09 18:02:57 +01:00
|
|
|
void ThreadFlushWalletDB(const string& strFile)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2012-06-24 17:03:57 +02:00
|
|
|
// Make this thread recognisable as the wallet flushing thread
|
|
|
|
RenameThread("bitcoin-wallet");
|
|
|
|
|
2012-04-15 23:39:49 +02:00
|
|
|
static bool fOneThread;
|
|
|
|
if (fOneThread)
|
|
|
|
return;
|
|
|
|
fOneThread = true;
|
|
|
|
if (!GetBoolArg("-flushwallet", true))
|
|
|
|
return;
|
|
|
|
|
|
|
|
unsigned int nLastSeen = nWalletDBUpdated;
|
|
|
|
unsigned int nLastFlushed = nWalletDBUpdated;
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nLastWalletUpdate = GetTime();
|
2013-03-09 18:02:57 +01:00
|
|
|
while (true)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2013-03-07 20:25:21 +01:00
|
|
|
MilliSleep(500);
|
2012-04-15 23:39:49 +02:00
|
|
|
|
|
|
|
if (nLastSeen != nWalletDBUpdated)
|
|
|
|
{
|
|
|
|
nLastSeen = nWalletDBUpdated;
|
|
|
|
nLastWalletUpdate = GetTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nLastFlushed != nWalletDBUpdated && GetTime() - nLastWalletUpdate >= 2)
|
|
|
|
{
|
2012-05-14 03:37:39 +02:00
|
|
|
TRY_LOCK(bitdb.cs_db,lockDb);
|
2012-04-15 23:39:49 +02:00
|
|
|
if (lockDb)
|
|
|
|
{
|
|
|
|
// Don't do this if any databases are in use
|
|
|
|
int nRefCount = 0;
|
2012-05-18 08:49:50 +02:00
|
|
|
map<string, int>::iterator mi = bitdb.mapFileUseCount.begin();
|
|
|
|
while (mi != bitdb.mapFileUseCount.end())
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
nRefCount += (*mi).second;
|
|
|
|
mi++;
|
|
|
|
}
|
|
|
|
|
2013-03-09 18:02:57 +01:00
|
|
|
if (nRefCount == 0)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2013-03-09 18:02:57 +01:00
|
|
|
boost::this_thread::interruption_point();
|
2012-05-18 08:49:50 +02:00
|
|
|
map<string, int>::iterator mi = bitdb.mapFileUseCount.find(strFile);
|
|
|
|
if (mi != bitdb.mapFileUseCount.end())
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrint("db", "Flushing wallet.dat\n");
|
2012-04-15 23:39:49 +02:00
|
|
|
nLastFlushed = nWalletDBUpdated;
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nStart = GetTimeMillis();
|
2012-04-15 23:39:49 +02:00
|
|
|
|
|
|
|
// Flush wallet.dat so it's self contained
|
2012-05-18 08:49:50 +02:00
|
|
|
bitdb.CloseDb(strFile);
|
2012-05-14 03:37:39 +02:00
|
|
|
bitdb.CheckpointLSN(strFile);
|
2012-04-15 23:39:49 +02:00
|
|
|
|
2012-05-18 08:49:50 +02:00
|
|
|
bitdb.mapFileUseCount.erase(mi++);
|
2014-02-24 09:08:56 +01:00
|
|
|
LogPrint("db", "Flushed wallet.dat %dms\n", GetTimeMillis() - nStart);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BackupWallet(const CWallet& wallet, const string& strDest)
|
|
|
|
{
|
|
|
|
if (!wallet.fFileBacked)
|
|
|
|
return false;
|
2013-03-09 18:02:57 +01:00
|
|
|
while (true)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
{
|
2012-05-14 03:37:39 +02:00
|
|
|
LOCK(bitdb.cs_db);
|
2012-05-18 08:49:50 +02:00
|
|
|
if (!bitdb.mapFileUseCount.count(wallet.strWalletFile) || bitdb.mapFileUseCount[wallet.strWalletFile] == 0)
|
2012-04-15 23:39:49 +02:00
|
|
|
{
|
|
|
|
// Flush log data to the dat file
|
2012-05-18 08:49:50 +02:00
|
|
|
bitdb.CloseDb(wallet.strWalletFile);
|
2012-05-14 03:37:39 +02:00
|
|
|
bitdb.CheckpointLSN(wallet.strWalletFile);
|
2012-05-18 08:49:50 +02:00
|
|
|
bitdb.mapFileUseCount.erase(wallet.strWalletFile);
|
2012-04-15 23:39:49 +02:00
|
|
|
|
|
|
|
// Copy wallet.dat
|
2014-12-19 21:21:29 +01:00
|
|
|
boost::filesystem::path pathSrc = GetDataDir() / wallet.strWalletFile;
|
|
|
|
boost::filesystem::path pathDest(strDest);
|
|
|
|
if (boost::filesystem::is_directory(pathDest))
|
2012-04-15 23:39:49 +02:00
|
|
|
pathDest /= wallet.strWalletFile;
|
|
|
|
|
|
|
|
try {
|
|
|
|
#if BOOST_VERSION >= 104000
|
2014-12-19 21:21:29 +01:00
|
|
|
boost::filesystem::copy_file(pathSrc, pathDest, boost::filesystem::copy_option::overwrite_if_exists);
|
2012-04-15 23:39:49 +02:00
|
|
|
#else
|
2014-12-19 21:21:29 +01:00
|
|
|
boost::filesystem::copy_file(pathSrc, pathDest);
|
2012-04-15 23:39:49 +02:00
|
|
|
#endif
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("copied wallet.dat to %s\n", pathDest.string());
|
2012-04-15 23:39:49 +02:00
|
|
|
return true;
|
2014-12-19 21:21:29 +01:00
|
|
|
} catch (const boost::filesystem::filesystem_error& e) {
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("error copying wallet.dat to %s - %s\n", pathDest.string(), e.what());
|
2012-04-15 23:39:49 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 20:25:21 +01:00
|
|
|
MilliSleep(100);
|
2012-04-15 23:39:49 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-18 20:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Try to (very carefully!) recover wallet.dat if there is a problem.
|
|
|
|
//
|
2015-03-21 18:40:51 +01:00
|
|
|
bool CWalletDB::Recover(CDBEnv& dbenv, const std::string& filename, bool fOnlyKeys)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
// Recovery procedure:
|
|
|
|
// move wallet.dat to wallet.timestamp.bak
|
|
|
|
// Call Salvage with fAggressive=true to
|
|
|
|
// get as much data as possible.
|
|
|
|
// Rewrite salvaged data to wallet.dat
|
|
|
|
// Set -rescan so any missing transactions will be
|
|
|
|
// found.
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t now = GetTime();
|
2014-02-24 09:08:56 +01:00
|
|
|
std::string newFilename = strprintf("wallet.%d.bak", now);
|
2012-09-18 20:30:47 +02:00
|
|
|
|
2015-03-03 16:49:12 +01:00
|
|
|
int result = dbenv.dbenv->dbrename(NULL, filename.c_str(), NULL,
|
|
|
|
newFilename.c_str(), DB_AUTO_COMMIT);
|
2012-09-18 20:30:47 +02:00
|
|
|
if (result == 0)
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Renamed %s to %s\n", filename, newFilename);
|
2012-09-18 20:30:47 +02:00
|
|
|
else
|
|
|
|
{
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Failed to rename %s to %s\n", filename, newFilename);
|
2012-09-18 20:30:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<CDBEnv::KeyValPair> salvagedData;
|
2015-05-14 15:55:17 +02:00
|
|
|
bool fSuccess = dbenv.Salvage(newFilename, true, salvagedData);
|
2012-09-18 20:30:47 +02:00
|
|
|
if (salvagedData.empty())
|
|
|
|
{
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Salvage(aggressive) found no records in %s.\n", newFilename);
|
2012-09-18 20:30:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-05-06 15:25:01 +02:00
|
|
|
LogPrintf("Salvage(aggressive) found %u records\n", salvagedData.size());
|
2012-09-18 20:30:47 +02:00
|
|
|
|
2015-03-03 16:49:12 +01:00
|
|
|
boost::scoped_ptr<Db> pdbCopy(new Db(dbenv.dbenv, 0));
|
2013-04-04 11:30:55 +02:00
|
|
|
int ret = pdbCopy->open(NULL, // Txn pointer
|
2012-09-18 20:30:47 +02:00
|
|
|
filename.c_str(), // Filename
|
2013-04-04 11:30:55 +02:00
|
|
|
"main", // Logical db name
|
|
|
|
DB_BTREE, // Database type
|
|
|
|
DB_CREATE, // Flags
|
2012-09-18 20:30:47 +02:00
|
|
|
0);
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Cannot create database file %s\n", filename);
|
2012-09-18 20:30:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
CWallet dummyWallet;
|
2013-06-10 15:36:29 +02:00
|
|
|
CWalletScanState wss;
|
2012-09-18 20:30:47 +02:00
|
|
|
|
|
|
|
DbTxn* ptxn = dbenv.TxnBegin();
|
|
|
|
BOOST_FOREACH(CDBEnv::KeyValPair& row, salvagedData)
|
|
|
|
{
|
|
|
|
if (fOnlyKeys)
|
|
|
|
{
|
|
|
|
CDataStream ssKey(row.first, SER_DISK, CLIENT_VERSION);
|
|
|
|
CDataStream ssValue(row.second, SER_DISK, CLIENT_VERSION);
|
|
|
|
string strType, strErr;
|
|
|
|
bool fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue,
|
2013-06-10 15:36:29 +02:00
|
|
|
wss, strType, strErr);
|
2012-09-18 20:30:47 +02:00
|
|
|
if (!IsKeyType(strType))
|
|
|
|
continue;
|
|
|
|
if (!fReadOK)
|
|
|
|
{
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("WARNING: CWalletDB::Recover skipping %s: %s\n", strType, strErr);
|
2012-09-18 20:30:47 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Dbt datKey(&row.first[0], row.first.size());
|
|
|
|
Dbt datValue(&row.second[0], row.second.size());
|
|
|
|
int ret2 = pdbCopy->put(ptxn, &datKey, &datValue, DB_NOOVERWRITE);
|
|
|
|
if (ret2 > 0)
|
|
|
|
fSuccess = false;
|
|
|
|
}
|
|
|
|
ptxn->commit(0);
|
|
|
|
pdbCopy->close(0);
|
|
|
|
|
|
|
|
return fSuccess;
|
|
|
|
}
|
|
|
|
|
2015-03-21 18:40:51 +01:00
|
|
|
bool CWalletDB::Recover(CDBEnv& dbenv, const std::string& filename)
|
2012-09-18 20:30:47 +02:00
|
|
|
{
|
|
|
|
return CWalletDB::Recover(dbenv, filename, false);
|
|
|
|
}
|
2013-11-18 16:55:54 +01:00
|
|
|
|
|
|
|
bool CWalletDB::WriteDestData(const std::string &address, const std::string &key, const std::string &value)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
2014-10-08 20:28:03 +02:00
|
|
|
return 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)
|
|
|
|
{
|
|
|
|
nWalletDBUpdated++;
|
2014-10-08 20:28:03 +02:00
|
|
|
return Erase(std::make_pair(std::string("destdata"), std::make_pair(address, key)));
|
2013-11-18 16:55:54 +01:00
|
|
|
}
|