prysm-pulse/beacon-chain/rpc/validator_server.go
Raul Jordan fcc18fac02
Treat Post & Pre-ChainStart Validators Equally in Assignments Fetching (#2074)
* treat post/prechainstart validators equally in assignment fetching

* Update validator/client/fake_validator_test.go

Co-Authored-By: rauljordan <raul@prysmaticlabs.com>

* status err code

* imports

* beyond activation epoch

* assigned to slot log

* gazelle
2019-03-26 09:03:05 -05:00

166 lines
6.0 KiB
Go

package rpc
import (
"context"
"fmt"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
"github.com/prysmaticlabs/prysm/beacon-chain/db"
pbp2p "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
pb "github.com/prysmaticlabs/prysm/proto/beacon/rpc/v1"
"github.com/prysmaticlabs/prysm/shared/params"
)
// ValidatorServer defines a server implementation of the gRPC Validator service,
// providing RPC endpoints for obtaining validator assignments per epoch, the slots
// and shards in which particular validators need to perform their responsibilities,
// and more.
type ValidatorServer struct {
ctx context.Context
beaconDB *db.BeaconDB
chainService chainService
canonicalStateChan chan *pbp2p.BeaconState
}
// ValidatorIndex is called by a validator to get its index location that corresponds
// to the attestation bit fields.
func (vs *ValidatorServer) ValidatorIndex(ctx context.Context, req *pb.ValidatorIndexRequest) (*pb.ValidatorIndexResponse, error) {
index, err := vs.beaconDB.ValidatorIndex(req.PublicKey)
if err != nil {
return nil, fmt.Errorf("could not get validator index: %v", err)
}
return &pb.ValidatorIndexResponse{Index: uint64(index)}, nil
}
// ValidatorPerformance reports the validator's latest balance along with other important metrics on
// rewards and penalties throughout its lifecycle in the beacon chain.
func (vs *ValidatorServer) ValidatorPerformance(
ctx context.Context, req *pb.ValidatorPerformanceRequest,
) (*pb.ValidatorPerformanceResponse, error) {
index, err := vs.beaconDB.ValidatorIndex(req.PublicKey)
if err != nil {
return nil, fmt.Errorf("could not get validator index: %v", err)
}
beaconState, err := vs.beaconDB.State(ctx)
if err != nil {
return nil, fmt.Errorf("could not retrieve beacon state: %v", err)
}
totalBalance := float32(0)
for _, val := range beaconState.ValidatorBalances {
totalBalance += float32(val)
}
avgBalance := totalBalance / float32(len(beaconState.ValidatorBalances))
balance := beaconState.ValidatorBalances[index]
activeIndices := helpers.ActiveValidatorIndices(beaconState.ValidatorRegistry, req.Slot)
return &pb.ValidatorPerformanceResponse{
Balance: balance,
AverageValidatorBalance: avgBalance,
TotalValidators: uint64(len(beaconState.ValidatorRegistry)),
TotalActiveValidators: uint64(len(activeIndices)),
}, nil
}
// CommitteeAssignment returns the committee assignment response from a given validator public key.
// The committee assignment response contains the following fields for the current and previous epoch:
// 1.) The list of validators in the committee.
// 2.) The shard to which the committee is assigned.
// 3.) The slot at which the committee is assigned.
// 4.) The bool signalling if the validator is expected to propose a block at the assigned slot.
func (vs *ValidatorServer) CommitteeAssignment(
ctx context.Context,
req *pb.CommitteeAssignmentsRequest) (*pb.CommitteeAssignmentResponse, error) {
if len(req.PublicKey[0]) != params.BeaconConfig().BLSPubkeyLength {
return nil, fmt.Errorf(
"expected public key to have length %d, received %d",
params.BeaconConfig().BLSPubkeyLength,
len(req.PublicKey[0]),
)
}
beaconState, err := vs.beaconDB.State(ctx)
if err != nil {
return nil, fmt.Errorf("could not fetch beacon state: %v", err)
}
idx, err := vs.beaconDB.ValidatorIndex(req.PublicKey[0])
if err != nil {
return nil, fmt.Errorf("could not get active validator index: %v", err)
}
val := beaconState.ValidatorRegistry[idx]
if val.ActivationEpoch > helpers.SlotToEpoch(beaconState.Slot) {
return nil, status.Error(codes.NotFound, "validator not yet activated")
}
committee, shard, slot, isProposer, err :=
helpers.CommitteeAssignment(beaconState, req.EpochStart, uint64(idx), false)
if err != nil {
return nil, err
}
vsr, err := vs.ValidatorStatus(ctx, &pb.ValidatorIndexRequest{PublicKey: req.PublicKey[0]})
if err != nil {
return nil, err
}
return &pb.CommitteeAssignmentResponse{Assignment: []*pb.CommitteeAssignmentResponse_CommitteeAssignment{
{
Committee: committee,
Shard: shard,
Slot: slot,
IsProposer: isProposer,
PublicKey: req.PublicKey[0],
Status: vsr.Status,
},
},
}, nil
}
// ValidatorStatus returns the validator status of the current epoch.
// The status response can be one of the following:
// PENDING_ACTIVE - validator is waiting to get activated.
// ACTIVE - validator is active.
// INITIATED_EXIT - validator has initiated an an exit request.
// WITHDRAWABLE - validator's deposit can be withdrawn after lock up period.
// EXITED - validator has exited, means the deposit has been withdrawn.
// EXITED_SLASHED - validator was forcefully exited due to slashing.
func (vs *ValidatorServer) ValidatorStatus(
ctx context.Context,
req *pb.ValidatorIndexRequest) (*pb.ValidatorStatusResponse, error) {
beaconState, err := vs.beaconDB.State(ctx)
if err != nil {
return nil, fmt.Errorf("could not fetch beacon state: %v", err)
}
idx, err := vs.beaconDB.ValidatorIndex(req.PublicKey)
if err != nil {
return nil, fmt.Errorf("could not get active validator index: %v", err)
}
var status pb.ValidatorStatus
v := beaconState.ValidatorRegistry[idx]
farFutureEpoch := params.BeaconConfig().FarFutureEpoch
epoch := helpers.CurrentEpoch(beaconState)
if v.ActivationEpoch == farFutureEpoch {
status = pb.ValidatorStatus_PENDING_ACTIVE
} else if v.ActivationEpoch <= epoch && epoch < v.ExitEpoch {
status = pb.ValidatorStatus_ACTIVE
} else if v.StatusFlags == pbp2p.Validator_INITIATED_EXIT {
status = pb.ValidatorStatus_INITIATED_EXIT
} else if v.StatusFlags == pbp2p.Validator_WITHDRAWABLE {
status = pb.ValidatorStatus_WITHDRAWABLE
} else if epoch >= v.ExitEpoch && epoch >= v.SlashedEpoch {
status = pb.ValidatorStatus_EXITED_SLASHED
} else if epoch >= v.ExitEpoch {
status = pb.ValidatorStatus_EXITED
} else {
status = pb.ValidatorStatus_UNKNOWN_STATUS
}
return &pb.ValidatorStatusResponse{
Status: status,
}, nil
}