open-vault/vault/barrier_view.go

146 lines
3.4 KiB
Go
Raw Normal View History

2015-03-05 22:34:05 +00:00
package vault
import (
"context"
"errors"
"strings"
"sync"
2015-03-05 22:34:05 +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 {
barrier BarrierStorage
prefix string
readOnlyErr error
readOnlyErrLock sync.RWMutex
2015-03-05 22:34:05 +00:00
}
var (
ErrRelativePath = errors.New("relative paths not supported")
)
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.
func NewBarrierView(barrier BarrierStorage, prefix string) *BarrierView {
2015-03-05 22:34:05 +00:00
return &BarrierView{
barrier: barrier,
prefix: prefix,
}
}
func (v *BarrierView) setReadOnlyErr(readOnlyErr error) {
v.readOnlyErrLock.Lock()
defer v.readOnlyErrLock.Unlock()
v.readOnlyErr = readOnlyErr
}
func (v *BarrierView) getReadOnlyErr() error {
v.readOnlyErrLock.RLock()
defer v.readOnlyErrLock.RUnlock()
return v.readOnlyErr
}
// sanityCheck is used to perform a sanity check on a key
func (v *BarrierView) sanityCheck(key string) error {
if strings.Contains(key, "..") {
return ErrRelativePath
}
return nil
}
// logical.Storage impl.
func (v *BarrierView) List(ctx context.Context, prefix string) ([]string, error) {
if err := v.sanityCheck(prefix); err != nil {
return nil, err
}
return v.barrier.List(ctx, v.expandKey(prefix))
2015-03-05 22:34:05 +00:00
}
// logical.Storage impl.
func (v *BarrierView) Get(ctx context.Context, key string) (*logical.StorageEntry, error) {
if err := v.sanityCheck(key); err != nil {
return nil, err
}
entry, err := v.barrier.Get(ctx, v.expandKey(key))
2015-03-05 22:34:05 +00:00
if err != nil {
return nil, err
}
if entry == nil {
return nil, nil
}
2015-03-05 22:34:05 +00:00
if entry != nil {
entry.Key = v.truncateKey(entry.Key)
}
return &logical.StorageEntry{
2017-10-23 20:42:56 +00:00
Key: entry.Key,
Value: entry.Value,
SealWrap: entry.SealWrap,
}, nil
2015-03-05 22:34:05 +00:00
}
// logical.Storage impl.
func (v *BarrierView) Put(ctx context.Context, entry *logical.StorageEntry) error {
if entry == nil {
return errors.New("cannot write nil entry")
}
if err := v.sanityCheck(entry.Key); err != nil {
return err
}
expandedKey := v.expandKey(entry.Key)
roErr := v.getReadOnlyErr()
if roErr != nil {
return roErr
}
nested := &Entry{
2017-10-23 20:42:56 +00:00
Key: expandedKey,
Value: entry.Value,
SealWrap: entry.SealWrap,
}
return v.barrier.Put(ctx, nested)
}
// logical.Storage impl.
func (v *BarrierView) Delete(ctx context.Context, key string) error {
if err := v.sanityCheck(key); err != nil {
return err
}
expandedKey := v.expandKey(key)
roErr := v.getReadOnlyErr()
if roErr != nil {
return roErr
}
return v.barrier.Delete(ctx, expandedKey)
2015-03-05 22:34:05 +00:00
}
// SubView constructs a nested sub-view using the given prefix
func (v *BarrierView) SubView(prefix string) *BarrierView {
sub := v.expandKey(prefix)
return &BarrierView{barrier: v.barrier, prefix: sub, readOnlyErr: v.getReadOnlyErr()}
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)
}