611 lines
24 KiB
C++
611 lines
24 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2020-2023 Tom Zander <tom@flowee.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "Blockchain.h"
|
|
#include "DownloadManager.h"
|
|
#include "Peer.h"
|
|
|
|
#include <streaming/BufferPool.h>
|
|
#include <streaming/P2PBuilder.h>
|
|
#include <streaming/P2PParser.h>
|
|
#include <utils/utiltime.h>
|
|
|
|
#include <stdexcept>
|
|
#include <fstream>
|
|
#include <cstdio> // for rename()
|
|
|
|
struct StaticChain {
|
|
const unsigned char *data = nullptr;
|
|
std::string infoFile;
|
|
int64_t size = 0;
|
|
};
|
|
static StaticChain s_staticChain = StaticChain();
|
|
|
|
Blockchain::Blockchain(DownloadManager *downloadManager, const boost::filesystem::path &basedir, P2PNet::Chain chain)
|
|
: m_basedir(basedir),
|
|
m_blockHeight(chain == P2PNet::MainChain ? 60001 : 1001),
|
|
m_dlmanager(downloadManager),
|
|
m_saveTimer(m_dlmanager->service())
|
|
{
|
|
assert(m_dlmanager);
|
|
|
|
switch (chain) {
|
|
case P2PNet::MainChain:
|
|
m_longestChain.reserve(800000); // pre-allocate
|
|
createMainchainGenesis();
|
|
loadMainchainCheckpoints();
|
|
break;
|
|
case P2PNet::Testnet4Chain:
|
|
m_longestChain.reserve(200000);
|
|
createTestnet4Genesis();
|
|
loadTestnet4Checkpoints();
|
|
break;
|
|
default:
|
|
assert(false);
|
|
}
|
|
std::ifstream hashes;
|
|
hashes.open(s_staticChain.infoFile);
|
|
if (hashes.is_open()) // if it doesn't exist, silently skip loading
|
|
loadStaticChain(s_staticChain.data, s_staticChain.size, hashes);
|
|
load();
|
|
}
|
|
|
|
Message Blockchain::createGetHeadersRequest(Streaming::P2PBuilder &builder)
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
uint256 tip;
|
|
if (m_tip.height <= 1000) {
|
|
builder.writeCompactSize(1);
|
|
builder.writeByteArray(tip.begin(), 32, Streaming::RawBytes);
|
|
} else {
|
|
builder.writeCompactSize(10);
|
|
std::array<int, 10> offsets = {
|
|
m_tip.height - 5,
|
|
m_tip.height - 10,
|
|
m_tip.height - 20,
|
|
m_tip.height - 60,
|
|
m_tip.height - 100,
|
|
m_tip.height - 200,
|
|
m_tip.height - 400,
|
|
m_tip.height - 600,
|
|
m_tip.height - 800,
|
|
m_tip.height - 1000
|
|
};
|
|
for (auto i : offsets) {
|
|
if (i < m_numStaticHeaders) {
|
|
auto bh = reinterpret_cast<const BlockHeader*>(m_staticChain + 80 * i);
|
|
uint256 hash = bh->createHash();
|
|
builder.writeByteArray(hash.begin(), 32, Streaming::RawBytes);
|
|
}
|
|
else {
|
|
uint256 hash = m_longestChain.at(i).createHash();
|
|
builder.writeByteArray(hash.begin(), 32, Streaming::RawBytes);
|
|
}
|
|
}
|
|
}
|
|
builder.writeByteArray(tip.begin(), 32, Streaming::RawBytes);
|
|
return builder.message(Api::P2P::GetHeaders);
|
|
}
|
|
|
|
void Blockchain::processBlockHeaders(Message message, int peerId)
|
|
{
|
|
int newTip = 0;
|
|
bool goodHeadersSameTip = false;
|
|
int height = 0;
|
|
bool justDisconnect = false;
|
|
try {
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
Streaming::P2PParser parser(message);
|
|
auto count = parser.readCompactInt();
|
|
if (count > 2000) {
|
|
logInfo() << "Peer:" << peerId << "Sent too many headers" << count << "p2p protocol violation";
|
|
m_dlmanager->reportDataFailure(peerId);
|
|
return;
|
|
}
|
|
const uint32_t maxFuture = time(nullptr) + 7200; // headers can not be more than 2 hours in the future.
|
|
|
|
uint256 prevHash;
|
|
int startHeight = -1;
|
|
arith_uint256 chainWork;
|
|
for (size_t i = 0; i < count; ++i) {
|
|
BlockHeader header = BlockHeader::fromMessage(parser);
|
|
/*int txCount =*/ parser.readCompactInt(); // always zero
|
|
|
|
// timestamp not more than 2h in the future.
|
|
if (header.nTime > maxFuture) {
|
|
logWarning() << "Peer:" << peerId << "sent bogus headers. Too far in future";
|
|
m_dlmanager->reportDataFailure(peerId);
|
|
return;
|
|
}
|
|
|
|
if (startHeight == -1) { // first header in the sequence.
|
|
auto iter = m_blockHeight.find(header.hashPrevBlock);
|
|
if (iter == m_blockHeight.end())
|
|
throw std::runtime_error("is on a different chain, headers don't extend ours");
|
|
height = startHeight = iter->second + 1;
|
|
if (m_tip.height + 1 == startHeight) {
|
|
chainWork = m_tip.chainWork;
|
|
} else if (m_tip.height - startHeight > (int) count) {
|
|
assert(!checkpoints.empty());
|
|
auto cp = checkpoints.crbegin();
|
|
if (startHeight > cp->first) { // remote has a valid block after our last checkpoint.
|
|
// the remote is behind. We won't punish it, but we should disconnect a useless peer
|
|
logInfo() << "Peer:" << peerId << "is behind, not useful to us.";
|
|
justDisconnect = true;
|
|
throw std::runtime_error("Peer behind");
|
|
}
|
|
throw std::runtime_error("is on a different chain, headers don't extend ours");
|
|
}
|
|
else {
|
|
// rollback the chainWork to branch-point
|
|
assert(m_tip.height == (int) m_longestChain.size() - 1);
|
|
chainWork = m_tip.chainWork;
|
|
for (int height = m_tip.height; height >= startHeight; --height) {
|
|
chainWork -= m_longestChain.at(height).blockProof();
|
|
}
|
|
}
|
|
}
|
|
else if (prevHash != header.hashPrevBlock) { // check if we are really a sequence.
|
|
throw std::runtime_error("sent bogus headers. Not in sequence");
|
|
}
|
|
uint256 hash = header.createHash();
|
|
// check POW
|
|
{
|
|
bool fNegative;
|
|
bool fOverflow;
|
|
arith_uint256 bnTarget;
|
|
bnTarget.SetCompact(header.nBits, &fNegative, &fOverflow);
|
|
if (fNegative || bnTarget == 0 || fOverflow || bnTarget > UintToArith256(powLimit)
|
|
|| UintToArith256(hash) > bnTarget) {// Check proof of work matches claimed amount
|
|
throw std::runtime_error("sent bogus headers. POW failed");
|
|
}
|
|
}
|
|
chainWork += header.blockProof();
|
|
|
|
auto cpIter = checkpoints.find(height);
|
|
if (cpIter != checkpoints.end()) {
|
|
if (cpIter->second != hash)
|
|
throw std::runtime_error("is on a different chain, checkpoint failure");
|
|
}
|
|
prevHash = std::move(hash);
|
|
++height;
|
|
}
|
|
|
|
if (chainWork > m_tip.chainWork) {
|
|
// The new chain has more PoW, apply it.
|
|
parser = Streaming::P2PParser(message);
|
|
count = parser.readCompactInt();
|
|
height = startHeight;
|
|
m_longestChain.resize(startHeight + count);
|
|
for (size_t i = 0; i < count; ++i) {
|
|
BlockHeader header = BlockHeader::fromMessage(parser);
|
|
/*int txCount =*/ parser.readCompactInt(); // always zero
|
|
m_blockHeight.insert(std::make_pair(header.createHash(), height));
|
|
m_longestChain[height++] = header;
|
|
}
|
|
m_tip.height = height - 1;
|
|
m_tip.tip = prevHash;
|
|
m_tip.chainWork= chainWork;
|
|
newTip = m_tip.height;
|
|
logCritical() << "Headers now at" << newTip << m_tip.tip <<
|
|
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", m_longestChain.back().nTime).c_str();
|
|
}
|
|
else if (chainWork == m_tip.chainWork) { // Good headers, same tip we already had
|
|
// we go and do nice things with the peer, but we have to do that outside of the
|
|
// mutex to avoid deadlocks. As such we simply set a bool and delay the action.
|
|
goodHeadersSameTip = true;
|
|
}
|
|
} catch (const std::runtime_error &err) {
|
|
logWarning() << "Peer:" << peerId << "is" << err.what();
|
|
if (justDisconnect) {
|
|
m_dlmanager->connectionManager().disconnect(peerId);
|
|
} else {
|
|
m_dlmanager->reportDataFailure(peerId);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (goodHeadersSameTip) {
|
|
// Lets tell the PeerAddressDB that
|
|
// this peer got good headers, since that DB is persisted between
|
|
// restarts, we improve our performance by remembering success.
|
|
auto peer = m_dlmanager->connectionManager().peer(peerId);
|
|
if (peer.get()) {
|
|
peer->peerAddress().gotGoodHeaders();
|
|
peer->updatePeerHeight(height - 1);
|
|
}
|
|
}
|
|
else if (newTip > 0) {
|
|
m_dlmanager->headersDownloadFinished(newTip, peerId);
|
|
if (!m_saveTimerStarted && newTip - m_lastSavedHeader > 300) {
|
|
// schedule task to compress all files
|
|
m_saveTimer.expires_from_now(boost::posix_time::seconds(45));
|
|
m_saveTimer.async_wait(std::bind(&Blockchain::save, this));
|
|
m_saveTimerStarted = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
// static
|
|
void Blockchain::setStaticChain(const unsigned char *data, int64_t size, const std::string &infoFile)
|
|
{
|
|
assert(size == 0 || data);
|
|
s_staticChain.data = data;
|
|
s_staticChain.size = size;
|
|
s_staticChain.infoFile = infoFile;
|
|
}
|
|
|
|
// static
|
|
bool Blockchain::createStaticHeaders(const std::string &blockchain, const std::string &meta)
|
|
{
|
|
std::ifstream data;
|
|
data.open(blockchain, std::ios_base::binary);
|
|
if (!data.is_open()) {
|
|
logFatal() << "FAIL Could not read input file:" << blockchain;
|
|
return false;
|
|
}
|
|
std::ofstream out;
|
|
out.open(meta, std::ios_base::trunc | std::ios_base::binary);
|
|
if (!out.is_open()) {
|
|
logFatal() << "FAIL Could not write info file:" << meta;
|
|
return false;
|
|
}
|
|
|
|
arith_uint256 chainWork;
|
|
while (true) {
|
|
BlockHeader bh;
|
|
data.read(reinterpret_cast<char*>(&bh), 80);
|
|
if (data.fail())
|
|
break;
|
|
chainWork += bh.blockProof();
|
|
auto blockHash = bh.createHash();
|
|
out.write(reinterpret_cast<const char*>(blockHash.begin()), 32);
|
|
if (out.fail()) {
|
|
logFatal() << "Out of disk space";
|
|
return false;
|
|
}
|
|
}
|
|
data.close();
|
|
out.write(reinterpret_cast<const char*>(&chainWork), 32);
|
|
if (out.fail()) {
|
|
logFatal() << "Out of disk space";
|
|
return false;
|
|
}
|
|
out.close();
|
|
|
|
return true;
|
|
}
|
|
|
|
int Blockchain::height() const
|
|
{
|
|
return m_tip.height;
|
|
}
|
|
|
|
int Blockchain::expectedBlockHeight() const
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
const int ourHeight = static_cast<int>(m_longestChain.size()) - 1;
|
|
int secsSinceLastBlock = 0;
|
|
if (m_numStaticHeaders > ourHeight) {
|
|
const BlockHeader *bh = reinterpret_cast<const BlockHeader*>(m_staticChain + 80 * ourHeight);
|
|
secsSinceLastBlock = GetTime() - bh->nTime;
|
|
}
|
|
else {
|
|
secsSinceLastBlock = GetTime() - m_longestChain.back().nTime;
|
|
}
|
|
return m_tip.height + (secsSinceLastBlock + 300) / 600; // add how many 10 minutes chunks fit in the time-span.
|
|
}
|
|
|
|
bool Blockchain::isKnown(const uint256 &blockId) const
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
return m_blockHeight.find(blockId) != m_blockHeight.end();
|
|
}
|
|
|
|
int Blockchain::blockHeightFor(const uint256 &blockId) const
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
auto iter = m_blockHeight.find(blockId);
|
|
if (iter == m_blockHeight.end())
|
|
return -1;
|
|
if (int(m_longestChain.size()) <= iter->second)
|
|
return -1;
|
|
return iter->second;
|
|
}
|
|
|
|
int Blockchain::blockHeightAtTime(uint32_t timestamp) const
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
int l = 1;
|
|
int r = m_longestChain.size() - 1;
|
|
while (l <= r) {
|
|
int m = (l + r) / 2;
|
|
uint32_t val;
|
|
if (m_numStaticHeaders > m) {
|
|
const BlockHeader *bh = reinterpret_cast<const BlockHeader*>(m_staticChain + 80 * m);
|
|
val = bh->nTime;
|
|
} else {
|
|
val = m_longestChain.at(m).nTime;
|
|
}
|
|
if (val < timestamp)
|
|
l = m + 1;
|
|
else if (val == timestamp)
|
|
return m;
|
|
else
|
|
r = m - 1;
|
|
}
|
|
|
|
return l;
|
|
}
|
|
|
|
BlockHeader Blockchain::block(int height) const
|
|
{
|
|
assert(height >= 0);
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
if (int(m_longestChain.size()) <= height)
|
|
return BlockHeader();
|
|
if (m_numStaticHeaders > height) {
|
|
const BlockHeader *bh = reinterpret_cast<const BlockHeader*>(m_staticChain + 80 * height);
|
|
return *bh;
|
|
}
|
|
return m_longestChain.at(height);
|
|
}
|
|
|
|
void Blockchain::createMainchainGenesis()
|
|
{
|
|
if (!m_longestChain.empty())
|
|
return;
|
|
BlockHeader genesis;
|
|
genesis.nBits = 0x1d00ffff;
|
|
genesis.nTime = 1231006505;
|
|
genesis.nNonce = 2083236893;
|
|
genesis.nVersion = 1;
|
|
createGenericGenesis(genesis);
|
|
}
|
|
|
|
void Blockchain::loadMainchainCheckpoints()
|
|
{
|
|
checkpoints.insert(std::make_pair( 11111, uint256S("0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")));
|
|
checkpoints.insert(std::make_pair( 33333, uint256S("000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")));
|
|
checkpoints.insert(std::make_pair( 74000, uint256S("0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")));
|
|
checkpoints.insert(std::make_pair(105000, uint256S("00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")));
|
|
checkpoints.insert(std::make_pair(134444, uint256S("00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")));
|
|
checkpoints.insert(std::make_pair(168000, uint256S("000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763")));
|
|
checkpoints.insert(std::make_pair(193000, uint256S("000000000000059f452a5f7340de6682a977387c17010ff6e6c3bd83ca8b1317")));
|
|
checkpoints.insert(std::make_pair(210000, uint256S("000000000000048b95347e83192f69cf0366076336c639f9b7228e9ba171342e")));
|
|
checkpoints.insert(std::make_pair(216116, uint256S("00000000000001b4f4b433e81ee46494af945cf96014816a4e2370f11b23df4e")));
|
|
checkpoints.insert(std::make_pair(225430, uint256S("00000000000001c108384350f74090433e7fcf79a606b8e797f065b130575932")));
|
|
checkpoints.insert(std::make_pair(250000, uint256S("000000000000003887df1f29024b06fc2200b55f8af8f35453d7be294df2d214")));
|
|
checkpoints.insert(std::make_pair(279000, uint256S("0000000000000001ae8c72a0b0c301f67e3afca10e819efa9041e458e9bd7e40")));
|
|
checkpoints.insert(std::make_pair(295000, uint256S("00000000000000004d9b4ef50f0f9d686fd69db2e03af35a100370c64632a983")));
|
|
checkpoints.insert(std::make_pair(478559, uint256S("000000000000000000651ef99cb9fcbe0dadde1d424bd9f15ff20136191a5eec")));
|
|
checkpoints.insert(std::make_pair(556767, uint256S("0000000000000000004626ff6e3b936941d341c5932ece4357eeccac44e6d56c")));
|
|
checkpoints.insert(std::make_pair(582680, uint256S("000000000000000001b4b8e36aec7d4f9671a47872cb9a74dc16ca398c7dcc18")));
|
|
checkpoints.insert(std::make_pair(609136, uint256S("000000000000000000b48bb207faac5ac655c313e41ac909322eaa694f5bc5b1")));
|
|
checkpoints.insert(std::make_pair(635259, uint256S("00000000000000000033dfef1fc2d6a5d5520b078c55193a9bf498c5b27530f7")));
|
|
checkpoints.insert(std::make_pair(661648, uint256S("0000000000000000029e471c41818d24b8b74c911071c4ef0b4a0509f9b5a8ce")));
|
|
}
|
|
|
|
void Blockchain::createTestnet4Genesis()
|
|
{
|
|
if (!m_longestChain.empty())
|
|
return;
|
|
BlockHeader genesis;
|
|
genesis.nBits = 0x1d00ffff;
|
|
genesis.nTime = 1597811185;
|
|
genesis.nNonce = 114152193;
|
|
genesis.nVersion = 1;
|
|
createGenericGenesis(genesis);
|
|
}
|
|
|
|
void Blockchain::loadTestnet4Checkpoints()
|
|
{
|
|
checkpoints.insert(std::make_pair(5677, uint256S("0x0000000019df558b6686b1a1c3e7aee0535c38052651b711f84eebafc0cc4b5e")));
|
|
checkpoints.insert(std::make_pair(9999, uint256S("0x00000000016522b7506939b23734bca7681c42a53997f2943ab4c8013936b419")));
|
|
}
|
|
|
|
void Blockchain::loadStaticChain(const unsigned char *data, int64_t dataSize, std::ifstream &infoFile)
|
|
{
|
|
if (dataSize > 80 ) {
|
|
// check if genesis is the same
|
|
assert(m_longestChain.size() >= 1); // has a genesis
|
|
const BlockHeader *genesis = reinterpret_cast<const BlockHeader*>(data);
|
|
if (genesis->createHash() != m_longestChain.front().createHash()) {
|
|
logWarning() << "Ignoring static blockchain, not for this network (genesis does not match)";
|
|
return;
|
|
}
|
|
}
|
|
|
|
int numHeadersFound = 0;
|
|
uint256 blockhash;
|
|
for (int64_t pos = 0; pos + 80 <= dataSize; pos += 80) {
|
|
infoFile.read(reinterpret_cast<char*>(blockhash.begin()), 32);
|
|
if (infoFile.fail())
|
|
throw std::runtime_error("loadStaticChain: info file truncated");
|
|
if (pos) // genesis was inserted in the createGenesis method
|
|
m_blockHeight.insert(std::make_pair(blockhash, numHeadersFound));
|
|
++numHeadersFound;
|
|
}
|
|
if (numHeadersFound) {
|
|
m_staticChain = data;
|
|
m_numStaticHeaders = numHeadersFound;
|
|
m_longestChain.resize(numHeadersFound);
|
|
|
|
m_tip.tip = block(m_numStaticHeaders - 1).createHash();
|
|
m_tip.height = m_longestChain.size() - 1;
|
|
|
|
infoFile.read(reinterpret_cast<char*>(&m_tip.chainWork), 32);
|
|
if (infoFile.fail())
|
|
throw std::runtime_error("loadStaticChain: info file truncated");
|
|
}
|
|
}
|
|
|
|
void Blockchain::createGenericGenesis(BlockHeader genesis)
|
|
{
|
|
genesis.hashMerkleRoot = uint256S("4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b");
|
|
m_longestChain.push_back(genesis);
|
|
|
|
const uint256 genesisHash = genesis.createHash();
|
|
m_blockHeight.insert(std::make_pair(genesisHash, 0));
|
|
m_tip.tip = genesisHash;
|
|
m_tip.height = 0;
|
|
m_tip.chainWork += genesis.blockProof();
|
|
}
|
|
|
|
void Blockchain::load()
|
|
{
|
|
/*
|
|
* We check a series of files starting with 'blockchain' and load them in sequence.
|
|
* When there are more than 20 files we schedule a write to replace all of them with
|
|
* a single one. Since headers generate about 4MB per year, this should all be quite
|
|
* small due to the usage of the static file which comes from the install.
|
|
*
|
|
* The idea is that we cut down a lot on dupicate-saving while also minimizing the
|
|
* load of saving at shutdown.
|
|
* So, for saving we save at a timeout after we received a large number of headers,
|
|
* to a new file. At shutdown we only save the stuff we have not saved before, again
|
|
* to a new file.
|
|
*/
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
|
|
Streaming::BufferPool pool;
|
|
for (m_fileCount = 0; m_fileCount < 100; ++m_fileCount) {
|
|
std::string suffix;
|
|
if (m_fileCount > 0)
|
|
suffix = std::to_string(m_fileCount);
|
|
std::ifstream in((m_basedir / (std::string("blockchain") + suffix)).string());
|
|
if (!in.is_open()) {
|
|
if (m_fileCount > 60) {
|
|
// schedule task to compress all files
|
|
m_saveTimer.expires_from_now(boost::posix_time::seconds(45));
|
|
m_saveTimer.async_wait(std::bind(&Blockchain::compressSaveFiles, this,
|
|
std::placeholders::_1));
|
|
m_saveTimerStarted = true;
|
|
}
|
|
break;
|
|
}
|
|
|
|
logInfo() << "Starting to load the blockchain" << (suffix.empty() ? "" : "number:") << suffix;
|
|
int skipNumber = -1;
|
|
while (true) {
|
|
char headerData[80];
|
|
in.read(headerData, sizeof(headerData));
|
|
if (in.fail())
|
|
break;
|
|
|
|
const BlockHeader *hd = reinterpret_cast<const BlockHeader*>(headerData);
|
|
if (skipNumber == -1) {
|
|
const uint256 blockHash = hd->createHash();
|
|
// On finding the first block in the file, check how it relates to the existing blockheaders already
|
|
// known. Most importantly from the static data.
|
|
if (blockHash == m_longestChain.at(0).createHash()) {
|
|
// external file starts at genesis.
|
|
skipNumber = m_longestChain.size();
|
|
}
|
|
else {
|
|
auto former = m_blockHeight.find(hd->hashPrevBlock);
|
|
if (former == m_blockHeight.end()) {
|
|
logFatal() << "Blockchain ERROR: Loaded blocksdata do not match our chain" << blockHash;
|
|
// if you get here, one of the reasons might be that you used to, but no longer have, a static
|
|
// headers file.
|
|
// Either point to the same (or longer) headers file, or delete the blockheaders to re-download them.
|
|
abort();
|
|
}
|
|
skipNumber = m_longestChain.size() - former->second - 1;
|
|
}
|
|
}
|
|
if (skipNumber > 0) {
|
|
--skipNumber;
|
|
continue;
|
|
}
|
|
|
|
m_blockHeight.insert(std::make_pair(hd->createHash(), m_longestChain.size()));
|
|
m_tip.chainWork += hd->blockProof();
|
|
m_longestChain.push_back(*hd);
|
|
}
|
|
}
|
|
|
|
if (m_tip.height < int(m_longestChain.size()) - 1) {
|
|
m_tip.tip = m_longestChain.back().createHash();
|
|
m_tip.height = m_longestChain.size() - 1;
|
|
}
|
|
logCritical() << "Blockchain loading completed. Tip:" << m_tip.height << m_tip.tip;
|
|
m_lastSavedHeader = m_longestChain.size();
|
|
}
|
|
|
|
void Blockchain::save()
|
|
{
|
|
boost::system::error_code error;
|
|
boost::filesystem::create_directories(m_basedir, error);
|
|
if (error && !boost::filesystem::exists(m_basedir) && !boost::filesystem::is_directory(m_basedir)) {
|
|
logFatal() << "P2P.Blockchain can't save. Failed creating the dir:" << m_basedir.string();
|
|
return;
|
|
}
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
m_saveTimerStarted = false;
|
|
if (m_lastSavedHeader == static_cast<int>(m_longestChain.size())) // nothing to do
|
|
return;
|
|
|
|
std::string suffix;
|
|
if (m_fileCount > 0)
|
|
suffix = std::to_string(m_fileCount);
|
|
++m_fileCount;
|
|
std::ofstream out((m_basedir / (std::string("blockchain") + suffix)).string());
|
|
Streaming::BufferPool pool;
|
|
for (size_t i = m_lastSavedHeader; i < m_longestChain.size(); ++i) {
|
|
const auto &header = m_longestChain.at(i);
|
|
auto cd = header.write(pool);
|
|
assert(cd.size() == 80);
|
|
out.write(cd.begin(), cd.size());
|
|
}
|
|
m_lastSavedHeader = m_longestChain.size();
|
|
out.close();
|
|
}
|
|
|
|
void Blockchain::compressSaveFiles(const boost::system::error_code &error)
|
|
{
|
|
if (error) // operation aborted is the main one we expect here.
|
|
return;
|
|
std::unique_lock<std::mutex> lock(m_lock);
|
|
auto path = (m_basedir / "blockchain.part").string();
|
|
std::ofstream out(path);
|
|
Streaming::BufferPool pool;
|
|
for (size_t i = m_numStaticHeaders; i < m_longestChain.size(); ++i) {
|
|
const auto &header = m_longestChain.at(i);
|
|
auto cd = header.write(pool);
|
|
assert(cd.size() == 80);
|
|
out.write(cd.begin(), cd.size());
|
|
}
|
|
|
|
auto newPath(path);
|
|
newPath.resize(newPath.size() - 5);
|
|
if (rename(path.c_str(), newPath.c_str()) != 0) {
|
|
logFatal() << "Rename of blockchain part to blockchain failed";
|
|
return;
|
|
}
|
|
for (int i = 2; i < m_fileCount; ++i) {
|
|
path = newPath + std::to_string(i);
|
|
if (remove(path.c_str()) != 0) {
|
|
logFatal() << "Failed to remove blockchain file" << path;
|
|
}
|
|
}
|
|
|
|
m_lastSavedHeader = m_longestChain.size();
|
|
m_saveTimerStarted = false;
|
|
m_fileCount = 1;
|
|
}
|