2018-08-17 15:52:14 -04:00
|
|
|
// Minio Cloud Storage, (C) 2015, 2016, 2017, 2018 Minio, Inc.
|
|
|
|
//
|
|
|
|
// 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 crypto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
vault "github.com/hashicorp/vault/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
//ErrKMSAuthLogin is raised when there is a failure authenticating to KMS
|
|
|
|
ErrKMSAuthLogin = errors.New("Vault service did not return auth info")
|
|
|
|
)
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// VaultKey represents vault encryption key-ring.
|
2018-08-17 15:52:14 -04:00
|
|
|
type VaultKey struct {
|
2018-12-12 01:50:29 -05:00
|
|
|
Name string `json:"name"` // The name of the encryption key-ring
|
|
|
|
Version int `json:"version"` // The key version
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// VaultAuth represents vault authentication type.
|
|
|
|
// Currently the only supported authentication type is AppRole.
|
2018-08-17 15:52:14 -04:00
|
|
|
type VaultAuth struct {
|
2018-12-12 01:50:29 -05:00
|
|
|
Type string `json:"type"` // The authentication type
|
|
|
|
AppRole VaultAppRole `json:"approle"` // The AppRole authentication credentials
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// VaultAppRole represents vault AppRole authentication credentials
|
2018-08-17 15:52:14 -04:00
|
|
|
type VaultAppRole struct {
|
2018-12-12 01:50:29 -05:00
|
|
|
ID string `json:"id"` // The AppRole access ID
|
|
|
|
Secret string `json:"secret"` // The AppRole secret
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// VaultConfig represents vault configuration.
|
2018-08-17 15:52:14 -04:00
|
|
|
type VaultConfig struct {
|
2018-12-12 01:50:29 -05:00
|
|
|
Endpoint string `json:"endpoint"` // The vault API endpoint as URL
|
|
|
|
CAPath string `json:"-"` // The path to PEM-encoded certificate files used for mTLS. Currently not used in config file.
|
|
|
|
Auth VaultAuth `json:"auth"` // The vault authentication configuration
|
|
|
|
Key VaultKey `json:"key-id"` // The named key used for key-generation / decryption.
|
|
|
|
Namespace string `json:"-"` // The vault namespace of enterprise vault instances
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// vaultService represents a connection to a vault KMS.
|
|
|
|
type vaultService struct {
|
|
|
|
config *VaultConfig
|
|
|
|
client *vault.Client
|
|
|
|
leaseDuration time.Duration
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
var _ KMS = (*vaultService)(nil) // compiler check that *vaultService implements KMS
|
|
|
|
|
|
|
|
// empty/default vault configuration used to check whether a particular is empty.
|
|
|
|
var emptyVaultConfig = VaultConfig{}
|
|
|
|
|
|
|
|
// IsEmpty returns true if the vault config struct is an
|
|
|
|
// empty configuration.
|
|
|
|
func (v *VaultConfig) IsEmpty() bool { return *v == emptyVaultConfig }
|
|
|
|
|
|
|
|
// Verify returns a nil error if the vault configuration
|
|
|
|
// is valid. A valid configuration is either empty or
|
|
|
|
// contains valid non-default values.
|
|
|
|
func (v *VaultConfig) Verify() (err error) {
|
|
|
|
if v.IsEmpty() {
|
|
|
|
return // an empty configuration is valid
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case v.Endpoint == "":
|
|
|
|
err = errors.New("crypto: missing hashicorp vault endpoint")
|
|
|
|
case strings.ToLower(v.Auth.Type) != "approle":
|
|
|
|
err = fmt.Errorf("crypto: invalid hashicorp vault authentication type: %s is not supported", v.Auth.Type)
|
|
|
|
case v.Auth.AppRole.ID == "":
|
|
|
|
err = errors.New("crypto: missing hashicorp vault AppRole ID")
|
|
|
|
case v.Auth.AppRole.Secret == "":
|
|
|
|
err = errors.New("crypto: missing hashicorp vault AppSecret ID")
|
|
|
|
case v.Key.Name == "":
|
|
|
|
err = errors.New("crypto: missing hashicorp vault key name")
|
|
|
|
case v.Key.Version < 0:
|
|
|
|
err = errors.New("crypto: invalid hashicorp vault key version: The key version must not be negative")
|
|
|
|
}
|
|
|
|
return
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// NewVault initializes Hashicorp Vault KMS by authenticating
|
|
|
|
// to Vault with the credentials in config and gets a client
|
|
|
|
// token for future api calls.
|
|
|
|
func NewVault(config VaultConfig) (KMS, error) {
|
|
|
|
if config.IsEmpty() {
|
|
|
|
return nil, errors.New("crypto: the hashicorp vault configuration must not be empty")
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
if err := config.Verify(); err != nil {
|
|
|
|
return nil, err
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
vaultCfg := vault.Config{Address: config.Endpoint}
|
|
|
|
if err := vaultCfg.ConfigureTLS(&vault.TLSConfig{CAPath: config.CAPath}); err != nil {
|
2018-10-01 16:49:10 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
client, err := vault.NewClient(&vaultCfg)
|
2018-08-17 15:52:14 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
if config.Namespace != "" {
|
|
|
|
client.SetNamespace(config.Namespace)
|
2018-11-27 17:42:32 -05:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
payload := map[string]interface{}{
|
|
|
|
"role_id": config.Auth.AppRole.ID,
|
|
|
|
"secret_id": config.Auth.AppRole.Secret,
|
|
|
|
}
|
|
|
|
resp, err := client.Logical().Write("auth/approle/login", payload)
|
2018-08-17 15:52:14 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
if resp.Auth == nil {
|
|
|
|
return nil, ErrKMSAuthLogin
|
|
|
|
}
|
|
|
|
|
|
|
|
client.SetToken(resp.Auth.ClientToken)
|
|
|
|
v := &vaultService{client: client, config: &config, leaseDuration: time.Duration(resp.Auth.LeaseDuration)}
|
|
|
|
v.renewToken()
|
|
|
|
return v, nil
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// renewToken starts a new go-routine which renews
|
|
|
|
// the vault authentication token periodically.
|
|
|
|
func (v *vaultService) renewToken() {
|
2018-08-17 15:52:14 -04:00
|
|
|
retryDelay := 1 * time.Minute
|
|
|
|
go func() {
|
|
|
|
for {
|
2018-12-12 01:50:29 -05:00
|
|
|
s, err := v.client.Auth().Token().RenewSelf(int(v.leaseDuration))
|
2018-08-17 15:52:14 -04:00
|
|
|
if err != nil {
|
|
|
|
time.Sleep(retryDelay)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
nextRenew := s.Auth.LeaseDuration / 2
|
|
|
|
time.Sleep(time.Duration(nextRenew) * time.Second)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// GenerateKey returns a new plaintext key, generated by the KMS,
|
|
|
|
// and a sealed version of this plaintext key encrypted using the
|
|
|
|
// named key referenced by keyID. It also binds the generated key
|
|
|
|
// cryptographically to the provided context.
|
2018-08-17 15:52:14 -04:00
|
|
|
func (v *vaultService) GenerateKey(keyID string, ctx Context) (key [32]byte, sealedKey []byte, err error) {
|
2018-12-12 01:50:29 -05:00
|
|
|
var contextStream bytes.Buffer
|
|
|
|
ctx.WriteTo(&contextStream)
|
2018-08-17 15:52:14 -04:00
|
|
|
|
|
|
|
payload := map[string]interface{}{
|
|
|
|
"context": base64.StdEncoding.EncodeToString(contextStream.Bytes()),
|
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
s, err := v.client.Logical().Write(fmt.Sprintf("/transit/datakey/plaintext/%s", keyID), payload)
|
|
|
|
if err != nil {
|
|
|
|
return key, sealedKey, err
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
sealKey := s.Data["ciphertext"].(string)
|
|
|
|
plainKey, err := base64.StdEncoding.DecodeString(s.Data["plaintext"].(string))
|
|
|
|
if err != nil {
|
2018-12-12 01:50:29 -05:00
|
|
|
return key, sealedKey, err
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
copy(key[:], []byte(plainKey))
|
|
|
|
return key, []byte(sealKey), nil
|
|
|
|
}
|
|
|
|
|
2018-12-12 01:50:29 -05:00
|
|
|
// UnsealKey returns the decrypted sealedKey as plaintext key.
|
|
|
|
// Therefore it sends the sealedKey to the KMS which decrypts
|
|
|
|
// it using the named key referenced by keyID and responses with
|
|
|
|
// the plaintext key.
|
|
|
|
//
|
|
|
|
// The context must be same context as the one provided while
|
|
|
|
// generating the plaintext key / sealedKey.
|
2018-08-17 15:52:14 -04:00
|
|
|
func (v *vaultService) UnsealKey(keyID string, sealedKey []byte, ctx Context) (key [32]byte, err error) {
|
2018-12-12 01:50:29 -05:00
|
|
|
var contextStream bytes.Buffer
|
|
|
|
ctx.WriteTo(&contextStream)
|
|
|
|
|
2018-08-17 15:52:14 -04:00
|
|
|
payload := map[string]interface{}{
|
|
|
|
"ciphertext": string(sealedKey),
|
|
|
|
"context": base64.StdEncoding.EncodeToString(contextStream.Bytes()),
|
|
|
|
}
|
2018-12-12 01:50:29 -05:00
|
|
|
s, err := v.client.Logical().Write(fmt.Sprintf("/transit/decrypt/%s", keyID), payload)
|
|
|
|
if err != nil {
|
|
|
|
return key, err
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
base64Key := s.Data["plaintext"].(string)
|
2018-12-12 01:50:29 -05:00
|
|
|
plainKey, err := base64.StdEncoding.DecodeString(base64Key)
|
|
|
|
if err != nil {
|
|
|
|
return key, err
|
2018-08-17 15:52:14 -04:00
|
|
|
}
|
|
|
|
copy(key[:], []byte(plainKey))
|
|
|
|
return key, nil
|
|
|
|
}
|