2023-10-24 09:39:18 -04:00
/ *
Copyright ( c ) Edgeless Systems GmbH
SPDX - License - Identifier : AGPL - 3.0 - only
* /
package cmd
import (
"bytes"
"errors"
"fmt"
"io"
"path/filepath"
"text/tabwriter"
2023-12-04 07:40:24 -05:00
"github.com/edgelesssys/constellation/v2/internal/attestation/choose"
2023-10-24 09:39:18 -04:00
"github.com/edgelesssys/constellation/v2/internal/config"
"github.com/edgelesssys/constellation/v2/internal/constants"
2023-12-04 07:40:24 -05:00
"github.com/edgelesssys/constellation/v2/internal/constellation"
2023-12-08 10:27:04 -05:00
"github.com/edgelesssys/constellation/v2/internal/constellation/state"
2023-10-24 09:39:18 -04:00
"github.com/edgelesssys/constellation/v2/internal/file"
"github.com/edgelesssys/constellation/v2/internal/kms/uri"
"github.com/spf13/cobra"
)
// runInit runs the init RPC to set up the Kubernetes cluster.
// This function only needs to be run once per cluster.
// On success, it writes the Kubernetes admin config file to disk.
// Therefore it is skipped if the Kubernetes admin config file already exists.
func ( a * applyCmd ) runInit ( cmd * cobra . Command , conf * config . Config , stateFile * state . State ) ( * bytes . Buffer , error ) {
2024-02-08 09:20:01 -05:00
a . log . Debug ( fmt . Sprintf ( "Creating aTLS Validator for %s" , conf . GetAttestationConfig ( ) . GetVariant ( ) ) )
2023-12-04 07:40:24 -05:00
validator , err := choose . Validator ( conf . GetAttestationConfig ( ) , a . wLog )
2023-10-24 09:39:18 -04:00
if err != nil {
2023-12-04 07:40:24 -05:00
return nil , fmt . Errorf ( "creating validator: %w" , err )
2023-10-24 09:39:18 -04:00
}
2024-02-08 09:20:01 -05:00
a . log . Debug ( "Running init RPC" )
2023-10-24 09:39:18 -04:00
masterSecret , err := a . generateAndPersistMasterSecret ( cmd . OutOrStdout ( ) )
if err != nil {
return nil , fmt . Errorf ( "generating master secret: %w" , err )
}
2023-12-04 07:40:24 -05:00
measurementSalt , err := a . applier . GenerateMeasurementSalt ( )
2023-10-24 09:39:18 -04:00
if err != nil {
return nil , fmt . Errorf ( "generating measurement salt: %w" , err )
}
2023-12-04 07:40:24 -05:00
clusterLogs := & bytes . Buffer { }
resp , err := a . applier . Init (
cmd . Context ( ) , validator , stateFile , clusterLogs ,
constellation . InitPayload {
MasterSecret : masterSecret ,
MeasurementSalt : measurementSalt ,
K8sVersion : conf . KubernetesVersion ,
ConformanceMode : a . flags . conformance ,
ServiceCIDR : conf . ServiceCIDR ,
} )
if len ( clusterLogs . Bytes ( ) ) > 0 {
if err := a . fileHandler . Write ( constants . ErrorLog , clusterLogs . Bytes ( ) , file . OptAppend ) ; err != nil {
return nil , fmt . Errorf ( "writing bootstrapper logs: %w" , err )
}
2023-10-24 09:39:18 -04:00
}
if err != nil {
2023-12-04 07:40:24 -05:00
var nonRetriable * constellation . NonRetriableInitError
2023-10-24 09:39:18 -04:00
if errors . As ( err , & nonRetriable ) {
cmd . PrintErrln ( "Cluster initialization failed. This error is not recoverable." )
cmd . PrintErrln ( "Terminate your cluster and try again." )
2023-12-04 07:40:24 -05:00
if nonRetriable . LogCollectionErr != nil {
cmd . PrintErrf ( "Failed to collect logs from bootstrapper: %s\n" , nonRetriable . LogCollectionErr )
2023-10-24 09:39:18 -04:00
} else {
cmd . PrintErrf ( "Fetched bootstrapper logs are stored in %q\n" , a . flags . pathPrefixer . PrefixPrintablePath ( constants . ErrorLog ) )
}
}
return nil , err
}
2024-02-08 09:20:01 -05:00
a . log . Debug ( "Initialization request successful" )
2023-10-24 09:39:18 -04:00
2024-02-08 09:20:01 -05:00
a . log . Debug ( "Buffering init success message" )
2023-10-24 09:39:18 -04:00
bufferedOutput := & bytes . Buffer { }
if err := a . writeInitOutput ( stateFile , resp , a . flags . mergeConfigs , bufferedOutput , measurementSalt ) ; err != nil {
return nil , err
}
return bufferedOutput , nil
}
// generateAndPersistMasterSecret generates a 32 byte master secret and saves it to disk.
func ( a * applyCmd ) generateAndPersistMasterSecret ( outWriter io . Writer ) ( uri . MasterSecret , error ) {
2023-12-04 07:40:24 -05:00
secret , err := a . applier . GenerateMasterSecret ( )
2023-10-24 09:39:18 -04:00
if err != nil {
2023-12-04 07:40:24 -05:00
return uri . MasterSecret { } , fmt . Errorf ( "generating master secret: %w" , err )
2023-10-24 09:39:18 -04:00
}
if err := a . fileHandler . WriteJSON ( constants . MasterSecretFilename , secret , file . OptNone ) ; err != nil {
2023-12-04 07:40:24 -05:00
return uri . MasterSecret { } , fmt . Errorf ( "writing master secret: %w" , err )
2023-10-24 09:39:18 -04:00
}
fmt . Fprintf ( outWriter , "Your Constellation master secret was successfully written to %q\n" , a . flags . pathPrefixer . PrefixPrintablePath ( constants . MasterSecretFilename ) )
return secret , nil
}
// writeInitOutput writes the output of a cluster initialization to the
// state- / kubeconfig-file and saves it to disk.
func ( a * applyCmd ) writeInitOutput (
2023-12-11 09:55:44 -05:00
stateFile * state . State , initResp constellation . InitOutput ,
2023-10-24 09:39:18 -04:00
mergeConfig bool , wr io . Writer , measurementSalt [ ] byte ,
) error {
fmt . Fprint ( wr , "Your Constellation cluster was successfully initialized.\n\n" )
stateFile . SetClusterValues ( state . ClusterValues {
MeasurementSalt : measurementSalt ,
2023-12-11 09:55:44 -05:00
OwnerID : initResp . OwnerID ,
ClusterID : initResp . ClusterID ,
2023-10-24 09:39:18 -04:00
} )
tw := tabwriter . NewWriter ( wr , 0 , 0 , 2 , ' ' , 0 )
2023-12-11 09:55:44 -05:00
writeRow ( tw , "Constellation cluster identifier" , initResp . ClusterID )
2023-10-24 09:39:18 -04:00
writeRow ( tw , "Kubernetes configuration" , a . flags . pathPrefixer . PrefixPrintablePath ( constants . AdminConfFilename ) )
tw . Flush ( )
fmt . Fprintln ( wr )
2023-12-11 09:55:44 -05:00
if err := a . fileHandler . Write ( constants . AdminConfFilename , initResp . Kubeconfig , file . OptNone ) ; err != nil {
2023-10-24 09:39:18 -04:00
return fmt . Errorf ( "writing kubeconfig: %w" , err )
}
2024-02-08 09:20:01 -05:00
a . log . Debug ( fmt . Sprintf ( "Kubeconfig written to %s" , a . flags . pathPrefixer . PrefixPrintablePath ( constants . AdminConfFilename ) ) )
2023-10-24 09:39:18 -04:00
if mergeConfig {
if err := a . merger . mergeConfigs ( constants . AdminConfFilename , a . fileHandler ) ; err != nil {
writeRow ( tw , "Failed to automatically merge kubeconfig" , err . Error ( ) )
mergeConfig = false // Set to false so we don't print the wrong message below.
} else {
writeRow ( tw , "Kubernetes configuration merged with default config" , "" )
}
}
if err := stateFile . WriteToFile ( a . fileHandler , constants . StateFilename ) ; err != nil {
return fmt . Errorf ( "writing Constellation state file: %w" , err )
}
2024-02-08 09:20:01 -05:00
a . log . Debug ( fmt . Sprintf ( "Constellation state file written to %s" , a . flags . pathPrefixer . PrefixPrintablePath ( constants . StateFilename ) ) )
2023-10-24 09:39:18 -04:00
if ! mergeConfig {
fmt . Fprintln ( wr , "You can now connect to your cluster by executing:" )
exportPath , err := filepath . Abs ( constants . AdminConfFilename )
if err != nil {
return fmt . Errorf ( "getting absolute path to kubeconfig: %w" , err )
}
fmt . Fprintf ( wr , "\texport KUBECONFIG=%q\n" , exportPath )
} else {
fmt . Fprintln ( wr , "Constellation kubeconfig merged with default config." )
if a . merger . kubeconfigEnvVar ( ) != "" {
fmt . Fprintln ( wr , "Warning: KUBECONFIG environment variable is set." )
fmt . Fprintln ( wr , "You may need to unset it to use the default config and connect to your cluster." )
} else {
fmt . Fprintln ( wr , "You can now connect to your cluster." )
}
}
fmt . Fprintln ( wr ) // add final newline
return nil
}