mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
129 lines
4.0 KiB
C++
129 lines
4.0 KiB
C++
// Copyright (c) 2019-2021 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_LLMQ_QUORUMS_CHAINLOCKS_H
|
|
#define BITCOIN_LLMQ_QUORUMS_CHAINLOCKS_H
|
|
|
|
//#include <llmq/quorums.h>
|
|
#include <llmq/quorums_signing.h>
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <atomic>
|
|
#include <unordered_set>
|
|
|
|
#include <boost/thread.hpp>
|
|
|
|
class CBlockIndex;
|
|
class CScheduler;
|
|
|
|
namespace llmq
|
|
{
|
|
|
|
extern const std::string CLSIG_REQUESTID_PREFIX;
|
|
|
|
class CChainLockSig
|
|
{
|
|
public:
|
|
int32_t nHeight{-1};
|
|
uint256 blockHash;
|
|
CBLSSignature sig;
|
|
|
|
public:
|
|
ADD_SERIALIZE_METHODS
|
|
|
|
template<typename Stream, typename Operation>
|
|
inline void SerializationOp(Stream& s, Operation ser_action)
|
|
{
|
|
READWRITE(nHeight);
|
|
READWRITE(blockHash);
|
|
READWRITE(sig);
|
|
}
|
|
|
|
bool IsNull() const;
|
|
std::string ToString() const;
|
|
};
|
|
|
|
class CChainLocksHandler : public CRecoveredSigsListener
|
|
{
|
|
static const int64_t CLEANUP_INTERVAL = 1000 * 30;
|
|
static const int64_t CLEANUP_SEEN_TIMEOUT = 24 * 60 * 60 * 1000;
|
|
|
|
// how long to wait for islocks until we consider a block with non-islocked TXs to be safe to sign
|
|
static const int64_t WAIT_FOR_ISLOCK_TIMEOUT = 10 * 60;
|
|
|
|
private:
|
|
CScheduler* scheduler;
|
|
boost::thread* scheduler_thread;
|
|
CCriticalSection cs;
|
|
bool tryLockChainTipScheduled GUARDED_BY(cs) {false};
|
|
bool isEnabled GUARDED_BY(cs) {false};
|
|
bool isEnforced GUARDED_BY(cs) {false};
|
|
|
|
uint256 bestChainLockHash GUARDED_BY(cs);
|
|
CChainLockSig bestChainLock GUARDED_BY(cs);
|
|
|
|
CChainLockSig bestChainLockWithKnownBlock GUARDED_BY(cs);
|
|
const CBlockIndex* bestChainLockBlockIndex GUARDED_BY(cs) {nullptr};
|
|
const CBlockIndex* lastNotifyChainLockBlockIndex GUARDED_BY(cs) {nullptr};
|
|
|
|
int32_t lastSignedHeight GUARDED_BY(cs) {-1};
|
|
uint256 lastSignedRequestId GUARDED_BY(cs);
|
|
uint256 lastSignedMsgHash GUARDED_BY(cs);
|
|
|
|
// We keep track of txids from recently received blocks so that we can check if all TXs got islocked
|
|
typedef std::unordered_map<uint256, std::shared_ptr<std::unordered_set<uint256, StaticSaltedHasher>>> BlockTxs;
|
|
BlockTxs blockTxs GUARDED_BY(cs);
|
|
std::unordered_map<uint256, int64_t> txFirstSeenTime GUARDED_BY(cs);
|
|
|
|
std::map<uint256, int64_t> seenChainLocks GUARDED_BY(cs);
|
|
|
|
int64_t lastCleanupTime GUARDED_BY(cs) {0};
|
|
|
|
public:
|
|
explicit CChainLocksHandler();
|
|
~CChainLocksHandler();
|
|
|
|
void Start();
|
|
void Stop();
|
|
|
|
bool AlreadyHave(const CInv& inv);
|
|
bool GetChainLockByHash(const uint256& hash, CChainLockSig& ret);
|
|
CChainLockSig GetBestChainLock();
|
|
|
|
void ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStream& vRecv);
|
|
void ProcessNewChainLock(NodeId from, const CChainLockSig& clsig, const uint256& hash);
|
|
void AcceptedBlockHeader(const CBlockIndex* pindexNew);
|
|
void UpdatedBlockTip(const CBlockIndex* pindexNew);
|
|
void TransactionAddedToMempool(const CTransactionRef& tx, int64_t nAcceptTime);
|
|
void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindex, const std::vector<CTransactionRef>& vtxConflicted);
|
|
void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected);
|
|
void CheckActiveState();
|
|
void TrySignChainTip();
|
|
void EnforceBestChainLock();
|
|
virtual void HandleNewRecoveredSig(const CRecoveredSig& recoveredSig);
|
|
|
|
bool HasChainLock(int nHeight, const uint256& blockHash);
|
|
bool HasConflictingChainLock(int nHeight, const uint256& blockHash);
|
|
|
|
bool IsTxSafeForMining(const uint256& txid);
|
|
|
|
private:
|
|
// these require locks to be held already
|
|
bool InternalHasChainLock(int nHeight, const uint256& blockHash);
|
|
bool InternalHasConflictingChainLock(int nHeight, const uint256& blockHash);
|
|
|
|
BlockTxs::mapped_type GetBlockTxs(const uint256& blockHash);
|
|
|
|
void Cleanup();
|
|
};
|
|
|
|
extern CChainLocksHandler* chainLocksHandler;
|
|
|
|
bool AreChainLocksEnabled();
|
|
|
|
} // namespace llmq
|
|
|
|
#endif // BITCOIN_LLMQ_QUORUMS_CHAINLOCKS_H
|