2014-07-31 17:12:12 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2015-09-03 20:51:04 -04:00
|
|
|
"fmt"
|
2014-07-31 17:12:12 -04:00
|
|
|
"os"
|
|
|
|
"path"
|
2015-09-03 20:51:04 -04:00
|
|
|
"strings"
|
2014-07-31 17:12:12 -04:00
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2015-09-18 13:48:16 -04:00
|
|
|
derr "github.com/docker/docker/errors"
|
2015-11-18 17:20:54 -05:00
|
|
|
"github.com/docker/docker/layer"
|
2015-10-19 20:41:22 -04:00
|
|
|
volumestore "github.com/docker/docker/volume/store"
|
2016-01-04 19:05:26 -05:00
|
|
|
"github.com/docker/engine-api/types"
|
2014-07-31 17:12:12 -04:00
|
|
|
)
|
|
|
|
|
2015-07-30 17:01:53 -04:00
|
|
|
// ContainerRm removes the container id from the filesystem. An error
|
|
|
|
// is returned if the container is not found, or if the remove
|
|
|
|
// fails. If the remove succeeds, the container name is released, and
|
|
|
|
// network links are removed.
|
2015-12-04 15:34:43 -05:00
|
|
|
func (daemon *Daemon) ContainerRm(name string, config *types.ContainerRmConfig) error {
|
2015-12-11 12:39:28 -05:00
|
|
|
container, err := daemon.GetContainer(name)
|
2014-12-16 18:06:35 -05:00
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
|
|
|
|
2015-12-01 12:54:26 -05:00
|
|
|
// Container state RemovalInProgress should be used to avoid races.
|
2015-11-12 14:55:17 -05:00
|
|
|
if err = container.SetRemovalInProgress(); err != nil {
|
2015-12-01 12:54:26 -05:00
|
|
|
if err == derr.ErrorCodeAlreadyRemoving {
|
|
|
|
// do not fail when the removal is in progress started by other request.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return derr.ErrorCodeRmState.WithArgs(err)
|
|
|
|
}
|
2015-11-12 14:55:17 -05:00
|
|
|
defer container.ResetRemovalInProgress()
|
2015-12-01 12:54:26 -05:00
|
|
|
|
|
|
|
// check if container wasn't deregistered by previous rm since Get
|
|
|
|
if c := daemon.containers.Get(container.ID); c == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 17:38:53 -04:00
|
|
|
if config.RemoveLink {
|
2015-09-03 20:51:04 -04:00
|
|
|
return daemon.rmLink(container, name)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-12-02 12:18:34 -05:00
|
|
|
if err := daemon.cleanupContainer(container, config.ForceRemove); err != nil {
|
2015-09-18 13:48:16 -04:00
|
|
|
return err
|
2015-05-26 15:38:52 -04:00
|
|
|
}
|
2015-03-12 15:26:17 -04:00
|
|
|
|
2015-11-03 11:42:08 -05:00
|
|
|
if err := daemon.removeMountPoints(container, config.RemoveVolume); err != nil {
|
2015-09-14 13:21:17 -04:00
|
|
|
logrus.Error(err)
|
2015-09-07 03:52:13 -04:00
|
|
|
}
|
|
|
|
|
2015-03-25 03:44:12 -04:00
|
|
|
return nil
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 20:51:04 -04:00
|
|
|
func (daemon *Daemon) rmLink(container *container.Container, name string) error {
|
|
|
|
if name[0] != '/' {
|
|
|
|
name = "/" + name
|
2015-12-02 12:18:34 -05:00
|
|
|
}
|
|
|
|
parent, n := path.Split(name)
|
|
|
|
if parent == "/" {
|
2015-09-03 20:51:04 -04:00
|
|
|
return fmt.Errorf("Conflict, cannot remove the default name of the container")
|
2015-12-02 12:18:34 -05:00
|
|
|
}
|
|
|
|
|
2015-09-03 20:51:04 -04:00
|
|
|
parent = strings.TrimSuffix(parent, "/")
|
|
|
|
pe, err := daemon.nameIndex.Get(parent)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Cannot get parent %s for name %s", parent, name)
|
2015-12-02 12:18:34 -05:00
|
|
|
}
|
|
|
|
|
2015-09-03 20:51:04 -04:00
|
|
|
daemon.releaseName(name)
|
|
|
|
parentContainer, _ := daemon.GetContainer(pe)
|
2015-12-02 12:18:34 -05:00
|
|
|
if parentContainer != nil {
|
2015-09-03 20:51:04 -04:00
|
|
|
daemon.linkIndex.unlink(name, container, parentContainer)
|
2015-12-02 12:18:34 -05:00
|
|
|
if err := daemon.updateNetwork(parentContainer); err != nil {
|
|
|
|
logrus.Debugf("Could not update network to remove link %s: %v", n, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanupContainer unregisters a container from the daemon, stops stats
|
|
|
|
// collection and cleanly removes contents and metadata from the filesystem.
|
2015-11-12 14:55:17 -05:00
|
|
|
func (daemon *Daemon) cleanupContainer(container *container.Container, forceRemove bool) (err error) {
|
2015-05-26 15:38:52 -04:00
|
|
|
if container.IsRunning() {
|
|
|
|
if !forceRemove {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeRmRunning
|
2015-05-26 15:38:52 -04:00
|
|
|
}
|
2015-11-02 18:25:26 -05:00
|
|
|
if err := daemon.Kill(container); err != nil {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeRmFailed.WithArgs(err)
|
2015-05-26 15:38:52 -04:00
|
|
|
}
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-10-20 16:36:09 -04:00
|
|
|
// stop collection of stats for the container regardless
|
|
|
|
// if stats are currently getting collected.
|
|
|
|
daemon.statsCollector.stopCollection(container)
|
|
|
|
|
2015-11-02 18:25:26 -05:00
|
|
|
if err = daemon.containerStop(container, 3); err != nil {
|
2014-07-31 17:12:12 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
// Mark container dead. We don't want anybody to be restarting it.
|
2015-11-12 14:55:17 -05:00
|
|
|
container.SetDead()
|
2015-03-12 15:26:17 -04:00
|
|
|
|
|
|
|
// Save container state to disk. So that if error happens before
|
|
|
|
// container meta file got removed from disk, then a restart of
|
|
|
|
// docker should not make a dead container alive.
|
2015-11-12 14:55:17 -05:00
|
|
|
if err := container.ToDiskLocking(); err != nil {
|
2015-07-02 06:24:35 -04:00
|
|
|
logrus.Errorf("Error saving dying container to disk: %v", err)
|
|
|
|
}
|
2015-03-12 15:26:17 -04:00
|
|
|
|
|
|
|
// If force removal is required, delete container from various
|
|
|
|
// indexes even if removal failed.
|
|
|
|
defer func() {
|
2015-11-30 09:05:41 -05:00
|
|
|
if err == nil || forceRemove {
|
2015-09-03 20:51:04 -04:00
|
|
|
daemon.nameIndex.Delete(container.ID)
|
|
|
|
daemon.linkIndex.delete(container)
|
2015-11-30 09:05:41 -05:00
|
|
|
selinuxFreeLxcContexts(container.ProcessLabel)
|
2015-03-12 15:26:17 -04:00
|
|
|
daemon.idIndex.Delete(container.ID)
|
|
|
|
daemon.containers.Delete(container.ID)
|
2015-11-03 12:33:13 -05:00
|
|
|
daemon.LogContainerEvent(container, "destroy")
|
2015-03-12 15:26:17 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2015-11-12 14:55:17 -05:00
|
|
|
if err = os.RemoveAll(container.Root); err != nil {
|
2015-11-30 09:05:41 -05:00
|
|
|
return derr.ErrorCodeRmFS.WithArgs(container.ID, err)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-12-16 17:13:50 -05:00
|
|
|
metadata, err := daemon.layerStore.ReleaseRWLayer(container.RWLayer)
|
2015-11-18 17:20:54 -05:00
|
|
|
layer.LogReleaseMetadata(metadata)
|
2015-11-30 09:05:41 -05:00
|
|
|
if err != nil && err != layer.ErrMountDoesNotExist {
|
2015-12-16 15:32:16 -05:00
|
|
|
return derr.ErrorCodeRmDriverFS.WithArgs(daemon.GraphDriverName(), container.ID, err)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
if err = daemon.execDriver.Clean(container.ID); err != nil {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeRmExecDriver.WithArgs(container.ID, err)
|
2014-09-10 03:34:38 -04:00
|
|
|
}
|
2014-07-31 17:12:12 -04:00
|
|
|
return nil
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
2015-06-12 09:25:32 -04:00
|
|
|
// VolumeRm removes the volume with the given name.
|
|
|
|
// If the volume is referenced by a container it is not removed
|
|
|
|
// This is called directly from the remote API
|
2015-09-29 13:51:40 -04:00
|
|
|
func (daemon *Daemon) VolumeRm(name string) error {
|
2015-06-12 09:25:32 -04:00
|
|
|
v, err := daemon.volumes.Get(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-23 16:29:14 -04:00
|
|
|
|
2015-06-12 09:25:32 -04:00
|
|
|
if err := daemon.volumes.Remove(v); err != nil {
|
2015-10-19 20:41:22 -04:00
|
|
|
if volumestore.IsInUse(err) {
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeRmVolumeInUse.WithArgs(err)
|
2015-06-12 09:25:32 -04:00
|
|
|
}
|
2015-09-18 13:48:16 -04:00
|
|
|
return derr.ErrorCodeRmVolume.WithArgs(name, err)
|
2015-06-12 09:25:32 -04:00
|
|
|
}
|
2015-12-21 19:45:31 -05:00
|
|
|
daemon.LogVolumeEvent(v.Name(), "destroy", map[string]string{"driver": v.DriverName()})
|
2015-06-12 09:25:32 -04:00
|
|
|
return nil
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|