Fix segfault from empty GetSignedVAARequest (#1069)

This commit is contained in:
Jonathan Claudius 2022-04-11 19:16:59 -04:00 committed by GitHub
parent bad4f7061b
commit b18a6c8c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 3 deletions

View File

@ -4,6 +4,7 @@ import (
"context"
"encoding/hex"
"fmt"
"github.com/certusone/wormhole/node/pkg/common"
"github.com/certusone/wormhole/node/pkg/db"
publicrpcv1 "github.com/certusone/wormhole/node/pkg/proto/publicrpc/v1"
@ -59,6 +60,10 @@ func (s *PublicrpcServer) GetLastHeartbeats(ctx context.Context, req *publicrpcv
}
func (s *PublicrpcServer) GetSignedVAA(ctx context.Context, req *publicrpcv1.GetSignedVAARequest) (*publicrpcv1.GetSignedVAAResponse, error) {
if req.MessageId == nil {
return nil, status.Error(codes.InvalidArgument, "no message ID specified")
}
address, err := hex.DecodeString(req.MessageId.EmitterAddress)
if err != nil {
return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("failed to decode address: %v", err))
@ -66,9 +71,6 @@ func (s *PublicrpcServer) GetSignedVAA(ctx context.Context, req *publicrpcv1.Get
if len(address) != 32 {
return nil, status.Error(codes.InvalidArgument, "address must be 32 bytes")
}
if req.MessageId == nil {
return nil, status.Error(codes.InvalidArgument, "no message ID specified")
}
addr := vaa.Address{}
copy(addr[:], address)

View File

@ -0,0 +1,64 @@
package publicrpc
import (
"context"
publicrpcv1 "github.com/certusone/wormhole/node/pkg/proto/publicrpc/v1"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"testing"
)
func TestGetSignedVAANoMessage(t *testing.T) {
msg := publicrpcv1.GetSignedVAARequest{}
ctx := context.Background()
logger, _ := zap.NewProduction()
server := &PublicrpcServer{logger: logger}
resp, err := server.GetSignedVAA(ctx, &msg)
assert.Nil(t, resp)
expected_err := status.Error(codes.InvalidArgument, "no message ID specified")
assert.Equal(t, expected_err, err)
}
func TestGetSignedVAANoAddress(t *testing.T) {
msg := publicrpcv1.GetSignedVAARequest{MessageId: &publicrpcv1.MessageID{}}
ctx := context.Background()
logger, _ := zap.NewProduction()
server := &PublicrpcServer{logger: logger}
resp, err := server.GetSignedVAA(ctx, &msg)
assert.Nil(t, resp)
expected_err := status.Error(codes.InvalidArgument, "address must be 32 bytes")
assert.Equal(t, expected_err, err)
}
func TestGetSignedVAABadAddress(t *testing.T) {
chainID := uint32(1)
emitterAddr := "AAAA"
seq := uint64(1)
msg := publicrpcv1.GetSignedVAARequest{
MessageId: &publicrpcv1.MessageID{
EmitterChain: publicrpcv1.ChainID(chainID),
EmitterAddress: emitterAddr,
Sequence: seq,
},
}
ctx := context.Background()
logger, _ := zap.NewProduction()
server := &PublicrpcServer{logger: logger}
resp, err := server.GetSignedVAA(ctx, &msg)
assert.Nil(t, resp)
expected_err := status.Error(codes.InvalidArgument, "address must be 32 bytes")
assert.Equal(t, expected_err, err)
}