2015-06-05 16:09:53 -04:00
|
|
|
package graphdriver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2016-11-18 16:54:11 -05:00
|
|
|
"path/filepath"
|
2015-06-05 16:09:53 -04:00
|
|
|
|
2016-10-07 16:53:14 -04:00
|
|
|
"github.com/docker/docker/pkg/plugingetter"
|
2016-12-10 11:40:01 -05:00
|
|
|
"github.com/docker/docker/plugin/v2"
|
2015-06-05 16:09:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type pluginClient interface {
|
|
|
|
// Call calls the specified method with the specified arguments for the plugin.
|
|
|
|
Call(string, interface{}, interface{}) error
|
|
|
|
// Stream calls the specified method with the specified arguments for the plugin and returns the response IO stream
|
|
|
|
Stream(string, interface{}) (io.ReadCloser, error)
|
|
|
|
// SendFile calls the specified method, and passes through the IO stream
|
|
|
|
SendFile(string, io.Reader, interface{}) error
|
|
|
|
}
|
|
|
|
|
2016-11-19 11:41:07 -05:00
|
|
|
func lookupPlugin(name string, pg plugingetter.PluginGetter, config Options) (Driver, error) {
|
|
|
|
if !config.ExperimentalEnabled {
|
|
|
|
return nil, fmt.Errorf("graphdriver plugins are only supported with experimental mode")
|
|
|
|
}
|
2016-12-19 21:18:43 -05:00
|
|
|
pl, err := pg.Get(name, "GraphDriver", plugingetter.Acquire)
|
2015-06-05 16:09:53 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error looking up graphdriver plugin %s: %v", name, err)
|
|
|
|
}
|
2016-11-19 11:41:07 -05:00
|
|
|
return newPluginDriver(name, pl, config)
|
2015-06-05 16:09:53 -04:00
|
|
|
}
|
|
|
|
|
2016-11-19 11:41:07 -05:00
|
|
|
func newPluginDriver(name string, pl plugingetter.CompatPlugin, config Options) (Driver, error) {
|
|
|
|
home := config.Root
|
2016-12-10 11:40:01 -05:00
|
|
|
if !pl.IsV1() {
|
|
|
|
if p, ok := pl.(*v2.Plugin); ok {
|
|
|
|
if p.PropagatedMount != "" {
|
|
|
|
home = p.PluginObj.Config.PropagatedMount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
proxy := &graphDriverProxy{name, pl}
|
2016-11-19 11:41:07 -05:00
|
|
|
return proxy, proxy.Init(filepath.Join(home, name), config.DriverOptions, config.UIDMaps, config.GIDMaps)
|
2015-06-05 16:09:53 -04:00
|
|
|
}
|