2018-06-13 08:40:03 +00:00
|
|
|
package ca
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-09-11 15:41:05 +00:00
|
|
|
"context"
|
2018-06-13 08:40:03 +00:00
|
|
|
"crypto/x509"
|
|
|
|
"encoding/pem"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2021-11-18 20:15:28 +00:00
|
|
|
"os"
|
2018-06-13 08:40:03 +00:00
|
|
|
"strings"
|
2020-10-09 11:35:42 +00:00
|
|
|
"time"
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2022-03-28 14:58:16 +00:00
|
|
|
"github.com/hashicorp/consul/lib/decode"
|
|
|
|
"github.com/hashicorp/consul/lib/retry"
|
2020-08-25 17:34:49 +00:00
|
|
|
"github.com/hashicorp/go-hclog"
|
2018-06-13 08:40:03 +00:00
|
|
|
vaultapi "github.com/hashicorp/vault/api"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
2021-06-23 19:47:30 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/connect"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2018-06-13 08:40:03 +00:00
|
|
|
)
|
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
const (
|
|
|
|
VaultCALeafCertRole = "leaf-cert"
|
|
|
|
|
|
|
|
VaultAuthMethodTypeAliCloud = "alicloud"
|
|
|
|
VaultAuthMethodTypeAppRole = "approle"
|
|
|
|
VaultAuthMethodTypeAWS = "aws"
|
|
|
|
VaultAuthMethodTypeAzure = "azure"
|
|
|
|
VaultAuthMethodTypeCloudFoundry = "cf"
|
|
|
|
VaultAuthMethodTypeGitHub = "github"
|
|
|
|
VaultAuthMethodTypeGCP = "gcp"
|
|
|
|
VaultAuthMethodTypeJWT = "jwt"
|
|
|
|
VaultAuthMethodTypeKerberos = "kerberos"
|
|
|
|
VaultAuthMethodTypeKubernetes = "kubernetes"
|
|
|
|
VaultAuthMethodTypeLDAP = "ldap"
|
|
|
|
VaultAuthMethodTypeOCI = "oci"
|
|
|
|
VaultAuthMethodTypeOkta = "okta"
|
|
|
|
VaultAuthMethodTypeRadius = "radius"
|
|
|
|
VaultAuthMethodTypeTLS = "cert"
|
|
|
|
VaultAuthMethodTypeToken = "token"
|
|
|
|
VaultAuthMethodTypeUserpass = "userpass"
|
|
|
|
|
|
|
|
defaultK8SServiceAccountTokenPath = "/var/run/secrets/kubernetes.io/serviceaccount/token"
|
2022-03-28 14:58:16 +00:00
|
|
|
|
|
|
|
retryMin = 1 * time.Second
|
|
|
|
retryMax = 5 * time.Second
|
|
|
|
retryJitter = 20
|
2021-11-18 20:15:28 +00:00
|
|
|
)
|
2018-06-13 08:40:03 +00:00
|
|
|
|
|
|
|
var ErrBackendNotMounted = fmt.Errorf("backend not mounted")
|
|
|
|
var ErrBackendNotInitialized = fmt.Errorf("backend not initialized")
|
|
|
|
|
|
|
|
type VaultProvider struct {
|
2020-08-25 17:34:49 +00:00
|
|
|
config *structs.VaultCAProviderConfig
|
|
|
|
client *vaultapi.Client
|
2020-09-10 13:12:48 +00:00
|
|
|
|
2022-03-28 14:58:16 +00:00
|
|
|
stopWatcher func()
|
2020-08-25 17:34:49 +00:00
|
|
|
|
2020-06-05 19:36:22 +00:00
|
|
|
isPrimary bool
|
|
|
|
clusterID string
|
|
|
|
spiffeID *connect.SpiffeIDSigning
|
|
|
|
setupIntermediatePKIPathDone bool
|
2020-08-25 17:34:49 +00:00
|
|
|
logger hclog.Logger
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 21:51:37 +00:00
|
|
|
func NewVaultProvider(logger hclog.Logger) *VaultProvider {
|
|
|
|
return &VaultProvider{
|
2022-03-28 14:58:16 +00:00
|
|
|
stopWatcher: func() {},
|
|
|
|
logger: logger,
|
2021-06-21 21:51:37 +00:00
|
|
|
}
|
2020-09-11 15:41:05 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 16:09:22 +00:00
|
|
|
func vaultTLSConfig(config *structs.VaultCAProviderConfig) *vaultapi.TLSConfig {
|
|
|
|
return &vaultapi.TLSConfig{
|
|
|
|
CACert: config.CAFile,
|
|
|
|
CAPath: config.CAPath,
|
|
|
|
ClientCert: config.CertFile,
|
|
|
|
ClientKey: config.KeyFile,
|
|
|
|
Insecure: config.TLSSkipVerify,
|
|
|
|
TLSServerName: config.TLSServerName,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 23:43:04 +00:00
|
|
|
// Configure sets up the provider using the given configuration.
|
2019-11-18 14:22:19 +00:00
|
|
|
func (v *VaultProvider) Configure(cfg ProviderConfig) error {
|
|
|
|
config, err := ParseVaultCAConfig(cfg.RawConfig)
|
2018-06-13 08:40:03 +00:00
|
|
|
if err != nil {
|
2018-09-07 02:18:54 +00:00
|
|
|
return err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 17:56:17 +00:00
|
|
|
clientConf := &vaultapi.Config{
|
2018-09-07 02:18:54 +00:00
|
|
|
Address: config.Address,
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
2019-01-08 16:09:22 +00:00
|
|
|
err = clientConf.ConfigureTLS(vaultTLSConfig(config))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-06-14 17:56:17 +00:00
|
|
|
client, err := vaultapi.NewClient(clientConf)
|
|
|
|
if err != nil {
|
2018-09-07 02:18:54 +00:00
|
|
|
return err
|
2018-06-14 17:56:17 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
if config.AuthMethod != nil {
|
|
|
|
loginResp, err := vaultLogin(client, config.AuthMethod)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
config.Token = loginResp.Auth.ClientToken
|
|
|
|
}
|
2018-09-07 02:18:54 +00:00
|
|
|
client.SetToken(config.Token)
|
2021-11-05 16:42:28 +00:00
|
|
|
|
|
|
|
// We don't want to set the namespace if it's empty to prevent potential
|
|
|
|
// unknown behavior (what does Vault do with an empty namespace). The Vault
|
|
|
|
// client also makes sure the inputs are not empty strings so let's do the
|
|
|
|
// same.
|
|
|
|
if config.Namespace != "" {
|
|
|
|
client.SetNamespace(config.Namespace)
|
|
|
|
}
|
2018-09-07 02:18:54 +00:00
|
|
|
v.config = config
|
|
|
|
v.client = client
|
2019-11-18 14:22:19 +00:00
|
|
|
v.isPrimary = cfg.IsPrimary
|
|
|
|
v.clusterID = cfg.ClusterID
|
2021-11-05 22:20:24 +00:00
|
|
|
v.spiffeID = connect.SpiffeIDSigningForCluster(v.clusterID)
|
2020-08-25 17:34:49 +00:00
|
|
|
|
|
|
|
// Look up the token to see if we can auto-renew its lease.
|
2020-10-27 20:03:17 +00:00
|
|
|
secret, err := client.Auth().Token().LookupSelf()
|
2020-08-25 17:34:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-02-22 20:08:49 +00:00
|
|
|
} else if secret == nil {
|
2021-11-18 20:15:28 +00:00
|
|
|
return fmt.Errorf("could not look up Vault provider token: not found")
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
2020-09-10 13:31:04 +00:00
|
|
|
var token struct {
|
|
|
|
Renewable bool
|
|
|
|
TTL int
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
2020-09-10 13:31:04 +00:00
|
|
|
if err := mapstructure.Decode(secret.Data, &token); err != nil {
|
|
|
|
return err
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set up a renewer to renew the token automatically, if supported.
|
2021-11-18 20:15:28 +00:00
|
|
|
if token.Renewable || config.AuthMethod != nil {
|
2020-10-09 12:02:18 +00:00
|
|
|
lifetimeWatcher, err := client.NewLifetimeWatcher(&vaultapi.LifetimeWatcherInput{
|
2020-08-25 17:34:49 +00:00
|
|
|
Secret: &vaultapi.Secret{
|
|
|
|
Auth: &vaultapi.SecretAuth{
|
2020-09-09 23:36:37 +00:00
|
|
|
ClientToken: config.Token,
|
2020-09-10 13:31:04 +00:00
|
|
|
Renewable: token.Renewable,
|
2020-09-09 23:36:37 +00:00
|
|
|
LeaseDuration: secret.LeaseDuration,
|
2020-08-25 17:34:49 +00:00
|
|
|
},
|
|
|
|
},
|
2020-10-09 12:02:18 +00:00
|
|
|
Increment: token.TTL,
|
|
|
|
RenewBehavior: vaultapi.RenewBehaviorIgnoreErrors,
|
2020-08-25 17:34:49 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2021-11-18 20:15:28 +00:00
|
|
|
return fmt.Errorf("error beginning Vault provider token renewal: %v", err)
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
2020-09-11 15:41:05 +00:00
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
2022-03-28 14:58:16 +00:00
|
|
|
if v.stopWatcher != nil {
|
|
|
|
v.stopWatcher()
|
|
|
|
}
|
|
|
|
v.stopWatcher = cancel
|
2020-10-09 12:02:18 +00:00
|
|
|
go v.renewToken(ctx, lifetimeWatcher)
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2018-09-07 02:18:54 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2022-02-03 18:28:43 +00:00
|
|
|
func (v *VaultProvider) ValidateConfigUpdate(prevRaw, nextRaw map[string]interface{}) error {
|
|
|
|
prev, err := ParseVaultCAConfig(prevRaw)
|
|
|
|
if err != nil {
|
2022-02-03 23:44:09 +00:00
|
|
|
return fmt.Errorf("failed to parse existing CA config: %w", err)
|
2022-02-03 18:28:43 +00:00
|
|
|
}
|
|
|
|
next, err := ParseVaultCAConfig(nextRaw)
|
|
|
|
if err != nil {
|
2022-02-03 23:44:09 +00:00
|
|
|
return fmt.Errorf("failed to parse new CA config: %w", err)
|
2022-02-03 18:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if prev.RootPKIPath != next.RootPKIPath {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if prev.PrivateKeyType != "" && prev.PrivateKeyType != connect.DefaultPrivateKeyType {
|
|
|
|
if prev.PrivateKeyType != next.PrivateKeyType {
|
|
|
|
return fmt.Errorf("cannot update the PrivateKeyType field without changing RootPKIPath")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if prev.PrivateKeyBits != 0 && prev.PrivateKeyBits != connect.DefaultPrivateKeyBits {
|
|
|
|
if prev.PrivateKeyBits != next.PrivateKeyBits {
|
|
|
|
return fmt.Errorf("cannot update the PrivateKeyBits field without changing RootPKIPath")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
// renewToken uses a vaultapi.LifetimeWatcher to repeatedly renew our token's lease.
|
|
|
|
// If the token can no longer be renewed and auth method is set,
|
|
|
|
// it will re-authenticate to Vault using the auth method and restart the renewer with the new token.
|
2020-10-09 12:02:18 +00:00
|
|
|
func (v *VaultProvider) renewToken(ctx context.Context, watcher *vaultapi.LifetimeWatcher) {
|
|
|
|
go watcher.Start()
|
|
|
|
defer watcher.Stop()
|
2020-08-25 17:34:49 +00:00
|
|
|
|
2022-03-28 14:58:16 +00:00
|
|
|
// TODO: Once we've upgraded to a later version of protobuf we can upgrade to github.com/hashicorp/vault/api@1.1.1
|
|
|
|
// or later and rip this out.
|
|
|
|
retrier := retry.Waiter{
|
|
|
|
MinFailures: 5,
|
|
|
|
MinWait: retryMin,
|
|
|
|
MaxWait: retryMax,
|
|
|
|
Jitter: retry.NewJitter(retryJitter),
|
|
|
|
}
|
|
|
|
|
2020-08-25 17:34:49 +00:00
|
|
|
for {
|
|
|
|
select {
|
2020-09-11 15:41:05 +00:00
|
|
|
case <-ctx.Done():
|
2020-08-25 17:34:49 +00:00
|
|
|
return
|
|
|
|
|
2020-10-09 12:02:18 +00:00
|
|
|
case err := <-watcher.DoneCh():
|
2022-03-28 14:58:16 +00:00
|
|
|
// In the event we fail to login to Vault or our token is no longer valid we can overwhelm a Vault instance
|
|
|
|
// with rate limit configured. We would make these requests to Vault as fast as we possibly could and start
|
|
|
|
// causing all client's to receive 429 response codes. To mitigate that we're sleeping 1 second or less
|
|
|
|
// before moving on to login again and restart the lifetime watcher. Once we can upgrade to
|
|
|
|
// github.com/hashicorp/vault/api@v1.1.1 or later the LifetimeWatcher _should_ perform that backoff for us.
|
2020-08-25 17:34:49 +00:00
|
|
|
if err != nil {
|
2020-09-15 19:28:58 +00:00
|
|
|
v.logger.Error("Error renewing token for Vault provider", "error", err)
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-28 14:58:16 +00:00
|
|
|
// wait at least 1 second after returning from the lifetime watcher
|
|
|
|
retrier.Wait(ctx)
|
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
// If the watcher has exited and auth method is enabled,
|
|
|
|
// re-authenticate using the auth method and set up a new watcher.
|
|
|
|
if v.config.AuthMethod != nil {
|
|
|
|
// Login to Vault using the auth method.
|
|
|
|
loginResp, err := vaultLogin(v.client, v.config.AuthMethod)
|
|
|
|
if err != nil {
|
|
|
|
v.logger.Error("Error login in to Vault with %q auth method", v.config.AuthMethod.Type)
|
2022-03-28 14:58:16 +00:00
|
|
|
// Restart the watcher
|
2021-11-18 20:15:28 +00:00
|
|
|
go watcher.Start()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the new token for the vault client.
|
|
|
|
v.client.SetToken(loginResp.Auth.ClientToken)
|
|
|
|
v.logger.Info("Successfully re-authenticated with Vault using auth method")
|
|
|
|
|
|
|
|
// Start the new watcher for the new token.
|
|
|
|
watcher, err = v.client.NewLifetimeWatcher(&vaultapi.LifetimeWatcherInput{
|
|
|
|
Secret: loginResp,
|
|
|
|
RenewBehavior: vaultapi.RenewBehaviorIgnoreErrors,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
v.logger.Error("Error starting token renewal process")
|
|
|
|
go watcher.Start()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Restart the watcher.
|
2022-03-28 14:58:16 +00:00
|
|
|
|
2020-10-09 12:02:18 +00:00
|
|
|
go watcher.Start()
|
2020-09-11 15:41:05 +00:00
|
|
|
|
2020-10-09 12:02:18 +00:00
|
|
|
case <-watcher.RenewCh():
|
2022-03-28 14:58:16 +00:00
|
|
|
retrier.Reset()
|
2020-11-12 01:05:04 +00:00
|
|
|
v.logger.Info("Successfully renewed token for Vault provider")
|
2020-08-25 17:34:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-11 20:57:16 +00:00
|
|
|
// State implements Provider. Vault provider needs no state other than the
|
|
|
|
// user-provided config currently.
|
|
|
|
func (v *VaultProvider) State() (map[string]string, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2018-09-11 23:43:04 +00:00
|
|
|
// GenerateRoot mounts and initializes a new root PKI backend if needed.
|
2021-12-01 20:39:20 +00:00
|
|
|
func (v *VaultProvider) GenerateRoot() (RootResult, error) {
|
2019-11-18 14:22:19 +00:00
|
|
|
if !v.isPrimary {
|
2021-12-01 20:39:20 +00:00
|
|
|
return RootResult{}, fmt.Errorf("provider is not the root certificate authority")
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set up the root PKI backend if necessary.
|
2021-12-01 20:39:20 +00:00
|
|
|
rootPEM, err := v.getCA(v.config.RootPKIPath)
|
2018-06-13 08:40:03 +00:00
|
|
|
switch err {
|
|
|
|
case ErrBackendNotMounted:
|
2018-09-07 02:18:54 +00:00
|
|
|
err := v.client.Sys().Mount(v.config.RootPKIPath, &vaultapi.MountInput{
|
2018-06-13 08:40:03 +00:00
|
|
|
Type: "pki",
|
|
|
|
Description: "root CA backend for Consul Connect",
|
|
|
|
Config: vaultapi.MountConfigInput{
|
2021-11-02 18:02:10 +00:00
|
|
|
// the max lease ttl denotes the maximum ttl that secrets are created from the engine
|
|
|
|
// the default lease ttl is the kind of ttl that will *reliably* set the ttl to v.config.RootCertTTL
|
|
|
|
// https://www.vaultproject.io/docs/secrets/pki#configure-a-ca-certificate
|
|
|
|
MaxLeaseTTL: v.config.RootCertTTL.String(),
|
|
|
|
DefaultLeaseTTL: v.config.RootCertTTL.String(),
|
2018-06-13 08:40:03 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
2021-12-01 20:39:20 +00:00
|
|
|
return RootResult{}, err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fallthrough
|
|
|
|
case ErrBackendNotInitialized:
|
2019-11-11 17:11:54 +00:00
|
|
|
uid, err := connect.CompactUID()
|
2019-08-27 21:45:58 +00:00
|
|
|
if err != nil {
|
2021-12-01 20:39:20 +00:00
|
|
|
return RootResult{}, err
|
2019-08-27 21:45:58 +00:00
|
|
|
}
|
2022-01-05 23:21:04 +00:00
|
|
|
resp, err := v.client.Logical().Write(v.config.RootPKIPath+"root/generate/internal", map[string]interface{}{
|
2019-11-18 14:22:19 +00:00
|
|
|
"common_name": connect.CACN("vault", uid, v.clusterID, v.isPrimary),
|
2019-09-23 17:04:40 +00:00
|
|
|
"uri_sans": v.spiffeID.URI().String(),
|
2019-07-30 21:47:39 +00:00
|
|
|
"key_type": v.config.PrivateKeyType,
|
|
|
|
"key_bits": v.config.PrivateKeyBits,
|
2018-06-13 08:40:03 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2021-12-01 20:39:20 +00:00
|
|
|
return RootResult{}, err
|
|
|
|
}
|
2022-01-05 23:21:04 +00:00
|
|
|
var ok bool
|
|
|
|
rootPEM, ok = resp.Data["certificate"].(string)
|
|
|
|
if !ok {
|
|
|
|
return RootResult{}, fmt.Errorf("unexpected response from Vault: %v", resp.Data["certificate"])
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
2021-12-01 20:39:20 +00:00
|
|
|
|
2018-06-13 08:40:03 +00:00
|
|
|
default:
|
|
|
|
if err != nil {
|
2021-12-01 20:39:20 +00:00
|
|
|
return RootResult{}, err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 23:21:04 +00:00
|
|
|
rootChain, err := v.getCAChain(v.config.RootPKIPath)
|
|
|
|
if err != nil {
|
|
|
|
return RootResult{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workaround for a bug in the Vault PKI API.
|
|
|
|
// See https://github.com/hashicorp/vault/issues/13489
|
|
|
|
if rootChain == "" {
|
|
|
|
rootChain = rootPEM
|
|
|
|
}
|
|
|
|
|
|
|
|
return RootResult{PEM: rootChain}, nil
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-13 20:09:07 +00:00
|
|
|
// GenerateIntermediateCSR creates a private key and generates a CSR
|
|
|
|
// for another datacenter's root to sign, overwriting the intermediate backend
|
|
|
|
// in the process.
|
2018-09-13 02:52:24 +00:00
|
|
|
func (v *VaultProvider) GenerateIntermediateCSR() (string, error) {
|
2019-11-18 14:22:19 +00:00
|
|
|
if v.isPrimary {
|
2018-09-13 20:09:07 +00:00
|
|
|
return "", fmt.Errorf("provider is the root certificate authority, " +
|
|
|
|
"cannot generate an intermediate CSR")
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-13 20:09:07 +00:00
|
|
|
return v.generateIntermediateCSR()
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 19:36:22 +00:00
|
|
|
func (v *VaultProvider) setupIntermediatePKIPath() error {
|
|
|
|
if v.setupIntermediatePKIPathDone {
|
|
|
|
return nil
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2022-04-01 06:35:38 +00:00
|
|
|
_, err := v.getCA(v.config.IntermediatePKIPath)
|
|
|
|
if err != nil {
|
|
|
|
if err == ErrBackendNotMounted {
|
|
|
|
err := v.client.Sys().Mount(v.config.IntermediatePKIPath, &vaultapi.MountInput{
|
|
|
|
Type: "pki",
|
|
|
|
Description: "intermediate CA backend for Consul Connect",
|
|
|
|
Config: vaultapi.MountConfigInput{
|
|
|
|
MaxLeaseTTL: v.config.IntermediateCertTTL.String(),
|
|
|
|
},
|
|
|
|
})
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2022-04-01 06:35:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2020-06-05 19:36:22 +00:00
|
|
|
return err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the role for issuing leaf certs if it doesn't exist yet
|
|
|
|
rolePath := v.config.IntermediatePKIPath + "roles/" + VaultCALeafCertRole
|
|
|
|
role, err := v.client.Logical().Read(rolePath)
|
|
|
|
if err != nil {
|
2020-06-05 19:36:22 +00:00
|
|
|
return err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
if role == nil {
|
|
|
|
_, err := v.client.Logical().Write(rolePath, map[string]interface{}{
|
2019-08-27 21:45:58 +00:00
|
|
|
"allow_any_name": true,
|
|
|
|
"allowed_uri_sans": "spiffe://*",
|
|
|
|
"key_type": "any",
|
|
|
|
"max_ttl": v.config.LeafCertTTL.String(),
|
|
|
|
"no_store": true,
|
|
|
|
"require_cn": false,
|
2018-06-13 08:40:03 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2020-06-05 19:36:22 +00:00
|
|
|
return err
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-05 19:36:22 +00:00
|
|
|
v.setupIntermediatePKIPathDone = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VaultProvider) generateIntermediateCSR() (string, error) {
|
|
|
|
err := v.setupIntermediatePKIPath()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
|
|
|
// Generate a new intermediate CSR for the root to sign.
|
2019-11-11 17:11:54 +00:00
|
|
|
uid, err := connect.CompactUID()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-09-13 20:09:07 +00:00
|
|
|
data, err := v.client.Logical().Write(v.config.IntermediatePKIPath+"intermediate/generate/internal", map[string]interface{}{
|
2019-11-18 14:22:19 +00:00
|
|
|
"common_name": connect.CACN("vault", uid, v.clusterID, v.isPrimary),
|
2019-07-30 21:47:39 +00:00
|
|
|
"key_type": v.config.PrivateKeyType,
|
|
|
|
"key_bits": v.config.PrivateKeyBits,
|
2019-09-23 17:04:40 +00:00
|
|
|
"uri_sans": v.spiffeID.URI().String(),
|
2018-06-13 08:40:03 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-09-13 20:09:07 +00:00
|
|
|
if data == nil || data.Data["csr"] == "" {
|
2018-06-13 08:40:03 +00:00
|
|
|
return "", fmt.Errorf("got empty value when generating intermediate CSR")
|
|
|
|
}
|
2018-09-13 20:09:07 +00:00
|
|
|
csr, ok := data.Data["csr"].(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("csr result is not a string")
|
|
|
|
}
|
|
|
|
|
|
|
|
return csr, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetIntermediate writes the incoming intermediate and root certificates to the
|
|
|
|
// intermediate backend (as a chain).
|
|
|
|
func (v *VaultProvider) SetIntermediate(intermediatePEM, rootPEM string) error {
|
2019-11-18 14:22:19 +00:00
|
|
|
if v.isPrimary {
|
2018-09-13 20:09:07 +00:00
|
|
|
return fmt.Errorf("cannot set an intermediate using another root in the primary datacenter")
|
|
|
|
}
|
|
|
|
|
2022-01-06 00:08:26 +00:00
|
|
|
err := validateSetIntermediate(intermediatePEM, rootPEM, v.spiffeID)
|
2019-09-23 17:04:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = v.client.Logical().Write(v.config.IntermediatePKIPath+"intermediate/set-signed", map[string]interface{}{
|
2021-11-12 00:16:53 +00:00
|
|
|
"certificate": intermediatePEM,
|
2018-09-13 20:09:07 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ActiveIntermediate returns the current intermediate certificate.
|
|
|
|
func (v *VaultProvider) ActiveIntermediate() (string, error) {
|
2020-06-05 19:36:22 +00:00
|
|
|
if err := v.setupIntermediatePKIPath(); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, err := v.getCA(v.config.IntermediatePKIPath)
|
|
|
|
|
|
|
|
// This error is expected when calling initializeSecondaryCA for the
|
|
|
|
// first time. It means that the backend is mounted and ready, but
|
|
|
|
// there is no intermediate.
|
|
|
|
// This error is swallowed because there is nothing the caller can do
|
|
|
|
// about it. The caller needs to handle the empty cert though and
|
|
|
|
// create an intermediate CA.
|
|
|
|
if err == ErrBackendNotInitialized {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
return cert, err
|
2018-09-13 20:09:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getCA returns the raw CA cert for the given endpoint if there is one.
|
|
|
|
// We have to use the raw NewRequest call here instead of Logical().Read
|
|
|
|
// because the endpoint only returns the raw PEM contents of the CA cert
|
|
|
|
// and not the typical format of the secrets endpoints.
|
|
|
|
func (v *VaultProvider) getCA(path string) (string, error) {
|
|
|
|
req := v.client.NewRequest("GET", "/v1/"+path+"/ca/pem")
|
|
|
|
resp, err := v.client.RawRequest(req)
|
|
|
|
if resp != nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
|
|
|
if resp != nil && resp.StatusCode == http.StatusNotFound {
|
|
|
|
return "", ErrBackendNotMounted
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2021-07-01 00:48:29 +00:00
|
|
|
root := EnsureTrailingNewline(string(bytes))
|
2018-09-13 20:09:07 +00:00
|
|
|
if root == "" {
|
|
|
|
return "", ErrBackendNotInitialized
|
|
|
|
}
|
|
|
|
|
|
|
|
return root, nil
|
|
|
|
}
|
|
|
|
|
2022-01-05 23:21:04 +00:00
|
|
|
// TODO: refactor to remove duplication with getCA
|
|
|
|
func (v *VaultProvider) getCAChain(path string) (string, error) {
|
|
|
|
req := v.client.NewRequest("GET", "/v1/"+path+"/ca_chain")
|
|
|
|
resp, err := v.client.RawRequest(req)
|
|
|
|
if resp != nil {
|
|
|
|
defer resp.Body.Close()
|
|
|
|
}
|
|
|
|
if resp != nil && resp.StatusCode == http.StatusNotFound {
|
|
|
|
return "", ErrBackendNotMounted
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
raw, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
root := EnsureTrailingNewline(string(raw))
|
|
|
|
return root, nil
|
|
|
|
}
|
|
|
|
|
2018-09-13 20:09:07 +00:00
|
|
|
// GenerateIntermediate mounts the configured intermediate PKI backend if
|
|
|
|
// necessary, then generates and signs a new CA CSR using the root PKI backend
|
|
|
|
// and updates the intermediate backend to use that new certificate.
|
|
|
|
func (v *VaultProvider) GenerateIntermediate() (string, error) {
|
|
|
|
csr, err := v.generateIntermediateCSR()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
|
|
|
// Sign the CSR with the root backend.
|
|
|
|
intermediate, err := v.client.Logical().Write(v.config.RootPKIPath+"root/sign-intermediate", map[string]interface{}{
|
2019-09-23 17:04:40 +00:00
|
|
|
"csr": csr,
|
|
|
|
"use_csr_values": true,
|
|
|
|
"format": "pem_bundle",
|
2020-09-30 19:31:21 +00:00
|
|
|
"ttl": v.config.IntermediateCertTTL.String(),
|
2018-06-13 08:40:03 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-06-15 23:25:53 +00:00
|
|
|
if intermediate == nil || intermediate.Data["certificate"] == "" {
|
2018-06-13 08:40:03 +00:00
|
|
|
return "", fmt.Errorf("got empty value when generating intermediate certificate")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the intermediate backend to use the new certificate.
|
|
|
|
_, err = v.client.Logical().Write(v.config.IntermediatePKIPath+"intermediate/set-signed", map[string]interface{}{
|
|
|
|
"certificate": intermediate.Data["certificate"],
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return v.ActiveIntermediate()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sign calls the configured role in the intermediate PKI backend to issue
|
|
|
|
// a new leaf certificate based on the provided CSR, with the issuing
|
|
|
|
// intermediate CA cert attached.
|
|
|
|
func (v *VaultProvider) Sign(csr *x509.CertificateRequest) (string, error) {
|
2021-06-25 18:00:00 +00:00
|
|
|
connect.HackSANExtensionForCSR(csr)
|
|
|
|
|
2018-06-13 08:40:03 +00:00
|
|
|
var pemBuf bytes.Buffer
|
|
|
|
if err := pem.Encode(&pemBuf, &pem.Block{Type: "CERTIFICATE REQUEST", Bytes: csr.Raw}); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the leaf cert role to sign a new cert for this CSR.
|
|
|
|
response, err := v.client.Logical().Write(v.config.IntermediatePKIPath+"sign/"+VaultCALeafCertRole, map[string]interface{}{
|
2018-06-14 21:20:10 +00:00
|
|
|
"csr": pemBuf.String(),
|
2018-07-26 00:51:45 +00:00
|
|
|
"ttl": v.config.LeafCertTTL.String(),
|
2018-06-13 08:40:03 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2018-06-14 21:20:10 +00:00
|
|
|
return "", fmt.Errorf("error issuing cert: %v", err)
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
if response == nil || response.Data["certificate"] == "" || response.Data["issuing_ca"] == "" {
|
|
|
|
return "", fmt.Errorf("certificate info returned from Vault was blank")
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, ok := response.Data["certificate"].(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("certificate was not a string")
|
|
|
|
}
|
2021-12-13 19:49:32 +00:00
|
|
|
return EnsureTrailingNewline(cert), nil
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-13 20:09:07 +00:00
|
|
|
// SignIntermediate returns a signed CA certificate with a path length constraint
|
|
|
|
// of 0 to ensure that the certificate cannot be used to generate further CA certs.
|
|
|
|
func (v *VaultProvider) SignIntermediate(csr *x509.CertificateRequest) (string, error) {
|
2019-11-21 17:40:29 +00:00
|
|
|
err := validateSignIntermediate(csr, v.spiffeID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2018-09-13 20:09:07 +00:00
|
|
|
var pemBuf bytes.Buffer
|
2019-11-21 17:40:29 +00:00
|
|
|
err = pem.Encode(&pemBuf, &pem.Block{Type: "CERTIFICATE REQUEST", Bytes: csr.Raw})
|
2018-09-13 20:09:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sign the CSR with the root backend.
|
|
|
|
data, err := v.client.Logical().Write(v.config.RootPKIPath+"root/sign-intermediate", map[string]interface{}{
|
|
|
|
"csr": pemBuf.String(),
|
2019-09-23 17:04:40 +00:00
|
|
|
"use_csr_values": true,
|
2018-09-13 20:09:07 +00:00
|
|
|
"format": "pem_bundle",
|
|
|
|
"max_path_length": 0,
|
2020-09-30 19:31:21 +00:00
|
|
|
"ttl": v.config.IntermediateCertTTL.String(),
|
2018-09-13 20:09:07 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if data == nil || data.Data["certificate"] == "" {
|
|
|
|
return "", fmt.Errorf("got empty value when generating intermediate certificate")
|
|
|
|
}
|
|
|
|
|
|
|
|
intermediate, ok := data.Data["certificate"].(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("signed intermediate result is not a string")
|
|
|
|
}
|
|
|
|
|
2021-07-01 00:48:29 +00:00
|
|
|
return EnsureTrailingNewline(intermediate), nil
|
2018-09-13 02:52:24 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 23:46:18 +00:00
|
|
|
// CrossSignCA takes a CA certificate and cross-signs it to form a trust chain
|
|
|
|
// back to our active root.
|
|
|
|
func (v *VaultProvider) CrossSignCA(cert *x509.Certificate) (string, error) {
|
2021-12-01 20:39:20 +00:00
|
|
|
rootPEM, err := v.getCA(v.config.RootPKIPath)
|
2020-10-09 11:35:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
rootCert, err := connect.ParseCert(rootPEM)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("error parsing root cert: %v", err)
|
|
|
|
}
|
|
|
|
if rootCert.NotAfter.Before(time.Now()) {
|
|
|
|
return "", fmt.Errorf("root certificate is expired")
|
|
|
|
}
|
|
|
|
|
2018-06-19 23:46:18 +00:00
|
|
|
var pemBuf bytes.Buffer
|
2020-10-09 11:35:42 +00:00
|
|
|
err = pem.Encode(&pemBuf, &pem.Block{Type: "CERTIFICATE", Bytes: cert.Raw})
|
2018-06-15 23:25:53 +00:00
|
|
|
if err != nil {
|
2018-06-13 08:40:03 +00:00
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2018-06-19 23:46:18 +00:00
|
|
|
// Have the root PKI backend sign this cert.
|
|
|
|
response, err := v.client.Logical().Write(v.config.RootPKIPath+"root/sign-self-issued", map[string]interface{}{
|
|
|
|
"certificate": pemBuf.String(),
|
2018-06-15 23:25:53 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("error having Vault cross-sign cert: %v", err)
|
|
|
|
}
|
|
|
|
if response == nil || response.Data["certificate"] == "" {
|
|
|
|
return "", fmt.Errorf("certificate info returned from Vault was blank")
|
|
|
|
}
|
|
|
|
|
|
|
|
xcCert, ok := response.Data["certificate"].(string)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("certificate was not a string")
|
|
|
|
}
|
|
|
|
|
2021-07-01 00:48:29 +00:00
|
|
|
return EnsureTrailingNewline(xcCert), nil
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2019-11-11 21:36:22 +00:00
|
|
|
// SupportsCrossSigning implements Provider
|
2021-06-23 19:47:30 +00:00
|
|
|
func (v *VaultProvider) SupportsCrossSigning() (bool, error) {
|
2019-11-11 21:36:22 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:40:03 +00:00
|
|
|
// Cleanup unmounts the configured intermediate PKI backend. It's fine to tear
|
|
|
|
// this down and recreate it on small config changes because the intermediate
|
|
|
|
// certs get bundled with the leaf certs, so there's no cost to the CA changing.
|
2021-01-15 18:20:27 +00:00
|
|
|
func (v *VaultProvider) Cleanup(providerTypeChange bool, otherConfig map[string]interface{}) error {
|
2020-09-10 13:12:48 +00:00
|
|
|
v.Stop()
|
2020-08-25 17:34:49 +00:00
|
|
|
|
2021-01-15 18:20:27 +00:00
|
|
|
if !providerTypeChange {
|
|
|
|
newConfig, err := ParseVaultCAConfig(otherConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the intermeidate PKI path isn't changing we don't want to delete it as
|
|
|
|
// Cleanup is called after initializing the new provider
|
|
|
|
if newConfig.IntermediatePKIPath == v.config.IntermediatePKIPath {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err := v.client.Sys().Unmount(v.config.IntermediatePKIPath)
|
|
|
|
|
|
|
|
switch err {
|
|
|
|
case ErrBackendNotMounted, ErrBackendNotInitialized:
|
|
|
|
// suppress these errors if we didn't finish initialization before
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
return err
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-10 13:12:48 +00:00
|
|
|
// Stop shuts down the token renew goroutine.
|
|
|
|
func (v *VaultProvider) Stop() {
|
2022-03-28 14:58:16 +00:00
|
|
|
v.stopWatcher()
|
2020-09-10 13:12:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 19:47:30 +00:00
|
|
|
func (v *VaultProvider) PrimaryUsesIntermediate() {}
|
|
|
|
|
2018-06-13 08:40:03 +00:00
|
|
|
func ParseVaultCAConfig(raw map[string]interface{}) (*structs.VaultCAProviderConfig, error) {
|
2018-07-16 09:46:10 +00:00
|
|
|
config := structs.VaultCAProviderConfig{
|
|
|
|
CommonCAProviderConfig: defaultCommonConfig(),
|
|
|
|
}
|
2018-06-13 08:40:03 +00:00
|
|
|
|
2018-06-20 21:33:02 +00:00
|
|
|
decodeConf := &mapstructure.DecoderConfig{
|
2021-11-18 20:15:28 +00:00
|
|
|
DecodeHook: mapstructure.ComposeDecodeHookFunc(
|
|
|
|
structs.ParseDurationFunc(),
|
|
|
|
decode.HookTranslateKeys,
|
|
|
|
),
|
2018-06-20 21:33:02 +00:00
|
|
|
Result: &config,
|
|
|
|
WeaklyTypedInput: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder, err := mapstructure.NewDecoder(decodeConf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := decoder.Decode(raw); err != nil {
|
2018-06-13 08:40:03 +00:00
|
|
|
return nil, fmt.Errorf("error decoding config: %s", err)
|
|
|
|
}
|
|
|
|
|
2021-11-18 20:15:28 +00:00
|
|
|
if config.Token == "" && config.AuthMethod == nil {
|
|
|
|
return nil, fmt.Errorf("must provide a Vault token or configure a Vault auth method")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Token != "" && config.AuthMethod != nil {
|
|
|
|
return nil, fmt.Errorf("only one of Vault token or Vault auth method can be provided, but not both")
|
2018-06-13 08:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.RootPKIPath == "" {
|
|
|
|
return nil, fmt.Errorf("must provide a valid path to a root PKI backend")
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(config.RootPKIPath, "/") {
|
|
|
|
config.RootPKIPath += "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.IntermediatePKIPath == "" {
|
|
|
|
return nil, fmt.Errorf("must provide a valid path for the intermediate PKI backend")
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(config.IntermediatePKIPath, "/") {
|
|
|
|
config.IntermediatePKIPath += "/"
|
|
|
|
}
|
|
|
|
|
2018-07-20 23:04:04 +00:00
|
|
|
if err := config.CommonCAProviderConfig.Validate(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:40:03 +00:00
|
|
|
return &config, nil
|
|
|
|
}
|
2021-11-18 20:15:28 +00:00
|
|
|
|
|
|
|
func vaultLogin(client *vaultapi.Client, authMethod *structs.VaultAuthMethod) (*vaultapi.Secret, error) {
|
|
|
|
// Adapted from https://www.vaultproject.io/docs/auth/kubernetes#code-example
|
|
|
|
loginPath, err := configureVaultAuthMethod(authMethod)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := client.Logical().Write(loginPath, authMethod.Params)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if resp == nil || resp.Auth == nil || resp.Auth.ClientToken == "" {
|
|
|
|
return nil, fmt.Errorf("login response did not return client token")
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func configureVaultAuthMethod(authMethod *structs.VaultAuthMethod) (loginPath string, err error) {
|
|
|
|
if authMethod.MountPath == "" {
|
|
|
|
authMethod.MountPath = authMethod.Type
|
|
|
|
}
|
|
|
|
|
|
|
|
switch authMethod.Type {
|
|
|
|
case VaultAuthMethodTypeKubernetes:
|
|
|
|
// For the Kubernetes Auth method, we will try to read the JWT token
|
|
|
|
// from the default service account file location if jwt was not provided.
|
|
|
|
if jwt, ok := authMethod.Params["jwt"]; !ok || jwt == "" {
|
|
|
|
serviceAccountToken, err := os.ReadFile(defaultK8SServiceAccountTokenPath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
authMethod.Params["jwt"] = string(serviceAccountToken)
|
|
|
|
}
|
|
|
|
loginPath = fmt.Sprintf("auth/%s/login", authMethod.MountPath)
|
|
|
|
// These auth methods require a username for the login API path.
|
|
|
|
case VaultAuthMethodTypeLDAP, VaultAuthMethodTypeUserpass, VaultAuthMethodTypeOkta, VaultAuthMethodTypeRadius:
|
|
|
|
// Get username from the params.
|
|
|
|
if username, ok := authMethod.Params["username"]; ok {
|
|
|
|
loginPath = fmt.Sprintf("auth/%s/login/%s", authMethod.MountPath, username)
|
|
|
|
} else {
|
|
|
|
return "", fmt.Errorf("failed to get 'username' from auth method params")
|
|
|
|
}
|
|
|
|
// This auth method requires a role for the login API path.
|
|
|
|
case VaultAuthMethodTypeOCI:
|
|
|
|
if role, ok := authMethod.Params["role"]; ok {
|
|
|
|
loginPath = fmt.Sprintf("auth/%s/login/%s", authMethod.MountPath, role)
|
|
|
|
} else {
|
|
|
|
return "", fmt.Errorf("failed to get 'role' from auth method params")
|
|
|
|
}
|
|
|
|
case VaultAuthMethodTypeToken:
|
|
|
|
return "", fmt.Errorf("'token' auth method is not supported via auth method configuration; " +
|
|
|
|
"please provide the token with the 'token' parameter in the CA configuration")
|
|
|
|
// The rest of the auth methods use auth/<auth method path> login API path.
|
|
|
|
case VaultAuthMethodTypeAliCloud,
|
|
|
|
VaultAuthMethodTypeAppRole,
|
|
|
|
VaultAuthMethodTypeAWS,
|
|
|
|
VaultAuthMethodTypeAzure,
|
|
|
|
VaultAuthMethodTypeCloudFoundry,
|
|
|
|
VaultAuthMethodTypeGitHub,
|
|
|
|
VaultAuthMethodTypeGCP,
|
|
|
|
VaultAuthMethodTypeJWT,
|
|
|
|
VaultAuthMethodTypeKerberos,
|
|
|
|
VaultAuthMethodTypeTLS:
|
|
|
|
loginPath = fmt.Sprintf("auth/%s/login", authMethod.MountPath)
|
|
|
|
default:
|
|
|
|
return "", fmt.Errorf("auth method %q is not supported", authMethod.Type)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|