mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| package dbplugin
 | |
| 
 | |
| import (
 | |
| 	"crypto/tls"
 | |
| 	fmt "fmt"
 | |
| 
 | |
| 	plugin "github.com/hashicorp/go-plugin"
 | |
| 	"github.com/hashicorp/vault/sdk/helper/pluginutil"
 | |
| )
 | |
| 
 | |
| // Serve is called from within a plugin and wraps the provided
 | |
| // Database implementation in a databasePluginRPCServer object and starts a
 | |
| // RPC server.
 | |
| func Serve(db Database, tlsProvider func() (*tls.Config, error)) {
 | |
| 	plugin.Serve(ServeConfig(db, tlsProvider))
 | |
| }
 | |
| 
 | |
| func ServeConfig(db Database, tlsProvider func() (*tls.Config, error)) *plugin.ServeConfig {
 | |
| 	err := pluginutil.OptionallyEnableMlock()
 | |
| 	if err != nil {
 | |
| 		fmt.Println(err)
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	// pluginSets is the map of plugins we can dispense.
 | |
| 	pluginSets := map[int]plugin.PluginSet{
 | |
| 		// Version 3 used to supports both protocols. We want to keep it around
 | |
| 		// since it's possible old plugins built against this version will still
 | |
| 		// work with gRPC. There is currently no difference between version 3
 | |
| 		// and version 4.
 | |
| 		3: {
 | |
| 			"database": &GRPCDatabasePlugin{
 | |
| 				Impl: db,
 | |
| 			},
 | |
| 		},
 | |
| 		4: {
 | |
| 			"database": &GRPCDatabasePlugin{
 | |
| 				Impl: db,
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	conf := &plugin.ServeConfig{
 | |
| 		HandshakeConfig:  handshakeConfig,
 | |
| 		VersionedPlugins: pluginSets,
 | |
| 		TLSProvider:      tlsProvider,
 | |
| 		GRPCServer:       plugin.DefaultGRPCServer,
 | |
| 	}
 | |
| 
 | |
| 	return conf
 | |
| }
 | 
