mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
5.3 KiB
163 lines
5.3 KiB
// Copyright 2023 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 blsync
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/beacon/light/request"
|
|
"github.com/ethereum/go-ethereum/beacon/light/sync"
|
|
"github.com/ethereum/go-ethereum/beacon/params"
|
|
"github.com/ethereum/go-ethereum/beacon/types"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/common/lru"
|
|
"github.com/ethereum/go-ethereum/event"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
)
|
|
|
|
// beaconBlockSync implements request.Module; it fetches the beacon blocks belonging
|
|
// to the validated and prefetch heads.
|
|
type beaconBlockSync struct {
|
|
recentBlocks *lru.Cache[common.Hash, *types.BeaconBlock]
|
|
locked map[common.Hash]request.ServerAndID
|
|
serverHeads map[request.Server]common.Hash
|
|
headTracker headTracker
|
|
|
|
lastHeadInfo types.HeadInfo
|
|
chainHeadFeed event.FeedOf[types.ChainHeadEvent]
|
|
}
|
|
|
|
type headTracker interface {
|
|
PrefetchHead() types.HeadInfo
|
|
ValidatedOptimistic() (types.OptimisticUpdate, bool)
|
|
ValidatedFinality() (types.FinalityUpdate, bool)
|
|
}
|
|
|
|
// newBeaconBlockSync returns a new beaconBlockSync.
|
|
func newBeaconBlockSync(headTracker headTracker) *beaconBlockSync {
|
|
return &beaconBlockSync{
|
|
headTracker: headTracker,
|
|
recentBlocks: lru.NewCache[common.Hash, *types.BeaconBlock](10),
|
|
locked: make(map[common.Hash]request.ServerAndID),
|
|
serverHeads: make(map[request.Server]common.Hash),
|
|
}
|
|
}
|
|
|
|
func (s *beaconBlockSync) SubscribeChainHead(ch chan<- types.ChainHeadEvent) event.Subscription {
|
|
return s.chainHeadFeed.Subscribe(ch)
|
|
}
|
|
|
|
// Process implements request.Module.
|
|
func (s *beaconBlockSync) Process(requester request.Requester, events []request.Event) {
|
|
for _, event := range events {
|
|
switch event.Type {
|
|
case request.EvResponse, request.EvFail, request.EvTimeout:
|
|
sid, req, resp := event.RequestInfo()
|
|
blockRoot := common.Hash(req.(sync.ReqBeaconBlock))
|
|
log.Debug("Beacon block event", "type", event.Type.Name, "hash", blockRoot)
|
|
if resp != nil {
|
|
s.recentBlocks.Add(blockRoot, resp.(*types.BeaconBlock))
|
|
}
|
|
if s.locked[blockRoot] == sid {
|
|
delete(s.locked, blockRoot)
|
|
}
|
|
case sync.EvNewHead:
|
|
s.serverHeads[event.Server] = event.Data.(types.HeadInfo).BlockRoot
|
|
case request.EvUnregistered:
|
|
delete(s.serverHeads, event.Server)
|
|
}
|
|
}
|
|
s.updateEventFeed()
|
|
// request validated head block if unavailable and not yet requested
|
|
if vh, ok := s.headTracker.ValidatedOptimistic(); ok {
|
|
s.tryRequestBlock(requester, vh.Attested.Hash(), false)
|
|
}
|
|
// request prefetch head if the given server has announced it
|
|
if prefetchHead := s.headTracker.PrefetchHead().BlockRoot; prefetchHead != (common.Hash{}) {
|
|
s.tryRequestBlock(requester, prefetchHead, true)
|
|
}
|
|
}
|
|
|
|
func (s *beaconBlockSync) tryRequestBlock(requester request.Requester, blockRoot common.Hash, needSameHead bool) {
|
|
if _, ok := s.recentBlocks.Get(blockRoot); ok {
|
|
return
|
|
}
|
|
if _, ok := s.locked[blockRoot]; ok {
|
|
return
|
|
}
|
|
for _, server := range requester.CanSendTo() {
|
|
if needSameHead && (s.serverHeads[server] != blockRoot) {
|
|
continue
|
|
}
|
|
id := requester.Send(server, sync.ReqBeaconBlock(blockRoot))
|
|
s.locked[blockRoot] = request.ServerAndID{Server: server, ID: id}
|
|
return
|
|
}
|
|
}
|
|
|
|
func blockHeadInfo(block *types.BeaconBlock) types.HeadInfo {
|
|
if block == nil {
|
|
return types.HeadInfo{}
|
|
}
|
|
return types.HeadInfo{Slot: block.Slot(), BlockRoot: block.Root()}
|
|
}
|
|
|
|
func (s *beaconBlockSync) updateEventFeed() {
|
|
optimistic, ok := s.headTracker.ValidatedOptimistic()
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
validatedHead := optimistic.Attested.Hash()
|
|
headBlock, ok := s.recentBlocks.Get(validatedHead)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
var finalizedHash common.Hash
|
|
if finality, ok := s.headTracker.ValidatedFinality(); ok {
|
|
he := optimistic.Attested.Epoch()
|
|
fe := finality.Attested.Header.Epoch()
|
|
switch {
|
|
case he == fe:
|
|
finalizedHash = finality.Finalized.PayloadHeader.BlockHash()
|
|
case he < fe:
|
|
return
|
|
case he == fe+1:
|
|
parent, ok := s.recentBlocks.Get(optimistic.Attested.ParentRoot)
|
|
if !ok || parent.Slot()/params.EpochLength == fe {
|
|
return // head is at first slot of next epoch, wait for finality update
|
|
}
|
|
}
|
|
}
|
|
|
|
headInfo := blockHeadInfo(headBlock)
|
|
if headInfo == s.lastHeadInfo {
|
|
return
|
|
}
|
|
s.lastHeadInfo = headInfo
|
|
|
|
// new head block and finality info available; extract executable data and send event to feed
|
|
execBlock, err := headBlock.ExecutionPayload()
|
|
if err != nil {
|
|
log.Error("Error extracting execution block from validated beacon block", "error", err)
|
|
return
|
|
}
|
|
s.chainHeadFeed.Send(types.ChainHeadEvent{
|
|
BeaconHead: optimistic.Attested.Header,
|
|
Block: execBlock,
|
|
Finalized: finalizedHash,
|
|
})
|
|
}
|
|
|