mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
053038446c
* plug forkchoice to blockchain service's block processing * fixed tests * more fixes... * clean ups * fixed test * Update beacon-chain/blockchain/block_processing.go * merged with 2006 and started fixing tests * remove prints * fixed tests * lint * include ops service * if there's a skip slot, slot-- * fixed typo * started working on test * no fork choice in propose * bleh, need to fix state generator first * state gen takes input slot * feedback * fixed tests * preston's feedback * fmt * removed extra logging * add more logs * fixed validator attest * builds * fixed save block * children fix * removed verbose logs * fix fork choice * right logs * Add Prometheus Counter for Reorg (#2051) * fetch every slot (#2052) * test Fixes * lint * only regenerate state if there was a reorg * better logging * fixed seed * better logging * process skip slots in assignment requests * fix lint * disable state root computation * filter attestations in regular sync * log important items * better info logs * added spans to stategen * span in stategen * set validator deadline * randao stuff * disable sig verify * lint * lint * save only using historical states * use new goroutine for handling sync messages * change default buffer sizes * better p2p * rem some useless logs * lint * sync tests complete * complete tests * tests fixed * lint * fix flakey att service * PR feedback * undo k8s changes * Update beacon-chain/blockchain/block_processing.go * Update beacon-chain/sync/regular_sync.go * Add feature flag to enable compute state root * add comment * gazelle lint fix
374 lines
10 KiB
Go
374 lines
10 KiB
Go
// Package node defines the services that a beacon chain node would perform.
|
|
package node
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"path"
|
|
"sync"
|
|
"syscall"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
gethRPC "github.com/ethereum/go-ethereum/rpc"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/attestation"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/operations"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/powchain"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/rpc"
|
|
rbcsync "github.com/prysmaticlabs/prysm/beacon-chain/sync"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/utils"
|
|
"github.com/prysmaticlabs/prysm/shared"
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
"github.com/prysmaticlabs/prysm/shared/debug"
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
"github.com/prysmaticlabs/prysm/shared/p2p"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/prometheus"
|
|
"github.com/prysmaticlabs/prysm/shared/tracing"
|
|
"github.com/prysmaticlabs/prysm/shared/version"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "node")
|
|
|
|
const beaconChainDBName = "beaconchaindata"
|
|
const testSkipPowFlag = "test-skip-pow"
|
|
|
|
// BeaconNode defines a struct that handles the services running a random beacon chain
|
|
// full PoS node. It handles the lifecycle of the entire system and registers
|
|
// services to a service registry.
|
|
type BeaconNode struct {
|
|
ctx *cli.Context
|
|
services *shared.ServiceRegistry
|
|
lock sync.RWMutex
|
|
stop chan struct{} // Channel to wait for termination notifications.
|
|
db *db.BeaconDB
|
|
}
|
|
|
|
// NewBeaconNode creates a new node instance, sets up configuration options, and registers
|
|
// every required service to the node.
|
|
func NewBeaconNode(ctx *cli.Context) (*BeaconNode, error) {
|
|
if err := tracing.Setup(
|
|
"beacon-chain", // service name
|
|
ctx.GlobalString(cmd.TracingEndpointFlag.Name),
|
|
ctx.GlobalFloat64(cmd.TraceSampleFractionFlag.Name),
|
|
ctx.GlobalBool(cmd.EnableTracingFlag.Name),
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
registry := shared.NewServiceRegistry()
|
|
|
|
beacon := &BeaconNode{
|
|
ctx: ctx,
|
|
services: registry,
|
|
stop: make(chan struct{}),
|
|
}
|
|
|
|
// Use custom config values if the --no-custom-config flag is set.
|
|
if !ctx.GlobalBool(utils.NoCustomConfigFlag.Name) {
|
|
log.Info("Using custom parameter configuration")
|
|
params.UseDemoBeaconConfig()
|
|
}
|
|
|
|
featureconfig.ConfigureBeaconFeatures(ctx)
|
|
|
|
if err := beacon.startDB(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerP2P(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerPOWChainService(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerAttestationService(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerOperationService(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerBlockchainService(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerSyncService(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := beacon.registerRPCService(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !ctx.GlobalBool(cmd.DisableMonitoringFlag.Name) {
|
|
if err := beacon.registerPrometheusService(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return beacon, nil
|
|
}
|
|
|
|
// Start the BeaconNode and kicks off every registered service.
|
|
func (b *BeaconNode) Start() {
|
|
b.lock.Lock()
|
|
|
|
log.WithFields(logrus.Fields{
|
|
"version": version.GetVersion(),
|
|
}).Info("Starting beacon node")
|
|
|
|
b.services.StartAll()
|
|
|
|
stop := b.stop
|
|
b.lock.Unlock()
|
|
|
|
go func() {
|
|
sigc := make(chan os.Signal, 1)
|
|
signal.Notify(sigc, syscall.SIGINT, syscall.SIGTERM)
|
|
defer signal.Stop(sigc)
|
|
<-sigc
|
|
log.Info("Got interrupt, shutting down...")
|
|
go b.Close()
|
|
for i := 10; i > 0; i-- {
|
|
<-sigc
|
|
if i > 1 {
|
|
log.Info("Already shutting down, interrupt more to panic", "times", i-1)
|
|
}
|
|
}
|
|
debug.Exit(b.ctx) // Ensure trace and CPU profile data are flushed.
|
|
panic("Panic closing the beacon node")
|
|
}()
|
|
|
|
// Wait for stop channel to be closed.
|
|
<-stop
|
|
}
|
|
|
|
// Close handles graceful shutdown of the system.
|
|
func (b *BeaconNode) Close() {
|
|
b.lock.Lock()
|
|
defer b.lock.Unlock()
|
|
|
|
log.Info("Stopping beacon node")
|
|
b.services.StopAll()
|
|
if err := b.db.Close(); err != nil {
|
|
log.Errorf("Failed to close database: %v", err)
|
|
}
|
|
close(b.stop)
|
|
}
|
|
|
|
func (b *BeaconNode) startDB(ctx *cli.Context) error {
|
|
baseDir := ctx.GlobalString(cmd.DataDirFlag.Name)
|
|
dbPath := path.Join(baseDir, beaconChainDBName)
|
|
if b.ctx.GlobalBool(cmd.ClearDBFlag.Name) {
|
|
if err := db.ClearDB(dbPath); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
db, err := db.NewDB(dbPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("Checking db at %s", dbPath)
|
|
b.db = db
|
|
return nil
|
|
}
|
|
|
|
func (b *BeaconNode) registerP2P(ctx *cli.Context) error {
|
|
beaconp2p, err := configureP2P(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("could not register p2p service: %v", err)
|
|
}
|
|
|
|
return b.services.RegisterService(beaconp2p)
|
|
}
|
|
|
|
func (b *BeaconNode) registerBlockchainService(_ *cli.Context) error {
|
|
var web3Service *powchain.Web3Service
|
|
if err := b.services.FetchService(&web3Service); err != nil {
|
|
return err
|
|
}
|
|
var opsService *operations.Service
|
|
if err := b.services.FetchService(&opsService); err != nil {
|
|
return err
|
|
}
|
|
var attsService *attestation.Service
|
|
if err := b.services.FetchService(&attsService); err != nil {
|
|
return err
|
|
}
|
|
var p2pService *p2p.Server
|
|
if err := b.services.FetchService(&p2pService); err != nil {
|
|
return err
|
|
}
|
|
|
|
blockchainService, err := blockchain.NewChainService(context.Background(), &blockchain.Config{
|
|
BeaconDB: b.db,
|
|
Web3Service: web3Service,
|
|
OpsPoolService: opsService,
|
|
AttsService: attsService,
|
|
P2p: p2pService,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("could not register blockchain service: %v", err)
|
|
}
|
|
return b.services.RegisterService(blockchainService)
|
|
}
|
|
|
|
func (b *BeaconNode) registerOperationService() error {
|
|
var p2pService *p2p.Server
|
|
if err := b.services.FetchService(&p2pService); err != nil {
|
|
return err
|
|
}
|
|
|
|
operationService := operations.NewOpsPoolService(context.Background(), &operations.Config{
|
|
BeaconDB: b.db,
|
|
P2P: p2pService,
|
|
})
|
|
|
|
return b.services.RegisterService(operationService)
|
|
}
|
|
|
|
func (b *BeaconNode) registerPOWChainService(cliCtx *cli.Context) error {
|
|
if cliCtx.GlobalBool(testSkipPowFlag) {
|
|
return b.services.RegisterService(&powchain.Web3Service{})
|
|
}
|
|
|
|
depAddress := cliCtx.GlobalString(utils.DepositContractFlag.Name)
|
|
|
|
if depAddress == "" {
|
|
log.Fatal("No deposit contract specified. Add --deposit-contract with a valid deposit contract address to start.")
|
|
}
|
|
|
|
if !common.IsHexAddress(depAddress) {
|
|
log.Fatalf("Invalid deposit contract address given: %s", depAddress)
|
|
}
|
|
|
|
rpcClient, err := gethRPC.Dial(cliCtx.GlobalString(utils.Web3ProviderFlag.Name))
|
|
if err != nil {
|
|
log.Fatalf("Access to PoW chain is required for validator. Unable to connect to Geth node: %v", err)
|
|
}
|
|
powClient := ethclient.NewClient(rpcClient)
|
|
|
|
ctx := context.Background()
|
|
cfg := &powchain.Web3ServiceConfig{
|
|
Endpoint: cliCtx.GlobalString(utils.Web3ProviderFlag.Name),
|
|
DepositContract: common.HexToAddress(depAddress),
|
|
Client: powClient,
|
|
Reader: powClient,
|
|
Logger: powClient,
|
|
BlockFetcher: powClient,
|
|
ContractBackend: powClient,
|
|
BeaconDB: b.db,
|
|
}
|
|
web3Service, err := powchain.NewWeb3Service(ctx, cfg)
|
|
if err != nil {
|
|
return fmt.Errorf("could not register proof-of-work chain web3Service: %v", err)
|
|
}
|
|
|
|
if err := b.db.VerifyContractAddress(ctx, cfg.DepositContract); err != nil {
|
|
return err
|
|
}
|
|
|
|
return b.services.RegisterService(web3Service)
|
|
}
|
|
|
|
func (b *BeaconNode) registerSyncService(_ *cli.Context) error {
|
|
var chainService *blockchain.ChainService
|
|
if err := b.services.FetchService(&chainService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var p2pService *p2p.Server
|
|
if err := b.services.FetchService(&p2pService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var operationService *operations.Service
|
|
if err := b.services.FetchService(&operationService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var attsService *attestation.Service
|
|
if err := b.services.FetchService(&attsService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var web3Service *powchain.Web3Service
|
|
if err := b.services.FetchService(&web3Service); err != nil {
|
|
return err
|
|
}
|
|
|
|
cfg := &rbcsync.Config{
|
|
ChainService: chainService,
|
|
P2P: p2pService,
|
|
BeaconDB: b.db,
|
|
OperationService: operationService,
|
|
PowChainService: web3Service,
|
|
AttsService: attsService,
|
|
}
|
|
|
|
syncService := rbcsync.NewSyncService(context.Background(), cfg)
|
|
return b.services.RegisterService(syncService)
|
|
}
|
|
|
|
func (b *BeaconNode) registerRPCService(ctx *cli.Context) error {
|
|
var chainService *blockchain.ChainService
|
|
if err := b.services.FetchService(&chainService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var operationService *operations.Service
|
|
if err := b.services.FetchService(&operationService); err != nil {
|
|
return err
|
|
}
|
|
|
|
var web3Service *powchain.Web3Service
|
|
if err := b.services.FetchService(&web3Service); err != nil {
|
|
return err
|
|
}
|
|
|
|
port := ctx.GlobalString(utils.RPCPort.Name)
|
|
cert := ctx.GlobalString(utils.CertFlag.Name)
|
|
key := ctx.GlobalString(utils.KeyFlag.Name)
|
|
rpcService := rpc.NewRPCService(context.Background(), &rpc.Config{
|
|
Port: port,
|
|
CertFlag: cert,
|
|
KeyFlag: key,
|
|
BeaconDB: b.db,
|
|
ChainService: chainService,
|
|
OperationService: operationService,
|
|
POWChainService: web3Service,
|
|
})
|
|
|
|
return b.services.RegisterService(rpcService)
|
|
}
|
|
|
|
func (b *BeaconNode) registerPrometheusService(ctx *cli.Context) error {
|
|
service := prometheus.NewPrometheusService(
|
|
fmt.Sprintf(":%d", ctx.GlobalInt64(cmd.MonitoringPortFlag.Name)),
|
|
b.services,
|
|
)
|
|
hook := prometheus.NewLogrusCollector()
|
|
logrus.AddHook(hook)
|
|
return b.services.RegisterService(service)
|
|
}
|
|
|
|
func (b *BeaconNode) registerAttestationService() error {
|
|
attsService := attestation.NewAttestationService(context.Background(),
|
|
&attestation.Config{
|
|
BeaconDB: b.db,
|
|
})
|
|
|
|
return b.services.RegisterService(attsService)
|
|
}
|