mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-23 15:26:42 +00:00

* Add a new message: BlockLocatorHighestHash. * Add a new message: IBDBlockLocator. * Implement HandleIBDBlockLocator. * Reimplement findHighestSharedBlockHash. * Make HandleIBDBlockLocator only return hashes that are in the selected parent chain of the target hash. * Increase the cache sizes of blockRelationStore, reachabilityDataStore, and ghostdagDataStore. * Fix wrong initial highHash in findHighestSharedBlockHash. * Make go vet happy. * Protect against receiving wrong messages when expecting MsgIBDBlockLocatorHighestHash.
376 lines
12 KiB
Go
376 lines
12 KiB
Go
package blockrelay
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/app/appmessage"
|
|
"github.com/kaspanet/kaspad/app/protocol/common"
|
|
"github.com/kaspanet/kaspad/app/protocol/protocolerrors"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/ruleerrors"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/consensushashing"
|
|
"github.com/pkg/errors"
|
|
"time"
|
|
)
|
|
|
|
func (flow *handleRelayInvsFlow) runIBDIfNotRunning(highHash *externalapi.DomainHash) error {
|
|
wasIBDNotRunning := flow.TrySetIBDRunning()
|
|
if !wasIBDNotRunning {
|
|
log.Debugf("IBD is already running")
|
|
return nil
|
|
}
|
|
defer flow.UnsetIBDRunning()
|
|
|
|
log.Debugf("IBD started with peer %s and highHash %s", flow.peer, highHash)
|
|
|
|
// Fetch all the headers if we don't already have them
|
|
log.Debugf("Downloading headers up to %s", highHash)
|
|
err := flow.syncHeaders(highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf("Finished downloading headers up to %s", highHash)
|
|
|
|
// Fetch the UTXO set if we don't already have it
|
|
log.Debugf("Checking if there's a new pruning point under %s", highHash)
|
|
err = flow.outgoingRoute.Enqueue(appmessage.NewMsgRequestIBDRootHashMessage())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
message, err := flow.dequeueIncomingMessageAndSkipInvs(common.DefaultTimeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msgIBDRootHash, ok := message.(*appmessage.MsgIBDRootHashMessage)
|
|
if !ok {
|
|
return protocolerrors.Errorf(true, "received unexpected message type. "+
|
|
"expected: %s, got: %s", appmessage.CmdIBDRootHash, message.Command())
|
|
}
|
|
|
|
blockInfo, err := flow.Domain().Consensus().GetBlockInfo(msgIBDRootHash.Hash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if blockInfo.BlockStatus == externalapi.StatusHeaderOnly {
|
|
log.Infof("Checking if the suggested pruning point %s is compatible to the node DAG", msgIBDRootHash.Hash)
|
|
isValid, err := flow.Domain().Consensus().IsValidPruningPoint(msgIBDRootHash.Hash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !isValid {
|
|
log.Infof("The suggested pruning point %s is incompatible to this node DAG, so stopping IBD with this"+
|
|
" peer", msgIBDRootHash.Hash)
|
|
return nil
|
|
}
|
|
|
|
log.Info("Fetching the pruning point UTXO set")
|
|
succeed, err := flow.fetchMissingUTXOSet(msgIBDRootHash.Hash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !succeed {
|
|
log.Infof("Couldn't successfully fetch the pruning point UTXO set. Stopping IBD.")
|
|
return nil
|
|
}
|
|
|
|
log.Info("Fetched the new pruning point UTXO set")
|
|
} else {
|
|
log.Debugf("Already has the block data of the new suggested pruning point %s", msgIBDRootHash.Hash)
|
|
}
|
|
|
|
// Fetch the block bodies
|
|
log.Debugf("Downloading block bodies up to %s", highHash)
|
|
err = flow.syncMissingBlockBodies(highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf("Finished downloading block bodies up to %s", highHash)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) syncHeaders(highHash *externalapi.DomainHash) error {
|
|
highHashReceived := false
|
|
for !highHashReceived {
|
|
log.Debugf("Trying to find highest shared chain block with peer %s with high hash %s", flow.peer, highHash)
|
|
highestSharedBlockHash, err := flow.findHighestSharedBlockHash(highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf("Found highest shared chain block %s with peer %s", highestSharedBlockHash, flow.peer)
|
|
|
|
err = flow.downloadHeaders(highestSharedBlockHash, highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// We're finished once highHash has been inserted into the DAG
|
|
blockInfo, err := flow.Domain().Consensus().GetBlockInfo(highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
highHashReceived = blockInfo.Exists
|
|
log.Debugf("Headers downloaded from peer %s. Are further headers required: %t", flow.peer, !highHashReceived)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) findHighestSharedBlockHash(targetHash *externalapi.DomainHash) (*externalapi.DomainHash, error) {
|
|
lowHash := flow.Config().ActiveNetParams.GenesisHash
|
|
highHash, err := flow.Domain().Consensus().GetHeadersSelectedTip()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for !lowHash.Equal(highHash) {
|
|
log.Debugf("Sending a blockLocator to %s between %s and %s", flow.peer, lowHash, highHash)
|
|
blockLocator, err := flow.Domain().Consensus().CreateBlockLocator(lowHash, highHash, 0)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ibdBlockLocatorMessage := appmessage.NewMsgIBDBlockLocator(targetHash, blockLocator)
|
|
err = flow.outgoingRoute.Enqueue(ibdBlockLocatorMessage)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
message, err := flow.dequeueIncomingMessageAndSkipInvs(common.DefaultTimeout)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ibdBlockLocatorHighestHashMessage, ok := message.(*appmessage.MsgIBDBlockLocatorHighestHash)
|
|
if !ok {
|
|
return nil, protocolerrors.Errorf(true, "received unexpected message type. "+
|
|
"expected: %s, got: %s", appmessage.CmdIBDBlockLocatorHighestHash, message.Command())
|
|
}
|
|
highestHash := ibdBlockLocatorHighestHashMessage.HighestHash
|
|
log.Debugf("The highest hash the peer %s knows is %s", flow.peer, highestHash)
|
|
|
|
highestHashIndex := 0
|
|
highestHashIndexFound := false
|
|
for i, blockLocatorHash := range blockLocator {
|
|
if highestHash.Equal(blockLocatorHash) {
|
|
highestHashIndex = i
|
|
highestHashIndexFound = true
|
|
break
|
|
}
|
|
}
|
|
if !highestHashIndexFound {
|
|
return nil, protocolerrors.Errorf(true, "highest hash %s "+
|
|
"returned from peer %s is not in the original blockLocator", highestHash, flow.peer)
|
|
}
|
|
log.Debugf("The index of the highest hash in the original "+
|
|
"blockLocator sent to %s is %d", flow.peer, highestHashIndex)
|
|
|
|
locatorHashAboveHighestHash := highestHash
|
|
if highestHashIndex > 0 {
|
|
locatorHashAboveHighestHash = blockLocator[highestHashIndex-1]
|
|
}
|
|
highHash = locatorHashAboveHighestHash
|
|
lowHash = highestHash
|
|
}
|
|
return highHash, nil
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) downloadHeaders(highestSharedBlockHash *externalapi.DomainHash,
|
|
highHash *externalapi.DomainHash) error {
|
|
|
|
err := flow.sendRequestHeaders(highestSharedBlockHash, highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
blocksReceived := 0
|
|
for {
|
|
msgBlockHeader, doneIBD, err := flow.receiveHeader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if doneIBD {
|
|
return nil
|
|
}
|
|
|
|
err = flow.processHeader(msgBlockHeader)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
blocksReceived++
|
|
if blocksReceived%ibdBatchSize == 0 {
|
|
err = flow.outgoingRoute.Enqueue(appmessage.NewMsgRequestNextHeaders())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) sendRequestHeaders(highestSharedBlockHash *externalapi.DomainHash,
|
|
peerSelectedTipHash *externalapi.DomainHash) error {
|
|
|
|
msgGetBlockInvs := appmessage.NewMsgRequstHeaders(highestSharedBlockHash, peerSelectedTipHash)
|
|
return flow.outgoingRoute.Enqueue(msgGetBlockInvs)
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) receiveHeader() (msgIBDBlock *appmessage.MsgBlockHeader, doneIBD bool, err error) {
|
|
message, err := flow.dequeueIncomingMessageAndSkipInvs(common.DefaultTimeout)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
switch message := message.(type) {
|
|
case *appmessage.MsgBlockHeader:
|
|
return message, false, nil
|
|
case *appmessage.MsgDoneHeaders:
|
|
return nil, true, nil
|
|
default:
|
|
return nil, false,
|
|
protocolerrors.Errorf(true, "received unexpected message type. "+
|
|
"expected: %s or %s, got: %s", appmessage.CmdHeader, appmessage.CmdDoneHeaders, message.Command())
|
|
}
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) processHeader(msgBlockHeader *appmessage.MsgBlockHeader) error {
|
|
header := appmessage.BlockHeaderToDomainBlockHeader(msgBlockHeader)
|
|
block := &externalapi.DomainBlock{
|
|
Header: header,
|
|
Transactions: nil,
|
|
}
|
|
|
|
blockHash := consensushashing.BlockHash(block)
|
|
blockInfo, err := flow.Domain().Consensus().GetBlockInfo(blockHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if blockInfo.Exists {
|
|
log.Debugf("Block header %s is already in the DAG. Skipping...", blockHash)
|
|
return nil
|
|
}
|
|
_, err = flow.Domain().Consensus().ValidateAndInsertBlock(block)
|
|
if err != nil {
|
|
if !errors.As(err, &ruleerrors.RuleError{}) {
|
|
return errors.Wrapf(err, "failed to process header %s during IBD", blockHash)
|
|
}
|
|
log.Infof("Rejected block header %s from %s during IBD: %s", blockHash, flow.peer, err)
|
|
|
|
return protocolerrors.Wrapf(true, err, "got invalid block %s during IBD", blockHash)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) fetchMissingUTXOSet(ibdRootHash *externalapi.DomainHash) (succeed bool, err error) {
|
|
err = flow.outgoingRoute.Enqueue(appmessage.NewMsgRequestIBDRootUTXOSetAndBlock(ibdRootHash))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
utxoSet, block, found, err := flow.receiveIBDRootUTXOSetAndBlock()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if !found {
|
|
return false, nil
|
|
}
|
|
|
|
err = flow.Domain().Consensus().ValidateAndInsertPruningPoint(block, utxoSet)
|
|
if err != nil {
|
|
// TODO: Find a better way to deal with finality conflicts.
|
|
if errors.Is(err, ruleerrors.ErrSuggestedPruningViolatesFinality) {
|
|
return false, nil
|
|
}
|
|
return false, protocolerrors.ConvertToBanningProtocolErrorIfRuleError(err, "error with IBD root UTXO set")
|
|
}
|
|
|
|
return true, nil
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) receiveIBDRootUTXOSetAndBlock() ([]byte, *externalapi.DomainBlock, bool, error) {
|
|
message, err := flow.dequeueIncomingMessageAndSkipInvs(common.DefaultTimeout)
|
|
if err != nil {
|
|
return nil, nil, false, err
|
|
}
|
|
|
|
switch message := message.(type) {
|
|
case *appmessage.MsgIBDRootUTXOSetAndBlock:
|
|
return message.UTXOSet,
|
|
appmessage.MsgBlockToDomainBlock(message.Block), true, nil
|
|
case *appmessage.MsgIBDRootNotFound:
|
|
return nil, nil, false, nil
|
|
default:
|
|
return nil, nil, false,
|
|
protocolerrors.Errorf(true, "received unexpected message type. "+
|
|
"expected: %s or %s, got: %s",
|
|
appmessage.CmdIBDRootUTXOSetAndBlock, appmessage.CmdIBDRootNotFound, message.Command(),
|
|
)
|
|
}
|
|
}
|
|
|
|
func (flow *handleRelayInvsFlow) syncMissingBlockBodies(highHash *externalapi.DomainHash) error {
|
|
hashes, err := flow.Domain().Consensus().GetMissingBlockBodyHashes(highHash)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for offset := 0; offset < len(hashes); offset += ibdBatchSize {
|
|
var hashesToRequest []*externalapi.DomainHash
|
|
if offset+ibdBatchSize < len(hashes) {
|
|
hashesToRequest = hashes[offset : offset+ibdBatchSize]
|
|
} else {
|
|
hashesToRequest = hashes[offset:]
|
|
}
|
|
|
|
err := flow.outgoingRoute.Enqueue(appmessage.NewMsgRequestIBDBlocks(hashesToRequest))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, expectedHash := range hashesToRequest {
|
|
message, err := flow.dequeueIncomingMessageAndSkipInvs(common.DefaultTimeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
msgIBDBlock, ok := message.(*appmessage.MsgIBDBlock)
|
|
if !ok {
|
|
return protocolerrors.Errorf(true, "received unexpected message type. "+
|
|
"expected: %s, got: %s", appmessage.CmdIBDBlock, message.Command())
|
|
}
|
|
|
|
block := appmessage.MsgBlockToDomainBlock(msgIBDBlock.MsgBlock)
|
|
blockHash := consensushashing.BlockHash(block)
|
|
if !expectedHash.Equal(blockHash) {
|
|
return protocolerrors.Errorf(true, "expected block %s but got %s", expectedHash, blockHash)
|
|
}
|
|
|
|
blockInsertionResult, err := flow.Domain().Consensus().ValidateAndInsertBlock(block)
|
|
if err != nil {
|
|
return protocolerrors.ConvertToBanningProtocolErrorIfRuleError(err, "invalid block %s", blockHash)
|
|
}
|
|
err = flow.OnNewBlock(block, blockInsertionResult)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// dequeueIncomingMessageAndSkipInvs is a convenience method to be used during
|
|
// IBD. Inv messages are expected to arrive at any given moment, but should be
|
|
// ignored while we're in IBD
|
|
func (flow *handleRelayInvsFlow) dequeueIncomingMessageAndSkipInvs(timeout time.Duration) (appmessage.Message, error) {
|
|
for {
|
|
message, err := flow.incomingRoute.DequeueWithTimeout(timeout)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if _, ok := message.(*appmessage.MsgInvRelayBlock); !ok {
|
|
return message, nil
|
|
}
|
|
}
|
|
}
|