mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-30 15:06:31 +00:00
bb542d2032
* add block caching layer * runlock * lockinggg * latest votes map * validator latest vote deletion method added to interface * seguin cache working * cache size * impl interface * initialize caches at struct layer
180 lines
6.9 KiB
Go
180 lines
6.9 KiB
Go
package db
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"os"
|
|
"path"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/boltdb/bolt"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/filters"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "beacondb")
|
|
|
|
// Database defines the necessary methods for Prysm's eth2 backend which may
|
|
// be implemented by any key-value or relational database in practice.
|
|
type Database interface {
|
|
io.Closer
|
|
DatabasePath() string
|
|
ClearDB() error
|
|
// Attestation related methods.
|
|
Attestation(ctx context.Context, attRoot [32]byte) (*ethpb.Attestation, error)
|
|
Attestations(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.Attestation, error)
|
|
HasAttestation(ctx context.Context, attRoot [32]byte) bool
|
|
DeleteAttestation(ctx context.Context, attRoot [32]byte) error
|
|
SaveAttestation(ctx context.Context, att *ethpb.Attestation) error
|
|
SaveAttestations(ctx context.Context, atts []*ethpb.Attestation) error
|
|
// Block related methods.
|
|
Block(ctx context.Context, blockRoot [32]byte) (*ethpb.BeaconBlock, error)
|
|
HeadBlock(ctx context.Context) (*ethpb.BeaconBlock, error)
|
|
Blocks(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.BeaconBlock, error)
|
|
BlockRoots(ctx context.Context, f *filters.QueryFilter) ([][]byte, error)
|
|
HasBlock(ctx context.Context, blockRoot [32]byte) bool
|
|
DeleteBlock(ctx context.Context, blockRoot [32]byte) error
|
|
SaveBlock(ctx context.Context, block *ethpb.BeaconBlock) error
|
|
SaveBlocks(ctx context.Context, blocks []*ethpb.BeaconBlock) error
|
|
SaveHeadBlockRoot(ctx context.Context, blockRoot [32]byte) error
|
|
// Validator related methods.
|
|
ValidatorLatestVote(ctx context.Context, validatorIdx uint64) (*pb.ValidatorLatestVote, error)
|
|
HasValidatorLatestVote(ctx context.Context, validatorIdx uint64) bool
|
|
DeleteValidatorLatestVote(ctx context.Context, validatorIdx uint64) error
|
|
SaveValidatorLatestVote(ctx context.Context, validatorIdx uint64, vote *pb.ValidatorLatestVote) error
|
|
ValidatorIndex(ctx context.Context, publicKey [48]byte) (uint64, bool, error)
|
|
HasValidatorIndex(ctx context.Context, publicKey [48]byte) bool
|
|
DeleteValidatorIndex(ctx context.Context, publicKey [48]byte) error
|
|
SaveValidatorIndex(ctx context.Context, publicKey [48]byte, validatorIdx uint64) error
|
|
// State related methods.
|
|
State(ctx context.Context, blockRoot [32]byte) (*pb.BeaconState, error)
|
|
HeadState(ctx context.Context) (*pb.BeaconState, error)
|
|
SaveState(ctx context.Context, state *pb.BeaconState, blockRoot [32]byte) error
|
|
// Slashing operations.
|
|
ProposerSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.ProposerSlashing, error)
|
|
AttesterSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.AttesterSlashing, error)
|
|
SaveProposerSlashing(ctx context.Context, slashing *ethpb.ProposerSlashing) error
|
|
SaveAttesterSlashing(ctx context.Context, slashing *ethpb.AttesterSlashing) error
|
|
HasProposerSlashing(ctx context.Context, slashingRoot [32]byte) bool
|
|
HasAttesterSlashing(ctx context.Context, slashingRoot [32]byte) bool
|
|
DeleteProposerSlashing(ctx context.Context, slashingRoot [32]byte) error
|
|
DeleteAttesterSlashing(ctx context.Context, slashingRoot [32]byte) error
|
|
// Block operations.
|
|
VoluntaryExit(ctx context.Context, exitRoot [32]byte) (*ethpb.VoluntaryExit, error)
|
|
SaveVoluntaryExit(ctx context.Context, exit *ethpb.VoluntaryExit) error
|
|
HasVoluntaryExit(ctx context.Context, exitRoot [32]byte) bool
|
|
DeleteVoluntaryExit(ctx context.Context, exitRoot [32]byte) error
|
|
// Deposit contract related handlers.
|
|
DepositContractAddress(ctx context.Context) ([]byte, error)
|
|
SaveDepositContractAddress(ctx context.Context, addr common.Address) error
|
|
}
|
|
|
|
var _ = Database(&BeaconDB{})
|
|
|
|
// BeaconDB manages the data layer of the beacon chain implementation.
|
|
// The exposed methods do not have an opinion of the underlying data engine,
|
|
// but instead reflect the beacon chain logic.
|
|
// For example, instead of defining get, put, remove
|
|
// This defines methods such as getBlock, saveBlocksAndAttestations, etc.
|
|
// DEPRECATED: Use github.com/prysmaticlabs/prysm/db/kv instead.
|
|
type BeaconDB struct {
|
|
// state objects and caches
|
|
stateLock sync.RWMutex
|
|
serializedState []byte
|
|
stateHash [32]byte
|
|
validatorRegistry []*ethpb.Validator
|
|
validatorBalances []uint64
|
|
db *bolt.DB
|
|
databasePath string
|
|
|
|
// Beacon block info in memory.
|
|
highestBlockSlot uint64
|
|
// We keep a map of hashes of blocks which failed processing for blacklisting.
|
|
badBlockHashes map[[32]byte]bool
|
|
badBlocksLock sync.RWMutex
|
|
blocks map[[32]byte]*ethpb.BeaconBlock
|
|
blocksLock sync.RWMutex
|
|
}
|
|
|
|
// Close closes the underlying boltdb database.
|
|
func (db *BeaconDB) Close() error {
|
|
return db.db.Close()
|
|
}
|
|
|
|
func (db *BeaconDB) update(fn func(*bolt.Tx) error) error {
|
|
return db.db.Update(fn)
|
|
}
|
|
func (db *BeaconDB) batch(fn func(*bolt.Tx) error) error {
|
|
return db.db.Batch(fn)
|
|
}
|
|
func (db *BeaconDB) view(fn func(*bolt.Tx) error) error {
|
|
return db.db.View(fn)
|
|
}
|
|
|
|
func createBuckets(tx *bolt.Tx, buckets ...[]byte) error {
|
|
for _, bucket := range buckets {
|
|
if _, err := tx.CreateBucketIfNotExists(bucket); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewDBDeprecated initializes a new DB. If the genesis block and states do not exist, this method creates it.
|
|
// DEPRECATED: Use github.com/prysmaticlabs/prysm/db.NewDB instead.
|
|
func NewDBDeprecated(dirPath string) (*BeaconDB, error) {
|
|
if err := os.MkdirAll(dirPath, 0700); err != nil {
|
|
return nil, err
|
|
}
|
|
datafile := path.Join(dirPath, "beaconchain.db")
|
|
boltDB, err := bolt.Open(datafile, 0600, &bolt.Options{Timeout: 1 * time.Second})
|
|
if err != nil {
|
|
if err == bolt.ErrTimeout {
|
|
return nil, errors.New("cannot obtain database lock, database may be in use by another process")
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
db := &BeaconDB{db: boltDB, databasePath: dirPath}
|
|
db.blocks = make(map[[32]byte]*ethpb.BeaconBlock)
|
|
|
|
if err := db.update(func(tx *bolt.Tx) error {
|
|
return createBuckets(tx, blockBucket, attestationBucket, attestationTargetBucket, mainChainBucket,
|
|
histStateBucket, chainInfoBucket, cleanupHistoryBucket, blockOperationsBucket, validatorBucket)
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return db, err
|
|
}
|
|
|
|
// NewDB initializes a new DB.
|
|
func NewDB(dirPath string) (Database, error) {
|
|
return kv.NewKVStore(dirPath)
|
|
}
|
|
|
|
// ClearDB removes the previously stored directory at the data directory.
|
|
func ClearDB(dirPath string) error {
|
|
if _, err := os.Stat(dirPath); os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
return os.RemoveAll(dirPath)
|
|
}
|
|
|
|
// DatabasePath returns the filepath to the database directory.
|
|
func (db *BeaconDB) DatabasePath() string {
|
|
return db.databasePath
|
|
}
|
|
|
|
// ClearDB removes the previously stored directory at the data directory.
|
|
func (db *BeaconDB) ClearDB() error {
|
|
return ClearDB(db.databasePath)
|
|
}
|