mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
Slasher readiness status response (#6504)
* Slasher readiness status response * add comments * Merge refs/heads/master into slasher_status * Merge refs/heads/master into slasher_status
This commit is contained in:
parent
d9fea7cb8c
commit
87c18d4e0d
@ -2,6 +2,7 @@ package detection
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
|
|
||||||
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
||||||
"github.com/prysmaticlabs/prysm/shared/event"
|
"github.com/prysmaticlabs/prysm/shared/event"
|
||||||
@ -18,6 +19,35 @@ import (
|
|||||||
|
|
||||||
var log = logrus.WithField("prefix", "detection")
|
var log = logrus.WithField("prefix", "detection")
|
||||||
|
|
||||||
|
// Status detection statuses type.
|
||||||
|
type Status int
|
||||||
|
|
||||||
|
const (
|
||||||
|
// None slasher was not initialised.
|
||||||
|
None Status = iota
|
||||||
|
// Started service start has been called,
|
||||||
|
Started
|
||||||
|
// Syncing beacon client is still syncing.
|
||||||
|
Syncing
|
||||||
|
// HistoricalDetection slasher is replaying all attestations that
|
||||||
|
// were included in the canonical chain.
|
||||||
|
HistoricalDetection
|
||||||
|
// Ready slasher is ready to detect requests.
|
||||||
|
Ready
|
||||||
|
)
|
||||||
|
|
||||||
|
// String returns the string value of the status
|
||||||
|
func (s Status) String() string {
|
||||||
|
strings := [...]string{"None", "Started", "Syncing", "HistoricalDetection", "Ready"}
|
||||||
|
|
||||||
|
// prevent panicking in case of status is out-of-range
|
||||||
|
if s < None || s > Ready {
|
||||||
|
return "Unknown"
|
||||||
|
}
|
||||||
|
|
||||||
|
return strings[s]
|
||||||
|
}
|
||||||
|
|
||||||
// Service struct for the detection service of the slasher.
|
// Service struct for the detection service of the slasher.
|
||||||
type Service struct {
|
type Service struct {
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
@ -32,6 +62,7 @@ type Service struct {
|
|||||||
proposerSlashingsFeed *event.Feed
|
proposerSlashingsFeed *event.Feed
|
||||||
minMaxSpanDetector iface.SpanDetector
|
minMaxSpanDetector iface.SpanDetector
|
||||||
proposalsDetector proposerIface.ProposalsDetector
|
proposalsDetector proposerIface.ProposalsDetector
|
||||||
|
status Status
|
||||||
}
|
}
|
||||||
|
|
||||||
// Config options for the detection service.
|
// Config options for the detection service.
|
||||||
@ -60,6 +91,7 @@ func NewDetectionService(ctx context.Context, cfg *Config) *Service {
|
|||||||
proposerSlashingsFeed: cfg.ProposerSlashingsFeed,
|
proposerSlashingsFeed: cfg.ProposerSlashingsFeed,
|
||||||
minMaxSpanDetector: attestations.NewSpanDetector(cfg.SlasherDB),
|
minMaxSpanDetector: attestations.NewSpanDetector(cfg.SlasherDB),
|
||||||
proposalsDetector: proposals.NewProposeDetector(cfg.SlasherDB),
|
proposalsDetector: proposals.NewProposeDetector(cfg.SlasherDB),
|
||||||
|
status: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,26 +102,32 @@ func (ds *Service) Stop() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Status returns an error if there exists an error in
|
// Status returns an error if detection service is not ready yet.
|
||||||
// the notifier service.
|
|
||||||
func (ds *Service) Status() error {
|
func (ds *Service) Status() error {
|
||||||
|
if ds.status == Ready {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
return errors.New(ds.status.String())
|
||||||
|
}
|
||||||
|
|
||||||
// Start the detection service runtime.
|
// Start the detection service runtime.
|
||||||
func (ds *Service) Start() {
|
func (ds *Service) Start() {
|
||||||
// We wait for the gRPC beacon client to be ready and the beacon node
|
// We wait for the gRPC beacon client to be ready and the beacon node
|
||||||
// to be fully synced before proceeding.
|
// to be fully synced before proceeding.
|
||||||
|
ds.status = Started
|
||||||
ch := make(chan bool)
|
ch := make(chan bool)
|
||||||
sub := ds.notifier.ClientReadyFeed().Subscribe(ch)
|
sub := ds.notifier.ClientReadyFeed().Subscribe(ch)
|
||||||
|
ds.status = Syncing
|
||||||
<-ch
|
<-ch
|
||||||
sub.Unsubscribe()
|
sub.Unsubscribe()
|
||||||
|
|
||||||
if featureconfig.Get().EnableHistoricalDetection {
|
if featureconfig.Get().EnableHistoricalDetection {
|
||||||
// The detection service runs detection on all historical
|
// The detection service runs detection on all historical
|
||||||
// chain data since genesis.
|
// chain data since genesis.
|
||||||
|
ds.status = HistoricalDetection
|
||||||
ds.detectHistoricalChainData(ds.ctx)
|
ds.detectHistoricalChainData(ds.ctx)
|
||||||
}
|
}
|
||||||
|
ds.status = Ready
|
||||||
// We listen to a stream of blocks and attestations from the beacon node.
|
// We listen to a stream of blocks and attestations from the beacon node.
|
||||||
go ds.beaconClient.ReceiveBlocks(ds.ctx)
|
go ds.beaconClient.ReceiveBlocks(ds.ctx)
|
||||||
go ds.beaconClient.ReceiveAttestations(ds.ctx)
|
go ds.beaconClient.ReceiveAttestations(ds.ctx)
|
||||||
|
@ -146,10 +146,17 @@ func (s *Service) Stop() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Status returns nil or credentialError
|
// Status returns nil if slasher is ready to receive attestations and
|
||||||
|
// blocks from clients for slashing detection.
|
||||||
func (s *Service) Status() error {
|
func (s *Service) Status() error {
|
||||||
if s.credentialError != nil {
|
if s.credentialError != nil {
|
||||||
return s.credentialError
|
return s.credentialError
|
||||||
}
|
}
|
||||||
|
if bs := s.beaconclient.Status(); bs != nil {
|
||||||
|
return bs
|
||||||
|
}
|
||||||
|
if ds := s.detector.Status(); ds != nil {
|
||||||
|
return ds
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user