mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
d5ec248691
* Rename getter functions * Rename new * Radek's feedback Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
329 lines
10 KiB
Go
329 lines
10 KiB
Go
package nodev1
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"runtime"
|
|
"strings"
|
|
|
|
ptypes "github.com/gogo/protobuf/types"
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p/peers"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p/peers/peerdata"
|
|
"github.com/prysmaticlabs/prysm/shared/version"
|
|
"go.opencensus.io/trace"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
var (
|
|
stateConnecting = ethpb.ConnectionState_CONNECTING.String()
|
|
stateConnected = ethpb.ConnectionState_CONNECTED.String()
|
|
stateDisconnecting = ethpb.ConnectionState_DISCONNECTING.String()
|
|
stateDisconnected = ethpb.ConnectionState_DISCONNECTED.String()
|
|
directionInbound = ethpb.PeerDirection_INBOUND.String()
|
|
directionOutbound = ethpb.PeerDirection_OUTBOUND.String()
|
|
)
|
|
|
|
// GetIdentity retrieves data about the node's network presence.
|
|
func (ns *Server) GetIdentity(ctx context.Context, _ *ptypes.Empty) (*ethpb.IdentityResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodeV1.GetIdentity")
|
|
defer span.End()
|
|
|
|
peerId := ns.PeerManager.PeerID().Pretty()
|
|
|
|
serializedEnr, err := p2p.SerializeENR(ns.PeerManager.ENR())
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "could not obtain enr: %v", err)
|
|
}
|
|
enr := "enr:" + serializedEnr
|
|
|
|
sourcep2p := ns.PeerManager.Host().Addrs()
|
|
p2pAddresses := make([]string, len(sourcep2p))
|
|
for i := range sourcep2p {
|
|
p2pAddresses[i] = sourcep2p[i].String() + "/p2p/" + peerId
|
|
}
|
|
|
|
sourceDisc, err := ns.PeerManager.DiscoveryAddresses()
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "could not obtain discovery address: %v", err)
|
|
}
|
|
discoveryAddresses := make([]string, len(sourceDisc))
|
|
for i := range sourceDisc {
|
|
discoveryAddresses[i] = sourceDisc[i].String()
|
|
}
|
|
|
|
metadata := ðpb.Metadata{
|
|
SeqNumber: ns.MetadataProvider.MetadataSeq(),
|
|
Attnets: ns.MetadataProvider.Metadata().Attnets,
|
|
}
|
|
|
|
return ðpb.IdentityResponse{
|
|
Data: ðpb.Identity{
|
|
PeerId: peerId,
|
|
Enr: enr,
|
|
P2PAddresses: p2pAddresses,
|
|
DiscoveryAddresses: discoveryAddresses,
|
|
Metadata: metadata,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// GetPeer retrieves data about the given peer.
|
|
func (ns *Server) GetPeer(ctx context.Context, req *ethpb.PeerRequest) (*ethpb.PeerResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.GetPeer")
|
|
defer span.End()
|
|
|
|
peerStatus := ns.PeersFetcher.Peers()
|
|
id, err := peer.IDFromString(req.PeerId)
|
|
if err != nil {
|
|
return nil, status.Error(codes.InvalidArgument, "Invalid peer ID: "+req.PeerId)
|
|
}
|
|
enr, err := peerStatus.ENR(id)
|
|
if err != nil {
|
|
if errors.Is(err, peerdata.ErrPeerUnknown) {
|
|
return nil, status.Error(codes.NotFound, "Peer not found")
|
|
}
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain ENR: %v", err)
|
|
}
|
|
serializedEnr, err := p2p.SerializeENR(enr)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain ENR: %v", err)
|
|
}
|
|
p2pAddress, err := peerStatus.Address(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain address: %v", err)
|
|
}
|
|
state, err := peerStatus.ConnectionState(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain connection state: %v", err)
|
|
}
|
|
direction, err := peerStatus.Direction(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain direction: %v", err)
|
|
}
|
|
|
|
return ðpb.PeerResponse{
|
|
Data: ðpb.Peer{
|
|
PeerId: req.PeerId,
|
|
Enr: "enr:" + serializedEnr,
|
|
Address: p2pAddress.String(),
|
|
State: ethpb.ConnectionState(state),
|
|
Direction: ethpb.PeerDirection(direction),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// ListPeers retrieves data about the node's network peers.
|
|
func (ns *Server) ListPeers(ctx context.Context, req *ethpb.PeersRequest) (*ethpb.PeersResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.ListPeers")
|
|
defer span.End()
|
|
|
|
peerStatus := ns.PeersFetcher.Peers()
|
|
emptyStateFilter, emptyDirectionFilter := ns.handleEmptyFilters(req, peerStatus)
|
|
|
|
if emptyStateFilter && emptyDirectionFilter {
|
|
allIds := peerStatus.All()
|
|
allPeers := make([]*ethpb.Peer, 0, len(allIds))
|
|
for _, id := range allIds {
|
|
p, err := peerInfo(peerStatus, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
allPeers = append(allPeers, p)
|
|
}
|
|
return ðpb.PeersResponse{Data: allPeers}, nil
|
|
}
|
|
|
|
var stateIds []peer.ID
|
|
if emptyStateFilter {
|
|
stateIds = peerStatus.All()
|
|
} else {
|
|
for _, stateFilter := range req.State {
|
|
normalized := strings.ToUpper(stateFilter)
|
|
if normalized == stateConnecting {
|
|
ids := peerStatus.Connecting()
|
|
stateIds = append(stateIds, ids...)
|
|
continue
|
|
}
|
|
if normalized == stateConnected {
|
|
ids := peerStatus.Connected()
|
|
stateIds = append(stateIds, ids...)
|
|
continue
|
|
}
|
|
if normalized == stateDisconnecting {
|
|
ids := peerStatus.Disconnecting()
|
|
stateIds = append(stateIds, ids...)
|
|
continue
|
|
}
|
|
if normalized == stateDisconnected {
|
|
ids := peerStatus.Disconnected()
|
|
stateIds = append(stateIds, ids...)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
var directionIds []peer.ID
|
|
if emptyDirectionFilter {
|
|
directionIds = peerStatus.All()
|
|
} else {
|
|
for _, directionFilter := range req.Direction {
|
|
normalized := strings.ToUpper(directionFilter)
|
|
if normalized == directionInbound {
|
|
ids := peerStatus.Inbound()
|
|
directionIds = append(directionIds, ids...)
|
|
continue
|
|
}
|
|
if normalized == directionOutbound {
|
|
ids := peerStatus.Outbound()
|
|
directionIds = append(directionIds, ids...)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
var filteredIds []peer.ID
|
|
for _, stateId := range stateIds {
|
|
for _, directionId := range directionIds {
|
|
if stateId.Pretty() == directionId.Pretty() {
|
|
filteredIds = append(filteredIds, stateId)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
filteredPeers := make([]*ethpb.Peer, 0, len(filteredIds))
|
|
for _, id := range filteredIds {
|
|
p, err := peerInfo(peerStatus, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
filteredPeers = append(filteredPeers, p)
|
|
}
|
|
return ðpb.PeersResponse{Data: filteredPeers}, nil
|
|
}
|
|
|
|
// PeerCount retrieves retrieves number of known peers.
|
|
func (ns *Server) PeerCount(ctx context.Context, _ *ptypes.Empty) (*ethpb.PeerCountResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.PeerCount")
|
|
defer span.End()
|
|
|
|
peerStatus := ns.PeersFetcher.Peers()
|
|
|
|
return ðpb.PeerCountResponse{
|
|
Data: ðpb.PeerCountResponse_PeerCount{
|
|
Disconnected: uint64(len(peerStatus.Disconnected())),
|
|
Connecting: uint64(len(peerStatus.Connecting())),
|
|
Connected: uint64(len(peerStatus.Connected())),
|
|
Disconnecting: uint64(len(peerStatus.Disconnecting())),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// GetVersion requests that the beacon node identify information about its implementation in a
|
|
// format similar to a HTTP User-Agent field.
|
|
func (ns *Server) GetVersion(ctx context.Context, _ *ptypes.Empty) (*ethpb.VersionResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.Version")
|
|
defer span.End()
|
|
|
|
v := fmt.Sprintf("Prysm/%s (%s %s)", version.SemanticVersion(), runtime.GOOS, runtime.GOARCH)
|
|
return ðpb.VersionResponse{
|
|
Data: ðpb.Version{
|
|
Version: v,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// GetSyncStatus requests the beacon node to describe if it's currently syncing or not, and
|
|
// if it is, what block it is up to.
|
|
func (ns *Server) GetSyncStatus(ctx context.Context, _ *ptypes.Empty) (*ethpb.SyncingResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.GetSyncStatus")
|
|
defer span.End()
|
|
|
|
headSlot := ns.HeadFetcher.HeadSlot()
|
|
return ðpb.SyncingResponse{
|
|
Data: ðpb.SyncInfo{
|
|
HeadSlot: headSlot,
|
|
SyncDistance: ns.GenesisTimeFetcher.CurrentSlot() - headSlot,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// GetHealth returns node health status in http status codes. Useful for load balancers.
|
|
// Response Usage:
|
|
// "200":
|
|
// description: Node is ready
|
|
// "206":
|
|
// description: Node is syncing but can serve incomplete data
|
|
// "503":
|
|
// description: Node not initialized or having issues
|
|
func (ns *Server) GetHealth(ctx context.Context, _ *ptypes.Empty) (*ptypes.Empty, error) {
|
|
ctx, span := trace.StartSpan(ctx, "nodev1.GetHealth")
|
|
defer span.End()
|
|
|
|
if ns.SyncChecker.Syncing() || ns.SyncChecker.Initialized() {
|
|
return &ptypes.Empty{}, nil
|
|
}
|
|
return &ptypes.Empty{}, status.Error(codes.Internal, "Node not initialized or having issues")
|
|
}
|
|
|
|
func (ns *Server) handleEmptyFilters(req *ethpb.PeersRequest, peerStatus *peers.Status) (emptyState, emptyDirection bool) {
|
|
emptyState = true
|
|
for _, stateFilter := range req.State {
|
|
normalized := strings.ToUpper(stateFilter)
|
|
filterValid := normalized == stateConnecting || normalized == stateConnected ||
|
|
normalized == stateDisconnecting || normalized == stateDisconnected
|
|
if filterValid {
|
|
emptyState = false
|
|
break
|
|
}
|
|
}
|
|
|
|
emptyDirection = true
|
|
for _, directionFilter := range req.Direction {
|
|
normalized := strings.ToUpper(directionFilter)
|
|
filterValid := normalized == directionInbound || normalized == directionOutbound
|
|
if filterValid {
|
|
emptyDirection = false
|
|
break
|
|
}
|
|
}
|
|
|
|
return emptyState, emptyDirection
|
|
}
|
|
|
|
func peerInfo(peerStatus *peers.Status, id peer.ID) (*ethpb.Peer, error) {
|
|
enr, err := peerStatus.ENR(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain ENR: %v", err)
|
|
}
|
|
serializedEnr, err := p2p.SerializeENR(enr)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not serialize ENR: %v", err)
|
|
}
|
|
address, err := peerStatus.Address(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain address: %v", err)
|
|
}
|
|
connectionState, err := peerStatus.ConnectionState(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain connection state: %v", err)
|
|
}
|
|
direction, err := peerStatus.Direction(id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not obtain direction: %v", err)
|
|
}
|
|
p := ethpb.Peer{
|
|
PeerId: id.Pretty(),
|
|
Enr: "enr:" + serializedEnr,
|
|
Address: address.String(),
|
|
State: ethpb.ConnectionState(connectionState),
|
|
Direction: ethpb.PeerDirection(direction),
|
|
}
|
|
|
|
return &p, nil
|
|
}
|