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

103 lines
2.5 KiB
Go
Raw Normal View History

2015-04-16 00:08:12 +00:00
package transit
import (
"encoding/base64"
"fmt"
2015-04-16 00:08:12 +00:00
"github.com/hashicorp/vault/helper/errutil"
2015-04-16 00:08:12 +00:00
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func (b *backend) pathDecrypt() *framework.Path {
2015-04-16 00:08:12 +00:00
return &framework.Path{
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",
},
"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{
logical.UpdateOperation: b.pathDecryptWrite,
2015-04-16 00:08:12 +00:00
},
HelpSynopsis: pathDecryptHelpSyn,
HelpDescription: pathDecryptHelpDesc,
2015-04-16 00:08:12 +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)
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
}
// 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
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 logical.ErrorResponse("policy not found"), logical.ErrInvalidRequest
}
2016-04-26 15:39:19 +00:00
plaintext, err := p.Decrypt(context, ciphertext)
if err != nil {
switch err.(type) {
case errutil.UserError:
return logical.ErrorResponse(err.Error()), logical.ErrInvalidRequest
case errutil.InternalError:
return nil, err
default:
return nil, err
}
2015-04-16 00:08:12 +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{}{
"plaintext": plaintext,
2015-04-16 00:08:12 +00:00
},
}
return resp, nil
}
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.
`