2019-01-29 15:53:14 +01:00
|
|
|
// Copyright (c) 2018-2019 The Dash Core developers
|
2019-01-08 09:13:56 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef DASH_QUORUMS_H
|
|
|
|
#define DASH_QUORUMS_H
|
|
|
|
|
|
|
|
#include "evo/evodb.h"
|
|
|
|
#include "evo/deterministicmns.h"
|
2019-04-04 10:08:32 +02:00
|
|
|
#include "llmq/quorums_commitment.h"
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
#include "validationinterface.h"
|
|
|
|
#include "consensus/params.h"
|
2019-04-11 14:42:35 +02:00
|
|
|
#include "saltedhasher.h"
|
|
|
|
#include "unordered_lru_cache.h"
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
#include "bls/bls.h"
|
|
|
|
#include "bls/bls_worker.h"
|
|
|
|
|
|
|
|
namespace llmq
|
|
|
|
{
|
|
|
|
|
|
|
|
class CDKGSessionManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An object of this class represents a quorum which was mined on-chain (through a quorum commitment)
|
|
|
|
* It at least contains informations about the members and the quorum public key which is needed to verify recovered
|
|
|
|
* signatures from this quorum.
|
|
|
|
*
|
|
|
|
* In case the local node is a member of the same quorum and successfully participated in the DKG, the quorum object
|
|
|
|
* will also contain the secret key share and the quorum verification vector. The quorum vvec is then used to recover
|
|
|
|
* the public key shares of individual members, which are needed to verify signature shares of these members.
|
|
|
|
*/
|
|
|
|
class CQuorum
|
|
|
|
{
|
|
|
|
friend class CQuorumManager;
|
|
|
|
public:
|
|
|
|
const Consensus::LLMQParams& params;
|
2019-04-04 10:08:32 +02:00
|
|
|
CFinalCommitment qc;
|
2019-07-09 07:59:57 +02:00
|
|
|
const CBlockIndex* pindexQuorum;
|
2019-04-04 11:11:25 +02:00
|
|
|
uint256 minedBlockHash;
|
2019-01-08 09:13:56 +01:00
|
|
|
std::vector<CDeterministicMNCPtr> members;
|
|
|
|
|
|
|
|
// These are only valid when we either participated in the DKG or fully watched it
|
|
|
|
BLSVerificationVectorPtr quorumVvec;
|
|
|
|
CBLSSecretKey skShare;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Recovery of public key shares is very slow, so we start a background thread that pre-populates a cache so that
|
|
|
|
// the public key shares are ready when needed later
|
|
|
|
mutable CBLSWorkerCache blsCache;
|
|
|
|
std::atomic<bool> stopCachePopulatorThread;
|
|
|
|
std::thread cachePopulatorThread;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CQuorum(const Consensus::LLMQParams& _params, CBLSWorker& _blsWorker) : params(_params), blsCache(_blsWorker), stopCachePopulatorThread(false) {}
|
|
|
|
~CQuorum();
|
2019-07-09 07:59:57 +02:00
|
|
|
void Init(const CFinalCommitment& _qc, const CBlockIndex* _pindexQuorum, const uint256& _minedBlockHash, const std::vector<CDeterministicMNCPtr>& _members);
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
bool IsMember(const uint256& proTxHash) const;
|
|
|
|
bool IsValidMember(const uint256& proTxHash) const;
|
|
|
|
int GetMemberIndex(const uint256& proTxHash) const;
|
|
|
|
|
|
|
|
CBLSPublicKey GetPubKeyShare(size_t memberIdx) const;
|
|
|
|
CBLSSecretKey GetSkShare() const;
|
|
|
|
|
|
|
|
private:
|
2019-01-17 15:25:43 +01:00
|
|
|
void WriteContributions(CEvoDB& evoDb);
|
2019-01-08 09:13:56 +01:00
|
|
|
bool ReadContributions(CEvoDB& evoDb);
|
|
|
|
static void StartCachePopulatorThread(std::shared_ptr<CQuorum> _this);
|
|
|
|
};
|
|
|
|
typedef std::shared_ptr<CQuorum> CQuorumPtr;
|
|
|
|
typedef std::shared_ptr<const CQuorum> CQuorumCPtr;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The quorum manager maintains quorums which were mined on chain. When a quorum is requested from the manager,
|
|
|
|
* it will lookup the commitment (through CQuorumBlockProcessor) and build a CQuorum object from it.
|
|
|
|
*
|
|
|
|
* It is also responsible for initialization of the inter-quorum connections for new quorums.
|
|
|
|
*/
|
|
|
|
class CQuorumManager
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
CEvoDB& evoDb;
|
|
|
|
CBLSWorker& blsWorker;
|
|
|
|
CDKGSessionManager& dkgManager;
|
|
|
|
|
|
|
|
CCriticalSection quorumsCacheCs;
|
|
|
|
std::map<std::pair<Consensus::LLMQType, uint256>, CQuorumPtr> quorumsCache;
|
2019-04-11 14:42:35 +02:00
|
|
|
unordered_lru_cache<std::pair<Consensus::LLMQType, uint256>, std::vector<CQuorumCPtr>, StaticSaltedHasher, 32> scanQuorumsCache;
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
CQuorumManager(CEvoDB& _evoDb, CBLSWorker& _blsWorker, CDKGSessionManager& _dkgManager);
|
|
|
|
|
2019-04-30 14:48:21 +02:00
|
|
|
void UpdatedBlockTip(const CBlockIndex *pindexNew, bool fInitialDownload);
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
bool HasQuorum(Consensus::LLMQType llmqType, const uint256& quorumHash);
|
|
|
|
|
2019-02-15 15:11:35 +01:00
|
|
|
// all these methods will lock cs_main for a short period of time
|
|
|
|
CQuorumCPtr GetQuorum(Consensus::LLMQType llmqType, const uint256& quorumHash);
|
2019-01-08 09:13:56 +01:00
|
|
|
CQuorumCPtr GetNewestQuorum(Consensus::LLMQType llmqType);
|
|
|
|
std::vector<CQuorumCPtr> ScanQuorums(Consensus::LLMQType llmqType, size_t maxCount);
|
2019-02-15 15:11:35 +01:00
|
|
|
|
|
|
|
// this one is cs_main-free
|
|
|
|
std::vector<CQuorumCPtr> ScanQuorums(Consensus::LLMQType llmqType, const CBlockIndex* pindexStart, size_t maxCount);
|
2019-01-08 09:13:56 +01:00
|
|
|
|
|
|
|
private:
|
2019-02-15 15:11:35 +01:00
|
|
|
// all private methods here are cs_main-free
|
2019-01-08 09:13:56 +01:00
|
|
|
void EnsureQuorumConnections(Consensus::LLMQType llmqType, const CBlockIndex *pindexNew);
|
|
|
|
|
2019-04-04 11:11:25 +02:00
|
|
|
bool BuildQuorumFromCommitment(const CFinalCommitment& qc, const CBlockIndex* pindexQuorum, const uint256& minedBlockHash, std::shared_ptr<CQuorum>& quorum) const;
|
2019-01-08 09:13:56 +01:00
|
|
|
bool BuildQuorumContributions(const CFinalCommitment& fqc, std::shared_ptr<CQuorum>& quorum) const;
|
2019-02-15 15:11:35 +01:00
|
|
|
|
|
|
|
CQuorumCPtr GetQuorum(Consensus::LLMQType llmqType, const CBlockIndex* pindex);
|
2019-01-08 09:13:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CQuorumManager* quorumManager;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //DASH_QUORUMS_H
|