2015-09-22 15:50:48 -04:00
|
|
|
//go:generate pluginrpc-gen -i $GOFILE -o proxy.go -type volumeDriver -name VolumeDriver
|
2015-06-12 09:25:32 -04:00
|
|
|
|
2018-03-19 17:16:26 -04:00
|
|
|
package drivers // import "github.com/docker/docker/volume/drivers"
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
import (
|
2015-05-22 13:37:00 -04:00
|
|
|
"fmt"
|
2017-01-22 01:59:29 -05:00
|
|
|
"sort"
|
2015-05-19 16:05:25 -04:00
|
|
|
"sync"
|
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-01-20 12:12:51 -05:00
|
|
|
"github.com/docker/docker/pkg/locker"
|
2016-10-07 16:53:14 -04:00
|
|
|
getter "github.com/docker/docker/pkg/plugingetter"
|
2018-04-24 21:45:00 -04:00
|
|
|
"github.com/docker/docker/pkg/plugins"
|
2015-05-19 16:05:25 -04:00
|
|
|
"github.com/docker/docker/volume"
|
2017-07-19 10:20:13 -04:00
|
|
|
"github.com/pkg/errors"
|
2017-10-20 15:39:47 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2015-05-19 16:05:25 -04:00
|
|
|
)
|
|
|
|
|
2015-09-23 16:29:14 -04:00
|
|
|
const extName = "VolumeDriver"
|
|
|
|
|
2015-09-11 18:19:38 -04:00
|
|
|
// volumeDriver defines the available functions that volume plugins must implement.
|
|
|
|
// This interface is only defined to generate the proxy objects.
|
|
|
|
// It's not intended to be public or reused.
|
2017-08-21 17:51:45 -04:00
|
|
|
// nolint: deadcode
|
2015-09-11 18:19:38 -04:00
|
|
|
type volumeDriver interface {
|
2015-06-12 09:25:32 -04:00
|
|
|
// Create a volume with the given name
|
2016-04-09 17:42:24 -04:00
|
|
|
Create(name string, opts map[string]string) (err error)
|
2015-06-12 09:25:32 -04:00
|
|
|
// Remove the volume with the given name
|
|
|
|
Remove(name string) (err error)
|
|
|
|
// Get the mountpoint of the given volume
|
|
|
|
Path(name string) (mountpoint string, err error)
|
|
|
|
// Mount the given volume and return the mountpoint
|
2016-03-07 21:41:44 -05:00
|
|
|
Mount(name, id string) (mountpoint string, err error)
|
2015-06-12 09:25:32 -04:00
|
|
|
// Unmount the given volume
|
2016-03-07 21:41:44 -05:00
|
|
|
Unmount(name, id string) (err error)
|
2015-09-23 16:29:14 -04:00
|
|
|
// List lists all the volumes known to the driver
|
2016-04-09 17:42:24 -04:00
|
|
|
List() (volumes []*proxyVolume, err error)
|
2016-02-11 18:21:52 -05:00
|
|
|
// Get retrieves the volume with the requested name
|
2015-09-23 16:29:14 -04:00
|
|
|
Get(name string) (volume *proxyVolume, err error)
|
2016-04-11 11:17:52 -04:00
|
|
|
// Capabilities gets the list of capabilities of the driver
|
|
|
|
Capabilities() (capabilities volume.Capability, err error)
|
2015-06-12 09:25:32 -04:00
|
|
|
}
|
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
// Store is an in-memory store for volume drivers
|
|
|
|
type Store struct {
|
|
|
|
extensions map[string]volume.Driver
|
|
|
|
mu sync.Mutex
|
2016-09-07 20:01:10 -04:00
|
|
|
driverLock *locker.Locker
|
2018-03-19 17:18:52 -04:00
|
|
|
pluginGetter getter.PluginGetter
|
2016-09-07 20:01:10 -04:00
|
|
|
}
|
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
// NewStore creates a new volume driver store
|
|
|
|
func NewStore(pg getter.PluginGetter) *Store {
|
|
|
|
return &Store{
|
|
|
|
extensions: make(map[string]volume.Driver),
|
|
|
|
driverLock: locker.New(),
|
|
|
|
pluginGetter: pg,
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-19 10:20:13 -04:00
|
|
|
type driverNotFoundError string
|
|
|
|
|
|
|
|
func (e driverNotFoundError) Error() string {
|
|
|
|
return "volume driver not found: " + string(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (driverNotFoundError) NotFound() {}
|
|
|
|
|
2016-05-16 11:50:55 -04:00
|
|
|
// lookup returns the driver associated with the given name. If a
|
2015-07-21 13:50:10 -04:00
|
|
|
// driver with the given name has not been registered it checks if
|
|
|
|
// there is a VolumeDriver plugin available with the given name.
|
2018-03-19 17:18:52 -04:00
|
|
|
func (s *Store) lookup(name string, mode int) (volume.Driver, error) {
|
|
|
|
if name == "" {
|
|
|
|
return nil, errdefs.InvalidParameter(errors.New("driver name cannot be empty"))
|
|
|
|
}
|
|
|
|
s.driverLock.Lock(name)
|
|
|
|
defer s.driverLock.Unlock(name)
|
2016-01-20 12:12:51 -05:00
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
s.mu.Lock()
|
|
|
|
ext, ok := s.extensions[name]
|
|
|
|
s.mu.Unlock()
|
2015-05-19 16:05:25 -04:00
|
|
|
if ok {
|
2015-05-20 17:53:53 -04:00
|
|
|
return ext, nil
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|
2018-03-19 17:18:52 -04:00
|
|
|
if s.pluginGetter != nil {
|
|
|
|
p, err := s.pluginGetter.Get(name, extName, mode)
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
2017-07-19 10:20:13 -04:00
|
|
|
return nil, errors.Wrap(err, "error looking up volume plugin "+name)
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
2016-01-20 12:12:51 -05:00
|
|
|
|
2018-04-24 21:45:00 -04:00
|
|
|
d, err := makePluginAdapter(p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error making plugin client")
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
if err := validateDriver(d); err != nil {
|
2017-10-20 15:39:47 -04:00
|
|
|
if mode > 0 {
|
|
|
|
// Undo any reference count changes from the initial `Get`
|
2018-03-19 17:18:52 -04:00
|
|
|
if _, err := s.pluginGetter.Get(name, extName, mode*-1); err != nil {
|
2017-10-20 15:39:47 -04:00
|
|
|
logrus.WithError(err).WithField("action", "validate-driver").WithField("plugin", name).Error("error releasing reference to plugin")
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 18:05:53 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-04-11 11:17:52 -04:00
|
|
|
|
2016-12-12 18:05:53 -05:00
|
|
|
if p.IsV1() {
|
2018-03-19 17:18:52 -04:00
|
|
|
s.mu.Lock()
|
|
|
|
s.extensions[name] = d
|
|
|
|
s.mu.Unlock()
|
2016-12-12 18:05:53 -05:00
|
|
|
}
|
|
|
|
return d, nil
|
2016-07-18 18:39:27 -04:00
|
|
|
}
|
2017-07-19 10:20:13 -04:00
|
|
|
return nil, driverNotFoundError(name)
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|
2015-09-18 19:58:05 -04:00
|
|
|
|
2016-04-11 11:17:52 -04:00
|
|
|
func validateDriver(vd volume.Driver) error {
|
|
|
|
scope := vd.Scope()
|
|
|
|
if scope != volume.LocalScope && scope != volume.GlobalScope {
|
|
|
|
return fmt.Errorf("Driver %q provided an invalid capability scope: %s", vd.Name(), scope)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
// Register associates the given driver to the given name, checking if
|
|
|
|
// the name is already associated
|
|
|
|
func (s *Store) Register(d volume.Driver, name string) bool {
|
2015-09-18 19:58:05 -04:00
|
|
|
if name == "" {
|
2018-03-19 17:18:52 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
|
|
|
|
if _, exists := s.extensions[name]; exists {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := validateDriver(d); err != nil {
|
|
|
|
return false
|
2015-09-18 19:58:05 -04:00
|
|
|
}
|
2018-03-19 17:18:52 -04:00
|
|
|
|
|
|
|
s.extensions[name] = d
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDriver returns a volume driver by its name.
|
|
|
|
// If the driver is empty, it looks for the local driver.
|
|
|
|
func (s *Store) GetDriver(name string) (volume.Driver, error) {
|
|
|
|
return s.lookup(name, getter.Lookup)
|
2016-09-07 09:59:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateDriver returns a volume driver by its name and increments RefCount.
|
|
|
|
// If the driver is empty, it looks for the local driver.
|
2018-03-19 17:18:52 -04:00
|
|
|
func (s *Store) CreateDriver(name string) (volume.Driver, error) {
|
|
|
|
return s.lookup(name, getter.Acquire)
|
2016-09-07 09:59:15 -04:00
|
|
|
}
|
|
|
|
|
2017-10-20 15:39:47 -04:00
|
|
|
// ReleaseDriver returns a volume driver by its name and decrements RefCount..
|
2016-09-07 09:59:15 -04:00
|
|
|
// If the driver is empty, it looks for the local driver.
|
2018-03-19 17:18:52 -04:00
|
|
|
func (s *Store) ReleaseDriver(name string) (volume.Driver, error) {
|
|
|
|
return s.lookup(name, getter.Release)
|
2015-09-18 19:58:05 -04:00
|
|
|
}
|
2015-10-23 02:08:26 -04:00
|
|
|
|
|
|
|
// GetDriverList returns list of volume drivers registered.
|
|
|
|
// If no driver is registered, empty string list will be returned.
|
2018-03-19 17:18:52 -04:00
|
|
|
func (s *Store) GetDriverList() []string {
|
2015-10-23 02:08:26 -04:00
|
|
|
var driverList []string
|
2018-03-19 17:18:52 -04:00
|
|
|
s.mu.Lock()
|
2018-03-22 17:11:03 -04:00
|
|
|
defer s.mu.Unlock()
|
2018-03-19 17:18:52 -04:00
|
|
|
for driverName := range s.extensions {
|
2015-10-23 02:08:26 -04:00
|
|
|
driverList = append(driverList, driverName)
|
|
|
|
}
|
2017-01-22 01:59:29 -05:00
|
|
|
sort.Strings(driverList)
|
2015-10-23 02:08:26 -04:00
|
|
|
return driverList
|
|
|
|
}
|
2015-09-23 16:29:14 -04:00
|
|
|
|
|
|
|
// GetAllDrivers lists all the registered drivers
|
2018-03-19 17:18:52 -04:00
|
|
|
func (s *Store) GetAllDrivers() ([]volume.Driver, error) {
|
2016-12-12 18:05:53 -05:00
|
|
|
var plugins []getter.CompatPlugin
|
2018-03-19 17:18:52 -04:00
|
|
|
if s.pluginGetter != nil {
|
2016-12-12 18:05:53 -05:00
|
|
|
var err error
|
2018-03-19 17:18:52 -04:00
|
|
|
plugins, err = s.pluginGetter.GetAllByCap(extName)
|
2016-12-12 18:05:53 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error listing plugins: %v", err)
|
|
|
|
}
|
2015-09-23 16:29:14 -04:00
|
|
|
}
|
|
|
|
var ds []volume.Driver
|
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2015-09-23 16:29:14 -04:00
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
for _, d := range s.extensions {
|
2015-09-23 16:29:14 -04:00
|
|
|
ds = append(ds, d)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range plugins {
|
2016-05-16 11:50:55 -04:00
|
|
|
name := p.Name()
|
2016-11-29 03:17:35 -05:00
|
|
|
|
2018-03-19 17:18:52 -04:00
|
|
|
if _, ok := s.extensions[name]; ok {
|
2015-09-23 16:29:14 -04:00
|
|
|
continue
|
|
|
|
}
|
2016-01-20 12:12:51 -05:00
|
|
|
|
2018-04-24 21:45:00 -04:00
|
|
|
ext, err := makePluginAdapter(p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error making plugin client")
|
|
|
|
}
|
2016-09-07 20:01:10 -04:00
|
|
|
if p.IsV1() {
|
2018-03-19 17:18:52 -04:00
|
|
|
s.extensions[name] = ext
|
2016-07-18 18:39:27 -04:00
|
|
|
}
|
2015-09-23 16:29:14 -04:00
|
|
|
ds = append(ds, ext)
|
|
|
|
}
|
|
|
|
return ds, nil
|
|
|
|
}
|
2018-04-24 21:45:00 -04:00
|
|
|
|
|
|
|
func makePluginAdapter(p getter.CompatPlugin) (*volumeDriverAdapter, error) {
|
2018-05-30 15:00:42 -04:00
|
|
|
if pc, ok := p.(getter.PluginWithV1Client); ok {
|
|
|
|
return &volumeDriverAdapter{name: p.Name(), scopePath: p.ScopedPath, proxy: &volumeDriverProxy{pc.Client()}}, nil
|
|
|
|
}
|
|
|
|
|
2018-04-24 21:45:00 -04:00
|
|
|
pa, ok := p.(getter.PluginAddr)
|
|
|
|
if !ok {
|
2018-05-30 15:00:42 -04:00
|
|
|
return nil, errdefs.System(errors.Errorf("got unknown plugin instance %T", p))
|
2018-04-24 21:45:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if pa.Protocol() != plugins.ProtocolSchemeHTTPV1 {
|
|
|
|
return nil, errors.Errorf("plugin protocol not supported: %s", p)
|
|
|
|
}
|
|
|
|
|
|
|
|
addr := pa.Addr()
|
|
|
|
client, err := plugins.NewClientWithTimeout(addr.Network()+"://"+addr.String(), nil, pa.Timeout())
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error creating plugin client")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &volumeDriverAdapter{name: p.Name(), scopePath: p.ScopedPath, proxy: &volumeDriverProxy{client}}, nil
|
|
|
|
}
|