2014-07-31 17:12:12 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
2015-05-26 15:45:08 -04:00
|
|
|
"runtime"
|
2014-07-31 17:12:12 -04:00
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2014-07-31 17:12:12 -04:00
|
|
|
)
|
|
|
|
|
2015-04-08 17:38:53 -04:00
|
|
|
type ContainerRmConfig struct {
|
|
|
|
ForceRemove, RemoveVolume, RemoveLink bool
|
|
|
|
}
|
2014-07-31 17:12:12 -04:00
|
|
|
|
2015-04-08 17:38:53 -04:00
|
|
|
func (daemon *Daemon) ContainerRm(name string, config *ContainerRmConfig) error {
|
2014-12-16 18:06:35 -05:00
|
|
|
container, err := daemon.Get(name)
|
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
|
|
|
|
2015-04-08 17:38:53 -04:00
|
|
|
if config.RemoveLink {
|
2014-07-31 17:12:12 -04:00
|
|
|
name, err := GetFullContainerName(name)
|
|
|
|
if err != nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return err
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
parent, n := path.Split(name)
|
|
|
|
if parent == "/" {
|
2015-03-25 03:44:12 -04:00
|
|
|
return fmt.Errorf("Conflict, cannot remove the default name of the container")
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
pe := daemon.ContainerGraph().Get(parent)
|
|
|
|
if pe == nil {
|
2015-03-25 03:44:12 -04:00
|
|
|
return fmt.Errorf("Cannot get parent %s for name %s", parent, name)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
2014-12-16 18:06:35 -05:00
|
|
|
parentContainer, _ := daemon.Get(pe.ID())
|
2014-07-31 17:12:12 -04:00
|
|
|
|
2015-05-06 18:39:29 -04:00
|
|
|
if err := daemon.ContainerGraph().Delete(name); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
if parentContainer != nil {
|
|
|
|
parentContainer.DisableLink(n)
|
|
|
|
}
|
|
|
|
|
2015-03-25 03:44:12 -04:00
|
|
|
return nil
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-05-26 15:38:52 -04:00
|
|
|
if err := daemon.rm(container, config.ForceRemove); err != nil {
|
|
|
|
return fmt.Errorf("Cannot destroy container %s: %v", name, err)
|
|
|
|
}
|
2015-03-12 15:26:17 -04:00
|
|
|
|
2015-05-26 15:38:52 -04:00
|
|
|
if config.RemoveVolume {
|
|
|
|
container.removeMountPoints()
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
2015-03-25 03:44:12 -04:00
|
|
|
return nil
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy unregisters a container from the daemon and cleanly removes its contents from the filesystem.
|
2015-05-26 15:38:52 -04:00
|
|
|
func (daemon *Daemon) rm(container *Container, forceRemove bool) (err error) {
|
|
|
|
if container.IsRunning() {
|
|
|
|
if !forceRemove {
|
|
|
|
return fmt.Errorf("Conflict, You cannot remove a running container. Stop the container before attempting removal or use -f")
|
|
|
|
}
|
|
|
|
if err := container.Kill(); err != nil {
|
|
|
|
return fmt.Errorf("Could not kill running container, cannot remove - %v", err)
|
|
|
|
}
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-05-26 22:22:03 -04:00
|
|
|
// stop collection of stats for the container regardless
|
|
|
|
// if stats are currently getting collected.
|
|
|
|
daemon.statsCollector.stopCollection(container)
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
element := daemon.containers.Get(container.ID)
|
|
|
|
if element == nil {
|
|
|
|
return fmt.Errorf("Container %v not found - maybe it was already destroyed?", container.ID)
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
// Container state RemovalInProgress should be used to avoid races.
|
|
|
|
if err = container.SetRemovalInProgress(); err != nil {
|
|
|
|
return fmt.Errorf("Failed to set container state to RemovalInProgress: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer container.ResetRemovalInProgress()
|
|
|
|
|
|
|
|
if err = container.Stop(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.
|
|
|
|
container.SetDead()
|
|
|
|
|
|
|
|
// 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-07-02 06:24:35 -04:00
|
|
|
if err := container.ToDisk(); err != nil {
|
|
|
|
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() {
|
|
|
|
if err != nil && forceRemove {
|
|
|
|
daemon.idIndex.Delete(container.ID)
|
|
|
|
daemon.containers.Delete(container.ID)
|
2015-04-27 16:10:59 -04:00
|
|
|
os.RemoveAll(container.root)
|
2015-05-24 14:19:39 -04:00
|
|
|
container.LogEvent("destroy")
|
2015-03-12 15:26:17 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
if _, err := daemon.containerGraph.Purge(container.ID); err != nil {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Debugf("Unable to remove container from link graph: %s", err)
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
if err = daemon.driver.Remove(container.ID); err != nil {
|
2014-07-31 17:12:12 -04:00
|
|
|
return fmt.Errorf("Driver %s failed to remove root filesystem %s: %s", daemon.driver, container.ID, err)
|
|
|
|
}
|
|
|
|
|
2015-05-26 15:45:08 -04:00
|
|
|
// There will not be an -init on Windows, so don't fail by not attempting to delete it
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
initID := fmt.Sprintf("%s-init", container.ID)
|
|
|
|
if err := daemon.driver.Remove(initID); err != nil {
|
|
|
|
return fmt.Errorf("Driver %s failed to remove init filesystem %s: %s", daemon.driver, initID, err)
|
|
|
|
}
|
2014-07-31 17:12:12 -04:00
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
if err = os.RemoveAll(container.root); err != nil {
|
2014-07-31 17:12:12 -04:00
|
|
|
return fmt.Errorf("Unable to remove filesystem for %v: %v", container.ID, err)
|
|
|
|
}
|
|
|
|
|
2015-03-12 15:26:17 -04:00
|
|
|
if err = daemon.execDriver.Clean(container.ID); err != nil {
|
2014-09-10 03:34:38 -04:00
|
|
|
return fmt.Errorf("Unable to remove execdriver data for %s: %s", container.ID, err)
|
|
|
|
}
|
|
|
|
|
2014-07-31 17:12:12 -04:00
|
|
|
selinuxFreeLxcContexts(container.ProcessLabel)
|
2015-03-12 15:26:17 -04:00
|
|
|
daemon.idIndex.Delete(container.ID)
|
|
|
|
daemon.containers.Delete(container.ID)
|
2014-07-31 17:12:12 -04:00
|
|
|
|
2015-05-24 14:19:39 -04:00
|
|
|
container.LogEvent("destroy")
|
2014-07-31 17:12:12 -04:00
|
|
|
return nil
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
func (daemon *Daemon) DeleteVolumes(c *Container) error {
|
2015-05-20 17:53:53 -04:00
|
|
|
return c.removeMountPoints()
|
2015-05-19 16:05:25 -04:00
|
|
|
}
|