mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-07-03 03:12:30 +00:00

* Pruning headers p2p basic structure * Remove headers-first * Fix consensus tests except TestValidateAndInsertPruningPointWithSideBlocks and TestValidateAndInsertImportedPruningPoint * Add virtual genesis * Implement PruningPointAndItsAnticoneWithMetaData * Start fixing TestValidateAndInsertImportedPruningPoint * Fix TestValidateAndInsertImportedPruningPoint * Fix BlockWindow * Update p2p and gRPC * Fix all tests except TestHandleRelayInvs * Delete TestHandleRelayInvs parts that cover the old IBD flow * Fix lint errors * Add p2p_request_ibd_blocks.go * Clean code * Make MsgBlockWithMetaData implement its own representation * Remove redundant check if highest share block is below the pruning point * Fix TestCheckLockTimeVerifyConditionedByAbsoluteTimeWithWrongLockTime * Fix comments, errors ane names * Fix window size to the real value * Check reindex root after each block at TestUpdateReindexRoot * Remove irrelevant check * Renames and comments * Remove redundant argument from sendGetBlockLocator * Don't delete staging on non-recoverable errors * Renames and comments * Remove redundant code * Commit changes inside ResolveVirtual * Add comment to IsRecoverableError * Remove blocksWithMetaDataGHOSTDAGDataStore * Increase windows pagefile * Move DeleteStagingConsensus outside of defer * Get rid of mustAccepted in receiveBlockWithMetaData * Ban on invalid pruning point * Rename interface_datastructures_daawindowstore.go to interface_datastructures_blocks_with_meta_data_daa_window_store.go * * Change GetVirtualSelectedParentChainFromBlockResponseMessage and VirtualSelectedParentChainChangedNotificationMessage to show only added block hashes * Remove ResolveVirtual * Use externalapi.ConsensusWrapper inside MiningManager * Fix pruningmanager.blockwithmetadata * Set pruning point selected child when importing the pruning point UTXO set * Change virtual genesis hash * replace the selected parent with virtual genesis on removePrunedBlocksFromGHOSTDAGData * Get rid of low hash in block locators * Remove +1 from everywhere we use difficultyAdjustmentWindowSize and increase the default value by one * Add comments about consensus wrapper * Don't use separate staging area when resolving resolveBlockStatus * Fix netsync stability test * Fix checkResolveVirtual * Rename ConsensusWrapper->ConsensusReference * Get rid of blockHeapNode * Add comment to defaultDifficultyAdjustmentWindowSize * Add SelectedChild to DAGTraversalManager * Remove redundant copy * Rename blockWindowHeap->calculateBlockWindowHeap * Move isVirtualGenesisOnlyParent to utils * Change BlockWithMetaData->BlockWithTrustedData * Get rid of maxReasonLength * Split IBD to 100 blocks each time * Fix a bug in calculateBlockWindowHeap * Switch to trusted data when encountering virtual genesis in blockWithTrustedData * Move ConsensusReference to domain * Update ConsensusReference comment * Add comment * Rename shouldNotAddGenesis->skipAddingGenesis
167 lines
6.0 KiB
Go
167 lines
6.0 KiB
Go
package consensusstatemanager
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/utxo"
|
|
"github.com/kaspanet/kaspad/infrastructure/logger"
|
|
)
|
|
|
|
// AddBlock submits the given block to be added to the
|
|
// current virtual. This process may result in a new virtual block
|
|
// getting created
|
|
func (csm *consensusStateManager) AddBlock(stagingArea *model.StagingArea, blockHash *externalapi.DomainHash, updateVirtual bool) (
|
|
*externalapi.SelectedChainPath, externalapi.UTXODiff, *model.UTXODiffReversalData, error) {
|
|
|
|
onEnd := logger.LogAndMeasureExecutionTime(log, "csm.AddBlock")
|
|
defer onEnd()
|
|
|
|
var reversalData *model.UTXODiffReversalData
|
|
if updateVirtual {
|
|
log.Debugf("Resolving whether the block %s is the next virtual selected parent", blockHash)
|
|
isCandidateToBeNextVirtualSelectedParent, err := csm.isCandidateToBeNextVirtualSelectedParent(stagingArea, blockHash)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
|
|
if isCandidateToBeNextVirtualSelectedParent {
|
|
// It's important to check for finality violation before resolving the block status, because the status of
|
|
// blocks with a selected chain that doesn't contain the pruning point cannot be resolved because they will
|
|
// eventually try to fetch UTXO diffs from the past of the pruning point.
|
|
log.Debugf("Block %s is candidate to be the next virtual selected parent. Resolving whether it violates "+
|
|
"finality", blockHash)
|
|
isViolatingFinality, shouldNotify, err := csm.isViolatingFinality(stagingArea, blockHash)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
|
|
if shouldNotify {
|
|
//TODO: Send finality conflict notification
|
|
log.Warnf("Finality Violation Detected! Block %s violates finality!", blockHash)
|
|
}
|
|
|
|
if !isViolatingFinality {
|
|
log.Debugf("Block %s doesn't violate finality. Resolving its block status", blockHash)
|
|
var blockStatus externalapi.BlockStatus
|
|
blockStatus, reversalData, err = csm.resolveBlockStatus(stagingArea, blockHash, true)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
|
|
log.Debugf("Block %s resolved to status `%s`", blockHash, blockStatus)
|
|
}
|
|
} else {
|
|
log.Debugf("Block %s is not the next virtual selected parent, "+
|
|
"therefore its status remains `%s`", blockHash, externalapi.StatusUTXOPendingVerification)
|
|
}
|
|
}
|
|
|
|
log.Debugf("Adding block %s to the DAG tips", blockHash)
|
|
newTips, err := csm.addTip(stagingArea, blockHash)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
log.Debugf("After adding %s, the amount of new tips are %d", blockHash, len(newTips))
|
|
|
|
if !updateVirtual {
|
|
return &externalapi.SelectedChainPath{}, utxo.NewUTXODiff(), nil, nil
|
|
}
|
|
|
|
log.Debugf("Updating the virtual with the new tips")
|
|
selectedParentChainChanges, virtualUTXODiff, err := csm.updateVirtual(stagingArea, blockHash, newTips)
|
|
if err != nil {
|
|
return nil, nil, nil, err
|
|
}
|
|
|
|
return selectedParentChainChanges, virtualUTXODiff, reversalData, nil
|
|
}
|
|
|
|
func (csm *consensusStateManager) isCandidateToBeNextVirtualSelectedParent(
|
|
stagingArea *model.StagingArea, blockHash *externalapi.DomainHash) (bool, error) {
|
|
|
|
log.Debugf("isCandidateToBeNextVirtualSelectedParent start for block %s", blockHash)
|
|
defer log.Debugf("isCandidateToBeNextVirtualSelectedParent end for block %s", blockHash)
|
|
|
|
if blockHash.Equal(csm.genesisHash) {
|
|
log.Debugf("Block %s is the genesis block, therefore it is "+
|
|
"the selected parent by definition", blockHash)
|
|
return true, nil
|
|
}
|
|
|
|
virtualGhostdagData, err := csm.ghostdagDataStore.Get(csm.databaseContext, stagingArea, model.VirtualBlockHash, false)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
log.Debugf("Selecting the next selected parent between "+
|
|
"the block %s the current selected parent %s", blockHash, virtualGhostdagData.SelectedParent())
|
|
nextVirtualSelectedParent, err := csm.ghostdagManager.ChooseSelectedParent(
|
|
stagingArea, virtualGhostdagData.SelectedParent(), blockHash)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
log.Debugf("The next selected parent is: %s", nextVirtualSelectedParent)
|
|
|
|
return blockHash.Equal(nextVirtualSelectedParent), nil
|
|
}
|
|
|
|
func (csm *consensusStateManager) addTip(stagingArea *model.StagingArea, newTipHash *externalapi.DomainHash) (newTips []*externalapi.DomainHash, err error) {
|
|
log.Debugf("addTip start for new tip %s", newTipHash)
|
|
defer log.Debugf("addTip end for new tip %s", newTipHash)
|
|
|
|
log.Debugf("Calculating the new tips for new tip %s", newTipHash)
|
|
newTips, err = csm.calculateNewTips(stagingArea, newTipHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
csm.consensusStateStore.StageTips(stagingArea, newTips)
|
|
log.Debugf("Staged the new tips, len: %d", len(newTips))
|
|
|
|
return newTips, nil
|
|
}
|
|
|
|
func (csm *consensusStateManager) calculateNewTips(
|
|
stagingArea *model.StagingArea, newTipHash *externalapi.DomainHash) ([]*externalapi.DomainHash, error) {
|
|
|
|
log.Debugf("calculateNewTips start for new tip %s", newTipHash)
|
|
defer log.Debugf("calculateNewTips end for new tip %s", newTipHash)
|
|
|
|
if newTipHash.Equal(csm.genesisHash) {
|
|
log.Debugf("The new tip is the genesis block, therefore it is the only tip by definition")
|
|
return []*externalapi.DomainHash{newTipHash}, nil
|
|
}
|
|
|
|
currentTips, err := csm.consensusStateStore.Tips(stagingArea, csm.databaseContext)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
log.Debugf("The number of tips is: %d", len(currentTips))
|
|
log.Tracef("The current tips are: %s", currentTips)
|
|
|
|
newTipParents, err := csm.dagTopologyManager.Parents(stagingArea, newTipHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
log.Debugf("The parents of the new tip are: %s", newTipParents)
|
|
|
|
newTips := []*externalapi.DomainHash{newTipHash}
|
|
|
|
for _, currentTip := range currentTips {
|
|
isCurrentTipInNewTipParents := false
|
|
for _, newTipParent := range newTipParents {
|
|
if currentTip.Equal(newTipParent) {
|
|
isCurrentTipInNewTipParents = true
|
|
break
|
|
}
|
|
}
|
|
if !isCurrentTipInNewTipParents {
|
|
newTips = append(newTips, currentTip)
|
|
}
|
|
}
|
|
log.Debugf("The new number of tips is: %d", len(newTips))
|
|
log.Tracef("The new tips are: %s", newTips)
|
|
|
|
return newTips, nil
|
|
}
|