mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
123 lines
3.6 KiB
Go
123 lines
3.6 KiB
Go
package stategen
|
|
|
|
import (
|
|
"context"
|
|
"encoding/hex"
|
|
"fmt"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/state"
|
|
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
|
|
"github.com/sirupsen/logrus"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// MigrateToCold advances the finalized info in between the cold and hot state sections.
|
|
// It moves the recent finalized states from the hot section to the cold section and
|
|
// only preserves the ones that are on archived point.
|
|
func (s *State) MigrateToCold(ctx context.Context, fRoot [32]byte) error {
|
|
ctx, span := trace.StartSpan(ctx, "stateGen.MigrateToCold")
|
|
defer span.End()
|
|
|
|
// When migrating states we choose to acquire the migration lock before
|
|
// proceeding. This is to prevent multiple migration routines from overwriting each
|
|
// other.
|
|
s.migrationLock.Lock()
|
|
defer s.migrationLock.Unlock()
|
|
|
|
s.finalizedInfo.lock.RLock()
|
|
oldFSlot := s.finalizedInfo.slot
|
|
s.finalizedInfo.lock.RUnlock()
|
|
|
|
fBlock, err := s.beaconDB.Block(ctx, fRoot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fSlot := fBlock.Block().Slot()
|
|
if oldFSlot > fSlot {
|
|
return nil
|
|
}
|
|
|
|
// Start at previous finalized slot, stop at current finalized slot (it will be handled in the next migration).
|
|
// If the slot is on archived point, save the state of that slot to the DB.
|
|
for slot := oldFSlot; slot < fSlot; slot++ {
|
|
if ctx.Err() != nil {
|
|
return ctx.Err()
|
|
}
|
|
|
|
if slot%s.slotsPerArchivedPoint == 0 && slot != 0 {
|
|
cached, exists, err := s.epochBoundaryStateCache.getBySlot(slot)
|
|
if err != nil {
|
|
return fmt.Errorf("could not get epoch boundary state for slot %d", slot)
|
|
}
|
|
|
|
var aRoot [32]byte
|
|
var aState state.BeaconState
|
|
|
|
// When the epoch boundary state is not in cache due to skip slot scenario,
|
|
// we have to regenerate the state which will represent epoch boundary.
|
|
// By finding the highest available block below epoch boundary slot, we
|
|
// generate the state for that block root.
|
|
if exists {
|
|
aRoot = cached.root
|
|
aState = cached.state
|
|
} else {
|
|
_, roots, err := s.beaconDB.HighestRootsBelowSlot(ctx, slot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// Given the block has been finalized, the db should not have more than one block in a given slot.
|
|
// We should error out when this happens.
|
|
if len(roots) != 1 {
|
|
return errUnknownBlock
|
|
}
|
|
aRoot = roots[0]
|
|
// There's no need to generate the state if the state already exists in the DB.
|
|
// We can skip saving the state.
|
|
if !s.beaconDB.HasState(ctx, aRoot) {
|
|
aState, err = s.StateByRoot(ctx, aRoot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
if s.beaconDB.HasState(ctx, aRoot) {
|
|
// If you are migrating a state and its already part of the hot state cache saved to the db,
|
|
// you can just remove it from the hot state cache as it becomes redundant.
|
|
s.saveHotStateDB.lock.Lock()
|
|
roots := s.saveHotStateDB.blockRootsOfSavedStates
|
|
for i := 0; i < len(roots); i++ {
|
|
if aRoot == roots[i] {
|
|
s.saveHotStateDB.blockRootsOfSavedStates = append(roots[:i], roots[i+1:]...)
|
|
// There shouldn't be duplicated roots in `blockRootsOfSavedStates`.
|
|
// Break here is ok.
|
|
break
|
|
}
|
|
}
|
|
s.saveHotStateDB.lock.Unlock()
|
|
continue
|
|
}
|
|
|
|
if err := s.beaconDB.SaveState(ctx, aState, aRoot); err != nil {
|
|
return err
|
|
}
|
|
log.WithFields(
|
|
logrus.Fields{
|
|
"slot": aState.Slot(),
|
|
"root": hex.EncodeToString(bytesutil.Trunc(aRoot[:])),
|
|
}).Info("Saved state in DB")
|
|
}
|
|
}
|
|
|
|
// Update finalized info in memory.
|
|
fInfo, ok, err := s.epochBoundaryStateCache.getByBlockRoot(fRoot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if ok {
|
|
s.SaveFinalizedState(fSlot, fRoot, fInfo.state)
|
|
}
|
|
|
|
return nil
|
|
}
|