2019-01-29 15:53:14 +01:00
|
|
|
// Copyright (c) 2018-2019 The Dash Core developers
|
2018-11-23 15:42:09 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <llmq/quorums_blockprocessor.h>
|
|
|
|
#include <llmq/quorums_debug.h>
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <evo/specialtx.h>
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <chain.h>
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <consensus/validation.h>
|
|
|
|
#include <net.h>
|
|
|
|
#include <net_processing.h>
|
|
|
|
#include <primitives/block.h>
|
|
|
|
#include <validation.h>
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
namespace llmq
|
|
|
|
{
|
|
|
|
|
|
|
|
CQuorumBlockProcessor* quorumBlockProcessor;
|
|
|
|
|
|
|
|
static const std::string DB_MINED_COMMITMENT = "q_mc";
|
2019-04-02 12:51:13 +02:00
|
|
|
static const std::string DB_MINED_COMMITMENT_BY_INVERSED_HEIGHT = "q_mcih";
|
|
|
|
|
2019-04-05 13:39:29 +02:00
|
|
|
static const std::string DB_BEST_BLOCK_UPGRADE = "q_bbu2";
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2021-01-25 10:22:28 +01:00
|
|
|
CQuorumBlockProcessor::CQuorumBlockProcessor(CEvoDB &_evoDb) :
|
|
|
|
evoDb(_evoDb)
|
|
|
|
{
|
|
|
|
CLLMQUtils::InitQuorumsCache(mapHasMinedCommitmentCache);
|
|
|
|
}
|
|
|
|
|
2021-01-11 04:28:37 +01:00
|
|
|
void CQuorumBlockProcessor::ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
if (strCommand == NetMsgType::QFCOMMITMENT) {
|
|
|
|
CFinalCommitment qc;
|
|
|
|
vRecv >> qc;
|
|
|
|
|
2019-02-27 14:10:12 +01:00
|
|
|
auto hash = ::SerializeHash(qc);
|
|
|
|
{
|
|
|
|
LOCK(cs_main);
|
2020-04-07 13:25:29 +02:00
|
|
|
EraseObjectRequest(pfrom->GetId(), CInv(MSG_QUORUM_FINAL_COMMITMENT, hash));
|
2019-02-27 14:10:12 +01:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
if (qc.IsNull()) {
|
|
|
|
LOCK(cs_main);
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- null commitment from peer=%d\n", __func__, pfrom->GetId());
|
2017-05-07 09:59:42 +02:00
|
|
|
Misbehaving(pfrom->GetId(), 100);
|
2018-11-23 15:42:09 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Params().GetConsensus().llmqs.count((Consensus::LLMQType)qc.llmqType)) {
|
|
|
|
LOCK(cs_main);
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- invalid commitment type %d from peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.llmqType, pfrom->GetId());
|
|
|
|
Misbehaving(pfrom->GetId(), 100);
|
2018-11-23 15:42:09 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto type = (Consensus::LLMQType)qc.llmqType;
|
|
|
|
const auto& params = Params().GetConsensus().llmqs.at(type);
|
|
|
|
|
|
|
|
// Verify that quorumHash is part of the active chain and that it's the first block in the DKG interval
|
2019-07-09 07:59:57 +02:00
|
|
|
const CBlockIndex* pquorumIndex;
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
LOCK(cs_main);
|
2018-03-13 19:04:28 +01:00
|
|
|
pquorumIndex = LookupBlockIndex(qc.quorumHash);
|
|
|
|
if (!pquorumIndex) {
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- unknown block %s in commitment, peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.quorumHash.ToString(), pfrom->GetId());
|
2018-11-23 15:42:09 +01:00
|
|
|
// can't really punish the node here, as we might simply be the one that is on the wrong chain or not
|
|
|
|
// fully synced
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (chainActive.Tip()->GetAncestor(pquorumIndex->nHeight) != pquorumIndex) {
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- block %s not in active chain, peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.quorumHash.ToString(), pfrom->GetId());
|
2018-11-23 15:42:09 +01:00
|
|
|
// same, can't punish
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int quorumHeight = pquorumIndex->nHeight - (pquorumIndex->nHeight % params.dkgInterval);
|
|
|
|
if (quorumHeight != pquorumIndex->nHeight) {
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- block %s is not the first block in the DKG interval, peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.quorumHash.ToString(), pfrom->GetId());
|
|
|
|
Misbehaving(pfrom->GetId(), 100);
|
2018-11-23 15:42:09 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Check if we already got a better one locally
|
|
|
|
// We do this before verifying the commitment to avoid DoS
|
|
|
|
LOCK(minableCommitmentsCs);
|
|
|
|
auto k = std::make_pair(type, qc.quorumHash);
|
|
|
|
auto it = minableCommitmentsByQuorum.find(k);
|
|
|
|
if (it != minableCommitmentsByQuorum.end()) {
|
|
|
|
auto jt = minableCommitments.find(it->second);
|
|
|
|
if (jt != minableCommitments.end()) {
|
|
|
|
if (jt->second.CountSigners() <= qc.CountSigners()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 00:49:58 +01:00
|
|
|
if (!qc.Verify(pquorumIndex, true)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
LOCK(cs_main);
|
2020-01-28 11:04:47 +01:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- commitment for quorum %s:%d is not valid, peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.quorumHash.ToString(), qc.llmqType, pfrom->GetId());
|
|
|
|
Misbehaving(pfrom->GetId(), 100);
|
2018-11-23 15:42:09 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-22 23:51:39 +02:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- received commitment for quorum %s:%d, validMembers=%d, signers=%d, peer=%d\n", __func__,
|
2017-05-07 09:59:42 +02:00
|
|
|
qc.quorumHash.ToString(), qc.llmqType, qc.CountValidMembers(), qc.CountSigners(), pfrom->GetId());
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
AddMinableCommitment(qc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 04:01:26 +01:00
|
|
|
bool CQuorumBlockProcessor::ProcessBlock(const CBlock& block, const CBlockIndex* pindex, CValidationState& state, bool fJustCheck)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
2019-04-25 17:39:04 +02:00
|
|
|
bool fDIP0003Active = pindex->nHeight >= Params().GetConsensus().DIP0003Height;
|
2018-11-23 15:42:09 +01:00
|
|
|
if (!fDIP0003Active) {
|
2019-04-04 17:58:51 +02:00
|
|
|
evoDb.Write(DB_BEST_BLOCK_UPGRADE, block.GetHash());
|
2018-11-23 15:42:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<Consensus::LLMQType, CFinalCommitment> qcs;
|
2019-04-25 17:39:04 +02:00
|
|
|
if (!GetCommitmentsFromBlock(block, pindex, qcs, state)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following checks make sure that there is always a (possibly null) commitment while in the mining phase
|
|
|
|
// until the first non-null commitment has been mined. After the non-null commitment, no other commitments are
|
|
|
|
// allowed, including null commitments.
|
2020-12-10 00:08:05 +01:00
|
|
|
// Note: must only check quorums that were enabled at the _previous_ block height to match mining logic
|
|
|
|
for (const auto& type : CLLMQUtils::GetEnabledQuorumTypes(pindex->pprev)) {
|
2020-05-11 14:33:21 +02:00
|
|
|
// skip these checks when replaying blocks after the crash
|
|
|
|
if (!chainActive.Tip()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
// does the currently processed block contain a (possibly null) commitment for the current session?
|
|
|
|
bool hasCommitmentInNewBlock = qcs.count(type) != 0;
|
2018-12-13 09:04:08 +01:00
|
|
|
bool isCommitmentRequired = IsCommitmentRequired(type, pindex->nHeight);
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
if (hasCommitmentInNewBlock && !isCommitmentRequired) {
|
|
|
|
// If we're either not in the mining phase or a non-null commitment was mined already, reject the block
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-not-allowed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hasCommitmentInNewBlock && isCommitmentRequired) {
|
|
|
|
// If no non-null commitment was mined for the mining phase yet and the new block does not include
|
|
|
|
// a (possibly null) commitment, the block should be rejected.
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-missing");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 17:58:51 +02:00
|
|
|
auto blockHash = block.GetHash();
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
for (auto& p : qcs) {
|
|
|
|
auto& qc = p.second;
|
2021-02-04 04:01:26 +01:00
|
|
|
if (!ProcessCommitment(pindex->nHeight, blockHash, qc, state, fJustCheck)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2019-04-04 17:58:51 +02:00
|
|
|
|
|
|
|
evoDb.Write(DB_BEST_BLOCK_UPGRADE, blockHash);
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-02 12:51:13 +02:00
|
|
|
// We store a mapping from minedHeight->quorumHeight in the DB
|
|
|
|
// minedHeight is inversed so that entries are traversable in reversed order
|
2019-05-28 15:34:41 +02:00
|
|
|
static std::tuple<std::string, Consensus::LLMQType, uint32_t> BuildInversedHeightKey(Consensus::LLMQType llmqType, int nMinedHeight)
|
2019-04-02 12:51:13 +02:00
|
|
|
{
|
2019-04-05 13:39:29 +02:00
|
|
|
// nMinedHeight must be converted to big endian to make it comparable when serialized
|
2019-05-28 15:34:41 +02:00
|
|
|
return std::make_tuple(DB_MINED_COMMITMENT_BY_INVERSED_HEIGHT, llmqType, htobe32(std::numeric_limits<uint32_t>::max() - nMinedHeight));
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 04:01:26 +01:00
|
|
|
bool CQuorumBlockProcessor::ProcessCommitment(int nHeight, const uint256& blockHash, const CFinalCommitment& qc, CValidationState& state, bool fJustCheck)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
auto& params = Params().GetConsensus().llmqs.at((Consensus::LLMQType)qc.llmqType);
|
|
|
|
|
2019-04-04 11:36:49 +02:00
|
|
|
uint256 quorumHash = GetQuorumBlockHash((Consensus::LLMQType)qc.llmqType, nHeight);
|
2020-05-11 14:33:21 +02:00
|
|
|
|
|
|
|
// skip `bad-qc-block` checks below when replaying blocks after the crash
|
|
|
|
if (!chainActive.Tip()) {
|
|
|
|
quorumHash = qc.quorumHash;
|
|
|
|
}
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
if (quorumHash.IsNull()) {
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-block");
|
|
|
|
}
|
|
|
|
if (quorumHash != qc.quorumHash) {
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-block");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qc.IsNull()) {
|
2018-11-27 08:04:08 +01:00
|
|
|
if (!qc.VerifyNull()) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-invalid-null");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HasMinedCommitment(params.type, quorumHash)) {
|
|
|
|
// should not happen as it's already handled in ProcessBlock
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-dup");
|
|
|
|
}
|
|
|
|
|
2019-04-04 11:36:49 +02:00
|
|
|
if (!IsMiningPhase(params.type, nHeight)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
// should not happen as it's already handled in ProcessBlock
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-height");
|
|
|
|
}
|
|
|
|
|
2018-03-13 19:04:28 +01:00
|
|
|
auto quorumIndex = LookupBlockIndex(qc.quorumHash);
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2021-03-18 00:49:58 +01:00
|
|
|
if (!qc.Verify(quorumIndex, true)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-invalid");
|
|
|
|
}
|
|
|
|
|
2021-02-04 04:01:26 +01:00
|
|
|
if (fJustCheck) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
// Store commitment in DB
|
2021-01-25 10:22:28 +01:00
|
|
|
auto cacheKey = std::make_pair(params.type, quorumHash);
|
|
|
|
evoDb.Write(std::make_pair(DB_MINED_COMMITMENT, cacheKey), std::make_pair(qc, blockHash));
|
2019-04-04 11:36:49 +02:00
|
|
|
evoDb.Write(BuildInversedHeightKey(params.type, nHeight), quorumIndex->nHeight);
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2019-02-26 07:20:47 +01:00
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
2021-01-25 10:22:28 +01:00
|
|
|
mapHasMinedCommitmentCache[qc.llmqType].erase(qc.quorumHash);
|
|
|
|
minableCommitmentsByQuorum.erase(cacheKey);
|
|
|
|
minableCommitments.erase(::SerializeHash(qc));
|
2019-02-26 07:20:47 +01:00
|
|
|
}
|
|
|
|
|
2019-05-22 23:51:39 +02:00
|
|
|
LogPrint(BCLog::LLMQ, "CQuorumBlockProcessor::%s -- processed commitment from block. type=%d, quorumHash=%s, signers=%s, validMembers=%d, quorumPublicKey=%s\n", __func__,
|
2018-11-23 15:42:09 +01:00
|
|
|
qc.llmqType, quorumHash.ToString(), qc.CountSigners(), qc.CountValidMembers(), qc.quorumPublicKey.ToString());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CQuorumBlockProcessor::UndoBlock(const CBlock& block, const CBlockIndex* pindex)
|
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
|
|
|
std::map<Consensus::LLMQType, CFinalCommitment> qcs;
|
|
|
|
CValidationState dummy;
|
2019-04-25 17:39:04 +02:00
|
|
|
if (!GetCommitmentsFromBlock(block, pindex, qcs, dummy)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& p : qcs) {
|
|
|
|
auto& qc = p.second;
|
|
|
|
if (qc.IsNull()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
evoDb.Erase(std::make_pair(DB_MINED_COMMITMENT, std::make_pair(qc.llmqType, qc.quorumHash)));
|
2019-04-02 12:51:13 +02:00
|
|
|
evoDb.Erase(BuildInversedHeightKey((Consensus::LLMQType)qc.llmqType, pindex->nHeight));
|
2019-02-26 07:20:47 +01:00
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
2021-01-25 10:22:28 +01:00
|
|
|
mapHasMinedCommitmentCache[qc.llmqType].erase(qc.quorumHash);
|
2019-02-26 07:20:47 +01:00
|
|
|
}
|
2018-11-23 15:42:09 +01:00
|
|
|
|
2019-02-02 01:08:51 +01:00
|
|
|
// if a reorg happened, we should allow to mine this commitment later
|
|
|
|
AddMinableCommitment(qc);
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
2019-04-04 17:58:51 +02:00
|
|
|
evoDb.Write(DB_BEST_BLOCK_UPGRADE, pindex->pprev->GetBlockHash());
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-02 12:51:13 +02:00
|
|
|
// TODO remove this with 0.15.0
|
2020-09-25 18:19:58 +02:00
|
|
|
bool CQuorumBlockProcessor::UpgradeDB()
|
2019-04-02 12:51:13 +02:00
|
|
|
{
|
2019-04-04 17:58:51 +02:00
|
|
|
LOCK(cs_main);
|
2020-09-25 18:19:58 +02:00
|
|
|
|
|
|
|
if (chainActive.Tip() == nullptr) {
|
|
|
|
// should have no records
|
|
|
|
return evoDb.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2019-04-04 17:58:51 +02:00
|
|
|
uint256 bestBlock;
|
|
|
|
if (evoDb.GetRawDB().Read(DB_BEST_BLOCK_UPGRADE, bestBlock) && bestBlock == chainActive.Tip()->GetBlockHash()) {
|
2020-09-25 18:19:58 +02:00
|
|
|
return true;
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LogPrintf("CQuorumBlockProcessor::%s -- Upgrading DB...\n", __func__);
|
|
|
|
|
2019-04-04 17:58:51 +02:00
|
|
|
if (chainActive.Height() >= Params().GetConsensus().DIP0003EnforcementHeight) {
|
|
|
|
auto pindex = chainActive[Params().GetConsensus().DIP0003EnforcementHeight];
|
|
|
|
while (pindex) {
|
2019-06-08 13:16:41 +02:00
|
|
|
if (fPruneMode && !(pindex->nStatus & BLOCK_HAVE_DATA)) {
|
|
|
|
// Too late, we already pruned blocks we needed to reprocess commitments
|
2020-09-25 18:19:58 +02:00
|
|
|
return false;
|
2019-06-08 13:16:41 +02:00
|
|
|
}
|
2019-04-04 17:58:51 +02:00
|
|
|
CBlock block;
|
|
|
|
bool r = ReadBlockFromDisk(block, pindex, Params().GetConsensus());
|
|
|
|
assert(r);
|
|
|
|
|
|
|
|
std::map<Consensus::LLMQType, CFinalCommitment> qcs;
|
|
|
|
CValidationState dummyState;
|
2019-04-25 17:39:04 +02:00
|
|
|
GetCommitmentsFromBlock(block, pindex, qcs, dummyState);
|
2019-04-04 17:58:51 +02:00
|
|
|
|
|
|
|
for (const auto& p : qcs) {
|
|
|
|
const auto& qc = p.second;
|
|
|
|
if (qc.IsNull()) {
|
|
|
|
continue;
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
2018-03-13 19:04:28 +01:00
|
|
|
auto quorumIndex = LookupBlockIndex(qc.quorumHash);
|
2019-05-28 15:34:41 +02:00
|
|
|
evoDb.GetRawDB().Write(std::make_pair(DB_MINED_COMMITMENT, std::make_pair(qc.llmqType, qc.quorumHash)), std::make_pair(qc, pindex->GetBlockHash()));
|
2019-04-04 17:58:51 +02:00
|
|
|
evoDb.GetRawDB().Write(BuildInversedHeightKey((Consensus::LLMQType)qc.llmqType, pindex->nHeight), quorumIndex->nHeight);
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
2019-04-04 17:58:51 +02:00
|
|
|
|
|
|
|
evoDb.GetRawDB().Write(DB_BEST_BLOCK_UPGRADE, pindex->GetBlockHash());
|
|
|
|
|
|
|
|
pindex = chainActive.Next(pindex);
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LogPrintf("CQuorumBlockProcessor::%s -- Upgrade done...\n", __func__);
|
2020-09-25 18:19:58 +02:00
|
|
|
return true;
|
2019-04-02 12:51:13 +02:00
|
|
|
}
|
|
|
|
|
2019-04-25 17:39:04 +02:00
|
|
|
bool CQuorumBlockProcessor::GetCommitmentsFromBlock(const CBlock& block, const CBlockIndex* pindex, std::map<Consensus::LLMQType, CFinalCommitment>& ret, CValidationState& state)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
|
|
|
auto& consensus = Params().GetConsensus();
|
2019-04-25 17:39:04 +02:00
|
|
|
bool fDIP0003Active = pindex->nHeight >= consensus.DIP0003Height;
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
ret.clear();
|
|
|
|
|
|
|
|
for (const auto& tx : block.vtx) {
|
|
|
|
if (tx->nType == TRANSACTION_QUORUM_COMMITMENT) {
|
2018-11-27 08:04:08 +01:00
|
|
|
CFinalCommitmentTxPayload qc;
|
2018-11-23 15:42:09 +01:00
|
|
|
if (!GetTxPayload(*tx, qc)) {
|
2018-11-27 08:04:08 +01:00
|
|
|
// should not happen as it was verified before processing the block
|
2020-06-08 04:57:57 +02:00
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-payload");
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// only allow one commitment per type and per block
|
2018-11-27 08:04:08 +01:00
|
|
|
if (ret.count((Consensus::LLMQType)qc.commitment.llmqType)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-dup");
|
|
|
|
}
|
|
|
|
|
2018-11-27 08:04:08 +01:00
|
|
|
ret.emplace((Consensus::LLMQType)qc.commitment.llmqType, std::move(qc.commitment));
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fDIP0003Active && !ret.empty()) {
|
|
|
|
return state.DoS(100, false, REJECT_INVALID, "bad-qc-premature");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CQuorumBlockProcessor::IsMiningPhase(Consensus::LLMQType llmqType, int nHeight)
|
|
|
|
{
|
|
|
|
const auto& params = Params().GetConsensus().llmqs.at(llmqType);
|
|
|
|
int phaseIndex = nHeight % params.dkgInterval;
|
|
|
|
if (phaseIndex >= params.dkgMiningWindowStart && phaseIndex <= params.dkgMiningWindowEnd) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-13 09:04:08 +01:00
|
|
|
bool CQuorumBlockProcessor::IsCommitmentRequired(Consensus::LLMQType llmqType, int nHeight)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
2018-12-13 09:04:08 +01:00
|
|
|
uint256 quorumHash = GetQuorumBlockHash(llmqType, nHeight);
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
// perform extra check for quorumHash.IsNull as the quorum hash is unknown for the first block of a session
|
|
|
|
// this is because the currently processed block's hash will be the quorumHash of this session
|
2018-12-13 09:04:08 +01:00
|
|
|
bool isMiningPhase = !quorumHash.IsNull() && IsMiningPhase(llmqType, nHeight);
|
2018-11-23 15:42:09 +01:00
|
|
|
|
|
|
|
// did we already mine a non-null commitment for this session?
|
|
|
|
bool hasMinedCommitment = !quorumHash.IsNull() && HasMinedCommitment(llmqType, quorumHash);
|
|
|
|
|
2018-12-13 13:55:46 +01:00
|
|
|
return isMiningPhase && !hasMinedCommitment;
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// WARNING: This method returns uint256() on the first block of the DKG interval (because the block hash is not known yet)
|
2018-12-13 09:04:08 +01:00
|
|
|
uint256 CQuorumBlockProcessor::GetQuorumBlockHash(Consensus::LLMQType llmqType, int nHeight)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
2018-12-13 09:04:08 +01:00
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
auto& params = Params().GetConsensus().llmqs.at(llmqType);
|
|
|
|
|
|
|
|
int quorumStartHeight = nHeight - (nHeight % params.dkgInterval);
|
2018-12-13 09:04:08 +01:00
|
|
|
uint256 quorumBlockHash;
|
|
|
|
if (!GetBlockHash(quorumBlockHash, quorumStartHeight)) {
|
2020-08-09 23:35:02 +02:00
|
|
|
return {};
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
2018-12-13 09:04:08 +01:00
|
|
|
return quorumBlockHash;
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CQuorumBlockProcessor::HasMinedCommitment(Consensus::LLMQType llmqType, const uint256& quorumHash)
|
|
|
|
{
|
2021-01-25 10:22:28 +01:00
|
|
|
bool fExists;
|
2019-02-26 07:20:47 +01:00
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
2021-01-25 10:22:28 +01:00
|
|
|
if (mapHasMinedCommitmentCache[llmqType].get(quorumHash, fExists)) {
|
|
|
|
return fExists;
|
2019-02-26 07:20:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 10:22:28 +01:00
|
|
|
fExists = evoDb.Exists(std::make_pair(DB_MINED_COMMITMENT, std::make_pair(llmqType, quorumHash)));
|
2019-02-26 07:20:47 +01:00
|
|
|
|
|
|
|
LOCK(minableCommitmentsCs);
|
2021-01-25 10:22:28 +01:00
|
|
|
mapHasMinedCommitmentCache[llmqType].insert(quorumHash, fExists);
|
|
|
|
|
|
|
|
return fExists;
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
2019-04-04 11:11:25 +02:00
|
|
|
bool CQuorumBlockProcessor::GetMinedCommitment(Consensus::LLMQType llmqType, const uint256& quorumHash, CFinalCommitment& retQc, uint256& retMinedBlockHash)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
2019-05-28 15:34:41 +02:00
|
|
|
auto key = std::make_pair(DB_MINED_COMMITMENT, std::make_pair(llmqType, quorumHash));
|
2019-04-04 11:11:25 +02:00
|
|
|
std::pair<CFinalCommitment, uint256> p;
|
|
|
|
if (!evoDb.Read(key, p)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
retQc = std::move(p.first);
|
|
|
|
retMinedBlockHash = p.second;
|
|
|
|
return true;
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
|
2019-06-18 13:34:16 +02:00
|
|
|
// The returned quorums are in reversed order, so the most recent one is at index 0
|
2019-04-04 10:18:31 +02:00
|
|
|
std::vector<const CBlockIndex*> CQuorumBlockProcessor::GetMinedCommitmentsUntilBlock(Consensus::LLMQType llmqType, const CBlockIndex* pindex, size_t maxCount)
|
2019-02-02 01:08:51 +01:00
|
|
|
{
|
2020-03-27 15:11:42 +01:00
|
|
|
LOCK(evoDb.cs);
|
|
|
|
|
2019-04-04 10:18:31 +02:00
|
|
|
auto dbIt = evoDb.GetCurTransaction().NewIteratorUniquePtr();
|
|
|
|
|
|
|
|
auto firstKey = BuildInversedHeightKey(llmqType, pindex->nHeight);
|
|
|
|
auto lastKey = BuildInversedHeightKey(llmqType, 0);
|
|
|
|
|
|
|
|
dbIt->Seek(firstKey);
|
|
|
|
|
|
|
|
std::vector<const CBlockIndex*> ret;
|
|
|
|
ret.reserve(maxCount);
|
|
|
|
|
|
|
|
while (dbIt->Valid() && ret.size() < maxCount) {
|
|
|
|
decltype(firstKey) curKey;
|
|
|
|
int quorumHeight;
|
|
|
|
if (!dbIt->GetKey(curKey) || curKey >= lastKey) {
|
|
|
|
break;
|
|
|
|
}
|
2019-05-28 15:34:41 +02:00
|
|
|
if (std::get<0>(curKey) != DB_MINED_COMMITMENT_BY_INVERSED_HEIGHT || std::get<1>(curKey) != llmqType) {
|
2019-04-04 10:18:31 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-04-05 13:39:29 +02:00
|
|
|
uint32_t nMinedHeight = std::numeric_limits<uint32_t>::max() - be32toh(std::get<2>(curKey));
|
2019-04-04 10:18:31 +02:00
|
|
|
if (nMinedHeight > pindex->nHeight) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dbIt->GetValue(quorumHeight)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto quorumIndex = pindex->GetAncestor(quorumHeight);
|
|
|
|
assert(quorumIndex);
|
2019-04-30 14:48:21 +02:00
|
|
|
ret.emplace_back(quorumIndex);
|
2019-04-04 10:18:31 +02:00
|
|
|
|
|
|
|
dbIt->Next();
|
2019-02-02 01:08:51 +01:00
|
|
|
}
|
2019-04-04 10:18:31 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-06-18 13:34:16 +02:00
|
|
|
// The returned quorums are in reversed order, so the most recent one is at index 0
|
2019-04-04 10:18:31 +02:00
|
|
|
std::map<Consensus::LLMQType, std::vector<const CBlockIndex*>> CQuorumBlockProcessor::GetMinedAndActiveCommitmentsUntilBlock(const CBlockIndex* pindex)
|
|
|
|
{
|
|
|
|
std::map<Consensus::LLMQType, std::vector<const CBlockIndex*>> ret;
|
|
|
|
|
|
|
|
for (const auto& p : Params().GetConsensus().llmqs) {
|
|
|
|
auto& v = ret[p.second.type];
|
|
|
|
v.reserve(p.second.signingActiveQuorumCount);
|
|
|
|
auto commitments = GetMinedCommitmentsUntilBlock(p.second.type, pindex, p.second.signingActiveQuorumCount);
|
|
|
|
for (auto& c : commitments) {
|
|
|
|
v.emplace_back(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2019-02-02 01:08:51 +01:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
bool CQuorumBlockProcessor::HasMinableCommitment(const uint256& hash)
|
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
|
|
|
return minableCommitments.count(hash) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CQuorumBlockProcessor::AddMinableCommitment(const CFinalCommitment& fqc)
|
|
|
|
{
|
|
|
|
bool relay = false;
|
|
|
|
uint256 commitmentHash = ::SerializeHash(fqc);
|
|
|
|
|
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
|
|
|
|
|
|
|
auto k = std::make_pair((Consensus::LLMQType) fqc.llmqType, fqc.quorumHash);
|
|
|
|
auto ins = minableCommitmentsByQuorum.emplace(k, commitmentHash);
|
|
|
|
if (ins.second) {
|
|
|
|
minableCommitments.emplace(commitmentHash, fqc);
|
|
|
|
relay = true;
|
|
|
|
} else {
|
|
|
|
auto& oldFqc = minableCommitments.at(ins.first->second);
|
|
|
|
if (fqc.CountSigners() > oldFqc.CountSigners()) {
|
|
|
|
// new commitment has more signers, so override the known one
|
|
|
|
ins.first->second = commitmentHash;
|
|
|
|
minableCommitments.erase(ins.first->second);
|
|
|
|
minableCommitments.emplace(commitmentHash, fqc);
|
|
|
|
relay = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We only relay the new commitment if it's new or better then the old one
|
|
|
|
if (relay) {
|
|
|
|
CInv inv(MSG_QUORUM_FINAL_COMMITMENT, commitmentHash);
|
2020-08-14 13:42:15 +02:00
|
|
|
g_connman->RelayInv(inv);
|
2018-11-23 15:42:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CQuorumBlockProcessor::GetMinableCommitmentByHash(const uint256& commitmentHash, llmq::CFinalCommitment& ret)
|
|
|
|
{
|
|
|
|
LOCK(minableCommitmentsCs);
|
|
|
|
auto it = minableCommitments.find(commitmentHash);
|
|
|
|
if (it == minableCommitments.end()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ret = it->second;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Will return false if no commitment should be mined
|
|
|
|
// Will return true and a null commitment if no minable commitment is known and none was mined yet
|
2018-12-13 09:04:08 +01:00
|
|
|
bool CQuorumBlockProcessor::GetMinableCommitment(Consensus::LLMQType llmqType, int nHeight, CFinalCommitment& ret)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
2018-12-13 09:04:08 +01:00
|
|
|
if (!IsCommitmentRequired(llmqType, nHeight)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
// no commitment required
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-13 09:04:08 +01:00
|
|
|
uint256 quorumHash = GetQuorumBlockHash(llmqType, nHeight);
|
2018-11-23 15:42:09 +01:00
|
|
|
if (quorumHash.IsNull()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCK(minableCommitmentsCs);
|
|
|
|
|
|
|
|
auto k = std::make_pair(llmqType, quorumHash);
|
|
|
|
auto it = minableCommitmentsByQuorum.find(k);
|
|
|
|
if (it == minableCommitmentsByQuorum.end()) {
|
|
|
|
// null commitment required
|
|
|
|
ret = CFinalCommitment(Params().GetConsensus().llmqs.at(llmqType), quorumHash);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = minableCommitments.at(it->second);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-13 09:04:08 +01:00
|
|
|
bool CQuorumBlockProcessor::GetMinableCommitmentTx(Consensus::LLMQType llmqType, int nHeight, CTransactionRef& ret)
|
2018-11-23 15:42:09 +01:00
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
|
2018-11-27 08:04:08 +01:00
|
|
|
CFinalCommitmentTxPayload qc;
|
2018-12-13 09:04:08 +01:00
|
|
|
if (!GetMinableCommitment(llmqType, nHeight, qc.commitment)) {
|
2018-11-23 15:42:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-13 09:04:08 +01:00
|
|
|
qc.nHeight = nHeight;
|
2018-11-27 08:04:08 +01:00
|
|
|
|
2018-11-23 15:42:09 +01:00
|
|
|
CMutableTransaction tx;
|
|
|
|
tx.nVersion = 3;
|
|
|
|
tx.nType = TRANSACTION_QUORUM_COMMITMENT;
|
|
|
|
SetTxPayload(tx, qc);
|
|
|
|
|
|
|
|
ret = MakeTransactionRef(tx);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-15 20:55:01 +02:00
|
|
|
} // namespace llmq
|