mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package plugin
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"sync/atomic"
 | 
						|
 | 
						|
	"google.golang.org/grpc"
 | 
						|
 | 
						|
	log "github.com/hashicorp/go-hclog"
 | 
						|
	"github.com/hashicorp/go-plugin"
 | 
						|
	"github.com/hashicorp/vault/sdk/helper/pluginutil"
 | 
						|
	"github.com/hashicorp/vault/sdk/logical"
 | 
						|
	"github.com/hashicorp/vault/sdk/plugin/pb"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	_ plugin.Plugin     = (*GRPCBackendPlugin)(nil)
 | 
						|
	_ plugin.GRPCPlugin = (*GRPCBackendPlugin)(nil)
 | 
						|
)
 | 
						|
 | 
						|
// GRPCBackendPlugin is the plugin.Plugin implementation that only supports GRPC
 | 
						|
// transport
 | 
						|
type GRPCBackendPlugin struct {
 | 
						|
	Factory      logical.Factory
 | 
						|
	MetadataMode bool
 | 
						|
	Logger       log.Logger
 | 
						|
 | 
						|
	MultiplexingSupport bool
 | 
						|
 | 
						|
	// Embeding this will disable the netRPC protocol
 | 
						|
	plugin.NetRPCUnsupportedPlugin
 | 
						|
}
 | 
						|
 | 
						|
func (b GRPCBackendPlugin) GRPCServer(broker *plugin.GRPCBroker, s *grpc.Server) error {
 | 
						|
	server := backendGRPCPluginServer{
 | 
						|
		broker:    broker,
 | 
						|
		factory:   b.Factory,
 | 
						|
		instances: make(map[string]backendInstance),
 | 
						|
		// We pass the logger down into the backend so go-plugin will
 | 
						|
		// forward logs for us.
 | 
						|
		logger: b.Logger,
 | 
						|
	}
 | 
						|
 | 
						|
	if b.MultiplexingSupport {
 | 
						|
		// Multiplexing is enabled for this plugin, register the server so we
 | 
						|
		// can tell the client in Vault.
 | 
						|
		pluginutil.RegisterPluginMultiplexingServer(s, pluginutil.PluginMultiplexingServerImpl{
 | 
						|
			Supported: true,
 | 
						|
		})
 | 
						|
		server.multiplexingSupport = true
 | 
						|
	}
 | 
						|
 | 
						|
	pb.RegisterBackendServer(s, &server)
 | 
						|
	logical.RegisterPluginVersionServer(s, &server)
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (b *GRPCBackendPlugin) GRPCClient(ctx context.Context, broker *plugin.GRPCBroker, c *grpc.ClientConn) (interface{}, error) {
 | 
						|
	ret := &backendGRPCPluginClient{
 | 
						|
		client:        pb.NewBackendClient(c),
 | 
						|
		versionClient: logical.NewPluginVersionClient(c),
 | 
						|
		broker:        broker,
 | 
						|
		cleanupCh:     make(chan struct{}),
 | 
						|
		doneCtx:       ctx,
 | 
						|
		metadataMode:  b.MetadataMode,
 | 
						|
	}
 | 
						|
 | 
						|
	// Create the value and set the type
 | 
						|
	ret.server = new(atomic.Value)
 | 
						|
	ret.server.Store((*grpc.Server)(nil))
 | 
						|
 | 
						|
	return ret, nil
 | 
						|
}
 |