|
@@ -9,12 +9,9 @@ import (
|
|
|
"time"
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
- "github.com/docker/docker/api/types/container"
|
|
|
- "github.com/docker/docker/libcontainerd"
|
|
|
"github.com/docker/docker/oci"
|
|
|
"github.com/docker/docker/pkg/plugins"
|
|
|
"github.com/docker/docker/plugin/v2"
|
|
|
- "github.com/docker/docker/restartmanager"
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
|
)
|
|
|
|
|
@@ -26,20 +23,18 @@ func (pm *Manager) enable(p *v2.Plugin, force bool) error {
|
|
|
if err != nil {
|
|
|
return err
|
|
|
}
|
|
|
-
|
|
|
- p.RestartManager = restartmanager.New(container.RestartPolicy{Name: "always"}, 0)
|
|
|
- if err := pm.containerdClient.Create(p.GetID(), "", "", specs.Spec(*spec), libcontainerd.WithRestartManager(p.RestartManager)); err != nil {
|
|
|
- if err := p.RestartManager.Cancel(); err != nil {
|
|
|
- logrus.Errorf("enable: restartManager.Cancel failed due to %v", err)
|
|
|
- }
|
|
|
+ p.Lock()
|
|
|
+ p.Restart = true
|
|
|
+ p.Unlock()
|
|
|
+ if err := pm.containerdClient.Create(p.GetID(), "", "", specs.Spec(*spec)); err != nil {
|
|
|
return err
|
|
|
}
|
|
|
|
|
|
p.PClient, err = plugins.NewClient("unix://"+filepath.Join(p.RuntimeSourcePath, p.GetSocket()), nil)
|
|
|
if err != nil {
|
|
|
- if err := p.RestartManager.Cancel(); err != nil {
|
|
|
- logrus.Errorf("enable: restartManager.Cancel failed due to %v", err)
|
|
|
- }
|
|
|
+ p.Lock()
|
|
|
+ p.Restart = false
|
|
|
+ p.Unlock()
|
|
|
return err
|
|
|
}
|
|
|
|
|
@@ -50,49 +45,37 @@ func (pm *Manager) enable(p *v2.Plugin, force bool) error {
|
|
|
}
|
|
|
|
|
|
func (pm *Manager) restore(p *v2.Plugin) error {
|
|
|
- p.RestartManager = restartmanager.New(container.RestartPolicy{Name: "always"}, 0)
|
|
|
- return pm.containerdClient.Restore(p.GetID(), libcontainerd.WithRestartManager(p.RestartManager))
|
|
|
+ return pm.containerdClient.Restore(p.GetID())
|
|
|
}
|
|
|
|
|
|
func (pm *Manager) disable(p *v2.Plugin) error {
|
|
|
if !p.IsEnabled() {
|
|
|
return fmt.Errorf("plugin %s is already disabled", p.Name())
|
|
|
}
|
|
|
- if err := p.RestartManager.Cancel(); err != nil {
|
|
|
- logrus.Error(err)
|
|
|
- }
|
|
|
+ p.Lock()
|
|
|
+ p.Restart = false
|
|
|
+ p.Unlock()
|
|
|
if err := pm.containerdClient.Signal(p.GetID(), int(syscall.SIGKILL)); err != nil {
|
|
|
logrus.Error(err)
|
|
|
}
|
|
|
- if err := p.RemoveFromDisk(); err != nil {
|
|
|
- logrus.Error(err)
|
|
|
- }
|
|
|
pm.pluginStore.SetState(p, false)
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
// Shutdown stops all plugins and called during daemon shutdown.
|
|
|
func (pm *Manager) Shutdown() {
|
|
|
- pm.Lock()
|
|
|
- pm.shutdown = true
|
|
|
- pm.Unlock()
|
|
|
-
|
|
|
- pm.RLock()
|
|
|
- defer pm.RUnlock()
|
|
|
plugins := pm.pluginStore.GetAll()
|
|
|
for _, p := range plugins {
|
|
|
if pm.liveRestore && p.IsEnabled() {
|
|
|
logrus.Debug("Plugin active when liveRestore is set, skipping shutdown")
|
|
|
continue
|
|
|
}
|
|
|
- if p.RestartManager != nil {
|
|
|
- if err := p.RestartManager.Cancel(); err != nil {
|
|
|
- logrus.Error(err)
|
|
|
- }
|
|
|
- }
|
|
|
if pm.containerdClient != nil && p.IsEnabled() {
|
|
|
pluginID := p.GetID()
|
|
|
+ p.Lock()
|
|
|
p.ExitChan = make(chan bool)
|
|
|
+ p.Restart = false
|
|
|
+ p.Unlock()
|
|
|
err := pm.containerdClient.Signal(p.PluginObj.ID, int(syscall.SIGTERM))
|
|
|
if err != nil {
|
|
|
logrus.Errorf("Sending SIGTERM to plugin failed with error: %v", err)
|
|
@@ -108,8 +91,5 @@ func (pm *Manager) Shutdown() {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if err := p.RemoveFromDisk(); err != nil {
|
|
|
- logrus.Errorf("Remove plugin runtime failed with error: %v", err)
|
|
|
- }
|
|
|
}
|
|
|
}
|