2015-04-16 00:08:12 +00:00
|
|
|
package transit
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
2015-09-14 20:28:46 +00:00
|
|
|
"fmt"
|
2015-04-16 00:08:12 +00:00
|
|
|
|
2015-09-14 20:28:46 +00:00
|
|
|
"github.com/hashicorp/vault/helper/certutil"
|
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) pathDecrypt() *framework.Path {
|
2015-04-16 00:08:12 +00:00
|
|
|
return &framework.Path{
|
2015-08-21 07:56:13 +00:00
|
|
|
Pattern: "decrypt/" + framework.GenericNameRegex("name"),
|
2015-04-16 00:08:12 +00:00
|
|
|
Fields: map[string]*framework.FieldSchema{
|
|
|
|
"name": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Name of the policy",
|
|
|
|
},
|
|
|
|
|
|
|
|
"ciphertext": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Ciphertext value to decrypt",
|
|
|
|
},
|
2015-07-05 21:12:07 +00:00
|
|
|
|
|
|
|
"context": &framework.FieldSchema{
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Context for key derivation. Required for derived 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.pathDecryptWrite,
|
2015-04-16 00:08:12 +00:00
|
|
|
},
|
2015-04-27 19:47:09 +00:00
|
|
|
|
|
|
|
HelpSynopsis: pathDecryptHelpSyn,
|
|
|
|
HelpDescription: pathDecryptHelpDesc,
|
2015-04-16 00:08:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 21:24:11 +00:00
|
|
|
func (b *backend) pathDecryptWrite(
|
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
|
|
|
ciphertext := d.Get("ciphertext").(string)
|
|
|
|
if len(ciphertext) == 0 {
|
2015-04-16 00:08:12 +00:00
|
|
|
return logical.ErrorResponse("missing ciphertext to decrypt"), logical.ErrInvalidRequest
|
|
|
|
}
|
2015-07-05 21:37:51 +00:00
|
|
|
|
|
|
|
// Decode the context if any
|
|
|
|
contextRaw := d.Get("context").(string)
|
|
|
|
var context []byte
|
|
|
|
if len(contextRaw) != 0 {
|
|
|
|
var err error
|
|
|
|
context, err = base64.StdEncoding.DecodeString(contextRaw)
|
|
|
|
if err != nil {
|
|
|
|
return logical.ErrorResponse("failed to decode context as base64"), logical.ErrInvalidRequest
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 00:08:12 +00:00
|
|
|
|
|
|
|
// Get the policy
|
2016-04-26 15:39:19 +00:00
|
|
|
p, lockType, err := b.lm.GetPolicy(req.Storage, name)
|
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 logical.ErrorResponse("policy not found"), logical.ErrInvalidRequest
|
|
|
|
}
|
|
|
|
|
2016-04-26 15:39:19 +00:00
|
|
|
defer b.lm.UnlockPolicy(name, lockType)
|
2016-01-27 21:24:11 +00:00
|
|
|
|
2016-04-26 15:39:19 +00:00
|
|
|
plaintext, err := p.Decrypt(context, ciphertext)
|
2015-07-05 21:19:24 +00:00
|
|
|
if err != nil {
|
2015-09-14 20:28:46 +00:00
|
|
|
switch err.(type) {
|
|
|
|
case certutil.UserError:
|
|
|
|
return logical.ErrorResponse(err.Error()), logical.ErrInvalidRequest
|
|
|
|
case certutil.InternalError:
|
|
|
|
return nil, err
|
|
|
|
default:
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-16 00:08:12 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 20:28:46 +00:00
|
|
|
if plaintext == "" {
|
|
|
|
return nil, fmt.Errorf("empty plaintext returned")
|
2015-04-16 00:08:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the response
|
|
|
|
resp := &logical.Response{
|
|
|
|
Data: map[string]interface{}{
|
2015-09-14 20:28:46 +00:00
|
|
|
"plaintext": plaintext,
|
2015-04-16 00:08:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
2015-04-27 19:47:09 +00:00
|
|
|
|
|
|
|
const pathDecryptHelpSyn = `Decrypt a ciphertext value using a named key`
|
|
|
|
|
|
|
|
const pathDecryptHelpDesc = `
|
|
|
|
This path uses the named key from the request path to decrypt a user
|
|
|
|
provided ciphertext. The plaintext is returned base64 encoded.
|
|
|
|
`
|