mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package plugin
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"sync/atomic"
 | 
						|
 | 
						|
	"google.golang.org/grpc"
 | 
						|
 | 
						|
	log "github.com/hashicorp/go-hclog"
 | 
						|
	plugin "github.com/hashicorp/go-plugin"
 | 
						|
	"github.com/hashicorp/vault/sdk/logical"
 | 
						|
	"github.com/hashicorp/vault/sdk/plugin/pb"
 | 
						|
)
 | 
						|
 | 
						|
var _ plugin.Plugin = (*GRPCBackendPlugin)(nil)
 | 
						|
var _ 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
 | 
						|
 | 
						|
	// Embeding this will disable the netRPC protocol
 | 
						|
	plugin.NetRPCUnsupportedPlugin
 | 
						|
}
 | 
						|
 | 
						|
func (b GRPCBackendPlugin) GRPCServer(broker *plugin.GRPCBroker, s *grpc.Server) error {
 | 
						|
	pb.RegisterBackendServer(s, &backendGRPCPluginServer{
 | 
						|
		broker:  broker,
 | 
						|
		factory: b.Factory,
 | 
						|
		// We pass the logger down into the backend so go-plugin will forward
 | 
						|
		// logs for us.
 | 
						|
		logger: b.Logger,
 | 
						|
	})
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (b *GRPCBackendPlugin) GRPCClient(ctx context.Context, broker *plugin.GRPCBroker, c *grpc.ClientConn) (interface{}, error) {
 | 
						|
	ret := &backendGRPCPluginClient{
 | 
						|
		client:       pb.NewBackendClient(c),
 | 
						|
		clientConn:   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
 | 
						|
}
 |