cc625e19ee
* Add some requirements for versioned k/v * Add a warning message when an upgrade is triggered * Add path help values * Make the kv header a const * Add the uid to mount entry instead of options map * Pass the backend aware uuid to the mounts and plugins * Fix comment * Add options to secret/auth enable and tune CLI commands (#4170) * Switch mount/tune options to use TypeKVPairs (#4171) * switching options to TypeKVPairs, adding bool parse for versioned flag * flipping bool check * Fix leases coming back from non-leased pluin kv store * add a test for updating mount options * Fix tests
166 lines
3.9 KiB
Go
166 lines
3.9 KiB
Go
package plugin
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/rpc"
|
|
"os"
|
|
|
|
"github.com/hashicorp/go-plugin"
|
|
"github.com/hashicorp/vault/helper/pluginutil"
|
|
"github.com/hashicorp/vault/logical"
|
|
)
|
|
|
|
var (
|
|
ErrServerInMetadataMode = errors.New("plugin server can not perform action while in metadata mode")
|
|
)
|
|
|
|
// backendPluginServer is the RPC server that backendPluginClient talks to,
|
|
// it methods conforming to requirements by net/rpc
|
|
type backendPluginServer struct {
|
|
broker *plugin.MuxBroker
|
|
backend logical.Backend
|
|
factory logical.Factory
|
|
|
|
loggerClient *rpc.Client
|
|
sysViewClient *rpc.Client
|
|
storageClient *rpc.Client
|
|
}
|
|
|
|
func inMetadataMode() bool {
|
|
return os.Getenv(pluginutil.PluginMetadataModeEnv) == "true"
|
|
}
|
|
|
|
func (b *backendPluginServer) HandleRequest(args *HandleRequestArgs, reply *HandleRequestReply) error {
|
|
if inMetadataMode() {
|
|
return ErrServerInMetadataMode
|
|
}
|
|
|
|
storage := &StorageClient{client: b.storageClient}
|
|
args.Request.Storage = storage
|
|
|
|
resp, err := b.backend.HandleRequest(context.Background(), args.Request)
|
|
*reply = HandleRequestReply{
|
|
Response: resp,
|
|
Error: wrapError(err),
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *backendPluginServer) SpecialPaths(_ interface{}, reply *SpecialPathsReply) error {
|
|
*reply = SpecialPathsReply{
|
|
Paths: b.backend.SpecialPaths(),
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *backendPluginServer) HandleExistenceCheck(args *HandleExistenceCheckArgs, reply *HandleExistenceCheckReply) error {
|
|
if inMetadataMode() {
|
|
return ErrServerInMetadataMode
|
|
}
|
|
|
|
storage := &StorageClient{client: b.storageClient}
|
|
args.Request.Storage = storage
|
|
|
|
checkFound, exists, err := b.backend.HandleExistenceCheck(context.TODO(), args.Request)
|
|
*reply = HandleExistenceCheckReply{
|
|
CheckFound: checkFound,
|
|
Exists: exists,
|
|
Error: wrapError(err),
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *backendPluginServer) Cleanup(_ interface{}, _ *struct{}) error {
|
|
b.backend.Cleanup(context.Background())
|
|
|
|
// Close rpc clients
|
|
b.loggerClient.Close()
|
|
b.sysViewClient.Close()
|
|
b.storageClient.Close()
|
|
return nil
|
|
}
|
|
|
|
func (b *backendPluginServer) InvalidateKey(args string, _ *struct{}) error {
|
|
if inMetadataMode() {
|
|
return ErrServerInMetadataMode
|
|
}
|
|
|
|
b.backend.InvalidateKey(context.Background(), args)
|
|
return nil
|
|
}
|
|
|
|
// Setup dials into the plugin's broker to get a shimmed storage, logger, and
|
|
// system view of the backend. This method also instantiates the underlying
|
|
// backend through its factory func for the server side of the plugin.
|
|
func (b *backendPluginServer) Setup(args *SetupArgs, reply *SetupReply) error {
|
|
// Dial for storage
|
|
storageConn, err := b.broker.Dial(args.StorageID)
|
|
if err != nil {
|
|
*reply = SetupReply{
|
|
Error: wrapError(err),
|
|
}
|
|
return nil
|
|
}
|
|
rawStorageClient := rpc.NewClient(storageConn)
|
|
b.storageClient = rawStorageClient
|
|
|
|
storage := &StorageClient{client: rawStorageClient}
|
|
|
|
// Dial for logger
|
|
loggerConn, err := b.broker.Dial(args.LoggerID)
|
|
if err != nil {
|
|
*reply = SetupReply{
|
|
Error: wrapError(err),
|
|
}
|
|
return nil
|
|
}
|
|
rawLoggerClient := rpc.NewClient(loggerConn)
|
|
b.loggerClient = rawLoggerClient
|
|
|
|
logger := &LoggerClient{client: rawLoggerClient}
|
|
|
|
// Dial for sys view
|
|
sysViewConn, err := b.broker.Dial(args.SysViewID)
|
|
if err != nil {
|
|
*reply = SetupReply{
|
|
Error: wrapError(err),
|
|
}
|
|
return nil
|
|
}
|
|
rawSysViewClient := rpc.NewClient(sysViewConn)
|
|
b.sysViewClient = rawSysViewClient
|
|
|
|
sysView := &SystemViewClient{client: rawSysViewClient}
|
|
|
|
config := &logical.BackendConfig{
|
|
StorageView: storage,
|
|
Logger: logger,
|
|
System: sysView,
|
|
Config: args.Config,
|
|
BackendUUID: args.BackendUUID,
|
|
}
|
|
|
|
// Call the underlying backend factory after shims have been created
|
|
// to set b.backend
|
|
backend, err := b.factory(context.Background(), config)
|
|
if err != nil {
|
|
*reply = SetupReply{
|
|
Error: wrapError(err),
|
|
}
|
|
}
|
|
b.backend = backend
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *backendPluginServer) Type(_ interface{}, reply *TypeReply) error {
|
|
*reply = TypeReply{
|
|
Type: b.backend.Type(),
|
|
}
|
|
|
|
return nil
|
|
}
|