2016-08-26 13:02:38 -04:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
2016-10-06 10:09:54 -04:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/docker/docker/pkg/ioutils"
|
2016-10-07 16:53:14 -04:00
|
|
|
"github.com/docker/docker/pkg/plugingetter"
|
2016-08-26 13:02:38 -04:00
|
|
|
"github.com/docker/docker/pkg/plugins"
|
2016-10-06 10:09:54 -04:00
|
|
|
"github.com/docker/docker/plugin/v2"
|
|
|
|
"github.com/docker/docker/reference"
|
2016-08-26 13:02:38 -04:00
|
|
|
)
|
|
|
|
|
2016-10-06 10:09:54 -04:00
|
|
|
/* allowV1PluginsFallback determines daemon's support for V1 plugins.
|
|
|
|
* When the time comes to remove support for V1 plugins, flipping
|
|
|
|
* this bool is all that will be needed.
|
|
|
|
*/
|
|
|
|
const allowV1PluginsFallback bool = true
|
|
|
|
|
|
|
|
/* defaultAPIVersion is the version of the plugin API for volume, network,
|
|
|
|
IPAM and authz. This is a very stable API. When we update this API, then
|
|
|
|
pluginType should include a version. eg "networkdriver/2.0".
|
|
|
|
*/
|
|
|
|
const defaultAPIVersion string = "1.0"
|
|
|
|
|
|
|
|
// ErrNotFound indicates that a plugin was not found locally.
|
|
|
|
type ErrNotFound string
|
|
|
|
|
|
|
|
func (name ErrNotFound) Error() string { return fmt.Sprintf("plugin %q not found", string(name)) }
|
|
|
|
|
2016-11-23 23:04:44 -05:00
|
|
|
// ErrAmbiguous indicates that a plugin was not found locally.
|
|
|
|
type ErrAmbiguous string
|
|
|
|
|
|
|
|
func (name ErrAmbiguous) Error() string {
|
|
|
|
return fmt.Sprintf("multiple plugins found for %q", string(name))
|
|
|
|
}
|
|
|
|
|
2016-10-06 10:09:54 -04:00
|
|
|
// GetByName retreives a plugin by name.
|
|
|
|
func (ps *Store) GetByName(name string) (*v2.Plugin, error) {
|
|
|
|
ps.RLock()
|
|
|
|
defer ps.RUnlock()
|
|
|
|
|
|
|
|
id, nameOk := ps.nameToID[name]
|
|
|
|
if !nameOk {
|
|
|
|
return nil, ErrNotFound(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
p, idOk := ps.plugins[id]
|
|
|
|
if !idOk {
|
|
|
|
return nil, ErrNotFound(id)
|
|
|
|
}
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetByID retreives a plugin by ID.
|
|
|
|
func (ps *Store) GetByID(id string) (*v2.Plugin, error) {
|
|
|
|
ps.RLock()
|
|
|
|
defer ps.RUnlock()
|
|
|
|
|
|
|
|
p, idOk := ps.plugins[id]
|
|
|
|
if !idOk {
|
|
|
|
return nil, ErrNotFound(id)
|
|
|
|
}
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAll retreives all plugins.
|
|
|
|
func (ps *Store) GetAll() map[string]*v2.Plugin {
|
|
|
|
ps.RLock()
|
|
|
|
defer ps.RUnlock()
|
|
|
|
return ps.plugins
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAll initialized plugins during daemon restore.
|
|
|
|
func (ps *Store) SetAll(plugins map[string]*v2.Plugin) {
|
|
|
|
ps.Lock()
|
|
|
|
defer ps.Unlock()
|
|
|
|
ps.plugins = plugins
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ps *Store) getAllByCap(capability string) []plugingetter.CompatPlugin {
|
|
|
|
ps.RLock()
|
|
|
|
defer ps.RUnlock()
|
|
|
|
|
|
|
|
result := make([]plugingetter.CompatPlugin, 0, 1)
|
|
|
|
for _, p := range ps.plugins {
|
2016-10-31 20:59:45 -04:00
|
|
|
if p.IsEnabled() {
|
|
|
|
if _, err := p.FilterByCap(capability); err == nil {
|
|
|
|
result = append(result, p)
|
|
|
|
}
|
2016-10-06 10:09:54 -04:00
|
|
|
}
|
2016-08-26 13:02:38 -04:00
|
|
|
}
|
2016-10-06 10:09:54 -04:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetState sets the active state of the plugin and updates plugindb.
|
|
|
|
func (ps *Store) SetState(p *v2.Plugin, state bool) {
|
|
|
|
ps.Lock()
|
|
|
|
defer ps.Unlock()
|
|
|
|
|
|
|
|
p.PluginObj.Enabled = state
|
|
|
|
ps.updatePluginDB()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add adds a plugin to memory and plugindb.
|
2016-11-22 12:42:58 -05:00
|
|
|
// An error will be returned if there is a collision.
|
|
|
|
func (ps *Store) Add(p *v2.Plugin) error {
|
2016-10-06 10:09:54 -04:00
|
|
|
ps.Lock()
|
2016-11-22 12:42:58 -05:00
|
|
|
defer ps.Unlock()
|
|
|
|
|
|
|
|
if v, exist := ps.plugins[p.GetID()]; exist {
|
|
|
|
return fmt.Errorf("plugin %q has the same ID %s as %q", p.Name(), p.GetID(), v.Name())
|
|
|
|
}
|
|
|
|
if _, exist := ps.nameToID[p.Name()]; exist {
|
|
|
|
return fmt.Errorf("plugin %q already exists", p.Name())
|
|
|
|
}
|
|
|
|
ps.plugins[p.GetID()] = p
|
|
|
|
ps.nameToID[p.Name()] = p.GetID()
|
|
|
|
ps.updatePluginDB()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates a plugin to memory and plugindb.
|
|
|
|
func (ps *Store) Update(p *v2.Plugin) {
|
|
|
|
ps.Lock()
|
|
|
|
defer ps.Unlock()
|
|
|
|
|
2016-10-06 10:09:54 -04:00
|
|
|
ps.plugins[p.GetID()] = p
|
|
|
|
ps.nameToID[p.Name()] = p.GetID()
|
|
|
|
ps.updatePluginDB()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove removes a plugin from memory and plugindb.
|
|
|
|
func (ps *Store) Remove(p *v2.Plugin) {
|
|
|
|
ps.Lock()
|
|
|
|
delete(ps.plugins, p.GetID())
|
|
|
|
delete(ps.nameToID, p.Name())
|
|
|
|
ps.updatePluginDB()
|
|
|
|
ps.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callers are expected to hold the store lock.
|
|
|
|
func (ps *Store) updatePluginDB() error {
|
|
|
|
jsonData, err := json.Marshal(ps.plugins)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Debugf("Error in json.Marshal: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ioutils.AtomicWriteFile(ps.plugindb, jsonData, 0600)
|
|
|
|
return nil
|
2016-08-26 13:02:38 -04:00
|
|
|
}
|
2016-09-06 17:30:55 -04:00
|
|
|
|
2016-09-08 21:52:29 -04:00
|
|
|
// Get returns an enabled plugin matching the given name and capability.
|
2016-10-06 10:09:54 -04:00
|
|
|
func (ps *Store) Get(name, capability string, mode int) (plugingetter.CompatPlugin, error) {
|
|
|
|
var (
|
|
|
|
p *v2.Plugin
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
// Lookup using new model.
|
|
|
|
if ps != nil {
|
|
|
|
fullName := name
|
|
|
|
if named, err := reference.ParseNamed(fullName); err == nil { // FIXME: validate
|
|
|
|
if reference.IsNameOnly(named) {
|
|
|
|
named = reference.WithDefaultTag(named)
|
|
|
|
}
|
|
|
|
ref, ok := named.(reference.NamedTagged)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("invalid name: %s", named.String())
|
|
|
|
}
|
|
|
|
fullName = ref.String()
|
|
|
|
}
|
|
|
|
p, err = ps.GetByName(fullName)
|
|
|
|
if err == nil {
|
2016-12-01 14:36:56 -05:00
|
|
|
p.SetRefCount(mode + p.GetRefCount())
|
2016-09-08 21:52:29 -04:00
|
|
|
if p.IsEnabled() {
|
|
|
|
return p.FilterByCap(capability)
|
|
|
|
}
|
|
|
|
// Plugin was found but it is disabled, so we should not fall back to legacy plugins
|
|
|
|
// but we should error out right away
|
|
|
|
return nil, ErrNotFound(fullName)
|
2016-10-06 10:09:54 -04:00
|
|
|
}
|
|
|
|
if _, ok := err.(ErrNotFound); !ok {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup using legacy model.
|
|
|
|
if allowV1PluginsFallback {
|
|
|
|
p, err := plugins.Get(name, capability)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("legacy plugin: %v", err)
|
|
|
|
}
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-09-08 21:52:29 -04:00
|
|
|
// GetAllByCap returns a list of enabled plugins matching the given capability.
|
2016-10-06 10:09:54 -04:00
|
|
|
func (ps *Store) GetAllByCap(capability string) ([]plugingetter.CompatPlugin, error) {
|
|
|
|
result := make([]plugingetter.CompatPlugin, 0, 1)
|
|
|
|
|
|
|
|
/* Daemon start always calls plugin.Init thereby initializing a store.
|
|
|
|
* So store on experimental builds can never be nil, even while
|
|
|
|
* handling legacy plugins. However, there are legacy plugin unit
|
|
|
|
* tests where the volume subsystem directly talks with the plugin,
|
|
|
|
* bypassing the daemon. For such tests, this check is necessary.
|
|
|
|
*/
|
|
|
|
if ps != nil {
|
|
|
|
ps.RLock()
|
|
|
|
result = ps.getAllByCap(capability)
|
|
|
|
ps.RUnlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup with legacy model
|
|
|
|
if allowV1PluginsFallback {
|
|
|
|
pl, err := plugins.GetAll(capability)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("legacy plugin: %v", err)
|
|
|
|
}
|
|
|
|
for _, p := range pl {
|
|
|
|
result = append(result, p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result, nil
|
2016-09-06 17:30:55 -04:00
|
|
|
}
|
2016-09-26 14:06:26 -04:00
|
|
|
|
|
|
|
// Handle sets a callback for a given capability. It is only used by network
|
|
|
|
// and ipam drivers during plugin registration. The callback registers the
|
|
|
|
// driver with the subsystem (network, ipam).
|
|
|
|
func (ps *Store) Handle(capability string, callback func(string, *plugins.Client)) {
|
2016-10-06 10:09:54 -04:00
|
|
|
pluginType := fmt.Sprintf("docker.%s/%s", strings.ToLower(capability), defaultAPIVersion)
|
|
|
|
|
|
|
|
// Register callback with new plugin model.
|
|
|
|
ps.Lock()
|
|
|
|
handlers, ok := ps.handlers[pluginType]
|
|
|
|
if !ok {
|
|
|
|
handlers = []func(string, *plugins.Client){}
|
|
|
|
}
|
|
|
|
handlers = append(handlers, callback)
|
|
|
|
ps.handlers[pluginType] = handlers
|
|
|
|
ps.Unlock()
|
|
|
|
|
|
|
|
// Register callback with legacy plugin model.
|
|
|
|
if allowV1PluginsFallback {
|
|
|
|
plugins.Handle(capability, callback)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CallHandler calls the registered callback. It is invoked during plugin enable.
|
|
|
|
func (ps *Store) CallHandler(p *v2.Plugin) {
|
|
|
|
for _, typ := range p.GetTypes() {
|
|
|
|
for _, handler := range ps.handlers[typ.String()] {
|
|
|
|
handler(p.Name(), p.Client())
|
|
|
|
}
|
|
|
|
}
|
2016-09-26 14:06:26 -04:00
|
|
|
}
|
2016-11-23 23:04:44 -05:00
|
|
|
|
|
|
|
// Search retreives a plugin by ID Prefix
|
|
|
|
// If no plugin is found, then ErrNotFound is returned
|
|
|
|
// If multiple plugins are found, then ErrAmbiguous is returned
|
|
|
|
func (ps *Store) Search(partialID string) (*v2.Plugin, error) {
|
|
|
|
ps.RLock()
|
|
|
|
defer ps.RUnlock()
|
|
|
|
|
|
|
|
var found *v2.Plugin
|
|
|
|
for id, p := range ps.plugins {
|
|
|
|
if strings.HasPrefix(id, partialID) {
|
|
|
|
if found != nil {
|
|
|
|
return nil, ErrAmbiguous(partialID)
|
|
|
|
}
|
|
|
|
found = p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if found == nil {
|
|
|
|
return nil, ErrNotFound(partialID)
|
|
|
|
}
|
|
|
|
return found, nil
|
|
|
|
}
|