2022-03-22 11:03:15 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
"github.com/edgelesssys/constellation/cli/cloud/cloudcmd"
|
2022-06-07 05:05:52 -04:00
|
|
|
"github.com/edgelesssys/constellation/cli/internal/proto"
|
2022-06-07 05:08:44 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/cloud/cloudprovider"
|
2022-05-04 02:50:50 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/constants"
|
2022-05-16 11:32:00 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/file"
|
2022-04-27 05:17:41 -04:00
|
|
|
"github.com/spf13/afero"
|
2022-03-22 11:03:15 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
rpcStatus "google.golang.org/grpc/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newVerifyCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
2022-05-04 02:50:50 -04:00
|
|
|
Use: "verify {aws|azure|gcp}",
|
2022-05-09 11:02:47 -04:00
|
|
|
Short: "Verify the confidential properties of a Constellation cluster",
|
|
|
|
Long: "Verify the confidential properties of a Constellation cluster.",
|
2022-04-27 05:17:41 -04:00
|
|
|
Args: cobra.MatchAll(
|
2022-05-04 02:50:50 -04:00
|
|
|
cobra.ExactArgs(1),
|
2022-04-27 05:17:41 -04:00
|
|
|
isCloudProvider(0),
|
2022-05-04 02:50:50 -04:00
|
|
|
warnAWS(0),
|
2022-04-27 05:17:41 -04:00
|
|
|
),
|
|
|
|
RunE: runVerify,
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
2022-05-06 11:51:41 -04:00
|
|
|
cmd.Flags().String("owner-id", "", "verify using the owner identity derived from the master secret")
|
|
|
|
cmd.Flags().String("unique-id", "", "verify using the unique cluster identity")
|
|
|
|
cmd.Flags().StringP("node-endpoint", "e", "", "endpoint of the node to verify, passed as HOST[:PORT] (required)")
|
2022-05-04 02:50:50 -04:00
|
|
|
must(cmd.MarkFlagRequired("node-endpoint"))
|
2022-03-22 11:03:15 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
func runVerify(cmd *cobra.Command, args []string) error {
|
|
|
|
provider := cloudprovider.FromString(args[0])
|
|
|
|
fileHandler := file.NewHandler(afero.NewOsFs())
|
|
|
|
protoClient := &proto.Client{}
|
|
|
|
defer protoClient.Close()
|
2022-05-04 02:50:50 -04:00
|
|
|
return verify(cmd.Context(), cmd, provider, fileHandler, protoClient)
|
2022-04-27 05:17:41 -04:00
|
|
|
}
|
|
|
|
|
2022-05-04 02:50:50 -04:00
|
|
|
func verify(ctx context.Context, cmd *cobra.Command, provider cloudprovider.Provider, fileHandler file.Handler, protoClient protoClient) error {
|
2022-04-27 05:17:41 -04:00
|
|
|
flags, err := parseVerifyFlags(cmd)
|
|
|
|
if err != nil {
|
2022-03-22 11:03:15 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-23 09:01:39 -04:00
|
|
|
config, err := readConfig(cmd.OutOrStdout(), fileHandler, flags.configPath, provider)
|
2022-04-27 05:17:41 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
validators, err := cloudcmd.NewValidators(provider, config)
|
2022-03-22 11:03:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
if err := validators.UpdateInitPCRs(flags.ownerID, flags.clusterID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if validators.Warnings() != "" {
|
|
|
|
cmd.Print(validators.Warnings())
|
|
|
|
}
|
|
|
|
|
2022-05-06 07:56:02 -04:00
|
|
|
if err := protoClient.Connect(flags.endpoint, validators.V()); err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := protoClient.GetState(ctx); err != nil {
|
2022-03-22 11:03:15 -04:00
|
|
|
if err, ok := rpcStatus.FromError(err); ok {
|
|
|
|
return fmt.Errorf("unable to verify Constellation cluster: %s", err.Message())
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2022-04-27 05:17:41 -04:00
|
|
|
|
|
|
|
cmd.Println("OK")
|
2022-03-22 11:03:15 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
func parseVerifyFlags(cmd *cobra.Command) (verifyFlags, error) {
|
2022-03-22 11:03:15 -04:00
|
|
|
ownerID, err := cmd.Flags().GetString("owner-id")
|
|
|
|
if err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return verifyFlags{}, err
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
clusterID, err := cmd.Flags().GetString("unique-id")
|
|
|
|
if err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return verifyFlags{}, err
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
if ownerID == "" && clusterID == "" {
|
2022-05-04 03:13:46 -04:00
|
|
|
return verifyFlags{}, errors.New("neither owner ID nor unique ID provided to verify the cluster")
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-05-04 02:50:50 -04:00
|
|
|
endpoint, err := cmd.Flags().GetString("node-endpoint")
|
|
|
|
if err != nil {
|
|
|
|
return verifyFlags{}, err
|
|
|
|
}
|
2022-05-06 07:56:02 -04:00
|
|
|
endpoint, err = validateEndpoint(endpoint, constants.CoordinatorPort)
|
2022-05-04 02:50:50 -04:00
|
|
|
if err != nil {
|
2022-05-06 07:56:02 -04:00
|
|
|
return verifyFlags{}, err
|
2022-05-04 02:50:50 -04:00
|
|
|
}
|
|
|
|
|
2022-05-13 05:56:43 -04:00
|
|
|
configPath, err := cmd.Flags().GetString("config")
|
2022-03-22 11:03:15 -04:00
|
|
|
if err != nil {
|
2022-04-27 05:17:41 -04:00
|
|
|
return verifyFlags{}, err
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
return verifyFlags{
|
2022-05-13 05:56:43 -04:00
|
|
|
endpoint: endpoint,
|
|
|
|
configPath: configPath,
|
|
|
|
ownerID: ownerID,
|
|
|
|
clusterID: clusterID,
|
2022-04-27 05:17:41 -04:00
|
|
|
}, nil
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 05:17:41 -04:00
|
|
|
type verifyFlags struct {
|
2022-05-13 05:56:43 -04:00
|
|
|
endpoint string
|
|
|
|
ownerID string
|
|
|
|
clusterID string
|
|
|
|
configPath string
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// verifyCompletion handels the completion of CLI arguments. It is frequently called
|
|
|
|
// while the user types arguments of the command to suggest completion.
|
|
|
|
func verifyCompletion(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
|
|
switch len(args) {
|
2022-04-27 05:17:41 -04:00
|
|
|
case 0:
|
|
|
|
return []string{"gcp", "azure"}, cobra.ShellCompDirectiveNoFileComp
|
2022-03-22 11:03:15 -04:00
|
|
|
default:
|
|
|
|
return []string{}, cobra.ShellCompDirectiveError
|
|
|
|
}
|
|
|
|
}
|