2017-08-03 17:24:27 +00:00
|
|
|
package inmem
|
2015-03-02 18:48:53 +00:00
|
|
|
|
|
|
|
import (
|
2018-01-19 06:44:44 +00:00
|
|
|
"context"
|
2018-02-12 16:16:13 +00:00
|
|
|
"errors"
|
2015-03-02 18:48:53 +00:00
|
|
|
"strings"
|
|
|
|
"sync"
|
2018-02-12 16:16:13 +00:00
|
|
|
"sync/atomic"
|
2015-03-02 18:48:53 +00:00
|
|
|
|
2017-08-03 17:24:27 +00:00
|
|
|
"github.com/hashicorp/vault/physical"
|
2016-08-19 20:45:17 +00:00
|
|
|
log "github.com/mgutz/logxi/v1"
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
"github.com/armon/go-radix"
|
|
|
|
)
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
// Verify interfaces are satisfied
|
2018-01-20 01:44:24 +00:00
|
|
|
var _ physical.Backend = (*InmemBackend)(nil)
|
|
|
|
var _ physical.HABackend = (*InmemHABackend)(nil)
|
|
|
|
var _ physical.HABackend = (*TransactionalInmemHABackend)(nil)
|
|
|
|
var _ physical.Lock = (*InmemLock)(nil)
|
|
|
|
var _ physical.Transactional = (*TransactionalInmemBackend)(nil)
|
|
|
|
var _ physical.Transactional = (*TransactionalInmemHABackend)(nil)
|
2018-01-19 06:44:44 +00:00
|
|
|
|
2018-02-12 16:16:13 +00:00
|
|
|
var (
|
|
|
|
PutDisabledError = errors.New("put operations disabled in inmem backend")
|
|
|
|
GetDisabledError = errors.New("get operations disabled in inmem backend")
|
|
|
|
DeleteDisabledError = errors.New("delete operations disabled in inmem backend")
|
|
|
|
ListDisabledError = errors.New("list operations disabled in inmem backend")
|
|
|
|
)
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
// InmemBackend is an in-memory only physical backend. It is useful
|
|
|
|
// for testing and development situations where the data is not
|
|
|
|
// expected to be durable.
|
|
|
|
type InmemBackend struct {
|
2017-02-17 14:15:35 +00:00
|
|
|
sync.RWMutex
|
2015-11-03 16:47:16 +00:00
|
|
|
root *radix.Tree
|
2017-08-03 17:24:27 +00:00
|
|
|
permitPool *physical.PermitPool
|
2016-08-19 20:45:17 +00:00
|
|
|
logger log.Logger
|
2018-02-12 16:16:13 +00:00
|
|
|
FailGet *uint32
|
|
|
|
FailPut *uint32
|
|
|
|
FailDelete *uint32
|
|
|
|
FailList *uint32
|
2015-03-02 18:48:53 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
type TransactionalInmemBackend struct {
|
|
|
|
InmemBackend
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
// NewInmem constructs a new in-memory backend
|
2017-08-03 17:24:27 +00:00
|
|
|
func NewInmem(_ map[string]string, logger log.Logger) (physical.Backend, error) {
|
2015-03-02 18:48:53 +00:00
|
|
|
in := &InmemBackend{
|
2015-11-03 16:47:16 +00:00
|
|
|
root: radix.New(),
|
2017-08-03 17:24:27 +00:00
|
|
|
permitPool: physical.NewPermitPool(physical.DefaultParallelOperations),
|
2016-12-15 20:48:51 +00:00
|
|
|
logger: logger,
|
2018-02-12 16:16:13 +00:00
|
|
|
FailGet: new(uint32),
|
|
|
|
FailPut: new(uint32),
|
|
|
|
FailDelete: new(uint32),
|
|
|
|
FailList: new(uint32),
|
2015-03-02 18:48:53 +00:00
|
|
|
}
|
2017-08-03 17:24:27 +00:00
|
|
|
return in, nil
|
2015-03-02 18:48:53 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
// Basically for now just creates a permit pool of size 1 so only one operation
|
|
|
|
// can run at a time
|
2017-08-03 17:24:27 +00:00
|
|
|
func NewTransactionalInmem(_ map[string]string, logger log.Logger) (physical.Backend, error) {
|
2017-02-17 14:15:35 +00:00
|
|
|
in := &TransactionalInmemBackend{
|
|
|
|
InmemBackend: InmemBackend{
|
|
|
|
root: radix.New(),
|
2017-08-03 17:24:27 +00:00
|
|
|
permitPool: physical.NewPermitPool(1),
|
2017-02-20 16:08:03 +00:00
|
|
|
logger: logger,
|
2018-02-12 16:16:13 +00:00
|
|
|
FailGet: new(uint32),
|
|
|
|
FailPut: new(uint32),
|
|
|
|
FailDelete: new(uint32),
|
|
|
|
FailList: new(uint32),
|
2017-02-17 14:15:35 +00:00
|
|
|
},
|
|
|
|
}
|
2017-08-03 17:24:27 +00:00
|
|
|
return in, nil
|
2017-02-17 14:15:35 +00:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
// Put is used to insert or update an entry
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) Put(ctx context.Context, entry *physical.Entry) error {
|
2015-11-03 16:47:16 +00:00
|
|
|
i.permitPool.Acquire()
|
|
|
|
defer i.permitPool.Release()
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
i.Lock()
|
|
|
|
defer i.Unlock()
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
return i.PutInternal(ctx, entry)
|
2017-02-17 14:15:35 +00:00
|
|
|
}
|
2015-11-03 19:48:05 +00:00
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) PutInternal(ctx context.Context, entry *physical.Entry) error {
|
2018-02-12 16:16:13 +00:00
|
|
|
if i.FailPut != nil && atomic.LoadUint32(i.FailPut) != 0 {
|
|
|
|
return PutDisabledError
|
|
|
|
}
|
|
|
|
|
2017-11-30 14:43:07 +00:00
|
|
|
i.root.Insert(entry.Key, entry.Value)
|
2015-03-02 18:48:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get is used to fetch an entry
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) Get(ctx context.Context, key string) (*physical.Entry, error) {
|
2015-11-03 16:47:16 +00:00
|
|
|
i.permitPool.Acquire()
|
|
|
|
defer i.permitPool.Release()
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
i.RLock()
|
|
|
|
defer i.RUnlock()
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
return i.GetInternal(ctx, key)
|
2017-02-17 14:15:35 +00:00
|
|
|
}
|
2015-11-03 19:48:05 +00:00
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) GetInternal(ctx context.Context, key string) (*physical.Entry, error) {
|
2018-02-12 16:16:13 +00:00
|
|
|
if i.FailGet != nil && atomic.LoadUint32(i.FailGet) != 0 {
|
|
|
|
return nil, GetDisabledError
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
if raw, ok := i.root.Get(key); ok {
|
2017-11-30 14:43:07 +00:00
|
|
|
return &physical.Entry{
|
|
|
|
Key: key,
|
|
|
|
Value: raw.([]byte),
|
|
|
|
}, nil
|
2015-03-02 18:48:53 +00:00
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete is used to permanently delete an entry
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) Delete(ctx context.Context, key string) error {
|
2015-11-03 16:47:16 +00:00
|
|
|
i.permitPool.Acquire()
|
|
|
|
defer i.permitPool.Release()
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
i.Lock()
|
|
|
|
defer i.Unlock()
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
return i.DeleteInternal(ctx, key)
|
2017-02-17 14:15:35 +00:00
|
|
|
}
|
2015-11-03 19:48:05 +00:00
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) DeleteInternal(ctx context.Context, key string) error {
|
2018-02-12 16:16:13 +00:00
|
|
|
if i.FailDelete != nil && atomic.LoadUint32(i.FailDelete) != 0 {
|
|
|
|
return DeleteDisabledError
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
i.root.Delete(key)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// List is used ot list all the keys under a given
|
|
|
|
// prefix, up to the next prefix.
|
2018-01-19 06:44:44 +00:00
|
|
|
func (i *InmemBackend) List(ctx context.Context, prefix string) ([]string, error) {
|
2015-11-03 16:47:16 +00:00
|
|
|
i.permitPool.Acquire()
|
|
|
|
defer i.permitPool.Release()
|
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
i.RLock()
|
|
|
|
defer i.RUnlock()
|
|
|
|
|
|
|
|
return i.ListInternal(prefix)
|
|
|
|
}
|
2015-11-03 19:48:05 +00:00
|
|
|
|
2017-02-17 14:15:35 +00:00
|
|
|
func (i *InmemBackend) ListInternal(prefix string) ([]string, error) {
|
2018-02-12 16:16:13 +00:00
|
|
|
if i.FailList != nil && atomic.LoadUint32(i.FailList) != 0 {
|
|
|
|
return nil, ListDisabledError
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:48:53 +00:00
|
|
|
var out []string
|
|
|
|
seen := make(map[string]interface{})
|
|
|
|
walkFn := func(s string, v interface{}) bool {
|
|
|
|
trimmed := strings.TrimPrefix(s, prefix)
|
|
|
|
sep := strings.Index(trimmed, "/")
|
|
|
|
if sep == -1 {
|
|
|
|
out = append(out, trimmed)
|
|
|
|
} else {
|
|
|
|
trimmed = trimmed[:sep+1]
|
|
|
|
if _, ok := seen[trimmed]; !ok {
|
|
|
|
out = append(out, trimmed)
|
|
|
|
seen[trimmed] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i.root.WalkPrefix(prefix, walkFn)
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
2017-02-17 14:15:35 +00:00
|
|
|
|
|
|
|
// Implements the transaction interface
|
2018-01-19 06:44:44 +00:00
|
|
|
func (t *TransactionalInmemBackend) Transaction(ctx context.Context, txns []*physical.TxnEntry) error {
|
2017-02-17 14:15:35 +00:00
|
|
|
t.permitPool.Acquire()
|
|
|
|
defer t.permitPool.Release()
|
|
|
|
|
|
|
|
t.Lock()
|
|
|
|
defer t.Unlock()
|
|
|
|
|
2018-01-19 06:44:44 +00:00
|
|
|
return physical.GenericTransactionHandler(ctx, t, txns)
|
2017-02-17 14:15:35 +00:00
|
|
|
}
|