mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
aed6e13498
* initial commit for cli integration of web3signer * resolving conflicts and execution * remove aggregation slot from proto * rem aggregation slot * define a sync message block root struct * fix sync message name * sync message block root struct * amend where sync committee block root is used * altered switch statement to return correct json request by type * fixing fork data import, types, and unit tests * reverting unwanted changes * reverting more unwanted changes * fixing deepsource issues * fixing formatting * more fixes for deepsource and code clean up * only want to fetch once for fetch validating public keys * adding more comments * new unit tests for requests and fixing a mapper issue * Update validator/client/validator.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/accounts/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * adjusting comment * adjusting comment * fixing import organization * including more unit tests * adding new cli edit * adding in checks for wallet initialize * adding web3signer flags to main.go * some how resolved files did not save correctly * adding in check to make sure web flag only works with types imported and derived * Update validator/client/sync_committee.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/accounts/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/main.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/wallet/wallet.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * reverting changes that accidently got checked in * reverting * reverting * continuing to revert unintenteded changes * reverting * removing more unneeded changes * addressing review comment * initial refactor * adding in more clarifying comments * fixing mock * resolving desource issues * addressing gosec scan for helper go file * addressing gosec * trying to fix bazel build * removal of interface to fix build * fixing maligned struct * addressing deepsource * fixing deepsource * addressing efficiency of type checking * fixing bazel test failure * fixing go linter errors * gaz * web changes * add w3signer * new kind * proper use * align * adding prysm validator flags to help flags list * addressing root comment * ci lint * fixing standardapi tests * fixing accounts_test after removal of keymanager from rpc server * fixing more unit tests * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update cmd/validator/flags/flags.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/service.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * addressing missed err checks * fixing mock tests * fixing gofmt * unskipping minimal e2e test and removing related TODOs * Update testing/endtoend/components/validator.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update testing/endtoend/components/validator.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * adding some error wrapers to clarify failure point * fixing bazel build with new error checks * taking preston's advice to make test fail faster to understand what's going on with the test * checking if genesis validators root is not zero hash * adding check for genesis validators root giving zero hash * fixing missing dependency * adding check for wallet * log all * fixing errors for http responses * switching marshal to pretty print * adding pretty sign request test * fixing base url setting * adding in check for web3signer and temporary wallet instead of having to open the wallet * refactoring web3signer to not require wallet * bazel build fix * fixing gazelle build * adding content type of request * fixing more bazel * removing unused code * removing unused comments * adding skip test back in * addressing a validation and error message * fix parse * body * fixing logic for datadir * improving error handling * show resp * fix * sign resp as str * point of pointer remove * sign resp * unmarshal sig resp * read body as str * adding more verbose logging * removing unused result * fixing unit test * reconfiguring files to properly nest code and mocks * fix build issue * using context when using client function calls * fixing based on suggestion * addressing comments * gaz * removing defined max timeout * reverting json print pretty * Update validator/accounts/wallet_edit.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * removing unneeded code restrictions * should not introduce new code that may impact existing key manager types * adjusting comments * adding in json validation * running go mod tidy * some logging * more logs * fixing typo * remove logs * testing without byte trim * fixing order or properties * gaz * tidy * reverting some logs * removing the confusing comments * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/client/aggregate.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * addressing pr comments * editing bytes test * Run gazelle update-repos * run gazelle * improving unit test coverage * fixing text * fixing a potential escaped error Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
217 lines
7.5 KiB
Go
217 lines
7.5 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
|
recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
|
|
grpc_opentracing "github.com/grpc-ecosystem/go-grpc-middleware/tracing/opentracing"
|
|
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus"
|
|
"github.com/prysmaticlabs/prysm/async/event"
|
|
"github.com/prysmaticlabs/prysm/io/logs"
|
|
"github.com/prysmaticlabs/prysm/monitoring/tracing"
|
|
ethpbservice "github.com/prysmaticlabs/prysm/proto/eth/service"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
validatorpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/validator-client"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts/wallet"
|
|
"github.com/prysmaticlabs/prysm/validator/client"
|
|
"github.com/prysmaticlabs/prysm/validator/db"
|
|
"github.com/sirupsen/logrus"
|
|
"go.opencensus.io/plugin/ocgrpc"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials"
|
|
"google.golang.org/grpc/reflection"
|
|
)
|
|
|
|
// Config options for the gRPC server.
|
|
type Config struct {
|
|
ValidatorGatewayHost string
|
|
ValidatorGatewayPort int
|
|
ValidatorMonitoringHost string
|
|
ValidatorMonitoringPort int
|
|
BeaconClientEndpoint string
|
|
ClientMaxCallRecvMsgSize int
|
|
ClientGrpcRetries uint
|
|
ClientGrpcRetryDelay time.Duration
|
|
ClientGrpcHeaders []string
|
|
ClientWithCert string
|
|
Host string
|
|
Port string
|
|
CertFlag string
|
|
KeyFlag string
|
|
ValDB db.Database
|
|
WalletDir string
|
|
ValidatorService *client.ValidatorService
|
|
SyncChecker client.SyncChecker
|
|
GenesisFetcher client.GenesisFetcher
|
|
WalletInitializedFeed *event.Feed
|
|
NodeGatewayEndpoint string
|
|
Wallet *wallet.Wallet
|
|
}
|
|
|
|
// Server defining a gRPC server for the remote signer API.
|
|
type Server struct {
|
|
logsStreamer logs.Streamer
|
|
streamLogsBufferSize int
|
|
beaconChainClient ethpb.BeaconChainClient
|
|
beaconNodeClient ethpb.NodeClient
|
|
beaconNodeValidatorClient ethpb.BeaconNodeValidatorClient
|
|
beaconNodeHealthClient ethpb.HealthClient
|
|
valDB db.Database
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
beaconClientEndpoint string
|
|
clientMaxCallRecvMsgSize int
|
|
clientGrpcRetries uint
|
|
clientGrpcRetryDelay time.Duration
|
|
clientGrpcHeaders []string
|
|
clientWithCert string
|
|
host string
|
|
port string
|
|
listener net.Listener
|
|
withCert string
|
|
withKey string
|
|
credentialError error
|
|
grpcServer *grpc.Server
|
|
jwtSecret []byte
|
|
validatorService *client.ValidatorService
|
|
syncChecker client.SyncChecker
|
|
genesisFetcher client.GenesisFetcher
|
|
walletDir string
|
|
wallet *wallet.Wallet
|
|
walletInitializedFeed *event.Feed
|
|
walletInitialized bool
|
|
nodeGatewayEndpoint string
|
|
validatorMonitoringHost string
|
|
validatorMonitoringPort int
|
|
validatorGatewayHost string
|
|
validatorGatewayPort int
|
|
}
|
|
|
|
// NewServer instantiates a new gRPC server.
|
|
func NewServer(ctx context.Context, cfg *Config) *Server {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
return &Server{
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
logsStreamer: logs.NewStreamServer(),
|
|
streamLogsBufferSize: 1000, // Enough to handle most bursts of logs in the validator client.
|
|
host: cfg.Host,
|
|
port: cfg.Port,
|
|
withCert: cfg.CertFlag,
|
|
withKey: cfg.KeyFlag,
|
|
beaconClientEndpoint: cfg.BeaconClientEndpoint,
|
|
clientMaxCallRecvMsgSize: cfg.ClientMaxCallRecvMsgSize,
|
|
clientGrpcRetries: cfg.ClientGrpcRetries,
|
|
clientGrpcRetryDelay: cfg.ClientGrpcRetryDelay,
|
|
clientGrpcHeaders: cfg.ClientGrpcHeaders,
|
|
clientWithCert: cfg.ClientWithCert,
|
|
valDB: cfg.ValDB,
|
|
validatorService: cfg.ValidatorService,
|
|
syncChecker: cfg.SyncChecker,
|
|
genesisFetcher: cfg.GenesisFetcher,
|
|
walletDir: cfg.WalletDir,
|
|
walletInitializedFeed: cfg.WalletInitializedFeed,
|
|
walletInitialized: cfg.Wallet != nil,
|
|
wallet: cfg.Wallet,
|
|
nodeGatewayEndpoint: cfg.NodeGatewayEndpoint,
|
|
validatorMonitoringHost: cfg.ValidatorMonitoringHost,
|
|
validatorMonitoringPort: cfg.ValidatorMonitoringPort,
|
|
validatorGatewayHost: cfg.ValidatorGatewayHost,
|
|
validatorGatewayPort: cfg.ValidatorGatewayPort,
|
|
}
|
|
}
|
|
|
|
// Start the gRPC server.
|
|
func (s *Server) Start() {
|
|
// Setup the gRPC server options and TLS configuration.
|
|
address := fmt.Sprintf("%s:%s", s.host, s.port)
|
|
lis, err := net.Listen("tcp", address)
|
|
if err != nil {
|
|
log.Errorf("Could not listen to port in Start() %s: %v", address, err)
|
|
}
|
|
s.listener = lis
|
|
|
|
// Register interceptors for metrics gathering as well as our
|
|
// own, custom JWT unary interceptor.
|
|
opts := []grpc.ServerOption{
|
|
grpc.StatsHandler(&ocgrpc.ServerHandler{}),
|
|
grpc.UnaryInterceptor(middleware.ChainUnaryServer(
|
|
recovery.UnaryServerInterceptor(
|
|
recovery.WithRecoveryHandlerContext(tracing.RecoveryHandlerFunc),
|
|
),
|
|
grpc_prometheus.UnaryServerInterceptor,
|
|
grpc_opentracing.UnaryServerInterceptor(),
|
|
s.JWTInterceptor(),
|
|
)),
|
|
}
|
|
grpc_prometheus.EnableHandlingTimeHistogram()
|
|
|
|
if s.withCert != "" && s.withKey != "" {
|
|
creds, err := credentials.NewServerTLSFromFile(s.withCert, s.withKey)
|
|
if err != nil {
|
|
log.WithError(err).Fatal("Could not load TLS keys")
|
|
}
|
|
opts = append(opts, grpc.Creds(creds))
|
|
log.WithFields(logrus.Fields{
|
|
"crt-path": s.withCert,
|
|
"key-path": s.withKey,
|
|
}).Info("Loaded TLS certificates")
|
|
}
|
|
s.grpcServer = grpc.NewServer(opts...)
|
|
|
|
// Register a gRPC client to the beacon node.
|
|
if err := s.registerBeaconClient(); err != nil {
|
|
log.WithError(err).Fatal("Could not register beacon chain gRPC client")
|
|
}
|
|
|
|
// Register services available for the gRPC server.
|
|
reflection.Register(s.grpcServer)
|
|
validatorpb.RegisterAuthServer(s.grpcServer, s)
|
|
validatorpb.RegisterWalletServer(s.grpcServer, s)
|
|
validatorpb.RegisterHealthServer(s.grpcServer, s)
|
|
validatorpb.RegisterBeaconServer(s.grpcServer, s)
|
|
validatorpb.RegisterAccountsServer(s.grpcServer, s)
|
|
ethpbservice.RegisterKeyManagementServer(s.grpcServer, s)
|
|
validatorpb.RegisterSlashingProtectionServer(s.grpcServer, s)
|
|
|
|
go func() {
|
|
if s.listener != nil {
|
|
if err := s.grpcServer.Serve(s.listener); err != nil {
|
|
log.Errorf("Could not serve: %v", err)
|
|
}
|
|
}
|
|
}()
|
|
log.WithField("address", address).Info("gRPC server listening on address")
|
|
if s.walletDir != "" {
|
|
token, err := s.initializeAuthToken(s.walletDir)
|
|
if err != nil {
|
|
log.Errorf("Could not initialize web auth token: %v", err)
|
|
return
|
|
}
|
|
validatorWebAddr := fmt.Sprintf("%s:%d", s.validatorGatewayHost, s.validatorGatewayPort)
|
|
logValidatorWebAuth(validatorWebAddr, token)
|
|
authTokenPath := filepath.Join(s.walletDir, authTokenFileName)
|
|
go s.refreshAuthTokenFromFileChanges(s.ctx, authTokenPath)
|
|
}
|
|
}
|
|
|
|
// Stop the gRPC server.
|
|
func (s *Server) Stop() error {
|
|
s.cancel()
|
|
if s.listener != nil {
|
|
s.grpcServer.GracefulStop()
|
|
log.Debug("Initiated graceful stop of server")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Status returns nil or credentialError.
|
|
func (s *Server) Status() error {
|
|
return s.credentialError
|
|
}
|