mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-02 12:16:43 +00:00

* Revert "[NOD-1500] Delete integration tests" This reverts commit fcb57a206690a884fa6afb69d5d493282954a8bf. * [NOD-1518] hashserialization -> consenusserialization * [NOD-1518] Fix add genesis to virtual * [NOD-1518] Fix a bug in SerializeCoinbasePayload. * [NOD-1518] Fix a loop error and make pastMedianTime behave correctly everywhere on genesis. * [NOD-1518] Fix another bug and an infinite loop. * [NOD-1518] Fix uninitialized slice. * [NOD-1518] Fix bad should-commit checks and another infinite loop. * [NOD-1518] Fix nil serialization. * [NOD-1518] Rename blockHash to currentBlockHash. * [NOD-1518] Move the check whether stagedVirtualUTXOSet != nil to the top of commitVirtualUTXODiff. * [NOD-1518] Simplify utxoDiffStore.Commit. * [NOD-1518] Unextract resolveBlockStatusAndCheckFinality. * [NOD-1518] Move no-transactions logic into CalculateIDMerkleRoot. * [NOD-1518] Remove redundant is-staged check. * [NOD-1518] Fix merge errors. * [NOD-1518] Don't write anything if utxoDiffChild is nil. * [NOD-1518] Stage virtualAcceptanceData and virtualMultiset. * [NOD-1518] Fix bugs in getBlockTemplate and submitBlock. * [NOD-1518] Fix bad validation order in validateHeaderInContext. * [NOD-1518] Fix bug in Next(). * [NOD-1518] Fix nil dereference of subnetworks in AddressCache. * [NOD-1518] Fix multisetStore.Get returning a pointer to a multiset that is changed in place. * [NOD-1518] Break on genesis in countSubtrees. * [NOD-1518] Fix createBlockLocator. * [NOD-1518] Fix MsgTxToDomainTransaction. * [NOD-1518] Set MaxTxVersion to 1. * [NOD-1518] Fix missing error handling, bug in MsgTxToDomainTransaction, and bad subnetwork equality check. * [NOD-1518] Fix bug in hasUTXOByOutpointFromStagedVirtualUTXODiff. * [NOD-1518] Remove irrelevant comments. * [NOD-1518] Generate transactions with sufficient fee in tx_relay_test. * [NOD-1518] Fix broken RPC handlers. * [NOD-1518] Fix merge errors. * [NOD-1518] Fix bad exists check in restorePastUTXO and missing genesis check in CalculatePastUTXOAndAcceptanceData. * [NOD-1518] Add a comment. * [NOD-1518] Use a regular mutex instead of a read-write mutex in consensus to avoid dealing with sneaky not-actually-read functions. * [NOD-1518] Fix a deadlock in GetVirtualSelectedParent. * [NOD-1518] Fix missing handler registration for CmdHeader. * [NOD-1518] Fix processHeader calling OnNewBlock and LogBlock. Also fix conversion errors in IBDRootUTXOSetAndBlock. * [NOD-1518] Fix bad Command() in MsgIBDRootUTXOSetAndBlock. * [NOD-1518] Fix bad SyncStateMissingUTXOSet logic in resolveSyncState. * [NOD-1518] Rename mode to syncState. * [NOD-1518] Fix headers-only blocks coming in after the consensus thinks it's synced. * [NOD-1518] Fix selectedChildIterator.Next not ignoring virtual, infinite loop in HashSet.Length(). * [NOD-1518] Fix not-properly wrapped IBD blocks. * [NOD-1518] Fix bad conversion in RequestIBDBlocks. * [NOD-1518] Fix bad string for CmdRequestHeaders. * [NOD-1518] Fix bad string for CmdDoneHeaders. * [NOD-1518] Fix bad Command() for MsgIBDRootNotFound. * [NOD-1518] Fix bad areHeaderTipsSyncedMaxTimeDifference value. * [NOD-1518] Add missing string for CmdRequestIBDBlocks. * [NOD-1518] Fix bad check for SyncStateMissingBlockBodies. * [NOD-1518] Fix bad timeout durations in tests. * [NOD-1518] Fix IBD blocks not calling OnNewBlock. * [NOD-1518] Change when IBD finishes. * [NOD-1518] Properly clone utxoDiffChild. * [NOD-1518] Fix merge errors. * [NOD-1518] Move call to LogBlock to into OnNewBlock. * [NOD-1518] Return "not implemented" in unimplemented RPC handlers. * [NOD-1518] Extract cloning of hashes to a method over DomainHash. * [NOD-1518] Use isHeaderOnlyBlock. * [NOD-1518] Use constants.TransactionVersion. * [NOD-1518] Break immediately if we reached the virtual in SelectedChildIterator. * [NOD-1518] Don't stage nil utxoDiffChild. * [NOD-1518] Properly check the genesis hash in CalculatePastUTXOAndAcceptanceData. * [NOD-1518] Explain why we break on current == nil in countSubtrees. * [NOD-1518] Add a comment explaining why we check against StatusValid in resolveSyncState. Co-authored-by: Mike Zak <feanorr@gmail.com> Co-authored-by: Ori Newman <orinewman1@gmail.com>
209 lines
6.3 KiB
Go
209 lines
6.3 KiB
Go
package consensus
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/ruleerrors"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type consensus struct {
|
|
lock *sync.Mutex
|
|
databaseContext model.DBReader
|
|
|
|
blockProcessor model.BlockProcessor
|
|
blockBuilder model.BlockBuilder
|
|
consensusStateManager model.ConsensusStateManager
|
|
transactionValidator model.TransactionValidator
|
|
syncManager model.SyncManager
|
|
pastMedianTimeManager model.PastMedianTimeManager
|
|
blockValidator model.BlockValidator
|
|
coinbaseManager model.CoinbaseManager
|
|
dagTopologyManager model.DAGTopologyManager
|
|
dagTraversalManager model.DAGTraversalManager
|
|
difficultyManager model.DifficultyManager
|
|
ghostdagManager model.GHOSTDAGManager
|
|
headerTipsManager model.HeaderTipsManager
|
|
mergeDepthManager model.MergeDepthManager
|
|
pruningManager model.PruningManager
|
|
reachabilityManager model.ReachabilityManager
|
|
|
|
blockStore model.BlockStore
|
|
blockHeaderStore model.BlockHeaderStore
|
|
pruningStore model.PruningStore
|
|
ghostdagDataStore model.GHOSTDAGDataStore
|
|
blockRelationStore model.BlockRelationStore
|
|
blockStatusStore model.BlockStatusStore
|
|
consensusStateStore model.ConsensusStateStore
|
|
headerTipsStore model.HeaderTipsStore
|
|
multisetStore model.MultisetStore
|
|
reachabilityDataStore model.ReachabilityDataStore
|
|
utxoDiffStore model.UTXODiffStore
|
|
}
|
|
|
|
// BuildBlock builds a block over the current state, with the transactions
|
|
// selected by the given transactionSelector
|
|
func (s *consensus) BuildBlock(coinbaseData *externalapi.DomainCoinbaseData,
|
|
transactions []*externalapi.DomainTransaction) (*externalapi.DomainBlock, error) {
|
|
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.blockBuilder.BuildBlock(coinbaseData, transactions)
|
|
}
|
|
|
|
// ValidateAndInsertBlock validates the given block and, if valid, applies it
|
|
// to the current state
|
|
func (s *consensus) ValidateAndInsertBlock(block *externalapi.DomainBlock) error {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.blockProcessor.ValidateAndInsertBlock(block)
|
|
}
|
|
|
|
// ValidateTransactionAndPopulateWithConsensusData validates the given transaction
|
|
// and populates it with any missing consensus data
|
|
func (s *consensus) ValidateTransactionAndPopulateWithConsensusData(transaction *externalapi.DomainTransaction) error {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
err := s.transactionValidator.ValidateTransactionInIsolation(transaction)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = s.consensusStateManager.PopulateTransactionWithUTXOEntries(transaction)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
virtualSelectedParentMedianTime, err := s.pastMedianTimeManager.PastMedianTime(model.VirtualBlockHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.transactionValidator.ValidateTransactionInContextAndPopulateMassAndFee(transaction,
|
|
model.VirtualBlockHash, virtualSelectedParentMedianTime)
|
|
}
|
|
|
|
func (s *consensus) GetBlock(blockHash *externalapi.DomainHash) (*externalapi.DomainBlock, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.blockStore.Block(s.databaseContext, blockHash)
|
|
}
|
|
|
|
func (s *consensus) GetBlockHeader(blockHash *externalapi.DomainHash) (*externalapi.DomainBlockHeader, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.blockHeaderStore.BlockHeader(s.databaseContext, blockHash)
|
|
}
|
|
|
|
func (s *consensus) GetBlockInfo(blockHash *externalapi.DomainHash) (*externalapi.BlockInfo, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
blockInfo := &externalapi.BlockInfo{}
|
|
|
|
exists, err := s.blockStatusStore.Exists(s.databaseContext, blockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
blockInfo.Exists = exists
|
|
if !exists {
|
|
return blockInfo, nil
|
|
}
|
|
|
|
blockStatus, err := s.blockStatusStore.Get(s.databaseContext, blockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
blockInfo.BlockStatus = blockStatus
|
|
|
|
isBlockInHeaderPruningPointFuture, err := s.syncManager.IsBlockInHeaderPruningPointFuture(blockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
blockInfo.IsBlockInHeaderPruningPointFuture = isBlockInHeaderPruningPointFuture
|
|
|
|
return blockInfo, nil
|
|
}
|
|
|
|
func (s *consensus) GetHashesBetween(lowHash, highHash *externalapi.DomainHash) ([]*externalapi.DomainHash, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.syncManager.GetHashesBetween(lowHash, highHash)
|
|
}
|
|
|
|
func (s *consensus) GetMissingBlockBodyHashes(highHash *externalapi.DomainHash) ([]*externalapi.DomainHash, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.syncManager.GetMissingBlockBodyHashes(highHash)
|
|
}
|
|
|
|
func (s *consensus) GetPruningPointUTXOSet(expectedPruningPointHash *externalapi.DomainHash) ([]byte, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
pruningPointHash, err := s.pruningStore.PruningPoint(s.databaseContext)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if *expectedPruningPointHash != *pruningPointHash {
|
|
return nil, errors.Wrapf(ruleerrors.ErrWrongPruningPointHash, "expected pruning point %s but got %s",
|
|
expectedPruningPointHash,
|
|
pruningPointHash)
|
|
}
|
|
|
|
serializedUTXOSet, err := s.pruningStore.PruningPointSerializedUTXOSet(s.databaseContext)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return serializedUTXOSet, nil
|
|
}
|
|
|
|
func (s *consensus) SetPruningPointUTXOSet(serializedUTXOSet []byte) error {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.consensusStateManager.SetPruningPointUTXOSet(serializedUTXOSet)
|
|
}
|
|
|
|
func (s *consensus) GetVirtualSelectedParent() (*externalapi.DomainBlock, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
virtualGHOSTDAGData, err := s.ghostdagDataStore.Get(s.databaseContext, model.VirtualBlockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return s.blockStore.Block(s.databaseContext, virtualGHOSTDAGData.SelectedParent)
|
|
}
|
|
|
|
func (s *consensus) CreateBlockLocator(lowHash, highHash *externalapi.DomainHash) (externalapi.BlockLocator, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.syncManager.CreateBlockLocator(lowHash, highHash)
|
|
}
|
|
|
|
func (s *consensus) FindNextBlockLocatorBoundaries(blockLocator externalapi.BlockLocator) (lowHash, highHash *externalapi.DomainHash, err error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.syncManager.FindNextBlockLocatorBoundaries(blockLocator)
|
|
}
|
|
|
|
func (s *consensus) GetSyncInfo() (*externalapi.SyncInfo, error) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
return s.syncManager.GetSyncInfo()
|
|
}
|