2015-04-16 00:08:12 +00:00
|
|
|
package transit
|
|
|
|
|
|
|
|
import (
|
2015-07-05 21:19:24 +00:00
|
|
|
"fmt"
|
2015-09-17 22:49:50 +00:00
|
|
|
"strconv"
|
2015-04-16 00:08:12 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2016-01-27 21:24:11 +00:00
|
|
|
func (b *backend) pathKeys() *framework.Path {
|
2015-04-16 00:08:12 +00:00
|
|
|
return &framework.Path{
|
2015-08-21 07:56:13 +00:00
|
|
|
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-04-16 00:08:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2016-01-27 21:24:11 +00:00
|
|
|
logical.UpdateOperation: b.pathPolicyWrite,
|
|
|
|
logical.DeleteOperation: b.pathPolicyDelete,
|
|
|
|
logical.ReadOperation: b.pathPolicyRead,
|
2015-04-16 00:08:12 +00:00
|
|
|
},
|
2015-04-27 19:47:09 +00:00
|
|
|
|
|
|
|
HelpSynopsis: pathPolicyHelpSyn,
|
|
|
|
HelpDescription: pathPolicyHelpDesc,
|
2015-04-16 00:08:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 21:24:11 +00:00
|
|
|
func (b *backend) pathPolicyWrite(
|
2015-04-16 00:08:12 +00:00
|
|
|
req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
|
2016-04-21 21:08:44 +00:00
|
|
|
// Grab a write lock right off the bat
|
2016-04-21 20:32:06 +00:00
|
|
|
b.policies.Lock()
|
|
|
|
defer b.policies.Unlock()
|
|
|
|
|
2015-04-16 00:08:12 +00:00
|
|
|
name := d.Get("name").(string)
|
2015-07-05 21:11:02 +00:00
|
|
|
derived := d.Get("derived").(bool)
|
2015-04-16 00:08:12 +00:00
|
|
|
|
2016-04-21 20:32:06 +00:00
|
|
|
// Generate the policy; this will also check if it exists for safety
|
|
|
|
_, err := b.policies.generatePolicy(req.Storage, name, derived)
|
2015-06-18 01:51:05 +00:00
|
|
|
return nil, err
|
2015-04-16 00:08:12 +00:00
|
|
|
}
|
|
|
|
|
2016-01-27 21:24:11 +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)
|
2015-09-14 20:28:46 +00:00
|
|
|
|
2016-04-21 20:32:06 +00:00
|
|
|
lp, err := b.policies.getPolicy(req.Storage, name)
|
2015-04-16 00:08:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-01-27 21:24:11 +00:00
|
|
|
if lp == nil {
|
2015-04-16 00:08:12 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2016-01-29 19:33:51 +00:00
|
|
|
lp.RLock()
|
|
|
|
defer lp.RUnlock()
|
2016-01-27 21:24:11 +00:00
|
|
|
|
|
|
|
// Verify if wasn't deleted before we grabbed the lock
|
2016-04-21 20:32:06 +00:00
|
|
|
if lp.Policy() == nil {
|
2016-01-29 19:40:13 +00:00
|
|
|
return nil, fmt.Errorf("no existing policy named %s could be found", name)
|
2016-01-27 21:24:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 00:08:12 +00:00
|
|
|
// Return the response
|
|
|
|
resp := &logical.Response{
|
|
|
|
Data: map[string]interface{}{
|
2016-04-21 20:32:06 +00:00
|
|
|
"name": lp.Policy().Name,
|
|
|
|
"cipher_mode": lp.Policy().CipherMode,
|
|
|
|
"derived": lp.Policy().Derived,
|
|
|
|
"deletion_allowed": lp.Policy().DeletionAllowed,
|
|
|
|
"min_decryption_version": lp.Policy().MinDecryptionVersion,
|
|
|
|
"latest_version": lp.Policy().LatestVersion,
|
2015-04-16 00:08:12 +00:00
|
|
|
},
|
|
|
|
}
|
2016-04-21 20:32:06 +00:00
|
|
|
if lp.Policy().Derived {
|
|
|
|
resp.Data["kdf_mode"] = lp.Policy().KDFMode
|
2015-07-06 01:58:31 +00:00
|
|
|
}
|
2015-09-17 22:49:50 +00:00
|
|
|
|
|
|
|
retKeys := map[string]int64{}
|
2016-04-21 20:32:06 +00:00
|
|
|
for k, v := range lp.Policy().Keys {
|
2015-09-17 22:49:50 +00:00
|
|
|
retKeys[strconv.Itoa(k)] = v.CreationTime
|
|
|
|
}
|
|
|
|
resp.Data["keys"] = retKeys
|
|
|
|
|
2015-04-16 00:08:12 +00:00
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2016-01-27 21:24:11 +00:00
|
|
|
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)
|
|
|
|
|
2016-04-21 21:08:44 +00:00
|
|
|
// Some sanity checking
|
2016-04-21 20:32:06 +00:00
|
|
|
lp, err := b.policies.getPolicy(req.Storage, name)
|
2015-09-14 20:28:46 +00:00
|
|
|
if err != nil {
|
2015-09-17 22:49:50 +00:00
|
|
|
return logical.ErrorResponse(fmt.Sprintf("error looking up policy %s, error is %s", name, err)), err
|
2015-09-14 20:28:46 +00:00
|
|
|
}
|
2016-01-27 21:24:11 +00:00
|
|
|
if lp == nil {
|
2015-09-14 20:28:46 +00:00
|
|
|
return logical.ErrorResponse(fmt.Sprintf("no such key %s", name)), logical.ErrInvalidRequest
|
|
|
|
}
|
|
|
|
|
2016-04-21 21:08:44 +00:00
|
|
|
// Hold both locks since we'll be affecting both the cache (if it exists)
|
|
|
|
// and the locking policy itself
|
2016-04-21 20:32:06 +00:00
|
|
|
b.policies.Lock()
|
|
|
|
defer b.policies.Unlock()
|
|
|
|
lp.Lock()
|
|
|
|
defer lp.Unlock()
|
|
|
|
|
2016-04-21 21:08:44 +00:00
|
|
|
// Make sure that we have up-to-date values since deletePolicy will check
|
|
|
|
// things like whether deletion is allowed
|
|
|
|
lp, err = b.policies.refreshPolicy(req.Storage, name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if lp == nil {
|
|
|
|
return nil, fmt.Errorf("error finding key %s after locking for deletion", name)
|
|
|
|
}
|
|
|
|
|
2016-04-21 20:32:06 +00:00
|
|
|
err = b.policies.deletePolicy(req.Storage, lp, name)
|
2016-01-27 17:02:32 +00:00
|
|
|
if err != nil {
|
2016-01-27 21:24:11 +00:00
|
|
|
return logical.ErrorResponse(fmt.Sprintf("error deleting policy %s: %s", name, err)), err
|
2016-01-27 17:02:32 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 00:08:12 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
2015-04-27 19:47:09 +00:00
|
|
|
|
2015-09-14 20:28:46 +00:00
|
|
|
const pathPolicyHelpSyn = `Managed named encryption keys`
|
2015-04-27 19:47:09 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
`
|