2017-04-04 00:52:29 +00:00
|
|
|
package pluginutil
|
|
|
|
|
|
|
|
import (
|
2018-01-18 21:49:20 +00:00
|
|
|
"context"
|
2017-04-11 00:12:52 +00:00
|
|
|
"time"
|
2017-04-04 00:52:29 +00:00
|
|
|
|
2018-04-03 00:46:59 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2017-04-04 00:52:29 +00:00
|
|
|
plugin "github.com/hashicorp/go-plugin"
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/helper/consts"
|
|
|
|
"github.com/hashicorp/vault/sdk/helper/wrapping"
|
2017-04-04 00:52:29 +00:00
|
|
|
)
|
|
|
|
|
2017-04-13 00:35:53 +00:00
|
|
|
// Looker defines the plugin Lookup function that looks into the plugin catalog
|
2018-03-20 18:54:10 +00:00
|
|
|
// for available plugins and returns a PluginRunner
|
2017-04-04 00:52:29 +00:00
|
|
|
type Looker interface {
|
2018-11-07 01:21:24 +00:00
|
|
|
LookupPlugin(context.Context, string, consts.PluginType) (*PluginRunner, error)
|
2017-04-04 00:52:29 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 22:56:17 +00:00
|
|
|
// RunnerUtil interface defines the functions needed by the runner to wrap the
|
2017-04-13 00:35:53 +00:00
|
|
|
// metadata needed to run a plugin process. This includes looking up Mlock
|
2018-03-20 18:54:10 +00:00
|
|
|
// configuration and wrapping data in a response wrapped token.
|
|
|
|
// logical.SystemView implementations satisfy this interface.
|
2017-05-01 21:59:55 +00:00
|
|
|
type RunnerUtil interface {
|
2018-01-19 06:44:44 +00:00
|
|
|
ResponseWrapData(ctx context.Context, data map[string]interface{}, ttl time.Duration, jwt bool) (*wrapping.ResponseWrapInfo, error)
|
2017-04-24 19:21:49 +00:00
|
|
|
MlockEnabled() bool
|
2017-04-11 00:12:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 22:56:17 +00:00
|
|
|
// LookRunnerUtil defines the functions for both Looker and Wrapper
|
2017-05-01 21:59:55 +00:00
|
|
|
type LookRunnerUtil interface {
|
2017-04-06 19:20:10 +00:00
|
|
|
Looker
|
2017-05-01 21:59:55 +00:00
|
|
|
RunnerUtil
|
2017-04-06 19:20:10 +00:00
|
|
|
}
|
|
|
|
|
2017-04-13 00:35:53 +00:00
|
|
|
// PluginRunner defines the metadata needed to run a plugin securely with
|
|
|
|
// go-plugin.
|
2017-04-04 00:52:29 +00:00
|
|
|
type PluginRunner struct {
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
Name string `json:"name" structs:"name"`
|
2018-11-07 01:21:24 +00:00
|
|
|
Type consts.PluginType `json:"type" structs:"type"`
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
Command string `json:"command" structs:"command"`
|
|
|
|
Args []string `json:"args" structs:"args"`
|
2018-09-20 17:50:29 +00:00
|
|
|
Env []string `json:"env" structs:"env"`
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
Sha256 []byte `json:"sha256" structs:"sha256"`
|
|
|
|
Builtin bool `json:"builtin" structs:"builtin"`
|
|
|
|
BuiltinFactory func() (interface{}, error) `json:"-" structs:"-"`
|
2017-04-04 00:52:29 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 18:54:10 +00:00
|
|
|
// Run takes a wrapper RunnerUtil instance along with the go-plugin parameters and
|
2017-09-01 05:02:03 +00:00
|
|
|
// returns a configured plugin.Client with TLS Configured and a wrapping token set
|
|
|
|
// on PluginUnwrapTokenEnv for plugin process consumption.
|
2018-10-19 22:56:17 +00:00
|
|
|
func (r *PluginRunner) Run(ctx context.Context, wrapper RunnerUtil, pluginSets map[int]plugin.PluginSet, hs plugin.HandshakeConfig, env []string, logger log.Logger) (*plugin.Client, error) {
|
2020-09-23 22:08:03 +00:00
|
|
|
return r.RunConfig(ctx,
|
|
|
|
Runner(wrapper),
|
|
|
|
PluginSets(pluginSets),
|
|
|
|
HandshakeConfig(hs),
|
|
|
|
Env(env...),
|
|
|
|
Logger(logger),
|
|
|
|
MetadataMode(false),
|
|
|
|
)
|
2017-09-01 05:02:03 +00:00
|
|
|
}
|
2017-04-04 00:52:29 +00:00
|
|
|
|
2017-09-01 05:02:03 +00:00
|
|
|
// RunMetadataMode returns a configured plugin.Client that will dispense a plugin
|
2018-03-20 18:54:10 +00:00
|
|
|
// in metadata mode. The PluginMetadataModeEnv is passed in as part of the Cmd to
|
2019-04-12 21:54:35 +00:00
|
|
|
// plugin.Client, and consumed by the plugin process on api.VaultPluginTLSProvider.
|
2018-10-19 22:56:17 +00:00
|
|
|
func (r *PluginRunner) RunMetadataMode(ctx context.Context, wrapper RunnerUtil, pluginSets map[int]plugin.PluginSet, hs plugin.HandshakeConfig, env []string, logger log.Logger) (*plugin.Client, error) {
|
2020-09-23 22:08:03 +00:00
|
|
|
return r.RunConfig(ctx,
|
|
|
|
Runner(wrapper),
|
|
|
|
PluginSets(pluginSets),
|
|
|
|
HandshakeConfig(hs),
|
|
|
|
Env(env...),
|
|
|
|
Logger(logger),
|
|
|
|
MetadataMode(true),
|
|
|
|
)
|
2017-04-04 00:52:29 +00:00
|
|
|
}
|
2017-05-02 21:40:11 +00:00
|
|
|
|
2018-10-19 22:56:17 +00:00
|
|
|
// CtxCancelIfCanceled takes a context cancel func and a context. If the context is
|
2018-01-18 21:49:20 +00:00
|
|
|
// shutdown the cancelfunc is called. This is useful for merging two cancel
|
|
|
|
// functions.
|
|
|
|
func CtxCancelIfCanceled(f context.CancelFunc, ctxCanceler context.Context) chan struct{} {
|
|
|
|
quitCh := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-quitCh:
|
|
|
|
case <-ctxCanceler.Done():
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return quitCh
|
|
|
|
}
|