mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
core, eth: add lock protection in snap sync
This commit is contained in:
parent
e20b05ec7f
commit
374be93068
4 changed files with 95 additions and 47 deletions
|
|
@ -951,7 +951,8 @@ func (bc *BlockChain) rewindPathHead(head *types.Header, root common.Hash) (*typ
|
||||||
// Recover if the target state if it's not available yet.
|
// Recover if the target state if it's not available yet.
|
||||||
if !bc.HasState(head.Root) {
|
if !bc.HasState(head.Root) {
|
||||||
if err := bc.triedb.Recover(head.Root); err != nil {
|
if err := bc.triedb.Recover(head.Root); err != nil {
|
||||||
log.Crit("Failed to rollback state", "err", err)
|
log.Error("Failed to rollback state, resetting to genesis", "err", err)
|
||||||
|
return bc.genesisBlock.Header(), rootNumber
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
log.Info("Rewound to block with state", "number", head.Number, "hash", head.Hash())
|
log.Info("Rewound to block with state", "number", head.Number, "hash", head.Hash())
|
||||||
|
|
@ -1113,14 +1114,48 @@ func (bc *BlockChain) setHeadBeyondRoot(head uint64, time uint64, root common.Ha
|
||||||
return rootNumber, bc.loadLastState()
|
return rootNumber, bc.loadLastState()
|
||||||
}
|
}
|
||||||
|
|
||||||
// SnapSyncCommitHead sets the current head block to the one defined by the hash
|
// SnapSyncStart disables the underlying databases (such as the trie DB and the
|
||||||
// irrelevant what the chain contents were prior.
|
// optional state snapshot) to prevent potential concurrent mutations between
|
||||||
func (bc *BlockChain) SnapSyncCommitHead(hash common.Hash) error {
|
// snap sync and other chain operations.
|
||||||
|
func (bc *BlockChain) SnapSyncStart() error {
|
||||||
|
if !bc.chainmu.TryLock() {
|
||||||
|
return errChainStopped
|
||||||
|
}
|
||||||
|
defer bc.chainmu.Unlock()
|
||||||
|
|
||||||
|
// Snap sync will directly modify the persistent state, making the entire
|
||||||
|
// trie database unusable until the state is fully synced. To prevent any
|
||||||
|
// subsequent state reads, explicitly disable the trie database and state
|
||||||
|
// syncer is responsible to address and correct any state missing.
|
||||||
|
if bc.TrieDB().Scheme() == rawdb.PathScheme {
|
||||||
|
if err := bc.TrieDB().Disable(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Snap sync uses the snapshot namespace to store potentially flaky data until
|
||||||
|
// sync completely heals and finishes. Pause snapshot maintenance in the mean-
|
||||||
|
// time to prevent access.
|
||||||
|
if snapshots := bc.Snapshots(); snapshots != nil { // Only nil in tests
|
||||||
|
snapshots.Disable()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// SnapSyncComplete sets the current head block to the block identified by the
|
||||||
|
// given hash, regardless of the chain contents prior to snap sync. It is
|
||||||
|
// invoked once snap sync completes and assumes that SnapSyncStart was called
|
||||||
|
// previously.
|
||||||
|
func (bc *BlockChain) SnapSyncComplete(hash common.Hash) error {
|
||||||
// Make sure that both the block as well at its state trie exists
|
// Make sure that both the block as well at its state trie exists
|
||||||
block := bc.GetBlockByHash(hash)
|
block := bc.GetBlockByHash(hash)
|
||||||
if block == nil {
|
if block == nil {
|
||||||
return fmt.Errorf("non existent block [%x..]", hash[:4])
|
return fmt.Errorf("non existent block [%x..]", hash[:4])
|
||||||
}
|
}
|
||||||
|
if !bc.chainmu.TryLock() {
|
||||||
|
return errChainStopped
|
||||||
|
}
|
||||||
|
defer bc.chainmu.Unlock()
|
||||||
|
|
||||||
// Reset the trie database with the fresh snap synced state.
|
// Reset the trie database with the fresh snap synced state.
|
||||||
root := block.Root()
|
root := block.Root()
|
||||||
if bc.triedb.Scheme() == rawdb.PathScheme {
|
if bc.triedb.Scheme() == rawdb.PathScheme {
|
||||||
|
|
@ -1131,19 +1166,16 @@ func (bc *BlockChain) SnapSyncCommitHead(hash common.Hash) error {
|
||||||
if !bc.HasState(root) {
|
if !bc.HasState(root) {
|
||||||
return fmt.Errorf("non existent state [%x..]", root[:4])
|
return fmt.Errorf("non existent state [%x..]", root[:4])
|
||||||
}
|
}
|
||||||
// If all checks out, manually set the head block.
|
|
||||||
if !bc.chainmu.TryLock() {
|
|
||||||
return errChainStopped
|
|
||||||
}
|
|
||||||
bc.currentBlock.Store(block.Header())
|
|
||||||
headBlockGauge.Update(int64(block.NumberU64()))
|
|
||||||
bc.chainmu.Unlock()
|
|
||||||
|
|
||||||
// Destroy any existing state snapshot and regenerate it in the background,
|
// Destroy any existing state snapshot and regenerate it in the background,
|
||||||
// also resuming the normal maintenance of any previously paused snapshot.
|
// also resuming the normal maintenance of any previously paused snapshot.
|
||||||
if bc.snaps != nil {
|
if bc.snaps != nil {
|
||||||
bc.snaps.Rebuild(root)
|
bc.snaps.Rebuild(root)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If all checks out, manually set the head block.
|
||||||
|
bc.currentBlock.Store(block.Header())
|
||||||
|
headBlockGauge.Update(int64(block.NumberU64()))
|
||||||
|
|
||||||
log.Info("Committed new head block", "number", block.Number(), "hash", hash)
|
log.Info("Committed new head block", "number", block.Number(), "hash", hash)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@ import (
|
||||||
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
||||||
"github.com/ethereum/go-ethereum/internal/version"
|
"github.com/ethereum/go-ethereum/internal/version"
|
||||||
"github.com/ethereum/go-ethereum/log"
|
"github.com/ethereum/go-ethereum/log"
|
||||||
"github.com/ethereum/go-ethereum/metrics"
|
|
||||||
"github.com/ethereum/go-ethereum/miner"
|
"github.com/ethereum/go-ethereum/miner"
|
||||||
"github.com/ethereum/go-ethereum/node"
|
"github.com/ethereum/go-ethereum/node"
|
||||||
"github.com/ethereum/go-ethereum/params"
|
"github.com/ethereum/go-ethereum/params"
|
||||||
|
|
@ -81,20 +80,6 @@ const (
|
||||||
beaconUpdateWarnFrequency = 5 * time.Minute
|
beaconUpdateWarnFrequency = 5 * time.Minute
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
// Number of blobs requested via getBlobsV2
|
|
||||||
getBlobsRequestedCounter = metrics.NewRegisteredCounter("engine/getblobs/requested", nil)
|
|
||||||
|
|
||||||
// Number of blobs requested via getBlobsV2 that are present in the blobpool
|
|
||||||
getBlobsAvailableCounter = metrics.NewRegisteredCounter("engine/getblobs/available", nil)
|
|
||||||
|
|
||||||
// Number of times getBlobsV2 responded with “hit”
|
|
||||||
getBlobsV2RequestHit = metrics.NewRegisteredCounter("engine/getblobs/hit", nil)
|
|
||||||
|
|
||||||
// Number of times getBlobsV2 responded with “miss”
|
|
||||||
getBlobsV2RequestMiss = metrics.NewRegisteredCounter("engine/getblobs/miss", nil)
|
|
||||||
)
|
|
||||||
|
|
||||||
type ConsensusAPI struct {
|
type ConsensusAPI struct {
|
||||||
eth *eth.Ethereum
|
eth *eth.Ethereum
|
||||||
|
|
||||||
|
|
@ -137,6 +122,9 @@ type ConsensusAPI struct {
|
||||||
|
|
||||||
// NewConsensusAPI creates a new consensus api for the given backend.
|
// NewConsensusAPI creates a new consensus api for the given backend.
|
||||||
// The underlying blockchain needs to have a valid terminal total difficulty set.
|
// The underlying blockchain needs to have a valid terminal total difficulty set.
|
||||||
|
//
|
||||||
|
// This function creates a long-lived object with an attached background thread.
|
||||||
|
// For testing or other short-term use cases, please use newConsensusAPIWithoutHeartbeat.
|
||||||
func NewConsensusAPI(eth *eth.Ethereum) *ConsensusAPI {
|
func NewConsensusAPI(eth *eth.Ethereum) *ConsensusAPI {
|
||||||
api := newConsensusAPIWithoutHeartbeat(eth)
|
api := newConsensusAPIWithoutHeartbeat(eth)
|
||||||
go api.heartbeat()
|
go api.heartbeat()
|
||||||
|
|
@ -818,7 +806,7 @@ func (api *ConsensusAPI) delayPayloadImport(block *types.Block) engine.PayloadSt
|
||||||
return engine.PayloadStatusV1{Status: engine.SYNCING}
|
return engine.PayloadStatusV1{Status: engine.SYNCING}
|
||||||
}
|
}
|
||||||
// Either no beacon sync was started yet, or it rejected the delivered
|
// Either no beacon sync was started yet, or it rejected the delivered
|
||||||
// payload as non-integratable on top of the existing sync. We'll just
|
// payload as non-integrate on top of the existing sync. We'll just
|
||||||
// have to rely on the beacon client to forcefully update the head with
|
// have to rely on the beacon client to forcefully update the head with
|
||||||
// a forkchoice update request.
|
// a forkchoice update request.
|
||||||
if api.eth.Downloader().ConfigSyncMode() == ethconfig.FullSync {
|
if api.eth.Downloader().ConfigSyncMode() == ethconfig.FullSync {
|
||||||
|
|
@ -916,8 +904,6 @@ func (api *ConsensusAPI) invalid(err error, latestValid *types.Header) engine.Pa
|
||||||
// heartbeat loops indefinitely, and checks if there have been beacon client updates
|
// heartbeat loops indefinitely, and checks if there have been beacon client updates
|
||||||
// received in the last while. If not - or if they but strange ones - it warns the
|
// received in the last while. If not - or if they but strange ones - it warns the
|
||||||
// user that something might be off with their consensus node.
|
// user that something might be off with their consensus node.
|
||||||
//
|
|
||||||
// TODO(karalabe): Spin this goroutine down somehow
|
|
||||||
func (api *ConsensusAPI) heartbeat() {
|
func (api *ConsensusAPI) heartbeat() {
|
||||||
// Sleep a bit on startup since there's obviously no beacon client yet
|
// Sleep a bit on startup since there's obviously no beacon client yet
|
||||||
// attached, so no need to print scary warnings to the user.
|
// attached, so no need to print scary warnings to the user.
|
||||||
|
|
|
||||||
33
eth/catalyst/metrics.go
Normal file
33
eth/catalyst/metrics.go
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Copyright 20222 The go-ethereum Authors
|
||||||
|
// This file is part of the go-ethereum library.
|
||||||
|
//
|
||||||
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Lesser General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public License
|
||||||
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
package catalyst
|
||||||
|
|
||||||
|
import "github.com/ethereum/go-ethereum/metrics"
|
||||||
|
|
||||||
|
var (
|
||||||
|
// Number of blobs requested via getBlobsV2
|
||||||
|
getBlobsRequestedCounter = metrics.NewRegisteredCounter("engine/getblobs/requested", nil)
|
||||||
|
|
||||||
|
// Number of blobs requested via getBlobsV2 that are present in the blobpool
|
||||||
|
getBlobsAvailableCounter = metrics.NewRegisteredCounter("engine/getblobs/available", nil)
|
||||||
|
|
||||||
|
// Number of times getBlobsV2 responded with “hit”
|
||||||
|
getBlobsV2RequestHit = metrics.NewRegisteredCounter("engine/getblobs/hit", nil)
|
||||||
|
|
||||||
|
// Number of times getBlobsV2 responded with “miss”
|
||||||
|
getBlobsV2RequestMiss = metrics.NewRegisteredCounter("engine/getblobs/miss", nil)
|
||||||
|
)
|
||||||
|
|
@ -193,8 +193,12 @@ type BlockChain interface {
|
||||||
// CurrentSnapBlock retrieves the head snap block from the local chain.
|
// CurrentSnapBlock retrieves the head snap block from the local chain.
|
||||||
CurrentSnapBlock() *types.Header
|
CurrentSnapBlock() *types.Header
|
||||||
|
|
||||||
// SnapSyncCommitHead directly commits the head block to a certain entity.
|
// SnapSyncStart explicitly notifies the chain that snap sync is scheduled and
|
||||||
SnapSyncCommitHead(common.Hash) error
|
// marks chain mutations as disallowed.
|
||||||
|
SnapSyncStart() error
|
||||||
|
|
||||||
|
// SnapSyncComplete directly commits the head block to a certain entity.
|
||||||
|
SnapSyncComplete(common.Hash) error
|
||||||
|
|
||||||
// InsertHeadersBeforeCutoff inserts a batch of headers before the configured
|
// InsertHeadersBeforeCutoff inserts a batch of headers before the configured
|
||||||
// chain cutoff into the ancient store.
|
// chain cutoff into the ancient store.
|
||||||
|
|
@ -361,6 +365,8 @@ func (d *Downloader) synchronise(beaconPing chan struct{}) (err error) {
|
||||||
if d.notified.CompareAndSwap(false, true) {
|
if d.notified.CompareAndSwap(false, true) {
|
||||||
log.Info("Block synchronisation started")
|
log.Info("Block synchronisation started")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Obtain the synchronized used in this cycle
|
||||||
mode := d.moder.get()
|
mode := d.moder.get()
|
||||||
defer func() {
|
defer func() {
|
||||||
if err == nil && mode == ethconfig.SnapSync {
|
if err == nil && mode == ethconfig.SnapSync {
|
||||||
|
|
@ -368,23 +374,14 @@ func (d *Downloader) synchronise(beaconPing chan struct{}) (err error) {
|
||||||
log.Info("Disabled snap-sync after the initial sync cycle")
|
log.Info("Disabled snap-sync after the initial sync cycle")
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// Disable chain mutations when snap sync is selected, ensuring the
|
||||||
|
// downloader is the sole mutator.
|
||||||
if mode == ethconfig.SnapSync {
|
if mode == ethconfig.SnapSync {
|
||||||
// Snap sync will directly modify the persistent state, making the entire
|
if err := d.blockchain.SnapSyncStart(); err != nil {
|
||||||
// trie database unusable until the state is fully synced. To prevent any
|
|
||||||
// subsequent state reads, explicitly disable the trie database and state
|
|
||||||
// syncer is responsible to address and correct any state missing.
|
|
||||||
if d.blockchain.TrieDB().Scheme() == rawdb.PathScheme {
|
|
||||||
if err := d.blockchain.TrieDB().Disable(); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Snap sync uses the snapshot namespace to store potentially flaky data until
|
|
||||||
// sync completely heals and finishes. Pause snapshot maintenance in the mean-
|
|
||||||
// time to prevent access.
|
|
||||||
if snapshots := d.blockchain.Snapshots(); snapshots != nil { // Only nil in tests
|
|
||||||
snapshots.Disable()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Reset the queue, peer set and wake channels to clean any internal leftover state
|
// Reset the queue, peer set and wake channels to clean any internal leftover state
|
||||||
d.queue.Reset(blockCacheMaxItems, blockCacheInitialItems)
|
d.queue.Reset(blockCacheMaxItems, blockCacheInitialItems)
|
||||||
d.peers.Reset()
|
d.peers.Reset()
|
||||||
|
|
@ -1086,7 +1083,7 @@ func (d *Downloader) commitPivotBlock(result *fetchResult) error {
|
||||||
if _, err := d.blockchain.InsertReceiptChain([]*types.Block{block}, []rlp.RawValue{result.Receipts}, d.ancientLimit); err != nil {
|
if _, err := d.blockchain.InsertReceiptChain([]*types.Block{block}, []rlp.RawValue{result.Receipts}, d.ancientLimit); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := d.blockchain.SnapSyncCommitHead(block.Hash()); err != nil {
|
if err := d.blockchain.SnapSyncComplete(block.Hash()); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
d.committed.Store(true)
|
d.committed.Store(true)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue