2015-03-05 22:34:05 +00:00
|
|
|
package vault
|
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
import (
|
2015-03-16 18:24:49 +00:00
|
|
|
"fmt"
|
2015-03-15 20:52:43 +00:00
|
|
|
"strings"
|
2015-03-05 22:34:05 +00:00
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BarrierView wraps a SecurityBarrier and ensures all access is automatically
|
|
|
|
// prefixed. This is used to prevent anyone with access to the view to access
|
|
|
|
// any data in the durable storage outside of their prefix. Conceptually this
|
|
|
|
// is like a "chroot" into the barrier.
|
|
|
|
//
|
|
|
|
// BarrierView implements logical.Storage so it can be passed in as the
|
|
|
|
// durable storage mechanism for logical views.
|
2015-03-05 22:34:05 +00:00
|
|
|
type BarrierView struct {
|
2017-01-07 23:18:22 +00:00
|
|
|
barrier BarrierStorage
|
|
|
|
prefix string
|
|
|
|
readonly bool
|
2015-03-05 22:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewBarrierView takes an underlying security barrier and returns
|
|
|
|
// a view of it that can only operate with the given prefix.
|
2015-04-10 23:43:35 +00:00
|
|
|
func NewBarrierView(barrier BarrierStorage, prefix string) *BarrierView {
|
2015-03-05 22:34:05 +00:00
|
|
|
return &BarrierView{
|
|
|
|
barrier: barrier,
|
|
|
|
prefix: prefix,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 20:32:24 +00:00
|
|
|
// sanityCheck is used to perform a sanity check on a key
|
|
|
|
func (v *BarrierView) sanityCheck(key string) error {
|
|
|
|
if strings.Contains(key, "..") {
|
|
|
|
return fmt.Errorf("key cannot be relative path")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
// logical.Storage impl.
|
|
|
|
func (v *BarrierView) List(prefix string) ([]string, error) {
|
2015-03-31 20:32:24 +00:00
|
|
|
if err := v.sanityCheck(prefix); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-03-15 20:52:43 +00:00
|
|
|
return v.barrier.List(v.expandKey(prefix))
|
2015-03-05 22:34:05 +00:00
|
|
|
}
|
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
// logical.Storage impl.
|
|
|
|
func (v *BarrierView) Get(key string) (*logical.StorageEntry, error) {
|
2015-03-31 20:32:24 +00:00
|
|
|
if err := v.sanityCheck(key); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-03-05 22:34:05 +00:00
|
|
|
entry, err := v.barrier.Get(v.expandKey(key))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-03-15 20:52:43 +00:00
|
|
|
if entry == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2015-03-05 22:34:05 +00:00
|
|
|
if entry != nil {
|
|
|
|
entry.Key = v.truncateKey(entry.Key)
|
|
|
|
}
|
2015-03-15 20:52:43 +00:00
|
|
|
|
|
|
|
return &logical.StorageEntry{
|
|
|
|
Key: entry.Key,
|
|
|
|
Value: entry.Value,
|
|
|
|
}, nil
|
2015-03-05 22:34:05 +00:00
|
|
|
}
|
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
// logical.Storage impl.
|
|
|
|
func (v *BarrierView) Put(entry *logical.StorageEntry) error {
|
2017-01-07 23:18:22 +00:00
|
|
|
if v.readonly {
|
|
|
|
return logical.ErrReadOnly
|
|
|
|
}
|
2015-03-31 20:32:24 +00:00
|
|
|
if err := v.sanityCheck(entry.Key); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-15 20:52:43 +00:00
|
|
|
nested := &Entry{
|
|
|
|
Key: v.expandKey(entry.Key),
|
|
|
|
Value: entry.Value,
|
|
|
|
}
|
|
|
|
return v.barrier.Put(nested)
|
|
|
|
}
|
|
|
|
|
|
|
|
// logical.Storage impl.
|
2015-03-05 22:34:05 +00:00
|
|
|
func (v *BarrierView) Delete(key string) error {
|
2017-01-07 23:18:22 +00:00
|
|
|
if v.readonly {
|
|
|
|
return logical.ErrReadOnly
|
|
|
|
}
|
2015-03-31 20:32:24 +00:00
|
|
|
if err := v.sanityCheck(key); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-03-05 22:34:05 +00:00
|
|
|
return v.barrier.Delete(v.expandKey(key))
|
|
|
|
}
|
|
|
|
|
2015-03-15 20:52:43 +00:00
|
|
|
// SubView constructs a nested sub-view using the given prefix
|
|
|
|
func (v *BarrierView) SubView(prefix string) *BarrierView {
|
|
|
|
sub := v.expandKey(prefix)
|
2017-01-07 23:18:22 +00:00
|
|
|
return &BarrierView{barrier: v.barrier, prefix: sub, readonly: v.readonly}
|
2015-03-05 22:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// expandKey is used to expand to the full key path with the prefix
|
|
|
|
func (v *BarrierView) expandKey(suffix string) string {
|
|
|
|
return v.prefix + suffix
|
|
|
|
}
|
|
|
|
|
|
|
|
// truncateKey is used to remove the prefix of the key
|
|
|
|
func (v *BarrierView) truncateKey(full string) string {
|
|
|
|
return strings.TrimPrefix(full, v.prefix)
|
|
|
|
}
|