open-vault/builtin/logical/transit/path_keys.go

164 lines
4.5 KiB
Go
Raw Normal View History

2015-04-16 00:08:12 +00:00
package transit
import (
"fmt"
"strconv"
2015-04-16 00:08:12 +00:00
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func (b *backend) pathKeys() *framework.Path {
2015-04-16 00:08:12 +00:00
return &framework.Path{
Pattern: "keys/" + framework.GenericNameRegex("name"),
2015-04-16 00:08:12 +00:00
Fields: map[string]*framework.FieldSchema{
"name": &framework.FieldSchema{
Type: framework.TypeString,
2015-04-27 20:52:47 +00:00
Description: "Name of the key",
2015-04-16 00:08:12 +00:00
},
2015-07-05 21:11:02 +00:00
"derived": &framework.FieldSchema{
Type: framework.TypeBool,
Description: `Enables key derivation mode. This
allows for per-transaction unique keys.`,
2015-07-05 21:11:02 +00:00
},
"convergent_encryption": &framework.FieldSchema{
Type: framework.TypeBool,
Description: `Whether to support convergent encryption.
This is only supported when using a key with
key derivation enabled and will require all
requests to carry both a context and 96-bit
(12-byte) nonce, unless the "context_as_nonce"
feature is also enabled. The given nonce will
be used in place of a randomly generated nonce.
As a result, when the same context and nonce
(or context, if "context_as_nonce" is enabled)
are supplied, the same ciphertext is emitted
from the encryption function. It is *very
important* when using this mode that you ensure
that all nonces are unique for a given context,
or, when using "context_as_nonce", that all
contexts are unique for a given key. Failing to
do so will severely impact the ciphertext's
security.`,
},
"context_as_nonce": &framework.FieldSchema{
Type: framework.TypeBool,
Description: `Whether to use the context value as the
nonce in the convergent encryption operation
mode. If set true, the user will have to
supply a 96-bit (12-byte) context value.
It is *very important* when using this
mode that you ensure that all contexts are
*globally unique*. Failing to do so will
severely impact the security of the key.`,
},
2015-04-16 00:08:12 +00:00
},
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.UpdateOperation: b.pathPolicyWrite,
logical.DeleteOperation: b.pathPolicyDelete,
logical.ReadOperation: b.pathPolicyRead,
2015-04-16 00:08:12 +00:00
},
HelpSynopsis: pathPolicyHelpSyn,
HelpDescription: pathPolicyHelpDesc,
2015-04-16 00:08:12 +00:00
}
}
func (b *backend) pathPolicyWrite(
2015-04-16 00:08:12 +00:00
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
name := d.Get("name").(string)
2015-07-05 21:11:02 +00:00
derived := d.Get("derived").(bool)
convergent := d.Get("convergent_encryption").(bool)
contextAsNonce := d.Get("context_as_nonce").(bool)
if !derived && convergent {
return logical.ErrorResponse("convergent encryption requires derivation to be enabled"), nil
}
2015-04-16 00:08:12 +00:00
p, lock, upserted, err := b.lm.GetPolicyUpsert(req.Storage, name, derived, convergent, contextAsNonce)
if lock != nil {
defer lock.RUnlock()
}
2016-04-26 15:39:19 +00:00
if err != nil {
return nil, err
}
if p == nil {
return nil, fmt.Errorf("error generating key: returned policy was nil")
}
resp := &logical.Response{}
if !upserted {
resp.AddWarning(fmt.Sprintf("key %s already existed", name))
}
return nil, nil
2015-04-16 00:08:12 +00:00
}
func (b *backend) pathPolicyRead(
2015-04-16 00:08:12 +00:00
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
name := d.Get("name").(string)
p, lock, err := b.lm.GetPolicyShared(req.Storage, name)
if lock != nil {
defer lock.RUnlock()
}
2015-04-16 00:08:12 +00:00
if err != nil {
return nil, err
}
2016-04-26 15:39:19 +00:00
if p == nil {
2015-04-16 00:08:12 +00:00
return nil, nil
}
// Return the response
resp := &logical.Response{
Data: map[string]interface{}{
2016-04-26 15:39:19 +00:00
"name": p.Name,
"cipher_mode": p.CipherMode,
"derived": p.Derived,
"deletion_allowed": p.DeletionAllowed,
"min_decryption_version": p.MinDecryptionVersion,
"latest_version": p.LatestVersion,
2015-04-16 00:08:12 +00:00
},
}
2016-04-26 15:39:19 +00:00
if p.Derived {
resp.Data["kdf_mode"] = p.KDFMode
resp.Data["convergent_encryption"] = p.ConvergentEncryption
if p.ContextAsNonce != nil {
resp.Data["context_as_nonce"] = *p.ContextAsNonce
}
2015-07-06 01:58:31 +00:00
}
retKeys := map[string]int64{}
2016-04-26 15:39:19 +00:00
for k, v := range p.Keys {
retKeys[strconv.Itoa(k)] = v.CreationTime
}
resp.Data["keys"] = retKeys
2015-04-16 00:08:12 +00:00
return resp, nil
}
func (b *backend) pathPolicyDelete(
2015-04-16 00:08:12 +00:00
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
name := d.Get("name").(string)
// Delete does its own locking
err := b.lm.DeletePolicy(req.Storage, name)
if err != nil {
return logical.ErrorResponse(fmt.Sprintf("error deleting policy %s: %s", name, err)), err
}
2015-04-16 00:08:12 +00:00
return nil, nil
}
const pathPolicyHelpSyn = `Managed named encryption keys`
const pathPolicyHelpDesc = `
This path is used to manage the named keys that are available.
Doing a write with no value against a new named key will create
it using a randomly generated key.
`