mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
ade61717a4
* first version * cli context * fix service * starting change to ccache * ristretto cache * added test * test on evict * remove evict test * test onevict * comment for exported flag * update all span maps on load * fix setup db * span cache added to help flags * start save cache on exit * save cache to db before close * comment fix * fix flags * setup db new * data update from archive node * gaz * slashing detection on old attestations * un-export * rename * nishant feedback * workspace cr * lint fix * fix calls * start db * fix test * Update slasher/db/db.go Co-Authored-By: Nishant Das <nishdas93@gmail.com> * add flag * fix fail to start beacon client * mock beacon service * fix imports * gaz * goimports * add clear db flag * print finalized epoch * better msg * Update slasher/db/attester_slashings.go Co-Authored-By: Raul Jordan <raul@prysmaticlabs.com> * raul feedback * raul feedback * raul feedback * raul feedback * raul feedback * add detection in runtime * fix tests * raul feedbacks * raul feedback * raul feedback * goimports * Update beacon-chain/blockchain/process_attestation_helpers.go * Update beacon-chain/blockchain/receive_block.go * Update beacon-chain/core/blocks/block_operations_test.go * Update beacon-chain/core/blocks/block_operations.go * Update beacon-chain/core/epoch/epoch_processing.go * Update beacon-chain/sync/validate_aggregate_proof_test.go * Update shared/testutil/block.go * Update slasher/service/data_update.go * Update tools/blocktree/main.go * Update slasher/service/service.go * Update beacon-chain/core/epoch/precompute/attestation_test.go * Update beacon-chain/core/helpers/committee_test.go * Update beacon-chain/core/state/transition_test.go * Update beacon-chain/rpc/aggregator/server_test.go * Update beacon-chain/sync/validate_aggregate_proof.go * Update beacon-chain/rpc/validator/proposer_test.go * Update beacon-chain/blockchain/forkchoice/process_attestation.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/db/indexed_attestations.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update slasher/service/data_update.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * terence feedback * terence feedback * goimports Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Nishant Das <nish1993@hotmail.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
182 lines
5.6 KiB
Go
182 lines
5.6 KiB
Go
package precompute
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/attestationutil"
|
|
"github.com/prysmaticlabs/prysm/shared/traceutil"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// Balances stores balances such as prev/current total validator balances, attested balances and more.
|
|
// It's used for metrics reporting.
|
|
var Balances *Balance
|
|
|
|
// ProcessAttestations process the attestations in state and update individual validator's pre computes,
|
|
// it also tracks and updates epoch attesting balances.
|
|
func ProcessAttestations(
|
|
ctx context.Context,
|
|
state *pb.BeaconState,
|
|
vp []*Validator,
|
|
bp *Balance) ([]*Validator, *Balance, error) {
|
|
ctx, span := trace.StartSpan(ctx, "precomputeEpoch.ProcessAttestations")
|
|
defer span.End()
|
|
|
|
v := &Validator{}
|
|
var err error
|
|
|
|
for _, a := range append(state.PreviousEpochAttestations, state.CurrentEpochAttestations...) {
|
|
v.IsCurrentEpochAttester, v.IsCurrentEpochTargetAttester, err = AttestedCurrentEpoch(state, a)
|
|
if err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, nil, errors.Wrap(err, "could not check validator attested current epoch")
|
|
}
|
|
v.IsPrevEpochAttester, v.IsPrevEpochTargetAttester, v.IsPrevEpochHeadAttester, err = AttestedPrevEpoch(state, a)
|
|
if err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, nil, errors.Wrap(err, "could not check validator attested previous epoch")
|
|
}
|
|
|
|
committee, err := helpers.BeaconCommitteeFromState(state, a.Data.Slot, a.Data.CommitteeIndex)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
indices, err := attestationutil.AttestingIndices(a.AggregationBits, committee)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
vp = UpdateValidator(vp, v, indices, a, a.Data.Slot)
|
|
}
|
|
|
|
bp = UpdateBalance(vp, bp)
|
|
Balances = bp
|
|
|
|
return vp, bp, nil
|
|
}
|
|
|
|
// AttestedCurrentEpoch returns true if attestation `a` attested once in current epoch and/or epoch boundary block.
|
|
func AttestedCurrentEpoch(s *pb.BeaconState, a *pb.PendingAttestation) (bool, bool, error) {
|
|
currentEpoch := helpers.CurrentEpoch(s)
|
|
var votedCurrentEpoch, votedTarget bool
|
|
// Did validator vote current epoch.
|
|
if a.Data.Target.Epoch == currentEpoch {
|
|
votedCurrentEpoch = true
|
|
same, err := SameTarget(s, a, currentEpoch)
|
|
if err != nil {
|
|
return false, false, err
|
|
}
|
|
if same {
|
|
votedTarget = true
|
|
}
|
|
}
|
|
return votedCurrentEpoch, votedTarget, nil
|
|
}
|
|
|
|
// AttestedPrevEpoch returns true if attestation `a` attested once in previous epoch and epoch boundary block and/or the same head.
|
|
func AttestedPrevEpoch(s *pb.BeaconState, a *pb.PendingAttestation) (bool, bool, bool, error) {
|
|
prevEpoch := helpers.PrevEpoch(s)
|
|
var votedPrevEpoch, votedTarget, votedHead bool
|
|
// Did validator vote previous epoch.
|
|
if a.Data.Target.Epoch == prevEpoch {
|
|
votedPrevEpoch = true
|
|
same, err := SameTarget(s, a, prevEpoch)
|
|
if err != nil {
|
|
return false, false, false, errors.Wrap(err, "could not check same target")
|
|
}
|
|
if same {
|
|
votedTarget = true
|
|
}
|
|
|
|
same, err = SameHead(s, a)
|
|
if err != nil {
|
|
return false, false, false, errors.Wrap(err, "could not check same head")
|
|
}
|
|
if same {
|
|
votedHead = true
|
|
}
|
|
}
|
|
return votedPrevEpoch, votedTarget, votedHead, nil
|
|
}
|
|
|
|
// SameTarget returns true if attestation `a` attested to the same target block in state.
|
|
func SameTarget(state *pb.BeaconState, a *pb.PendingAttestation, e uint64) (bool, error) {
|
|
r, err := helpers.BlockRoot(state, e)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if bytes.Equal(a.Data.Target.Root, r) {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// SameHead returns true if attestation `a` attested to the same block by attestation slot in state.
|
|
func SameHead(state *pb.BeaconState, a *pb.PendingAttestation) (bool, error) {
|
|
r, err := helpers.BlockRootAtSlot(state, a.Data.Slot)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if bytes.Equal(a.Data.BeaconBlockRoot, r) {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// UpdateValidator updates pre computed validator store.
|
|
func UpdateValidator(vp []*Validator, record *Validator, indices []uint64, a *pb.PendingAttestation, aSlot uint64) []*Validator {
|
|
inclusionSlot := aSlot + a.InclusionDelay
|
|
|
|
for _, i := range indices {
|
|
if record.IsCurrentEpochAttester {
|
|
vp[i].IsCurrentEpochAttester = true
|
|
}
|
|
if record.IsCurrentEpochTargetAttester {
|
|
vp[i].IsCurrentEpochTargetAttester = true
|
|
}
|
|
if record.IsPrevEpochAttester {
|
|
vp[i].IsPrevEpochAttester = true
|
|
// Update attestation inclusion info if inclusion slot is lower than before
|
|
if inclusionSlot < vp[i].InclusionSlot {
|
|
vp[i].InclusionSlot = aSlot + a.InclusionDelay
|
|
vp[i].InclusionDistance = a.InclusionDelay
|
|
vp[i].ProposerIndex = a.ProposerIndex
|
|
}
|
|
}
|
|
if record.IsPrevEpochTargetAttester {
|
|
vp[i].IsPrevEpochTargetAttester = true
|
|
}
|
|
if record.IsPrevEpochHeadAttester {
|
|
vp[i].IsPrevEpochHeadAttester = true
|
|
}
|
|
}
|
|
return vp
|
|
}
|
|
|
|
// UpdateBalance updates pre computed balance store.
|
|
func UpdateBalance(vp []*Validator, bp *Balance) *Balance {
|
|
for _, v := range vp {
|
|
if !v.IsSlashed {
|
|
if v.IsCurrentEpochAttester {
|
|
bp.CurrentEpochAttesters += v.CurrentEpochEffectiveBalance
|
|
}
|
|
if v.IsCurrentEpochTargetAttester {
|
|
bp.CurrentEpochTargetAttesters += v.CurrentEpochEffectiveBalance
|
|
}
|
|
if v.IsPrevEpochAttester {
|
|
bp.PrevEpochAttesters += v.CurrentEpochEffectiveBalance
|
|
}
|
|
if v.IsPrevEpochTargetAttester {
|
|
bp.PrevEpochTargetAttesters += v.CurrentEpochEffectiveBalance
|
|
}
|
|
if v.IsPrevEpochHeadAttester {
|
|
bp.PrevEpochHeadAttesters += v.CurrentEpochEffectiveBalance
|
|
}
|
|
}
|
|
}
|
|
return bp
|
|
}
|