2012-09-03 21:14:03 +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-09-03 21:14:03 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2012-10-16 22:23:39 +02:00
|
|
|
#include "txdb.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
#include "chainparams.h"
|
|
|
|
#include "hash.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "pow.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "uint256.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2014-09-14 12:43:56 +02:00
|
|
|
#include <boost/thread.hpp>
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
static const char DB_COIN = 'C';
|
2015-01-25 16:27:54 +01:00
|
|
|
static const char DB_COINS = 'c';
|
|
|
|
static const char DB_BLOCK_FILES = 'f';
|
|
|
|
static const char DB_TXINDEX = 't';
|
|
|
|
static const char DB_BLOCK_INDEX = 'b';
|
|
|
|
|
|
|
|
static const char DB_BEST_BLOCK = 'B';
|
|
|
|
static const char DB_FLAG = 'F';
|
|
|
|
static const char DB_REINDEX_FLAG = 'R';
|
|
|
|
static const char DB_LAST_BLOCK = 'l';
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct CoinsEntry {
|
|
|
|
COutPoint* outpoint;
|
|
|
|
char key;
|
|
|
|
CoinsEntry(const COutPoint* ptr) : outpoint(const_cast<COutPoint*>(ptr)), key(DB_COIN) {}
|
|
|
|
|
|
|
|
template<typename Stream>
|
|
|
|
void Serialize(Stream &s) const {
|
|
|
|
s << key;
|
|
|
|
s << outpoint->hash;
|
|
|
|
s << VARINT(outpoint->n);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Stream>
|
|
|
|
void Unserialize(Stream& s) {
|
|
|
|
s >> key;
|
|
|
|
s >> outpoint->hash;
|
|
|
|
s >> VARINT(outpoint->n);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2015-01-25 16:27:54 +01:00
|
|
|
|
2015-09-08 00:22:23 +02:00
|
|
|
CCoinsViewDB::CCoinsViewDB(size_t nCacheSize, bool fMemory, bool fWipe) : db(GetDataDir() / "chainstate", nCacheSize, fMemory, fWipe, true)
|
|
|
|
{
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
bool CCoinsViewDB::GetCoins(const COutPoint &outpoint, Coin &coin) const {
|
|
|
|
return db.Read(CoinsEntry(&outpoint), coin);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
bool CCoinsViewDB::HaveCoins(const COutPoint &outpoint) const {
|
|
|
|
return db.Exists(CoinsEntry(&outpoint));
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
uint256 CCoinsViewDB::GetBestBlock() const {
|
2012-09-03 21:14:03 +02:00
|
|
|
uint256 hashBestChain;
|
2015-01-25 16:27:54 +01:00
|
|
|
if (!db.Read(DB_BEST_BLOCK, hashBestChain))
|
2014-12-15 09:11:16 +01:00
|
|
|
return uint256();
|
2013-11-05 02:27:39 +01:00
|
|
|
return hashBestChain;
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2014-08-24 02:08:05 +02:00
|
|
|
bool CCoinsViewDB::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) {
|
2016-04-20 11:46:01 +02:00
|
|
|
CDBBatch batch(db);
|
2014-09-03 09:37:47 +02:00
|
|
|
size_t count = 0;
|
|
|
|
size_t changed = 0;
|
2014-08-24 02:08:05 +02:00
|
|
|
for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end();) {
|
2014-09-03 09:37:47 +02:00
|
|
|
if (it->second.flags & CCoinsCacheEntry::DIRTY) {
|
2017-04-25 20:29:39 +02:00
|
|
|
CoinsEntry entry(&it->first);
|
2015-09-08 00:22:23 +02:00
|
|
|
if (it->second.coins.IsPruned())
|
2017-04-25 20:29:39 +02:00
|
|
|
batch.Erase(entry);
|
2015-09-08 00:22:23 +02:00
|
|
|
else
|
2017-04-25 20:29:39 +02:00
|
|
|
batch.Write(entry, it->second.coins);
|
2014-09-03 09:37:47 +02:00
|
|
|
changed++;
|
|
|
|
}
|
|
|
|
count++;
|
2014-08-24 02:08:05 +02:00
|
|
|
CCoinsMap::iterator itOld = it++;
|
|
|
|
mapCoins.erase(itOld);
|
|
|
|
}
|
2014-12-15 09:11:16 +01:00
|
|
|
if (!hashBlock.IsNull())
|
2015-09-08 00:22:23 +02:00
|
|
|
batch.Write(DB_BEST_BLOCK, hashBlock);
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
bool ret = db.WriteBatch(batch);
|
|
|
|
LogPrint(BCLog::COINDB, "Committed %u changed transaction outputs (out of %u) to coin database...\n", (unsigned int)changed, (unsigned int)count);
|
|
|
|
return ret;
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2017-05-13 00:19:19 +02:00
|
|
|
size_t CCoinsViewDB::EstimateSize() const
|
|
|
|
{
|
2017-04-25 20:29:39 +02:00
|
|
|
return db.EstimateSize(DB_COIN, (char)(DB_COIN+1));
|
2017-05-13 00:19:19 +02:00
|
|
|
}
|
|
|
|
|
2015-10-23 03:02:20 +02:00
|
|
|
CBlockTreeDB::CBlockTreeDB(size_t nCacheSize, bool fMemory, bool fWipe) : CDBWrapper(GetDataDir() / "blocks" / "index", nCacheSize, fMemory, fWipe) {
|
2012-09-04 18:12:00 +02:00
|
|
|
}
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
bool CBlockTreeDB::ReadBlockFileInfo(int nFile, CBlockFileInfo &info) {
|
2017-01-27 09:43:41 +01:00
|
|
|
return Read(std::make_pair(DB_BLOCK_FILES, nFile), info);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2012-10-21 21:23:13 +02:00
|
|
|
bool CBlockTreeDB::WriteReindexing(bool fReindexing) {
|
|
|
|
if (fReindexing)
|
2015-01-25 16:27:54 +01:00
|
|
|
return Write(DB_REINDEX_FLAG, '1');
|
2012-10-21 21:23:13 +02:00
|
|
|
else
|
2015-01-25 16:27:54 +01:00
|
|
|
return Erase(DB_REINDEX_FLAG);
|
2012-10-21 21:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::ReadReindexing(bool &fReindexing) {
|
2015-01-25 16:27:54 +01:00
|
|
|
fReindexing = Exists(DB_REINDEX_FLAG);
|
2012-10-21 21:23:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-03 21:14:03 +02:00
|
|
|
bool CBlockTreeDB::ReadLastBlockFile(int &nFile) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Read(DB_LAST_BLOCK, nFile);
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
|
2016-03-28 18:18:30 +02:00
|
|
|
CCoinsViewCursor *CCoinsViewDB::Cursor() const
|
|
|
|
{
|
|
|
|
CCoinsViewDBCursor *i = new CCoinsViewDBCursor(const_cast<CDBWrapper*>(&db)->NewIterator(), GetBestBlock());
|
2014-07-19 16:42:48 +02:00
|
|
|
/* It seems that there are no "const iterators" for LevelDB. Since we
|
|
|
|
only need read operations on it, use a const-cast to get around
|
|
|
|
that restriction. */
|
2017-04-25 20:29:39 +02:00
|
|
|
i->pcursor->Seek(DB_COIN);
|
2016-03-28 18:18:30 +02:00
|
|
|
// Cache key of first record
|
2017-05-23 19:04:14 +02:00
|
|
|
if (i->pcursor->Valid()) {
|
2017-04-25 20:29:39 +02:00
|
|
|
CoinsEntry entry(&i->keyTmp.second);
|
|
|
|
i->pcursor->GetKey(entry);
|
|
|
|
i->keyTmp.first = entry.key;
|
2017-05-23 19:04:14 +02:00
|
|
|
} else {
|
|
|
|
i->keyTmp.first = 0; // Make sure Valid() and GetKey() return false
|
|
|
|
}
|
2016-03-28 18:18:30 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
bool CCoinsViewDBCursor::GetKey(COutPoint &key) const
|
2016-03-28 18:18:30 +02:00
|
|
|
{
|
|
|
|
// Return cached key
|
2017-04-25 20:29:39 +02:00
|
|
|
if (keyTmp.first == DB_COIN) {
|
2016-03-28 18:18:30 +02:00
|
|
|
key = keyTmp.second;
|
|
|
|
return true;
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
2016-03-28 18:18:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-25 20:29:39 +02:00
|
|
|
bool CCoinsViewDBCursor::GetValue(Coin &coin) const
|
2016-03-28 18:18:30 +02:00
|
|
|
{
|
2017-04-25 20:29:39 +02:00
|
|
|
return pcursor->GetValue(coin);
|
2016-03-28 18:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CCoinsViewDBCursor::GetValueSize() const
|
|
|
|
{
|
|
|
|
return pcursor->GetValueSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCoinsViewDBCursor::Valid() const
|
|
|
|
{
|
2017-04-25 20:29:39 +02:00
|
|
|
return keyTmp.first == DB_COIN;
|
2016-03-28 18:18:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCoinsViewDBCursor::Next()
|
|
|
|
{
|
|
|
|
pcursor->Next();
|
2017-04-25 20:29:39 +02:00
|
|
|
CoinsEntry entry(&keyTmp.second);
|
|
|
|
if (!pcursor->Valid() || !pcursor->GetKey(entry)) {
|
2016-03-28 18:18:30 +02:00
|
|
|
keyTmp.first = 0; // Invalidate cached key after last record so that Valid() and GetKey() return false
|
2017-04-25 20:29:39 +02:00
|
|
|
} else {
|
|
|
|
keyTmp.first = entry.key;
|
|
|
|
}
|
2012-09-25 23:04:54 +02:00
|
|
|
}
|
|
|
|
|
2014-11-25 16:26:20 +01:00
|
|
|
bool CBlockTreeDB::WriteBatchSync(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo, int nLastFile, const std::vector<const CBlockIndex*>& blockinfo) {
|
2016-04-20 11:46:01 +02:00
|
|
|
CDBBatch batch(*this);
|
2014-11-25 16:26:20 +01:00
|
|
|
for (std::vector<std::pair<int, const CBlockFileInfo*> >::const_iterator it=fileInfo.begin(); it != fileInfo.end(); it++) {
|
2017-01-27 09:43:41 +01:00
|
|
|
batch.Write(std::make_pair(DB_BLOCK_FILES, it->first), *it->second);
|
2014-11-25 16:26:20 +01:00
|
|
|
}
|
2015-01-25 16:27:54 +01:00
|
|
|
batch.Write(DB_LAST_BLOCK, nLastFile);
|
2014-11-25 16:26:20 +01:00
|
|
|
for (std::vector<const CBlockIndex*>::const_iterator it=blockinfo.begin(); it != blockinfo.end(); it++) {
|
2017-01-27 09:43:41 +01:00
|
|
|
batch.Write(std::make_pair(DB_BLOCK_INDEX, (*it)->GetBlockHash()), CDiskBlockIndex(*it));
|
2014-11-25 16:26:20 +01:00
|
|
|
}
|
|
|
|
return WriteBatch(batch, true);
|
|
|
|
}
|
|
|
|
|
2013-01-11 01:47:57 +01:00
|
|
|
bool CBlockTreeDB::ReadTxIndex(const uint256 &txid, CDiskTxPos &pos) {
|
2017-01-27 09:43:41 +01:00
|
|
|
return Read(std::make_pair(DB_TXINDEX, txid), pos);
|
2013-01-11 01:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> >&vect) {
|
2016-04-20 11:46:01 +02:00
|
|
|
CDBBatch batch(*this);
|
2013-01-11 01:47:57 +01:00
|
|
|
for (std::vector<std::pair<uint256,CDiskTxPos> >::const_iterator it=vect.begin(); it!=vect.end(); it++)
|
2017-01-27 09:43:41 +01:00
|
|
|
batch.Write(std::make_pair(DB_TXINDEX, it->first), it->second);
|
2013-01-11 01:47:57 +01:00
|
|
|
return WriteBatch(batch);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::WriteFlag(const std::string &name, bool fValue) {
|
2015-01-25 16:27:54 +01:00
|
|
|
return Write(std::make_pair(DB_FLAG, name), fValue ? '1' : '0');
|
2013-01-11 01:47:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CBlockTreeDB::ReadFlag(const std::string &name, bool &fValue) {
|
|
|
|
char ch;
|
2015-01-25 16:27:54 +01:00
|
|
|
if (!Read(std::make_pair(DB_FLAG, name), ch))
|
2013-01-11 01:47:57 +01:00
|
|
|
return false;
|
|
|
|
fValue = ch == '1';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-13 17:52:14 +02:00
|
|
|
bool CBlockTreeDB::LoadBlockIndexGuts(std::function<CBlockIndex*(const uint256&)> insertBlockIndex)
|
2012-09-03 21:14:03 +02:00
|
|
|
{
|
2016-08-30 22:41:56 +02:00
|
|
|
std::unique_ptr<CDBIterator> pcursor(NewIterator());
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2017-01-27 09:43:41 +01:00
|
|
|
pcursor->Seek(std::make_pair(DB_BLOCK_INDEX, uint256()));
|
2012-09-03 21:14:03 +02:00
|
|
|
|
|
|
|
// Load mapBlockIndex
|
|
|
|
while (pcursor->Valid()) {
|
2013-03-09 18:02:57 +01:00
|
|
|
boost::this_thread::interruption_point();
|
2015-10-08 02:12:24 +02:00
|
|
|
std::pair<char, uint256> key;
|
2015-10-13 20:25:57 +02:00
|
|
|
if (pcursor->GetKey(key) && key.first == DB_BLOCK_INDEX) {
|
2015-10-08 02:12:24 +02:00
|
|
|
CDiskBlockIndex diskindex;
|
|
|
|
if (pcursor->GetValue(diskindex)) {
|
2012-09-03 21:14:03 +02:00
|
|
|
// Construct block index object
|
2016-04-05 15:14:48 +02:00
|
|
|
CBlockIndex* pindexNew = insertBlockIndex(diskindex.GetBlockHash());
|
|
|
|
pindexNew->pprev = insertBlockIndex(diskindex.hashPrev);
|
2012-09-03 21:14:03 +02:00
|
|
|
pindexNew->nHeight = diskindex.nHeight;
|
|
|
|
pindexNew->nFile = diskindex.nFile;
|
|
|
|
pindexNew->nDataPos = diskindex.nDataPos;
|
|
|
|
pindexNew->nUndoPos = diskindex.nUndoPos;
|
|
|
|
pindexNew->nVersion = diskindex.nVersion;
|
|
|
|
pindexNew->hashMerkleRoot = diskindex.hashMerkleRoot;
|
|
|
|
pindexNew->nTime = diskindex.nTime;
|
|
|
|
pindexNew->nBits = diskindex.nBits;
|
|
|
|
pindexNew->nNonce = diskindex.nNonce;
|
|
|
|
pindexNew->nStatus = diskindex.nStatus;
|
|
|
|
pindexNew->nTx = diskindex.nTx;
|
|
|
|
|
2015-02-15 02:21:42 +01:00
|
|
|
if (!CheckProofOfWork(pindexNew->GetBlockHash(), pindexNew->nBits, Params().GetConsensus()))
|
2015-01-08 11:44:25 +01:00
|
|
|
return error("LoadBlockIndex(): CheckProofOfWork failed: %s", pindexNew->ToString());
|
2012-09-03 21:14:03 +02:00
|
|
|
|
|
|
|
pcursor->Next();
|
|
|
|
} else {
|
2015-10-08 02:12:24 +02:00
|
|
|
return error("LoadBlockIndex() : failed to read value");
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
2015-10-08 02:12:24 +02:00
|
|
|
} else {
|
|
|
|
break;
|
2012-09-03 21:14:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-04-25 20:29:46 +02:00
|
|
|
|
|
|
|
/** Upgrade the database from older formats.
|
|
|
|
*
|
|
|
|
* Currently implemented: from the per-tx utxo model (0.8..0.14.x) to per-txout.
|
|
|
|
*/
|
|
|
|
bool CCoinsViewDB::Upgrade() {
|
|
|
|
std::unique_ptr<CDBIterator> pcursor(db.NewIterator());
|
|
|
|
pcursor->Seek(std::make_pair(DB_COINS, uint256()));
|
|
|
|
if (!pcursor->Valid()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
LogPrintf("Upgrading database...\n");
|
|
|
|
size_t batch_size = 1 << 24;
|
|
|
|
CDBBatch batch(db);
|
|
|
|
while (pcursor->Valid()) {
|
|
|
|
boost::this_thread::interruption_point();
|
|
|
|
std::pair<unsigned char, uint256> key;
|
|
|
|
if (pcursor->GetKey(key) && key.first == DB_COINS) {
|
|
|
|
CCoins old_coins;
|
|
|
|
if (!pcursor->GetValue(old_coins)) {
|
|
|
|
return error("%s: cannot parse CCoins record", __func__);
|
|
|
|
}
|
|
|
|
COutPoint outpoint(key.second, 0);
|
|
|
|
for (size_t i = 0; i < old_coins.vout.size(); ++i) {
|
|
|
|
if (!old_coins.vout[i].IsNull() && !old_coins.vout[i].scriptPubKey.IsUnspendable()) {
|
|
|
|
Coin newcoin(std::move(old_coins.vout[i]), old_coins.nHeight, old_coins.fCoinBase);
|
|
|
|
outpoint.n = i;
|
|
|
|
CoinEntry entry(&outpoint);
|
|
|
|
batch.Write(entry, newcoin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
batch.Erase(key);
|
|
|
|
if (batch.SizeEstimate() > batch_size) {
|
|
|
|
db.WriteBatch(batch);
|
|
|
|
batch.Clear();
|
|
|
|
}
|
|
|
|
pcursor->Next();
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
db.WriteBatch(batch);
|
|
|
|
return true;
|
|
|
|
}
|