prysm-pulse/validator/rpc/auth.go
Raul Jordan 0961fef727
Implement Create and List Accounts Validator RPC (#7172)
* impl of accounts RPCs
* create and list accounts impls
* impl create account and list accounts
* tests pass
* imports
* fix test
2020-09-04 00:58:36 +00:00

138 lines
5.2 KiB
Go

package rpc
import (
"context"
"time"
"github.com/dgrijalva/jwt-go"
"github.com/pkg/errors"
"golang.org/x/crypto/bcrypt"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
pb "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2"
"github.com/prysmaticlabs/prysm/shared/promptutil"
"github.com/prysmaticlabs/prysm/shared/roughtime"
v2 "github.com/prysmaticlabs/prysm/validator/accounts/v2"
)
var (
tokenExpiryLength = 20 * time.Minute
hashCost = 8
)
// Signup to authenticate access to the validator RPC API using bcrypt and
// a sufficiently strong password check.
func (s *Server) Signup(ctx context.Context, req *pb.AuthRequest) (*pb.AuthResponse, error) {
// First, we check if the validator already has a password. In this case,
// the user should NOT be able to signup and the function will return an error.
existingPassword, err := s.valDB.HashedPasswordForAPI(ctx)
if err != nil {
return nil, status.Error(codes.Internal, "Could not retrieve hashed password from database")
}
if len(existingPassword) != 0 {
return nil, status.Error(codes.PermissionDenied, "Validator already has a password set, cannot signup")
}
// We check the strength of the password to ensure it is high-entropy,
// has the required character count, and contains only unicode characters.
if err := promptutil.ValidatePasswordInput(req.Password); err != nil {
return nil, status.Error(codes.InvalidArgument, "Could not validate password input")
}
// Salt and hash the password using the bcrypt algorithm
// The second argument is the cost of hashing, which we arbitrarily set as 8
// (this value can be more or less, depending on the computing power you wish to utilize)
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(req.Password), hashCost)
if err != nil {
return nil, status.Error(codes.Internal, "Could not generate hashed password")
}
// We store the hashed password to disk.
if err := s.valDB.SaveHashedPasswordForAPI(ctx, hashedPassword); err != nil {
return nil, status.Error(codes.Internal, "Could not save hashed password to database")
}
if err := s.initializeWallet(ctx, &v2.WalletConfig{
WalletDir: defaultWalletPath,
WalletPassword: req.Password,
}); err != nil {
return nil, status.Error(codes.Internal, "Could not initialize wallet")
}
return s.sendAuthResponse()
}
// Login to authenticate with the validator RPC API using a password.
func (s *Server) Login(ctx context.Context, req *pb.AuthRequest) (*pb.AuthResponse, error) {
// We retrieve the hashed password for the validator API from disk.
hashedPassword, err := s.valDB.HashedPasswordForAPI(ctx)
if err != nil {
return nil, status.Error(codes.Internal, "Could not retrieve hashed password from database")
}
// Compare the stored hashed password, with the hashed version of the password that was received.
if err := bcrypt.CompareHashAndPassword(hashedPassword, []byte(req.Password)); err != nil {
return nil, status.Error(codes.Unauthenticated, "Incorrect password")
}
if err := s.initializeWallet(ctx, &v2.WalletConfig{
WalletDir: defaultWalletPath,
WalletPassword: req.Password,
}); err != nil {
return nil, status.Error(codes.Internal, "Could not initialize wallet")
}
return s.sendAuthResponse()
}
// Sends an auth response via gRPC containing a new JWT token.
func (s *Server) sendAuthResponse() (*pb.AuthResponse, error) {
// If everything is fine here, construct the auth token.
tokenString, expirationTime, err := s.createTokenString()
if err != nil {
return nil, status.Error(codes.Internal, "Could not create jwt token string")
}
return &pb.AuthResponse{
Token: tokenString,
TokenExpiration: expirationTime,
}, nil
}
// Creates a JWT token string using the JWT key with an expiration timestamp.
func (s *Server) createTokenString() (string, uint64, error) {
// Create a new token object, specifying signing method and the claims
// you would like it to contain.
expirationTime := roughtime.Now().Add(tokenExpiryLength)
token := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.StandardClaims{
ExpiresAt: expirationTime.Unix(),
})
// Sign and get the complete encoded token as a string using the secret
tokenString, err := token.SignedString(s.jwtKey)
if err != nil {
return "", 0, err
}
return tokenString, uint64(expirationTime.Unix()), nil
}
// Initialize a wallet and send it over a global feed.
func (s *Server) initializeWallet(ctx context.Context, cfg *v2.WalletConfig) error {
// We first ensure the user has a wallet.
if err := v2.WalletExists(cfg.WalletDir); err != nil {
if errors.Is(err, v2.ErrNoWalletFound) {
return v2.ErrNoWalletFound
}
return errors.Wrap(err, "could not check if wallet exists")
}
// We fire an event with the opened wallet over
// a global feed signifying wallet initialization.
wallet, err := v2.OpenWallet(ctx, &v2.WalletConfig{
WalletDir: cfg.WalletDir,
WalletPassword: cfg.WalletPassword,
})
if err != nil {
return errors.Wrap(err, "could not open wallet")
}
s.walletInitialized = true
keymanager, err := wallet.InitializeKeymanager(ctx, true /* skip mnemonic confirm */)
if err != nil {
return errors.Wrap(err, "could not initialize keymanager")
}
s.keymanager = keymanager
s.wallet = wallet
s.walletInitializedFeed.Send(wallet)
return nil
}