2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-03-22 11:03:15 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2022-06-28 11:03:28 -04:00
|
|
|
"context"
|
2022-03-22 11:03:15 -04:00
|
|
|
"encoding/base64"
|
2022-06-28 11:03:28 -04:00
|
|
|
"encoding/json"
|
2022-03-22 11:03:15 -04:00
|
|
|
"errors"
|
2022-06-28 11:03:28 -04:00
|
|
|
"net"
|
|
|
|
"strconv"
|
2022-03-22 11:03:15 -04:00
|
|
|
"testing"
|
|
|
|
|
2022-10-11 06:24:33 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/atls"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/grpc/dialer"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/grpc/testdialer"
|
2022-11-21 11:02:33 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
2023-03-29 03:30:13 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/variant"
|
2022-09-21 07:47:57 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/verify/verifyproto"
|
2022-04-27 05:17:41 -04:00
|
|
|
"github.com/spf13/afero"
|
2022-03-22 11:03:15 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2022-06-28 11:03:28 -04:00
|
|
|
"google.golang.org/grpc"
|
2022-03-22 11:03:15 -04:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
rpcStatus "google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
func TestVerify(t *testing.T) {
|
|
|
|
zeroBase64 := base64.StdEncoding.EncodeToString([]byte("00000000000000000000000000000000"))
|
|
|
|
someErr := errors.New("failed")
|
2022-03-22 11:03:15 -04:00
|
|
|
|
|
|
|
testCases := map[string]struct {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider cloudprovider.Provider
|
2022-07-01 04:57:29 -04:00
|
|
|
protoClient *stubVerifyClient
|
2022-05-04 02:50:50 -04:00
|
|
|
nodeEndpointFlag string
|
2022-05-13 05:56:43 -04:00
|
|
|
configFlag string
|
2022-05-04 02:50:50 -04:00
|
|
|
ownerIDFlag string
|
|
|
|
clusterIDFlag string
|
2022-10-11 06:24:33 -04:00
|
|
|
idFile *clusterid.File
|
2022-07-01 04:57:29 -04:00
|
|
|
wantEndpoint string
|
2022-05-04 02:50:50 -04:00
|
|
|
wantErr bool
|
2022-03-22 11:03:15 -04:00
|
|
|
}{
|
2022-04-27 05:17:41 -04:00
|
|
|
"gcp": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{},
|
2022-07-01 04:57:29 -04:00
|
|
|
wantEndpoint: "192.0.2.1:1234",
|
2022-04-27 05:17:41 -04:00
|
|
|
},
|
|
|
|
"azure": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.Azure,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{},
|
2022-07-01 04:57:29 -04:00
|
|
|
wantEndpoint: "192.0.2.1:1234",
|
2022-05-04 02:50:50 -04:00
|
|
|
},
|
|
|
|
"default port": {
|
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: "192.0.2.1",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{},
|
2022-08-01 10:51:34 -04:00
|
|
|
wantEndpoint: "192.0.2.1:" + strconv.Itoa(constants.VerifyServiceNodePortGRPC),
|
2022-07-01 04:57:29 -04:00
|
|
|
},
|
|
|
|
"endpoint not set": {
|
2022-09-11 09:58:31 -04:00
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
clusterIDFlag: zeroBase64,
|
|
|
|
protoClient: &stubVerifyClient{},
|
|
|
|
wantErr: true,
|
2022-07-01 04:57:29 -04:00
|
|
|
},
|
|
|
|
"endpoint from id file": {
|
2022-09-11 09:58:31 -04:00
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
clusterIDFlag: zeroBase64,
|
|
|
|
protoClient: &stubVerifyClient{},
|
2022-10-11 06:24:33 -04:00
|
|
|
idFile: &clusterid.File{IP: "192.0.2.1"},
|
2022-09-11 09:58:31 -04:00
|
|
|
wantEndpoint: "192.0.2.1:" + strconv.Itoa(constants.VerifyServiceNodePortGRPC),
|
2022-07-01 04:57:29 -04:00
|
|
|
},
|
|
|
|
"override endpoint from details file": {
|
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: "192.0.2.2:1234",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-07-01 04:57:29 -04:00
|
|
|
protoClient: &stubVerifyClient{},
|
2022-10-11 06:24:33 -04:00
|
|
|
idFile: &clusterid.File{IP: "192.0.2.1"},
|
2022-07-01 04:57:29 -04:00
|
|
|
wantEndpoint: "192.0.2.2:1234",
|
2022-05-04 02:50:50 -04:00
|
|
|
},
|
|
|
|
"invalid endpoint": {
|
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: ":::::",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{},
|
2022-05-04 02:50:50 -04:00
|
|
|
wantErr: true,
|
2022-04-27 05:17:41 -04:00
|
|
|
},
|
|
|
|
"neither owner id nor cluster id set": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
|
|
|
wantErr: true,
|
2022-03-22 11:03:15 -04:00
|
|
|
},
|
2022-07-01 04:57:29 -04:00
|
|
|
"use owner id from id file": {
|
|
|
|
provider: cloudprovider.GCP,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
|
|
|
protoClient: &stubVerifyClient{},
|
2022-10-11 06:24:33 -04:00
|
|
|
idFile: &clusterid.File{OwnerID: zeroBase64},
|
2022-07-01 04:57:29 -04:00
|
|
|
wantEndpoint: "192.0.2.1:1234",
|
|
|
|
},
|
2022-05-13 05:56:43 -04:00
|
|
|
"config file not existing": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.GCP,
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-05-04 02:50:50 -04:00
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
2022-05-13 05:56:43 -04:00
|
|
|
configFlag: "./file",
|
2022-05-04 02:50:50 -04:00
|
|
|
wantErr: true,
|
2022-04-27 05:17:41 -04:00
|
|
|
},
|
|
|
|
"error protoClient GetState": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.Azure,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{verifyErr: rpcStatus.Error(codes.Internal, "failed")},
|
2022-05-04 02:50:50 -04:00
|
|
|
wantErr: true,
|
2022-03-22 11:03:15 -04:00
|
|
|
},
|
2022-04-27 05:17:41 -04:00
|
|
|
"error protoClient GetState not rpc": {
|
2022-05-04 02:50:50 -04:00
|
|
|
provider: cloudprovider.Azure,
|
|
|
|
nodeEndpointFlag: "192.0.2.1:1234",
|
2022-09-11 09:58:31 -04:00
|
|
|
clusterIDFlag: zeroBase64,
|
2022-06-28 11:03:28 -04:00
|
|
|
protoClient: &stubVerifyClient{verifyErr: someErr},
|
2022-05-04 02:50:50 -04:00
|
|
|
wantErr: true,
|
2022-03-22 11:03:15 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
2022-06-08 02:14:28 -04:00
|
|
|
cmd := NewVerifyCmd()
|
2022-08-12 09:59:45 -04:00
|
|
|
cmd.Flags().String("config", constants.ConfigFilename, "") // register persistent flag manually
|
2023-01-31 05:45:31 -05:00
|
|
|
cmd.Flags().Bool("force", true, "") // register persistent flag manually
|
2022-05-02 16:34:59 -04:00
|
|
|
out := &bytes.Buffer{}
|
2022-04-27 05:17:41 -04:00
|
|
|
cmd.SetOut(out)
|
2022-05-02 16:34:59 -04:00
|
|
|
cmd.SetErr(&bytes.Buffer{})
|
2022-05-13 05:56:43 -04:00
|
|
|
if tc.configFlag != "" {
|
|
|
|
require.NoError(cmd.Flags().Set("config", tc.configFlag))
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
if tc.ownerIDFlag != "" {
|
|
|
|
require.NoError(cmd.Flags().Set("owner-id", tc.ownerIDFlag))
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
if tc.clusterIDFlag != "" {
|
|
|
|
require.NoError(cmd.Flags().Set("cluster-id", tc.clusterIDFlag))
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-05-04 02:50:50 -04:00
|
|
|
if tc.nodeEndpointFlag != "" {
|
|
|
|
require.NoError(cmd.Flags().Set("node-endpoint", tc.nodeEndpointFlag))
|
|
|
|
}
|
2022-08-29 08:18:05 -04:00
|
|
|
fileHandler := file.NewHandler(afero.NewMemMapFs())
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-08-23 11:49:55 -04:00
|
|
|
config := defaultConfigWithExpectedMeasurements(t, config.Default(), tc.provider)
|
2022-08-12 09:59:45 -04:00
|
|
|
require.NoError(fileHandler.WriteYAML(constants.ConfigFilename, config))
|
2022-07-01 04:57:29 -04:00
|
|
|
if tc.idFile != nil {
|
2022-07-05 07:52:36 -04:00
|
|
|
require.NoError(fileHandler.WriteJSON(constants.ClusterIDsFileName, tc.idFile, file.OptNone))
|
2022-07-01 04:57:29 -04:00
|
|
|
}
|
|
|
|
|
2022-11-21 11:02:33 -05:00
|
|
|
v := &verifyCmd{log: logger.NewTest(t)}
|
|
|
|
err := v.verify(cmd, fileHandler, tc.protoClient)
|
2022-03-22 11:03:15 -04:00
|
|
|
|
2022-04-26 10:54:05 -04:00
|
|
|
if tc.wantErr {
|
2022-03-22 11:03:15 -04:00
|
|
|
assert.Error(err)
|
|
|
|
} else {
|
|
|
|
assert.NoError(err)
|
2022-04-27 05:17:41 -04:00
|
|
|
assert.Contains(out.String(), "OK")
|
2022-07-01 04:57:29 -04:00
|
|
|
assert.Equal(tc.wantEndpoint, tc.protoClient.endpoint)
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 11:03:28 -04:00
|
|
|
func TestVerifyClient(t *testing.T) {
|
|
|
|
testCases := map[string]struct {
|
|
|
|
attestationDoc atls.FakeAttestationDoc
|
|
|
|
nonce []byte
|
|
|
|
attestationErr error
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
"success": {
|
|
|
|
attestationDoc: atls.FakeAttestationDoc{
|
2023-01-17 09:28:07 -05:00
|
|
|
UserData: []byte(constants.ConstellationVerifyServiceUserData),
|
2022-06-28 11:03:28 -04:00
|
|
|
Nonce: []byte("nonce"),
|
|
|
|
},
|
2023-01-17 09:28:07 -05:00
|
|
|
nonce: []byte("nonce"),
|
2022-06-28 11:03:28 -04:00
|
|
|
},
|
|
|
|
"attestation error": {
|
|
|
|
attestationDoc: atls.FakeAttestationDoc{
|
2023-01-17 09:28:07 -05:00
|
|
|
UserData: []byte(constants.ConstellationVerifyServiceUserData),
|
2022-06-28 11:03:28 -04:00
|
|
|
Nonce: []byte("nonce"),
|
|
|
|
},
|
|
|
|
nonce: []byte("nonce"),
|
|
|
|
attestationErr: errors.New("error"),
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
"user data does not match": {
|
|
|
|
attestationDoc: atls.FakeAttestationDoc{
|
|
|
|
UserData: []byte("wrong user data"),
|
|
|
|
Nonce: []byte("nonce"),
|
|
|
|
},
|
2023-01-17 09:28:07 -05:00
|
|
|
nonce: []byte("nonce"),
|
|
|
|
wantErr: true,
|
2022-06-28 11:03:28 -04:00
|
|
|
},
|
|
|
|
"nonce does not match": {
|
|
|
|
attestationDoc: atls.FakeAttestationDoc{
|
2023-01-17 09:28:07 -05:00
|
|
|
UserData: []byte(constants.ConstellationVerifyServiceUserData),
|
2022-06-28 11:03:28 -04:00
|
|
|
Nonce: []byte("wrong nonce"),
|
|
|
|
},
|
2023-01-17 09:28:07 -05:00
|
|
|
nonce: []byte("nonce"),
|
|
|
|
wantErr: true,
|
2022-06-28 11:03:28 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
attestation, err := json.Marshal(tc.attestationDoc)
|
|
|
|
require.NoError(err)
|
|
|
|
verifyAPI := &stubVerifyAPI{
|
|
|
|
attestation: &verifyproto.GetAttestationResponse{Attestation: attestation},
|
|
|
|
attestationErr: tc.attestationErr,
|
|
|
|
}
|
|
|
|
|
|
|
|
netDialer := testdialer.NewBufconnDialer()
|
|
|
|
dialer := dialer.New(nil, nil, netDialer)
|
|
|
|
verifyServer := grpc.NewServer()
|
|
|
|
verifyproto.RegisterAPIServer(verifyServer, verifyAPI)
|
|
|
|
|
|
|
|
addr := net.JoinHostPort("192.0.2.1", strconv.Itoa(constants.VerifyServiceNodePortGRPC))
|
|
|
|
listener := netDialer.GetListener(addr)
|
|
|
|
go verifyServer.Serve(listener)
|
|
|
|
defer verifyServer.GracefulStop()
|
|
|
|
|
2022-11-21 11:02:33 -05:00
|
|
|
verifier := &constellationVerifier{dialer: dialer, log: logger.NewTest(t)}
|
2022-06-28 11:03:28 -04:00
|
|
|
request := &verifyproto.GetAttestationRequest{
|
2023-01-17 09:28:07 -05:00
|
|
|
Nonce: tc.nonce,
|
2022-06-28 11:03:28 -04:00
|
|
|
}
|
|
|
|
|
2023-03-29 03:30:13 -04:00
|
|
|
err = verifier.Verify(context.Background(), addr, request, atls.NewFakeValidator(variant.Dummy{}))
|
2022-06-28 11:03:28 -04:00
|
|
|
|
|
|
|
if tc.wantErr {
|
|
|
|
assert.Error(err)
|
|
|
|
} else {
|
|
|
|
assert.NoError(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type stubVerifyClient struct {
|
|
|
|
verifyErr error
|
2022-07-01 04:57:29 -04:00
|
|
|
endpoint string
|
2022-06-28 11:03:28 -04:00
|
|
|
}
|
|
|
|
|
2023-03-20 06:03:36 -04:00
|
|
|
func (c *stubVerifyClient) Verify(_ context.Context, endpoint string, _ *verifyproto.GetAttestationRequest, _ atls.Validator) error {
|
2022-07-01 04:57:29 -04:00
|
|
|
c.endpoint = endpoint
|
2022-06-28 11:03:28 -04:00
|
|
|
return c.verifyErr
|
|
|
|
}
|
|
|
|
|
|
|
|
type stubVerifyAPI struct {
|
|
|
|
attestation *verifyproto.GetAttestationResponse
|
|
|
|
attestationErr error
|
|
|
|
verifyproto.UnimplementedAPIServer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a stubVerifyAPI) GetAttestation(context.Context, *verifyproto.GetAttestationRequest) (*verifyproto.GetAttestationResponse, error) {
|
|
|
|
return a.attestation, a.attestationErr
|
|
|
|
}
|
2022-07-29 02:24:13 -04:00
|
|
|
|
|
|
|
func TestAddPortIfMissing(t *testing.T) {
|
|
|
|
testCases := map[string]struct {
|
|
|
|
endpoint string
|
|
|
|
defaultPort int
|
|
|
|
wantResult string
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
"ip and port": {
|
|
|
|
endpoint: "192.0.2.1:2",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantResult: "192.0.2.1:2",
|
|
|
|
},
|
|
|
|
"hostname and port": {
|
|
|
|
endpoint: "foo:2",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantResult: "foo:2",
|
|
|
|
},
|
|
|
|
"ip": {
|
|
|
|
endpoint: "192.0.2.1",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantResult: "192.0.2.1:3",
|
|
|
|
},
|
|
|
|
"hostname": {
|
|
|
|
endpoint: "foo",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantResult: "foo:3",
|
|
|
|
},
|
|
|
|
"empty endpoint": {
|
|
|
|
endpoint: "",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
"invalid endpoint": {
|
|
|
|
endpoint: "foo:2:2",
|
|
|
|
defaultPort: 3,
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, tc := range testCases {
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
res, err := addPortIfMissing(tc.endpoint, tc.defaultPort)
|
|
|
|
if tc.wantErr {
|
|
|
|
assert.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
require.NoError(err)
|
|
|
|
assert.Equal(tc.wantResult, res)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|