| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /*
- Copyright © The ESO Authors
- 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
- https://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 secretserver
- import (
- "context"
- "crypto/tls"
- "crypto/x509"
- "errors"
- "github.com/DelineaXPM/tss-sdk-go/v3/server"
- kubeClient "sigs.k8s.io/controller-runtime/pkg/client"
- "sigs.k8s.io/controller-runtime/pkg/webhook/admission"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- "github.com/external-secrets/external-secrets/runtime/esutils"
- "github.com/external-secrets/external-secrets/runtime/esutils/resolvers"
- )
- var (
- errEmptyUserName = errors.New("username must not be empty")
- errEmptyPassword = errors.New("password must be set")
- errEmptyServerURL = errors.New("serverURL must be set")
- errSecretRefAndValueConflict = errors.New("cannot specify both secret reference and value")
- errSecretRefAndValueMissing = errors.New("must specify either secret reference or direct value")
- errMissingStore = errors.New("missing store specification")
- errInvalidSpec = errors.New("invalid specification for secret server provider")
- errClusterStoreRequiresNamespace = errors.New("when using a ClusterSecretStore, namespaces must be explicitly set")
- errMissingSecretName = errors.New("must specify a secret name")
- errMissingSecretKey = errors.New("must specify a secret key")
- )
- // Provider struct that implements the ESO esv1.Provider.
- type Provider struct{}
- var _ esv1.Provider = &Provider{}
- // Capabilities return the provider supported capabilities (ReadOnly, WriteOnly, ReadWrite).
- func (p *Provider) Capabilities() esv1.SecretStoreCapabilities {
- return esv1.SecretStoreReadOnly
- }
- // NewClient creates a new secrets client based on provided store.
- func (p *Provider) NewClient(ctx context.Context, store esv1.GenericStore, kube kubeClient.Client, namespace string) (esv1.SecretsClient, error) {
- cfg, err := getConfig(store)
- if err != nil {
- return nil, err
- }
- if store.GetKind() == esv1.ClusterSecretStoreKind && doesConfigDependOnNamespace(cfg) {
- // we are not attached to a specific namespace, but some config values are dependent on it
- return nil, errClusterStoreRequiresNamespace
- }
- username, err := loadConfigSecret(ctx, store.GetKind(), cfg.Username, kube, namespace)
- if err != nil {
- return nil, err
- }
- password, err := loadConfigSecret(ctx, store.GetKind(), cfg.Password, kube, namespace)
- if err != nil {
- return nil, err
- }
- ssConfig := server.Configuration{
- Credentials: server.UserCredential{
- Username: username,
- Password: password,
- Domain: cfg.Domain,
- },
- ServerURL: cfg.ServerURL,
- }
- if len(cfg.CABundle) > 0 || cfg.CAProvider != nil {
- cert, err := esutils.FetchCACertFromSource(ctx, esutils.CreateCertOpts{
- StoreKind: store.GetKind(),
- Client: kube,
- Namespace: namespace,
- CABundle: cfg.CABundle,
- CAProvider: cfg.CAProvider,
- })
- if err != nil {
- return nil, err
- }
- caCertPool := x509.NewCertPool()
- if !caCertPool.AppendCertsFromPEM(cert) {
- return nil, errors.New("failed to append caBundle")
- }
- ssConfig.TLSClientConfig = &tls.Config{
- RootCAs: caCertPool,
- MinVersion: tls.VersionTLS12,
- }
- }
- secretServer, err := server.New(ssConfig)
- if err != nil {
- return nil, err
- }
- return &client{
- api: secretServer,
- }, nil
- }
- func loadConfigSecret(
- ctx context.Context,
- storeKind string,
- ref *esv1.SecretServerProviderRef,
- kube kubeClient.Client,
- namespace string) (string, error) {
- if ref.SecretRef == nil {
- return ref.Value, nil
- }
- if err := validateSecretRef(ref); err != nil {
- return "", err
- }
- return resolvers.SecretKeyRef(ctx, kube, storeKind, namespace, ref.SecretRef)
- }
- func validateStoreSecretRef(store esv1.GenericStore, ref *esv1.SecretServerProviderRef) error {
- if ref.SecretRef != nil {
- if err := esutils.ValidateReferentSecretSelector(store, *ref.SecretRef); err != nil {
- return err
- }
- }
- return validateSecretRef(ref)
- }
- func validateSecretRef(ref *esv1.SecretServerProviderRef) error {
- if ref.SecretRef != nil {
- if ref.Value != "" {
- return errSecretRefAndValueConflict
- }
- if ref.SecretRef.Name == "" {
- return errMissingSecretName
- }
- if ref.SecretRef.Key == "" {
- return errMissingSecretKey
- }
- } else if ref.Value == "" {
- return errSecretRefAndValueMissing
- }
- return nil
- }
- func doesConfigDependOnNamespace(cfg *esv1.SecretServerProvider) bool {
- if cfg.Username.SecretRef != nil && cfg.Username.SecretRef.Namespace == nil {
- return true
- }
- if cfg.Password.SecretRef != nil && cfg.Password.SecretRef.Namespace == nil {
- return true
- }
- return false
- }
- func getConfig(store esv1.GenericStore) (*esv1.SecretServerProvider, error) {
- if store == nil {
- return nil, errMissingStore
- }
- storeSpec := store.GetSpec()
- if storeSpec == nil || storeSpec.Provider == nil || storeSpec.Provider.SecretServer == nil {
- return nil, errInvalidSpec
- }
- cfg := storeSpec.Provider.SecretServer
- if cfg.Username == nil {
- return nil, errEmptyUserName
- }
- if cfg.Password == nil {
- return nil, errEmptyPassword
- }
- if cfg.ServerURL == "" {
- return nil, errEmptyServerURL
- }
- err := validateStoreSecretRef(store, cfg.Username)
- if err != nil {
- return nil, err
- }
- err = validateStoreSecretRef(store, cfg.Password)
- if err != nil {
- return nil, err
- }
- return cfg, nil
- }
- // ValidateStore validates the store's configuration and returns warnings or error.
- func (p *Provider) ValidateStore(store esv1.GenericStore) (admission.Warnings, error) {
- _, err := getConfig(store)
- return nil, err
- }
- // NewProvider creates a new Provider instance.
- func NewProvider() esv1.Provider {
- return &Provider{}
- }
- // ProviderSpec returns the provider specification for registration.
- func ProviderSpec() *esv1.SecretStoreProvider {
- return &esv1.SecretStoreProvider{
- SecretServer: &esv1.SecretServerProvider{},
- }
- }
- // MaintenanceStatus returns the maintenance status of the provider.
- func MaintenanceStatus() esv1.MaintenanceStatus {
- return esv1.MaintenanceStatusMaintained
- }
|