/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package keepersecurity import ( "context" "fmt" ksm "github.com/keeper-security/secrets-manager-go/core" "github.com/keeper-security/secrets-manager-go/core/logger" v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/types" kclient "sigs.k8s.io/controller-runtime/pkg/client" esv1beta1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1" "github.com/external-secrets/external-secrets/pkg/utils" ) const ( errKeeperSecurityUnableToCreateConfig = "unable to create valid KeeperSecurity config: %w" errKeeperSecurityStore = "received invalid KeeperSecurity SecretStore resource: %s" errKeeperSecurityNilSpec = "nil spec" errKeeperSecurityNilSpecProvider = "nil spec.provider" errKeeperSecurityNilSpecProviderKeeperSecurity = "nil spec.provider.keepersecurity" errKeeperSecurityStoreMissingAuth = "missing: spec.provider.keepersecurity.auth" errKeeperSecurityStoreMissingFolderID = "missing: spec.provider.keepersecurity.folderID" errInvalidClusterStoreMissingK8sSecretNamespace = "invalid ClusterSecretStore: missing KeeperSecurity k8s Auth Secret Namespace" errFetchK8sSecret = "could not fetch k8s Secret: %w" errMissingK8sSecretKey = "missing Secret key: %s" ) // Provider implements the necessary NewClient() and ValidateStore() funcs. type Provider struct{} // https://github.com/external-secrets/external-secrets/issues/644 var _ esv1beta1.SecretsClient = &Client{} var _ esv1beta1.Provider = &Provider{} func init() { esv1beta1.Register(&Provider{}, &esv1beta1.SecretStoreProvider{ KeeperSecurity: &esv1beta1.KeeperSecurityProvider{}, }) } func (p *Provider) Capabilities() esv1beta1.SecretStoreCapabilities { return esv1beta1.SecretStoreReadWrite } // NewClient constructs a GCP Provider. func (p *Provider) NewClient(ctx context.Context, store esv1beta1.GenericStore, kube kclient.Client, namespace string) (esv1beta1.SecretsClient, error) { storeSpec := store.GetSpec() if storeSpec == nil || storeSpec.Provider == nil || storeSpec.Provider.KeeperSecurity == nil { return nil, fmt.Errorf(errKeeperSecurityStore, store) } keeperStore := storeSpec.Provider.KeeperSecurity isClusterKind := store.GetObjectKind().GroupVersionKind().Kind == esv1beta1.ClusterSecretStoreKind clientConfig, err := getKeeperSecurityAuth(ctx, keeperStore, kube, isClusterKind, namespace) if err != nil { return nil, fmt.Errorf(errKeeperSecurityUnableToCreateConfig, err) } ksmClientOptions := &ksm.ClientOptions{ Config: ksm.NewMemoryKeyValueStorage(clientConfig), LogLevel: logger.ErrorLevel, } ksmClient := ksm.NewSecretsManager(ksmClientOptions) client := &Client{ folderID: keeperStore.FolderID, ksmClient: ksmClient, } return client, nil } func (p *Provider) ValidateStore(store esv1beta1.GenericStore) error { if store == nil { return fmt.Errorf(errKeeperSecurityStore, store) } spc := store.GetSpec() if spc == nil { return fmt.Errorf(errKeeperSecurityNilSpec) } if spc.Provider == nil { return fmt.Errorf(errKeeperSecurityNilSpecProvider) } if spc.Provider.KeeperSecurity == nil { return fmt.Errorf(errKeeperSecurityNilSpecProviderKeeperSecurity) } // check mandatory fields config := spc.Provider.KeeperSecurity if err := utils.ValidateSecretSelector(store, config.Auth); err != nil { return fmt.Errorf(errKeeperSecurityStoreMissingAuth) } if config.FolderID == "" { return fmt.Errorf(errKeeperSecurityStoreMissingFolderID) } return nil } func getKeeperSecurityAuth(ctx context.Context, store *esv1beta1.KeeperSecurityProvider, kube kclient.Client, isClusterKind bool, namespace string) (string, error) { auth := store.Auth credentialsSecret := &v1.Secret{} credentialsSecretName := auth.Name objectKey := types.NamespacedName{ Name: credentialsSecretName, Namespace: namespace, } // only ClusterStore is allowed to set namespace (and then it's required) if isClusterKind { if credentialsSecretName != "" && auth.Namespace == nil { return "", fmt.Errorf(errInvalidClusterStoreMissingK8sSecretNamespace) } else if credentialsSecretName != "" { objectKey.Namespace = *auth.Namespace } } err := kube.Get(ctx, objectKey, credentialsSecret) if err != nil { return "", fmt.Errorf(errFetchK8sSecret, err) } data := credentialsSecret.Data[auth.Key] if (data == nil) || (len(data) == 0) { return "", fmt.Errorf(errMissingK8sSecretKey, auth.Key) } return string(data), nil }