2017-08-08 04:18:59 +00:00
|
|
|
package vault
|
|
|
|
|
|
|
|
import (
|
2018-01-19 06:44:44 +00:00
|
|
|
"context"
|
2017-08-08 04:18:59 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
"github.com/hashicorp/vault/helper/namespace"
|
|
|
|
|
2018-04-05 15:49:21 +00:00
|
|
|
"github.com/hashicorp/errwrap"
|
2017-08-08 04:18:59 +00:00
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/helper/strutil"
|
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
2017-08-08 04:18:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// reloadPluginMounts reloads provided mounts, regardless of
|
|
|
|
// plugin name, as long as the backend type is plugin.
|
2020-06-29 22:36:22 +00:00
|
|
|
func (c *Core) reloadMatchingPluginMounts(ctx context.Context, mounts []string) error {
|
2018-09-18 03:03:00 +00:00
|
|
|
c.mountsLock.RLock()
|
|
|
|
defer c.mountsLock.RUnlock()
|
|
|
|
c.authLock.RLock()
|
|
|
|
defer c.authLock.RUnlock()
|
|
|
|
|
|
|
|
ns, err := namespace.FromContext(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-08 04:18:59 +00:00
|
|
|
|
|
|
|
var errors error
|
|
|
|
for _, mount := range mounts {
|
2018-09-18 03:03:00 +00:00
|
|
|
entry := c.router.MatchingMountEntry(ctx, mount)
|
2017-08-08 04:18:59 +00:00
|
|
|
if entry == nil {
|
2018-04-05 15:49:21 +00:00
|
|
|
errors = multierror.Append(errors, fmt.Errorf("cannot fetch mount entry on %q", mount))
|
2017-08-08 04:18:59 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var isAuth bool
|
2018-09-18 03:03:00 +00:00
|
|
|
fullPath := c.router.MatchingMount(ctx, mount)
|
2017-08-08 04:18:59 +00:00
|
|
|
if strings.HasPrefix(fullPath, credentialRoutePrefix) {
|
|
|
|
isAuth = true
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
// We dont reload mounts that are not in the same namespace
|
|
|
|
if ns.ID != entry.Namespace().ID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-11-07 01:21:24 +00:00
|
|
|
err := c.reloadBackendCommon(ctx, entry, isAuth)
|
|
|
|
if err != nil {
|
|
|
|
errors = multierror.Append(errors, errwrap.Wrapf(fmt.Sprintf("cannot reload plugin on %q: {{err}}", mount), err))
|
|
|
|
continue
|
2017-08-08 04:18:59 +00:00
|
|
|
}
|
2018-12-12 01:21:23 +00:00
|
|
|
c.logger.Info("successfully reloaded plugin", "plugin", entry.Accessor, "path", entry.Path)
|
2017-08-08 04:18:59 +00:00
|
|
|
}
|
|
|
|
return errors
|
|
|
|
}
|
|
|
|
|
|
|
|
// reloadPlugin reloads all mounted backends that are of
|
|
|
|
// plugin pluginName (name of the plugin as registered in
|
|
|
|
// the plugin catalog).
|
2020-06-29 22:36:22 +00:00
|
|
|
func (c *Core) reloadMatchingPlugin(ctx context.Context, pluginName string) error {
|
2018-09-18 03:03:00 +00:00
|
|
|
c.mountsLock.RLock()
|
|
|
|
defer c.mountsLock.RUnlock()
|
|
|
|
c.authLock.RLock()
|
|
|
|
defer c.authLock.RUnlock()
|
|
|
|
|
|
|
|
ns, err := namespace.FromContext(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-08 04:18:59 +00:00
|
|
|
|
|
|
|
// Filter mount entries that only matches the plugin name
|
|
|
|
for _, entry := range c.mounts.Entries {
|
2018-09-18 03:03:00 +00:00
|
|
|
// We dont reload mounts that are not in the same namespace
|
|
|
|
if ns.ID != entry.Namespace().ID {
|
|
|
|
continue
|
|
|
|
}
|
2020-06-29 22:36:22 +00:00
|
|
|
if entry.Type == pluginName || (entry.Type == "plugin" && entry.Config.PluginName == pluginName) {
|
2018-03-21 19:04:27 +00:00
|
|
|
err := c.reloadBackendCommon(ctx, entry, false)
|
2017-08-08 04:18:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-04-03 00:46:59 +00:00
|
|
|
c.logger.Info("successfully reloaded plugin", "plugin", pluginName, "path", entry.Path)
|
2017-08-08 04:18:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter auth mount entries that ony matches the plugin name
|
|
|
|
for _, entry := range c.auth.Entries {
|
2018-09-18 03:03:00 +00:00
|
|
|
// We dont reload mounts that are not in the same namespace
|
|
|
|
if ns.ID != entry.Namespace().ID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-11-19 23:23:48 +00:00
|
|
|
if entry.Type == pluginName || (entry.Type == "plugin" && entry.Config.PluginName == pluginName) {
|
2018-03-21 19:04:27 +00:00
|
|
|
err := c.reloadBackendCommon(ctx, entry, true)
|
2017-08-08 04:18:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-12-12 01:21:23 +00:00
|
|
|
c.logger.Info("successfully reloaded plugin", "plugin", entry.Accessor, "path", entry.Path)
|
2017-08-08 04:18:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-21 19:04:27 +00:00
|
|
|
// reloadBackendCommon is a generic method to reload a backend provided a
|
|
|
|
// MountEntry.
|
|
|
|
func (c *Core) reloadBackendCommon(ctx context.Context, entry *MountEntry, isAuth bool) error {
|
2019-04-23 14:22:56 +00:00
|
|
|
// Make sure our cache is up-to-date. Since some singleton mounts can be
|
|
|
|
// tuned, we do this before the below check.
|
|
|
|
entry.SyncCache()
|
|
|
|
|
2018-05-21 18:05:04 +00:00
|
|
|
// We don't want to reload the singleton mounts. They often have specific
|
|
|
|
// inmemory elements and we don't want to touch them here.
|
|
|
|
if strutil.StrListContains(singletonMounts, entry.Type) {
|
2018-09-18 03:03:00 +00:00
|
|
|
c.logger.Debug("skipping reload of singleton mount", "type", entry.Type)
|
2018-05-21 18:05:04 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-08 04:18:59 +00:00
|
|
|
path := entry.Path
|
|
|
|
|
2017-12-15 18:31:57 +00:00
|
|
|
if isAuth {
|
|
|
|
path = credentialRoutePrefix + path
|
|
|
|
}
|
|
|
|
|
2017-08-08 04:18:59 +00:00
|
|
|
// Fast-path out if the backend doesn't exist
|
2018-12-12 01:21:23 +00:00
|
|
|
raw, ok := c.router.root.Get(entry.Namespace().Path + path)
|
2017-08-08 04:18:59 +00:00
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
re := raw.(*routeEntry)
|
2017-12-15 18:31:57 +00:00
|
|
|
|
2018-03-21 19:04:27 +00:00
|
|
|
// Grab the lock, this allows requests to drain before we cleanup the
|
|
|
|
// client.
|
|
|
|
re.l.Lock()
|
|
|
|
defer re.l.Unlock()
|
|
|
|
|
2017-12-15 18:31:57 +00:00
|
|
|
// Only call Cleanup if backend is initialized
|
|
|
|
if re.backend != nil {
|
|
|
|
// Call backend's Cleanup routine
|
2018-01-19 06:44:44 +00:00
|
|
|
re.backend.Cleanup(ctx)
|
2017-12-15 18:31:57 +00:00
|
|
|
}
|
2017-08-08 04:18:59 +00:00
|
|
|
|
|
|
|
view := re.storageView
|
2018-09-18 03:03:00 +00:00
|
|
|
viewPath := entry.UUID + "/"
|
|
|
|
switch entry.Table {
|
|
|
|
case mountTableType:
|
|
|
|
viewPath = backendBarrierPrefix + viewPath
|
|
|
|
case credentialTableType:
|
|
|
|
viewPath = credentialBarrierPrefix + viewPath
|
|
|
|
}
|
|
|
|
|
|
|
|
removePathCheckers(c, entry, viewPath)
|
2017-08-08 04:18:59 +00:00
|
|
|
|
|
|
|
sysView := c.mountEntrySysView(entry)
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
nilMount, err := preprocessMount(c, entry, view.(*BarrierView))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-08-08 04:18:59 +00:00
|
|
|
var backend logical.Backend
|
|
|
|
if !isAuth {
|
|
|
|
// Dispense a new backend
|
2018-03-21 19:04:27 +00:00
|
|
|
backend, err = c.newLogicalBackend(ctx, entry, sysView, view)
|
2017-08-08 04:18:59 +00:00
|
|
|
} else {
|
2018-03-21 19:04:27 +00:00
|
|
|
backend, err = c.newCredentialBackend(ctx, entry, sysView, view)
|
2017-08-08 04:18:59 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if backend == nil {
|
|
|
|
return fmt.Errorf("nil backend of type %q returned from creation function", entry.Type)
|
|
|
|
}
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
addPathCheckers(c, entry, backend, viewPath)
|
|
|
|
|
|
|
|
if nilMount {
|
|
|
|
backend.Cleanup(ctx)
|
|
|
|
backend = nil
|
|
|
|
}
|
|
|
|
|
2017-08-08 04:18:59 +00:00
|
|
|
// Set the backend back
|
|
|
|
re.backend = backend
|
|
|
|
|
2018-09-18 03:03:00 +00:00
|
|
|
if backend != nil {
|
|
|
|
// Set paths as well
|
|
|
|
paths := backend.SpecialPaths()
|
|
|
|
if paths != nil {
|
|
|
|
re.rootPaths.Store(pathsToRadix(paths.Root))
|
|
|
|
re.loginPaths.Store(pathsToRadix(paths.Unauthenticated))
|
|
|
|
}
|
2018-03-16 17:35:19 +00:00
|
|
|
}
|
|
|
|
|
2017-08-08 04:18:59 +00:00
|
|
|
return nil
|
|
|
|
}
|