2020-02-14 19:03:25 +00:00
|
|
|
package detection
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
2020-03-03 18:08:21 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/sliceutil"
|
2020-02-14 19:03:25 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/slasher/beaconclient"
|
2020-02-19 22:26:14 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/slasher/db"
|
2020-02-27 17:22:39 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/slasher/detection/attestations"
|
|
|
|
"github.com/prysmaticlabs/prysm/slasher/detection/attestations/iface"
|
2020-03-19 11:59:35 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/slasher/detection/proposals"
|
|
|
|
proposerIface "github.com/prysmaticlabs/prysm/slasher/detection/proposals/iface"
|
2020-02-14 19:03:25 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-02-19 22:26:14 +00:00
|
|
|
"go.opencensus.io/trace"
|
2020-02-14 19:03:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var log = logrus.WithField("prefix", "detection")
|
|
|
|
|
|
|
|
// Service struct for the detection service of the slasher.
|
|
|
|
type Service struct {
|
|
|
|
ctx context.Context
|
|
|
|
cancel context.CancelFunc
|
2020-02-19 22:26:14 +00:00
|
|
|
slasherDB db.Database
|
2020-02-14 19:03:25 +00:00
|
|
|
blocksChan chan *ethpb.SignedBeaconBlock
|
2020-02-27 17:22:39 +00:00
|
|
|
attsChan chan *ethpb.IndexedAttestation
|
2020-02-14 19:03:25 +00:00
|
|
|
notifier beaconclient.Notifier
|
2020-02-19 22:26:14 +00:00
|
|
|
chainFetcher beaconclient.ChainFetcher
|
|
|
|
beaconClient *beaconclient.Service
|
2020-02-14 19:03:25 +00:00
|
|
|
attesterSlashingsFeed *event.Feed
|
|
|
|
proposerSlashingsFeed *event.Feed
|
2020-02-27 17:22:39 +00:00
|
|
|
minMaxSpanDetector iface.SpanDetector
|
2020-03-19 11:59:35 +00:00
|
|
|
proposalsDetector proposerIface.ProposalsDetector
|
2020-02-14 19:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Config options for the detection service.
|
|
|
|
type Config struct {
|
|
|
|
Notifier beaconclient.Notifier
|
2020-02-19 22:26:14 +00:00
|
|
|
SlasherDB db.Database
|
|
|
|
ChainFetcher beaconclient.ChainFetcher
|
|
|
|
BeaconClient *beaconclient.Service
|
2020-02-14 19:03:25 +00:00
|
|
|
AttesterSlashingsFeed *event.Feed
|
|
|
|
ProposerSlashingsFeed *event.Feed
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDetectionService instantiation.
|
|
|
|
func NewDetectionService(ctx context.Context, cfg *Config) *Service {
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
return &Service{
|
|
|
|
ctx: ctx,
|
|
|
|
cancel: cancel,
|
|
|
|
notifier: cfg.Notifier,
|
2020-02-19 22:26:14 +00:00
|
|
|
chainFetcher: cfg.ChainFetcher,
|
|
|
|
slasherDB: cfg.SlasherDB,
|
|
|
|
beaconClient: cfg.BeaconClient,
|
2020-02-14 19:03:25 +00:00
|
|
|
blocksChan: make(chan *ethpb.SignedBeaconBlock, 1),
|
2020-02-27 17:22:39 +00:00
|
|
|
attsChan: make(chan *ethpb.IndexedAttestation, 1),
|
2020-02-14 19:03:25 +00:00
|
|
|
attesterSlashingsFeed: cfg.AttesterSlashingsFeed,
|
|
|
|
proposerSlashingsFeed: cfg.ProposerSlashingsFeed,
|
2020-03-05 18:11:54 +00:00
|
|
|
minMaxSpanDetector: attestations.NewSpanDetector(cfg.SlasherDB),
|
2020-03-19 11:59:35 +00:00
|
|
|
proposalsDetector: proposals.NewProposeDetector(cfg.SlasherDB),
|
2020-02-14 19:03:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the notifier service.
|
|
|
|
func (ds *Service) Stop() error {
|
|
|
|
ds.cancel()
|
|
|
|
log.Info("Stopping service")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Status returns an error if there exists an error in
|
|
|
|
// the notifier service.
|
|
|
|
func (ds *Service) Status() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start the detection service runtime.
|
|
|
|
func (ds *Service) Start() {
|
2020-02-19 22:26:14 +00:00
|
|
|
// We wait for the gRPC beacon client to be ready and the beacon node
|
|
|
|
// to be fully synced before proceeding.
|
|
|
|
ch := make(chan bool)
|
|
|
|
sub := ds.notifier.ClientReadyFeed().Subscribe(ch)
|
|
|
|
<-ch
|
|
|
|
sub.Unsubscribe()
|
|
|
|
|
|
|
|
// The detection service runs detection on all historical
|
|
|
|
// chain data since genesis.
|
2020-03-08 17:56:43 +00:00
|
|
|
// TODO(#5030): Re-enable after issue is resolved.
|
2020-02-19 22:26:14 +00:00
|
|
|
|
|
|
|
// We subscribe to incoming blocks from the beacon node via
|
|
|
|
// our gRPC client to keep detecting slashable offenses.
|
2020-02-14 19:03:25 +00:00
|
|
|
go ds.detectIncomingBlocks(ds.ctx, ds.blocksChan)
|
|
|
|
go ds.detectIncomingAttestations(ds.ctx, ds.attsChan)
|
2020-04-14 20:27:03 +00:00
|
|
|
go ds.detectHistoricalChainData(ds.ctx)
|
2020-02-14 19:03:25 +00:00
|
|
|
}
|
2020-02-19 22:26:14 +00:00
|
|
|
|
|
|
|
func (ds *Service) detectHistoricalChainData(ctx context.Context) {
|
|
|
|
ctx, span := trace.StartSpan(ctx, "detection.detectHistoricalChainData")
|
|
|
|
defer span.End()
|
|
|
|
// We fetch both the latest persisted chain head in our DB as well
|
|
|
|
// as the current chain head from the beacon node via gRPC.
|
|
|
|
latestStoredHead, err := ds.slasherDB.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Fatal("Could not retrieve chain head from DB")
|
|
|
|
}
|
|
|
|
currentChainHead, err := ds.chainFetcher.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Fatal("Cannot retrieve chain head from beacon node")
|
|
|
|
}
|
|
|
|
var latestStoredEpoch uint64
|
|
|
|
if latestStoredHead != nil {
|
|
|
|
latestStoredEpoch = latestStoredHead.HeadEpoch
|
|
|
|
}
|
2020-03-03 18:08:21 +00:00
|
|
|
|
2020-02-19 22:26:14 +00:00
|
|
|
// We retrieve historical chain data from the last persisted chain head in the
|
|
|
|
// slasher DB up to the current beacon node's head epoch we retrieved via gRPC.
|
|
|
|
// If no data was persisted from previous sessions, we request data starting from
|
|
|
|
// the genesis epoch.
|
2020-02-27 17:22:39 +00:00
|
|
|
for epoch := latestStoredEpoch; epoch < currentChainHead.HeadEpoch; epoch++ {
|
|
|
|
indexedAtts, err := ds.beaconClient.RequestHistoricalAttestations(ctx, epoch)
|
2020-02-19 22:26:14 +00:00
|
|
|
if err != nil {
|
2020-02-27 17:22:39 +00:00
|
|
|
log.WithError(err).Errorf("Could not fetch attestations for epoch: %d", epoch)
|
2020-02-19 22:26:14 +00:00
|
|
|
}
|
|
|
|
log.Debugf(
|
|
|
|
"Running slashing detection on %d attestations in epoch %d...",
|
|
|
|
len(indexedAtts),
|
2020-02-27 17:22:39 +00:00
|
|
|
epoch,
|
2020-02-19 22:26:14 +00:00
|
|
|
)
|
2020-03-03 18:08:21 +00:00
|
|
|
|
2020-02-27 17:22:39 +00:00
|
|
|
for _, att := range indexedAtts {
|
2020-03-24 18:30:21 +00:00
|
|
|
slashings, err := ds.DetectAttesterSlashings(ctx, att)
|
2020-02-27 17:22:39 +00:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("Could not detect attester slashings")
|
|
|
|
continue
|
|
|
|
}
|
2020-03-17 21:53:08 +00:00
|
|
|
ds.submitAttesterSlashings(ctx, slashings)
|
2020-02-27 17:22:39 +00:00
|
|
|
}
|
2020-02-19 22:26:14 +00:00
|
|
|
}
|
2020-03-03 18:08:21 +00:00
|
|
|
|
2020-02-19 22:26:14 +00:00
|
|
|
if err := ds.slasherDB.SaveChainHead(ctx, currentChainHead); err != nil {
|
|
|
|
log.WithError(err).Error("Could not persist chain head to disk")
|
|
|
|
}
|
|
|
|
log.Infof("Completed slashing detection on historical chain data up to epoch %d", currentChainHead.HeadEpoch)
|
|
|
|
}
|
2020-02-27 17:22:39 +00:00
|
|
|
|
2020-03-17 21:53:08 +00:00
|
|
|
func (ds *Service) submitAttesterSlashings(ctx context.Context, slashings []*ethpb.AttesterSlashing) {
|
2020-03-08 17:56:43 +00:00
|
|
|
ctx, span := trace.StartSpan(ctx, "detection.submitAttesterSlashings")
|
|
|
|
defer span.End()
|
2020-03-09 18:14:19 +00:00
|
|
|
for i := 0; i < len(slashings); i++ {
|
|
|
|
slash := slashings[i]
|
2020-03-09 21:21:39 +00:00
|
|
|
if slash != nil && slash.Attestation_1 != nil && slash.Attestation_2 != nil {
|
2020-03-09 18:14:19 +00:00
|
|
|
slashableIndices := sliceutil.IntersectionUint64(slashings[i].Attestation_1.AttestingIndices, slashings[i].Attestation_2.AttestingIndices)
|
2020-03-15 05:09:23 +00:00
|
|
|
log.WithFields(logrus.Fields{
|
2020-03-17 21:53:08 +00:00
|
|
|
"sourceEpoch": slash.Attestation_1.Data.Source.Epoch,
|
|
|
|
"targetEpoch": slash.Attestation_1.Data.Target.Epoch,
|
|
|
|
"surroundVote": isSurrounding(slash.Attestation_1, slash.Attestation_2),
|
|
|
|
"indices": slashableIndices,
|
|
|
|
}).Info("Found an attester slashing! Submitting to beacon node")
|
2020-03-09 18:14:19 +00:00
|
|
|
ds.attesterSlashingsFeed.Send(slashings[i])
|
|
|
|
}
|
|
|
|
}
|
2020-02-27 17:22:39 +00:00
|
|
|
}
|
2020-04-14 20:27:03 +00:00
|
|
|
|
|
|
|
func (ds *Service) submitProposerSlashing(ctx context.Context, slashing *ethpb.ProposerSlashing) {
|
|
|
|
ctx, span := trace.StartSpan(ctx, "detection.submitProposerSlashing")
|
|
|
|
defer span.End()
|
|
|
|
if slashing != nil && slashing.Header_1 != nil && slashing.Header_2 != nil {
|
|
|
|
log.WithFields(logrus.Fields{
|
|
|
|
"header1Slot": slashing.Header_1.Header.Slot,
|
|
|
|
"header2Slot": slashing.Header_2.Header.Slot,
|
|
|
|
"proposerIdxHeader1": slashing.Header_1.Header.ProposerIndex,
|
|
|
|
"proposerIdxHeader2": slashing.Header_2.Header.ProposerIndex,
|
|
|
|
}).Info("Found a proposer slashing! Submitting to beacon node")
|
|
|
|
ds.proposerSlashingsFeed.Send(slashing)
|
|
|
|
}
|
|
|
|
}
|