mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
chainlocks: Use std::atomic<bool> for a number of bools previously guarded by cs (#4459)
Adjust cs usage accordingly
This commit is contained in:
parent
2e0c51648a
commit
24378a7a57
@ -212,7 +212,6 @@ void CChainLocksHandler::UpdatedBlockTip(const CBlockIndex* pindexNew)
|
||||
// don't call TrySignChainTip directly but instead let the scheduler call it. This way we ensure that cs_main is
|
||||
// never locked and TrySignChainTip is not called twice in parallel. Also avoids recursive calls due to
|
||||
// EnforceBestChainLock switching chains.
|
||||
LOCK(cs);
|
||||
if (tryLockChainTipScheduled) {
|
||||
return;
|
||||
}
|
||||
@ -221,7 +220,6 @@ void CChainLocksHandler::UpdatedBlockTip(const CBlockIndex* pindexNew)
|
||||
CheckActiveState();
|
||||
EnforceBestChainLock();
|
||||
TrySignChainTip();
|
||||
LOCK(cs);
|
||||
tryLockChainTipScheduled = false;
|
||||
}, 0);
|
||||
}
|
||||
@ -234,7 +232,6 @@ void CChainLocksHandler::CheckActiveState()
|
||||
fDIP0008Active = chainActive.Tip() && chainActive.Tip()->pprev && chainActive.Tip()->pprev->nHeight >= Params().GetConsensus().DIP0008Height;
|
||||
}
|
||||
|
||||
LOCK(cs);
|
||||
bool oldIsEnforced = isEnforced;
|
||||
isEnabled = AreChainLocksEnabled();
|
||||
isEnforced = (fDIP0008Active && isEnabled);
|
||||
@ -243,6 +240,7 @@ void CChainLocksHandler::CheckActiveState()
|
||||
// ChainLocks got activated just recently, but it's possible that it was already running before, leaving
|
||||
// us with some stale values which we should not try to enforce anymore (there probably was a good reason
|
||||
// to disable spork19)
|
||||
LOCK(cs);
|
||||
bestChainLockHash = uint256();
|
||||
bestChainLock = bestChainLockWithKnownBlock = CChainLockSig();
|
||||
bestChainLockBlockIndex = lastNotifyChainLockBlockIndex = nullptr;
|
||||
@ -261,6 +259,10 @@ void CChainLocksHandler::TrySignChainTip()
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isEnabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
const CBlockIndex* pindex;
|
||||
{
|
||||
LOCK(cs_main);
|
||||
@ -279,10 +281,6 @@ void CChainLocksHandler::TrySignChainTip()
|
||||
{
|
||||
LOCK(cs);
|
||||
|
||||
if (!isEnabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (pindex->nHeight == lastSignedHeight) {
|
||||
// already signed this one
|
||||
return;
|
||||
@ -471,13 +469,13 @@ bool CChainLocksHandler::IsTxSafeForMining(const uint256& txid) const
|
||||
if (!IsInstantSendEnabled()) {
|
||||
return true;
|
||||
}
|
||||
if (!isEnabled || !isEnforced) {
|
||||
return true;
|
||||
}
|
||||
|
||||
int64_t txAge = 0;
|
||||
{
|
||||
LOCK(cs);
|
||||
if (!isEnabled || !isEnforced) {
|
||||
return true;
|
||||
}
|
||||
auto it = txFirstSeenTime.find(txid);
|
||||
if (it != txFirstSeenTime.end()) {
|
||||
txAge = GetAdjustedTime() - it->second;
|
||||
@ -577,14 +575,14 @@ void CChainLocksHandler::EnforceBestChainLock()
|
||||
|
||||
void CChainLocksHandler::HandleNewRecoveredSig(const llmq::CRecoveredSig& recoveredSig)
|
||||
{
|
||||
CChainLockSig clsig;
|
||||
{
|
||||
LOCK(cs);
|
||||
|
||||
if (!isEnabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
CChainLockSig clsig;
|
||||
{
|
||||
LOCK(cs);
|
||||
|
||||
if (recoveredSig.id != lastSignedRequestId || recoveredSig.msgHash != lastSignedMsgHash) {
|
||||
// this is not what we signed, so lets not create a CLSIG for it
|
||||
return;
|
||||
|
@ -56,9 +56,9 @@ private:
|
||||
CScheduler* scheduler;
|
||||
boost::thread* scheduler_thread;
|
||||
mutable CCriticalSection cs;
|
||||
bool tryLockChainTipScheduled GUARDED_BY(cs) {false};
|
||||
bool isEnabled GUARDED_BY(cs) {false};
|
||||
bool isEnforced GUARDED_BY(cs) {false};
|
||||
std::atomic<bool> tryLockChainTipScheduled{false};
|
||||
std::atomic<bool> isEnabled{false};
|
||||
std::atomic<bool> isEnforced{false};
|
||||
|
||||
uint256 bestChainLockHash GUARDED_BY(cs);
|
||||
CChainLockSig bestChainLock GUARDED_BY(cs);
|
||||
|
Loading…
Reference in New Issue
Block a user