open-vault/vault/mount.go

245 lines
6.3 KiB
Go
Raw Normal View History

2015-03-11 22:19:41 +00:00
package vault
import (
"encoding/json"
"errors"
2015-03-12 01:19:40 +00:00
"fmt"
"strings"
2015-03-11 22:19:41 +00:00
)
const (
// coreMountConfigPath is used to store the mount configuration.
// Mounts are protected within the Vault itself, which means they
// can only be viewed or modified after an unseal.
coreMountConfigPath = "core/mounts"
// backendBarrierPrefix is the prefix to the UUID used in the
// barrier view for the backends.
backendBarrierPrefix = "logical/"
)
var (
// loadMountsFailed if loadMounts encounters an error
loadMountsFailed = errors.New("failed to setup mount table")
2015-03-11 22:19:41 +00:00
)
// MountTable is used to represent the internal mount table
type MountTable struct {
Entries []*MountEntry `json:"entries"`
}
2015-03-12 01:19:40 +00:00
// Returns a deep copy of the mount table
func (t *MountTable) Clone() *MountTable {
mt := &MountTable{
Entries: make([]*MountEntry, len(t.Entries)),
}
for i, e := range t.Entries {
mt.Entries[i] = e.Clone()
}
return mt
}
2015-03-11 22:19:41 +00:00
// MountEntry is used to represent a mount table entry
type MountEntry struct {
Path string `json:"path"` // Mount Path
Type string `json:"type"` // Logical backend Type
Description string `json:"description"` // User-provided description
UUID string `json:"uuid"` // Barrier view UUID
}
2015-03-12 01:19:40 +00:00
// Returns a deep copy of the mount entry
func (e *MountEntry) Clone() *MountEntry {
return &MountEntry{
Path: e.Path,
Type: e.Type,
Description: e.Description,
UUID: e.UUID,
}
}
2015-03-11 22:19:41 +00:00
// loadMounts is invoked as part of postUnseal to load the mount table
func (c *Core) loadMounts() error {
// Load the existing mount table
raw, err := c.barrier.Get(coreMountConfigPath)
if err != nil {
c.logger.Printf("[ERR] core: failed to read mount table: %v", err)
return loadMountsFailed
2015-03-11 22:19:41 +00:00
}
if raw != nil {
2015-03-11 22:33:25 +00:00
c.mounts = &MountTable{}
2015-03-11 22:19:41 +00:00
if err := json.Unmarshal(raw.Value, c.mounts); err != nil {
c.logger.Printf("[ERR] core: failed to decode mount table: %v", err)
return loadMountsFailed
2015-03-11 22:19:41 +00:00
}
}
// Done if we have restored the mount table
if c.mounts != nil {
return nil
}
// Create and persist the default mount table
c.mounts = defaultMountTable()
2015-03-12 01:19:40 +00:00
if err := c.persistMounts(c.mounts); err != nil {
return loadMountsFailed
2015-03-11 22:19:41 +00:00
}
return nil
}
// persistMounts is used to persist the mount table after modification
2015-03-12 01:19:40 +00:00
func (c *Core) persistMounts(table *MountTable) error {
2015-03-11 22:19:41 +00:00
// Marshal the table
2015-03-12 01:19:40 +00:00
raw, err := json.Marshal(table)
2015-03-11 22:19:41 +00:00
if err != nil {
c.logger.Printf("[ERR] core: failed to encode mount table: %v", err)
return err
}
// Create an entry
entry := &Entry{
Key: coreMountConfigPath,
Value: raw,
}
// Write to the physical backend
if err := c.barrier.Put(entry); err != nil {
c.logger.Printf("[ERR] core: failed to persist mount table: %v", err)
return err
}
return nil
}
// setupMounts is invoked after we've loaded the mount table to
// initialize the logical backends and setup the router
func (c *Core) setupMounts() error {
var backend LogicalBackend
var err error
for _, entry := range c.mounts.Entries {
// Initialize the backend, special casing for system
if entry.Type == "system" {
backend = &SystemBackend{core: c}
} else {
backend, err = NewBackend(entry.Type, nil)
if err != nil {
c.logger.Printf("[ERR] core: failed to create mount entry %#v: %v", entry, err)
return loadMountsFailed
}
}
// Create a barrier view using the UUID
view := NewBarrierView(c.barrier, backendBarrierPrefix+entry.UUID+"/")
// Mount the backend
if err := c.router.Mount(backend, entry.Type, entry.Path, view); err != nil {
c.logger.Printf("[ERR] core: failed to mount entry %#v: %v", entry, err)
return loadMountsFailed
}
}
return nil
}
2015-03-12 01:19:40 +00:00
// mountEntry is used to create a new mount entry
func (c *Core) mountEntry(me *MountEntry) error {
c.mountsLock.Lock()
defer c.mountsLock.Unlock()
// Ensure we end the path in a slash
if !strings.HasSuffix(me.Path, "/") {
me.Path += "/"
}
// Verify there is no conflicting mount
if match := c.router.MatchingMount(me.Path); match != "" {
return fmt.Errorf("existing mount at '%s'", match)
}
// Lookup the new backend
backend, err := NewBackend(me.Type, nil)
if err != nil {
return err
}
// Generate a new UUID and view
me.UUID = generateUUID()
view := NewBarrierView(c.barrier, backendBarrierPrefix+me.UUID+"/")
// Update the mount table
newTable := c.mounts.Clone()
newTable.Entries = append(newTable.Entries, me)
if err := c.persistMounts(newTable); err != nil {
return errors.New("failed to update mount table")
}
c.mounts = newTable
// Mount the backend
if err := c.router.Mount(backend, me.Type, me.Path, view); err != nil {
return err
}
c.logger.Printf("[INFO] core: mounted '%s' type: %s", me.Path, me.Type)
return nil
}
// unmountPath is used to unmount a path
func (c *Core) unmountPath(path string) error {
c.mountsLock.Lock()
defer c.mountsLock.Unlock()
// Ensure we end the path in a slash
if !strings.HasSuffix(path, "/") {
path += "/"
}
// Verify exact match of the route
match := c.router.MatchingMount(path)
if match == "" || path != match {
return fmt.Errorf("no matching mount")
}
// Remove the entry from the mount table
newTable := c.mounts.Clone()
n := len(newTable.Entries)
for i := 0; i < n; i++ {
if newTable.Entries[i].Path == path {
newTable.Entries[i], newTable.Entries[n-1] = newTable.Entries[n-1], nil
newTable.Entries = newTable.Entries[:n-1]
2015-03-12 01:29:49 +00:00
break
2015-03-12 01:19:40 +00:00
}
}
// Update the mount table
if err := c.persistMounts(newTable); err != nil {
return errors.New("failed to update mount table")
}
c.mounts = newTable
// Unmount the backend
if err := c.router.Unmount(path); err != nil {
return err
}
// TODO: Delete data in view?
// TODO: Handle revocation?
c.logger.Printf("[INFO] core: unmounted '%s'", path)
return nil
}
2015-03-11 22:19:41 +00:00
// defaultMountTable creates a default mount table
func defaultMountTable() *MountTable {
table := &MountTable{}
genericMount := &MountEntry{
Path: "secret/",
Type: "generic",
Description: "generic secret storage",
UUID: generateUUID(),
}
sysMount := &MountEntry{
Path: "sys/",
Type: "system",
Description: "system endpoints used for control, policy and debugging",
UUID: generateUUID(),
}
table.Entries = append(table.Entries, genericMount)
table.Entries = append(table.Entries, sysMount)
return table
}