mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
486 lines
15 KiB
Go
486 lines
15 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"net"
|
|
|
|
"github.com/spf13/afero"
|
|
"github.com/spf13/cobra"
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
|
|
"github.com/edgelesssys/constellation/cli/azure"
|
|
"github.com/edgelesssys/constellation/cli/file"
|
|
"github.com/edgelesssys/constellation/cli/gcp"
|
|
"github.com/edgelesssys/constellation/cli/proto"
|
|
"github.com/edgelesssys/constellation/cli/status"
|
|
"github.com/edgelesssys/constellation/cli/vpn"
|
|
coordinatorstate "github.com/edgelesssys/constellation/coordinator/state"
|
|
"github.com/edgelesssys/constellation/coordinator/util"
|
|
"github.com/edgelesssys/constellation/internal/config"
|
|
"github.com/edgelesssys/constellation/internal/state"
|
|
)
|
|
|
|
func newInitCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "init",
|
|
Short: "Initialize the Constellation. Start your confidential Kubernetes cluster.",
|
|
Long: "Initialize the Constellation. Start your confidential Kubernetes cluster.",
|
|
ValidArgsFunction: initCompletion,
|
|
Args: cobra.ExactArgs(0),
|
|
RunE: runInitialize,
|
|
}
|
|
cmd.Flags().String("privatekey", "", "path to your private key.")
|
|
cmd.Flags().String("publickey", "", "path to your public key.")
|
|
cmd.Flags().String("master-secret", "", "path to base64 encoded master secret.")
|
|
cmd.Flags().Bool("autoscale", false, "enable kubernetes cluster-autoscaler")
|
|
return cmd
|
|
}
|
|
|
|
// runInitialize runs the initialize command.
|
|
func runInitialize(cmd *cobra.Command, args []string) error {
|
|
fileHandler := file.NewHandler(afero.NewOsFs())
|
|
devConfigName, err := cmd.Flags().GetString("dev-config")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
config, err := config.FromFile(fileHandler, devConfigName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
protoClient := proto.NewClient(*config.Provider.GCP.PCRs)
|
|
defer protoClient.Close()
|
|
vpnClient, err := vpn.NewWithDefaults()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// We have to parse the context separately, since cmd.Context()
|
|
// returns nil during the tests otherwise.
|
|
return initialize(cmd.Context(), cmd, protoClient, vpnClient, serviceAccountClient{}, fileHandler, config, status.NewWaiter(*config.Provider.GCP.PCRs))
|
|
}
|
|
|
|
// initialize initializes a Constellation. Coordinator instances are activated as Coordinators and will
|
|
// themself activate the other peers as nodes.
|
|
func initialize(ctx context.Context, cmd *cobra.Command, protCl protoClient, vpnCl vpnConfigurer, serviceAccountCr serviceAccountCreator,
|
|
fileHandler file.Handler, config *config.Config, waiter statusWaiter,
|
|
) error {
|
|
flagArgs, err := evalFlagArgs(cmd, fileHandler, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var stat state.ConstellationState
|
|
err = fileHandler.ReadJSON(*config.StatePath, &stat)
|
|
if errors.Is(err, fs.ErrNotExist) {
|
|
return fmt.Errorf("nothing to initialize: %w", err)
|
|
} else if err != nil {
|
|
return err
|
|
}
|
|
|
|
switch stat.CloudProvider {
|
|
case "GCP":
|
|
if err := warnAboutPCRs(cmd, *config.Provider.GCP.PCRs, true); err != nil {
|
|
return err
|
|
}
|
|
case "Azure":
|
|
if err := warnAboutPCRs(cmd, *config.Provider.Azure.PCRs, true); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
serviceAccount, stat, err := serviceAccountCr.createServiceAccount(ctx, stat, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := fileHandler.WriteJSON(*config.StatePath, stat, true); err != nil {
|
|
return err
|
|
}
|
|
|
|
coordinators, nodes, err := getScalingGroupsFromConfig(stat, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
endpoints := ipsToEndpoints(append(coordinators.PublicIPs(), nodes.PublicIPs()...), *config.CoordinatorPort)
|
|
if err := waiter.WaitForAll(ctx, endpoints, coordinatorstate.AcceptingInit); err != nil {
|
|
return fmt.Errorf("failed to wait for peer status: %w", err)
|
|
}
|
|
|
|
var autoscalingNodeGroups []string
|
|
if flagArgs.autoscale {
|
|
autoscalingNodeGroups = append(autoscalingNodeGroups, nodes.GroupID)
|
|
}
|
|
|
|
input := activationInput{
|
|
coordinatorPubIP: coordinators.PublicIPs()[0],
|
|
pubKey: flagArgs.userPubKey,
|
|
masterSecret: flagArgs.masterSecret,
|
|
nodePrivIPs: nodes.PrivateIPs(),
|
|
autoscalingNodeGroups: autoscalingNodeGroups,
|
|
cloudServiceAccountURI: serviceAccount,
|
|
}
|
|
result, err := activate(ctx, cmd, protCl, input, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = result.writeOutput(cmd.OutOrStdout(), fileHandler, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if flagArgs.autoconfigureWG {
|
|
if err := configureVpn(vpnCl, result.clientVpnIP, result.coordinatorPubKey, result.coordinatorPubIP, flagArgs.userPrivKey); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func activate(ctx context.Context, cmd *cobra.Command, client protoClient, input activationInput, config *config.Config) (activationResult, error) {
|
|
if err := client.Connect(input.coordinatorPubIP, *config.CoordinatorPort); err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
|
|
respCl, err := client.Activate(ctx, input.pubKey, input.masterSecret, ipsToEndpoints(input.nodePrivIPs, *config.CoordinatorPort), input.autoscalingNodeGroups, input.cloudServiceAccountURI)
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
|
|
if err := respCl.WriteLogStream(cmd.OutOrStdout()); err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
|
|
clientVpnIp, err := respCl.GetClientVpnIp()
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
coordinatorPubKey, err := respCl.GetCoordinatorVpnKey()
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
kubeconfig, err := respCl.GetKubeconfig()
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
ownerID, err := respCl.GetOwnerID()
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
clusterID, err := respCl.GetClusterID()
|
|
if err != nil {
|
|
return activationResult{}, err
|
|
}
|
|
|
|
return activationResult{
|
|
clientVpnIP: clientVpnIp,
|
|
coordinatorPubKey: coordinatorPubKey,
|
|
coordinatorPubIP: input.coordinatorPubIP,
|
|
kubeconfig: kubeconfig,
|
|
ownerID: ownerID,
|
|
clusterID: clusterID,
|
|
}, nil
|
|
}
|
|
|
|
type activationInput struct {
|
|
coordinatorPubIP string
|
|
pubKey []byte
|
|
masterSecret []byte
|
|
nodePrivIPs []string
|
|
autoscalingNodeGroups []string
|
|
cloudServiceAccountURI string
|
|
}
|
|
|
|
type activationResult struct {
|
|
clientVpnIP string
|
|
coordinatorPubKey string
|
|
coordinatorPubIP string
|
|
kubeconfig string
|
|
ownerID string
|
|
clusterID string
|
|
}
|
|
|
|
func (res activationResult) writeOutput(w io.Writer, fileHandler file.Handler, config *config.Config) error {
|
|
fmt.Fprintln(w, "Your Constellation was successfully initialized.")
|
|
fmt.Fprintf(w, "Your WireGuard IP is %s\n", res.clientVpnIP)
|
|
fmt.Fprintf(w, "The Coordinator's public IP is %s\n", res.coordinatorPubIP)
|
|
fmt.Fprintf(w, "The Coordinator's public key is %s\n", res.coordinatorPubKey)
|
|
fmt.Fprintf(w, "The Constellation's owner identifier is %s\n", res.ownerID)
|
|
fmt.Fprintf(w, "The Constellation's unique identifier is %s\n", res.clusterID)
|
|
if err := fileHandler.Write(*config.AdminConfPath, []byte(res.kubeconfig), false); err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprintf(w, "Your Constellation Kubernetes configuration was successfully written to %s\n", *config.AdminConfPath)
|
|
return nil
|
|
}
|
|
|
|
// evalFlagArgs gets the flag values and does preprocessing of these values like
|
|
// reading the content from file path flags and deriving other values from flag combinations.
|
|
func evalFlagArgs(cmd *cobra.Command, fileHandler file.Handler, config *config.Config) (flagArgs, error) {
|
|
userPrivKeyPath, err := cmd.Flags().GetString("privatekey")
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
userPublicKeyPath, err := cmd.Flags().GetString("publickey")
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
userPrivKey, userPubKey, err := readVpnKey(fileHandler, userPrivKeyPath, userPublicKeyPath)
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
masterSecretPath, err := cmd.Flags().GetString("master-secret")
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
masterSecret, err := readOrGeneratedMasterSecret(cmd.OutOrStdout(), fileHandler, masterSecretPath, config)
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
autoscale, err := cmd.Flags().GetBool("autoscale")
|
|
if err != nil {
|
|
return flagArgs{}, err
|
|
}
|
|
|
|
return flagArgs{
|
|
userPrivKey: userPrivKey,
|
|
userPubKey: userPubKey,
|
|
autoconfigureWG: userPrivKeyPath != "",
|
|
autoscale: autoscale,
|
|
masterSecret: masterSecret,
|
|
}, nil
|
|
}
|
|
|
|
// flagArgs are the resulting values of flag preprocessing.
|
|
type flagArgs struct {
|
|
userPrivKey []byte
|
|
userPubKey []byte
|
|
masterSecret []byte
|
|
autoconfigureWG bool
|
|
autoscale bool
|
|
}
|
|
|
|
func readVpnKey(fileHandler file.Handler, privKeyPath, publicKeyPath string) (privKey, pubKey []byte, err error) {
|
|
if privKeyPath != "" {
|
|
privKey, err = fileHandler.Read(privKeyPath)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
privKeyParsed, err := wgtypes.ParseKey(string(privKey))
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
pubKey = []byte(privKeyParsed.PublicKey().String())
|
|
} else if publicKeyPath != "" {
|
|
pubKey, err = fileHandler.Read(publicKeyPath)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
if err := checkBase64WGKey(pubKey); err != nil {
|
|
return nil, nil, fmt.Errorf("wireguard public key is invalid: %w", err)
|
|
}
|
|
} else {
|
|
return nil, nil, errors.New("neither path to public nor private key provided")
|
|
}
|
|
return privKey, pubKey, nil
|
|
}
|
|
|
|
func configureVpn(vpnCl vpnConfigurer, clientVpnIp, coordinatorPubKey, coordinatorPublicIp string, privKey []byte) error {
|
|
err := vpnCl.Configure(clientVpnIp, coordinatorPubKey, coordinatorPublicIp, string(privKey))
|
|
if err != nil {
|
|
return fmt.Errorf("could not configure WireGuard automatically: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ipsToEndpoints(ips []string, port string) []string {
|
|
var endpoints []string
|
|
for _, ip := range ips {
|
|
endpoints = append(endpoints, net.JoinHostPort(ip, port))
|
|
}
|
|
return endpoints
|
|
}
|
|
|
|
func checkBase64WGKey(b []byte) error {
|
|
keyStr, err := base64.StdEncoding.DecodeString(string(b))
|
|
if err != nil {
|
|
return errors.New("key can't be decoded")
|
|
}
|
|
if length := len(keyStr); length != wireguardKeyLength {
|
|
return fmt.Errorf("key has invalid length %d", length)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// readOrGeneratedMasterSecret reads a base64 encoded master secret from file or generates a new 32 byte secret.
|
|
func readOrGeneratedMasterSecret(w io.Writer, fileHandler file.Handler, filename string, config *config.Config) ([]byte, error) {
|
|
if filename != "" {
|
|
// Try to read the base64 secret from file
|
|
encodedSecret, err := fileHandler.Read(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
decoded, err := base64.StdEncoding.DecodeString(string(encodedSecret))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(decoded) < masterSecretLengthMin {
|
|
return nil, errors.New("provided master secret is smaller than the required minimum of 16 Bytes")
|
|
}
|
|
return decoded, nil
|
|
}
|
|
|
|
// No file given, generate a new secret, and save it to disk
|
|
masterSecret, err := util.GenerateRandomBytes(masterSecretLengthDefault)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := fileHandler.Write(*config.MasterSecretPath, []byte(base64.StdEncoding.EncodeToString(masterSecret)), false); err != nil {
|
|
return nil, err
|
|
}
|
|
fmt.Fprintf(w, "Your Constellation master secret was successfully written to ./%s\n", *config.MasterSecretPath)
|
|
return masterSecret, nil
|
|
}
|
|
|
|
func getScalingGroupsFromConfig(stat state.ConstellationState, config *config.Config) (coordinators, nodes ScalingGroup, err error) {
|
|
switch {
|
|
case len(stat.EC2Instances) != 0:
|
|
return getAWSInstances(stat)
|
|
case len(stat.GCPCoordinators) != 0:
|
|
return getGCPInstances(stat, config)
|
|
case len(stat.AzureCoordinators) != 0:
|
|
return getAzureInstances(stat, config)
|
|
default:
|
|
return ScalingGroup{}, ScalingGroup{}, errors.New("no instances to init")
|
|
}
|
|
}
|
|
|
|
func getAWSInstances(stat state.ConstellationState) (coordinators, nodes ScalingGroup, err error) {
|
|
coordinatorID, coordinator, err := stat.EC2Instances.GetOne()
|
|
if err != nil {
|
|
return
|
|
}
|
|
// GroupID of coordinators is empty, since they currently do not scale.
|
|
coordinators = ScalingGroup{Instances: Instances{Instance(coordinator)}, GroupID: ""}
|
|
|
|
nodeMap := stat.EC2Instances.GetOthers(coordinatorID)
|
|
if len(nodeMap) == 0 {
|
|
return ScalingGroup{}, ScalingGroup{}, errors.New("no nodes available, can't create Constellation with one instance")
|
|
}
|
|
|
|
var nodeInstances Instances
|
|
for _, node := range nodeMap {
|
|
nodeInstances = append(nodeInstances, Instance(node))
|
|
}
|
|
|
|
// TODO: make min / max configurable and abstract autoscaling for different cloud providers
|
|
// TODO: GroupID of nodes is empty, since they currently do not scale.
|
|
nodes = ScalingGroup{Instances: nodeInstances, GroupID: ""}
|
|
|
|
return
|
|
}
|
|
|
|
func getGCPInstances(stat state.ConstellationState, config *config.Config) (coordinators, nodes ScalingGroup, err error) {
|
|
_, coordinator, err := stat.GCPCoordinators.GetOne()
|
|
if err != nil {
|
|
return
|
|
}
|
|
// GroupID of coordinators is empty, since they currently do not scale.
|
|
coordinators = ScalingGroup{Instances: Instances{Instance(coordinator)}, GroupID: ""}
|
|
|
|
nodeMap := stat.GCPNodes
|
|
if len(nodeMap) == 0 {
|
|
return ScalingGroup{}, ScalingGroup{}, errors.New("no nodes available, can't create Constellation with one instance")
|
|
}
|
|
|
|
var nodeInstances Instances
|
|
for _, node := range nodeMap {
|
|
nodeInstances = append(nodeInstances, Instance(node))
|
|
}
|
|
|
|
// TODO: make min / max configurable and abstract autoscaling for different cloud providers
|
|
nodes = ScalingGroup{
|
|
Instances: nodeInstances,
|
|
GroupID: gcp.AutoscalingNodeGroup(stat.GCPProject, stat.GCPZone, stat.GCPNodeInstanceGroup, *config.AutoscalingNodeGroupsMin, *config.AutoscalingNodeGroupsMax),
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func getAzureInstances(stat state.ConstellationState, config *config.Config) (coordinators, nodes ScalingGroup, err error) {
|
|
_, coordinator, err := stat.AzureCoordinators.GetOne()
|
|
if err != nil {
|
|
return
|
|
}
|
|
// GroupID of coordinators is empty, since they currently do not scale.
|
|
coordinators = ScalingGroup{Instances: Instances{Instance(coordinator)}, GroupID: ""}
|
|
|
|
nodeMap := stat.AzureNodes
|
|
if len(nodeMap) == 0 {
|
|
return ScalingGroup{}, ScalingGroup{}, errors.New("no nodes available, can't create Constellation with one instance")
|
|
}
|
|
|
|
var nodeInstances Instances
|
|
for _, node := range nodeMap {
|
|
nodeInstances = append(nodeInstances, Instance(node))
|
|
}
|
|
|
|
// TODO: make min / max configurable and abstract autoscaling for different cloud providers
|
|
nodes = ScalingGroup{
|
|
Instances: nodeInstances,
|
|
GroupID: azure.AutoscalingNodeGroup(stat.AzureNodesScaleSet, *config.AutoscalingNodeGroupsMin, *config.AutoscalingNodeGroupsMax),
|
|
}
|
|
return
|
|
}
|
|
|
|
// initCompletion handels the completion of CLI arguments. It is frequently called
|
|
// while the user types arguments of the command to suggest completion.
|
|
func initCompletion(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
if len(args) != 0 {
|
|
return []string{}, cobra.ShellCompDirectiveError
|
|
}
|
|
return []string{}, cobra.ShellCompDirectiveDefault
|
|
}
|
|
|
|
//
|
|
// TODO: Code below is target of multicloud refactoring.
|
|
//
|
|
|
|
// Instance is a cloud instance.
|
|
type Instance struct {
|
|
PublicIP string
|
|
PrivateIP string
|
|
}
|
|
|
|
type Instances []Instance
|
|
|
|
type ScalingGroup struct {
|
|
Instances
|
|
GroupID string
|
|
}
|
|
|
|
// PublicIPs returns the public IPs of all the instances.
|
|
func (i Instances) PublicIPs() []string {
|
|
var ips []string
|
|
for _, instance := range i {
|
|
ips = append(ips, instance.PublicIP)
|
|
}
|
|
return ips
|
|
}
|
|
|
|
// PrivateIPs returns the private IPs of all the instances of the Constellation.
|
|
func (i Instances) PrivateIPs() []string {
|
|
var ips []string
|
|
for _, instance := range i {
|
|
ips = append(ips, instance.PrivateIP)
|
|
}
|
|
return ips
|
|
}
|