2014-04-17 17:43:01 -04:00
package daemon
2013-01-18 19:13:39 -05:00
import (
"container/list"
"fmt"
2014-04-28 17:36:04 -04:00
"io"
"io/ioutil"
"log"
"os"
"path"
"regexp"
"strings"
"sync"
"time"
2013-11-07 19:35:26 -05:00
"github.com/dotcloud/docker/archive"
2014-04-17 17:43:01 -04:00
"github.com/dotcloud/docker/daemon/execdriver"
"github.com/dotcloud/docker/daemon/execdriver/execdrivers"
"github.com/dotcloud/docker/daemon/execdriver/lxc"
"github.com/dotcloud/docker/daemon/graphdriver"
_ "github.com/dotcloud/docker/daemon/graphdriver/vfs"
_ "github.com/dotcloud/docker/daemon/networkdriver/bridge"
"github.com/dotcloud/docker/daemon/networkdriver/portallocator"
2014-03-07 18:22:23 -05:00
"github.com/dotcloud/docker/daemonconfig"
2014-02-11 19:26:54 -05:00
"github.com/dotcloud/docker/dockerversion"
2014-01-29 21:34:43 -05:00
"github.com/dotcloud/docker/engine"
2014-03-14 18:07:52 -04:00
"github.com/dotcloud/docker/graph"
"github.com/dotcloud/docker/image"
"github.com/dotcloud/docker/pkg/graphdb"
2014-04-28 17:36:04 -04:00
"github.com/dotcloud/docker/pkg/label"
2014-03-27 16:38:27 -04:00
"github.com/dotcloud/docker/pkg/mount"
2014-05-05 18:51:32 -04:00
"github.com/dotcloud/docker/pkg/networkfs/resolvconf"
2014-04-07 17:43:50 -04:00
"github.com/dotcloud/docker/pkg/selinux"
2014-03-14 18:07:52 -04:00
"github.com/dotcloud/docker/pkg/sysinfo"
"github.com/dotcloud/docker/runconfig"
2013-05-14 18:37:35 -04:00
"github.com/dotcloud/docker/utils"
2013-01-18 19:13:39 -05:00
)
2013-11-26 13:50:53 -05:00
// Set the max depth to the aufs default that most
// kernels are compiled with
// For more information see: http://sourceforge.net/p/aufs/aufs3-standalone/ci/aufs3.12/tree/config.mk
const MaxImageDepth = 127
2013-11-19 03:51:16 -05:00
2013-12-12 16:34:26 -05:00
var (
2014-03-07 21:42:29 -05:00
DefaultDns = [ ] string { "8.8.8.8" , "8.8.4.4" }
2013-12-16 21:17:22 -05:00
validContainerNameChars = ` [a-zA-Z0-9_.-] `
validContainerNamePattern = regexp . MustCompile ( ` ^/? ` + validContainerNameChars + ` +$ ` )
2013-12-12 16:34:26 -05:00
)
2013-09-06 20:33:05 -04:00
2014-04-17 17:43:01 -04:00
type Daemon struct {
2013-02-28 14:52:07 -05:00
repository string
2013-11-25 17:42:22 -05:00
sysInitPath string
2013-02-28 14:52:07 -05:00
containers * list . List
2014-03-07 21:04:38 -05:00
graph * graph . Graph
repositories * graph . TagStore
2013-05-14 18:37:35 -04:00
idIndex * utils . TruncIndex
2014-01-15 17:36:13 -05:00
sysInfo * sysinfo . SysInfo
2014-03-07 21:04:38 -05:00
volumes * graph . Graph
2014-03-07 21:42:29 -05:00
srv Server
2014-01-30 14:50:59 -05:00
eng * engine . Engine
2014-03-07 18:22:23 -05:00
config * daemonconfig . Config
2013-11-15 18:55:45 -05:00
containerGraph * graphdb . Database
2013-11-07 15:34:01 -05:00
driver graphdriver . Driver
2014-01-09 19:03:22 -05:00
execDriver execdriver . Driver
2013-03-21 03:25:00 -04:00
}
2014-03-27 16:38:27 -04:00
// Mountpoints should be private to the container
func remountPrivate ( mountPoint string ) error {
mounted , err := mount . Mounted ( mountPoint )
if err != nil {
return err
}
if ! mounted {
if err := mount . Mount ( mountPoint , mountPoint , "none" , "bind,rw" ) ; err != nil {
return err
}
}
return mount . ForceMount ( "" , mountPoint , "none" , "private" )
}
2014-04-17 17:43:01 -04:00
// List returns an array of all containers registered in the daemon.
func ( daemon * Daemon ) List ( ) [ ] * Container {
2013-01-29 15:15:39 -05:00
containers := new ( History )
2014-04-17 17:43:01 -04:00
for e := daemon . containers . Front ( ) ; e != nil ; e = e . Next ( ) {
2013-01-29 15:15:39 -05:00
containers . Add ( e . Value . ( * Container ) )
2013-01-29 06:24:31 -05:00
}
2014-05-14 07:17:58 -04:00
containers . Sort ( )
2013-01-29 15:15:39 -05:00
return * containers
2013-01-18 19:13:39 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) getContainerElement ( id string ) * list . Element {
for e := daemon . containers . Front ( ) ; e != nil ; e = e . Next ( ) {
2013-01-18 19:13:39 -05:00
container := e . Value . ( * Container )
2013-06-04 14:00:22 -04:00
if container . ID == id {
2013-01-18 19:13:39 -05:00
return e
}
}
return nil
}
2013-09-06 20:43:34 -04:00
// Get looks for a container by the specified ID or name, and returns it.
// If the container is not found, or if an error occurs, nil is returned.
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Get ( name string ) * Container {
if c , _ := daemon . GetByName ( name ) ; c != nil {
2013-10-04 22:25:15 -04:00
return c
}
2014-04-17 17:43:01 -04:00
id , err := daemon . idIndex . Get ( name )
2013-03-31 05:02:01 -04:00
if err != nil {
return nil
}
2013-10-04 22:25:15 -04:00
2014-04-17 17:43:01 -04:00
e := daemon . getContainerElement ( id )
2013-01-18 19:13:39 -05:00
if e == nil {
return nil
}
return e . Value . ( * Container )
}
2013-09-06 20:43:34 -04:00
// Exists returns a true if a container of the specified ID or name exists,
// false otherwise.
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Exists ( id string ) bool {
return daemon . Get ( id ) != nil
2013-01-18 19:13:39 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) containerRoot ( id string ) string {
return path . Join ( daemon . repository , id )
2013-03-21 03:25:00 -04:00
}
2013-10-04 22:25:15 -04:00
// Load reads the contents of a container from disk
2013-09-06 20:43:34 -04:00
// This is typically done at startup.
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) load ( id string ) ( * Container , error ) {
container := & Container { root : daemon . containerRoot ( id ) }
2013-03-21 03:25:00 -04:00
if err := container . FromDisk ( ) ; err != nil {
return nil , err
}
2013-06-04 14:00:22 -04:00
if container . ID != id {
return container , fmt . Errorf ( "Container %s is stored at %s" , container . ID , id )
2013-03-21 03:25:00 -04:00
}
2013-01-18 19:13:39 -05:00
return container , nil
}
2014-04-17 17:43:01 -04:00
// Register makes a container object usable by the daemon as <container.ID>
2014-05-14 10:58:37 -04:00
// This is a wrapper for register
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Register ( container * Container ) error {
2014-05-14 10:58:37 -04:00
return daemon . register ( container , true )
}
// register makes a container object usable by the daemon as <container.ID>
func ( daemon * Daemon ) register ( container * Container , updateSuffixarray bool ) error {
2014-04-17 17:43:01 -04:00
if container . daemon != nil || daemon . Exists ( container . ID ) {
2013-03-21 03:25:00 -04:00
return fmt . Errorf ( "Container is already loaded" )
}
2013-06-04 14:00:22 -04:00
if err := validateID ( container . ID ) ; err != nil {
2013-03-21 03:25:00 -04:00
return err
}
2014-04-17 17:43:01 -04:00
if err := daemon . ensureName ( container ) ; err != nil {
2013-11-04 12:28:40 -05:00
return err
}
2013-03-31 20:40:39 -04:00
2014-04-17 17:43:01 -04:00
container . daemon = daemon
2013-04-09 10:57:59 -04:00
2013-03-21 03:25:00 -04:00
// Attach to stdout and stderr
2013-05-14 18:37:35 -04:00
container . stderr = utils . NewWriteBroadcaster ( )
container . stdout = utils . NewWriteBroadcaster ( )
2013-03-21 03:25:00 -04:00
// Attach to stdin
if container . Config . OpenStdin {
container . stdin , container . stdinPipe = io . Pipe ( )
} else {
2013-05-14 18:37:35 -04:00
container . stdinPipe = utils . NopWriteCloser ( ioutil . Discard ) // Silently drop stdin
2013-03-21 03:25:00 -04:00
}
// done
2014-04-17 17:43:01 -04:00
daemon . containers . PushBack ( container )
2014-05-14 10:58:37 -04:00
// don't update the Suffixarray if we're starting up
// we'll waste time if we update it for every container
if updateSuffixarray {
daemon . idIndex . Add ( container . ID )
} else {
daemon . idIndex . AddWithoutSuffixarrayUpdate ( container . ID )
}
2013-04-19 15:08:43 -04:00
2013-04-24 22:01:23 -04:00
// FIXME: if the container is supposed to be running but is not, auto restart it?
// if so, then we need to restart monitor and init a new lock
// If the container is supposed to be running, make sure of it
2013-11-21 15:21:03 -05:00
if container . State . IsRunning ( ) {
2014-04-17 23:42:57 -04:00
utils . Debugf ( "killing old running container %s" , container . ID )
existingPid := container . State . Pid
container . State . SetStopped ( 0 )
// We only have to handle this for lxc because the other drivers will ensure that
// no processes are left when docker dies
if container . ExecDriver == "" || strings . Contains ( container . ExecDriver , "lxc" ) {
lxc . KillLxc ( container . ID , 9 )
} else {
// use the current driver and ensure that the container is dead x.x
cmd := & execdriver . Command {
ID : container . ID ,
2014-03-06 17:14:25 -05:00
}
2014-04-17 23:42:57 -04:00
var err error
cmd . Process , err = os . FindProcess ( existingPid )
if err != nil {
utils . Debugf ( "cannot find existing process for %d" , existingPid )
2014-03-26 02:59:41 -04:00
}
2014-04-17 23:42:57 -04:00
daemon . execDriver . Terminate ( cmd )
}
if err := container . Unmount ( ) ; err != nil {
utils . Debugf ( "unmount error %s" , err )
}
if err := container . ToDisk ( ) ; err != nil {
utils . Debugf ( "saving stopped state to disk %s" , err )
2014-03-06 17:14:25 -05:00
}
2014-04-17 17:43:01 -04:00
info := daemon . execDriver . Info ( container . ID )
2014-01-15 14:46:25 -05:00
if ! info . IsRunning ( ) {
2013-11-26 05:18:50 -05:00
utils . Debugf ( "Container %s was supposed to be running but is not." , container . ID )
2014-04-17 17:43:01 -04:00
if daemon . config . AutoRestart {
2013-06-04 09:51:12 -04:00
utils . Debugf ( "Restarting" )
2014-03-06 17:14:25 -05:00
if err := container . Unmount ( ) ; err != nil {
utils . Debugf ( "restart unmount error %s" , err )
}
2013-10-31 17:58:43 -04:00
if err := container . Start ( ) ; err != nil {
2013-06-04 09:51:12 -04:00
return err
}
} else {
utils . Debugf ( "Marking as stopped" )
2013-11-21 15:21:03 -05:00
container . State . SetStopped ( - 127 )
2013-06-04 09:51:12 -04:00
if err := container . ToDisk ( ) ; err != nil {
return err
2013-04-24 22:01:23 -04:00
}
}
2013-11-08 09:40:46 -05:00
}
2014-01-21 19:38:17 -05:00
} else {
// When the container is not running, we still initialize the waitLock
// chan and close it. Receiving on nil chan blocks whereas receiving on a
// closed chan does not. In this case we do not want to block.
container . waitLock = make ( chan struct { } )
close ( container . waitLock )
2013-04-19 15:08:43 -04:00
}
2013-03-21 03:25:00 -04:00
return nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) ensureName ( container * Container ) error {
2013-11-04 12:28:40 -05:00
if container . Name == "" {
2014-04-17 17:43:01 -04:00
name , err := generateRandomName ( daemon )
2013-11-04 12:28:40 -05:00
if err != nil {
2013-10-24 21:59:59 -04:00
name = utils . TruncateID ( container . ID )
2013-11-04 12:28:40 -05:00
}
container . Name = name
if err := container . ToDisk ( ) ; err != nil {
utils . Debugf ( "Error saving container name %s" , err )
}
2014-04-17 17:43:01 -04:00
if ! daemon . containerGraph . Exists ( name ) {
if _ , err := daemon . containerGraph . Set ( name , container . ID ) ; err != nil {
2013-11-04 12:28:40 -05:00
utils . Debugf ( "Setting default id - %s" , err )
}
}
}
return nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) LogToDisk ( src * utils . WriteBroadcaster , dst , stream string ) error {
2013-03-21 03:25:00 -04:00
log , err := os . OpenFile ( dst , os . O_RDWR | os . O_APPEND | os . O_CREATE , 0600 )
if err != nil {
return err
}
2013-07-11 13:18:28 -04:00
src . AddWriter ( log , stream )
2013-03-21 03:25:00 -04:00
return nil
}
2014-04-17 17:43:01 -04:00
// Destroy unregisters a container from the daemon and cleanly removes its contents from the filesystem.
func ( daemon * Daemon ) Destroy ( container * Container ) error {
2013-05-07 14:18:13 -04:00
if container == nil {
return fmt . Errorf ( "The given container is <nil>" )
}
2014-04-17 17:43:01 -04:00
element := daemon . getContainerElement ( container . ID )
2013-01-18 19:13:39 -05:00
if element == nil {
2013-06-04 14:00:22 -04:00
return fmt . Errorf ( "Container %v not found - maybe it was already destroyed?" , container . ID )
2013-01-18 19:13:39 -05:00
}
2013-05-10 00:53:56 -04:00
if err := container . Stop ( 3 ) ; err != nil {
2013-01-18 19:13:39 -05:00
return err
}
2013-10-04 22:25:15 -04:00
2014-05-02 15:27:17 -04:00
// Deregister the container before removing its directory, to avoid race conditions
daemon . idIndex . Delete ( container . ID )
daemon . containers . Remove ( element )
2014-04-17 17:43:01 -04:00
if err := daemon . driver . Remove ( container . ID ) ; err != nil {
return fmt . Errorf ( "Driver %s failed to remove root filesystem %s: %s" , daemon . driver , container . ID , err )
2013-03-14 07:06:57 -04:00
}
2013-10-04 22:25:15 -04:00
2013-12-03 12:20:14 -05:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
2014-04-17 17:43:01 -04:00
if err := daemon . driver . Remove ( initID ) ; err != nil {
return fmt . Errorf ( "Driver %s failed to remove init filesystem %s: %s" , daemon . driver , initID , err )
2013-12-03 12:20:14 -05:00
}
2014-04-17 17:43:01 -04:00
if _ , err := daemon . containerGraph . Purge ( container . ID ) ; err != nil {
2013-10-04 22:25:15 -04:00
utils . Debugf ( "Unable to remove container from link graph: %s" , err )
}
2013-03-21 03:25:00 -04:00
if err := os . RemoveAll ( container . root ) ; err != nil {
2013-06-04 14:00:22 -04:00
return fmt . Errorf ( "Unable to remove filesystem for %v: %v" , container . ID , err )
2013-01-18 19:13:39 -05:00
}
2014-04-21 17:09:26 -04:00
selinux . FreeLxcContexts ( container . ProcessLabel )
2013-01-18 19:13:39 -05:00
return nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) restore ( ) error {
2013-08-29 18:59:34 -04:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
2013-12-18 13:43:42 -05:00
fmt . Printf ( "Loading containers: " )
2013-08-16 09:31:50 -04:00
}
2014-04-17 17:43:01 -04:00
dir , err := ioutil . ReadDir ( daemon . repository )
2013-01-18 19:13:39 -05:00
if err != nil {
return err
}
2013-10-24 19:49:28 -04:00
containers := make ( map [ string ] * Container )
2014-04-17 17:43:01 -04:00
currentDriver := daemon . driver . String ( )
2013-10-24 19:49:28 -04:00
2013-12-18 13:43:42 -05:00
for _ , v := range dir {
2013-03-21 03:25:00 -04:00
id := v . Name ( )
2014-04-17 17:43:01 -04:00
container , err := daemon . load ( id )
2013-12-18 13:43:42 -05:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
fmt . Print ( "." )
2013-08-16 09:31:50 -04:00
}
2013-01-18 19:13:39 -05:00
if err != nil {
2013-10-08 03:54:47 -04:00
utils . Errorf ( "Failed to load container %v: %v" , id , err )
2013-01-18 19:13:39 -05:00
continue
}
2013-11-15 01:52:08 -05:00
// Ignore the container if it does not support the current driver being used by the graph
if container . Driver == "" && currentDriver == "aufs" || container . Driver == currentDriver {
utils . Debugf ( "Loaded container %v" , container . ID )
containers [ container . ID ] = container
} else {
utils . Debugf ( "Cannot load container %s because it was created with another graph driver." , container . ID )
}
2013-10-04 22:25:15 -04:00
}
2014-05-14 10:58:37 -04:00
registerContainer := func ( container * Container ) {
if err := daemon . register ( container , false ) ; err != nil {
2013-10-24 19:49:28 -04:00
utils . Debugf ( "Failed to register container %s: %s" , container . ID , err )
2013-10-04 22:25:15 -04:00
}
2013-10-24 19:49:28 -04:00
}
2014-04-17 17:43:01 -04:00
if entities := daemon . containerGraph . List ( "/" , - 1 ) ; entities != nil {
2013-10-24 19:49:28 -04:00
for _ , p := range entities . Paths ( ) {
2013-12-18 13:43:42 -05:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
fmt . Print ( "." )
}
2013-10-24 19:49:28 -04:00
e := entities [ p ]
if container , ok := containers [ e . ID ( ) ] ; ok {
2014-05-14 10:58:37 -04:00
registerContainer ( container )
2013-10-24 19:49:28 -04:00
delete ( containers , e . ID ( ) )
}
2013-10-04 22:25:15 -04:00
}
2013-10-24 19:49:28 -04:00
}
2013-10-24 13:25:07 -04:00
2013-10-24 19:49:28 -04:00
// Any containers that are left over do not exist in the graph
for _ , container := range containers {
2013-10-24 13:25:07 -04:00
// Try to set the default name for a container if it exists prior to links
2014-04-17 17:43:01 -04:00
container . Name , err = generateRandomName ( daemon )
2013-10-30 21:26:01 -04:00
if err != nil {
2013-10-24 21:59:59 -04:00
container . Name = utils . TruncateID ( container . ID )
2013-10-30 21:26:01 -04:00
}
2013-10-28 19:58:59 -04:00
2014-04-17 17:43:01 -04:00
if _ , err := daemon . containerGraph . Set ( container . Name , container . ID ) ; err != nil {
2013-10-24 13:25:07 -04:00
utils . Debugf ( "Setting default id - %s" , err )
}
2014-05-14 10:58:37 -04:00
registerContainer ( container )
2013-01-18 19:13:39 -05:00
}
2013-10-24 19:49:28 -04:00
2014-05-14 10:58:37 -04:00
daemon . idIndex . UpdateSuffixarray ( )
2013-08-29 18:59:34 -04:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
2013-12-18 13:43:42 -05:00
fmt . Printf ( ": done.\n" )
2013-08-16 09:31:50 -04:00
}
2013-10-04 22:25:15 -04:00
2013-01-18 19:13:39 -05:00
return nil
}
2013-10-28 19:58:59 -04:00
// Create creates a new container from the given configuration with a given name.
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Create ( config * runconfig . Config , name string ) ( * Container , [ ] string , error ) {
2014-04-07 15:20:23 -04:00
var (
container * Container
warnings [ ] string
)
2014-04-17 17:43:01 -04:00
img , err := daemon . repositories . LookupImage ( config . Image )
2013-09-06 20:33:05 -04:00
if err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
2014-04-17 17:43:01 -04:00
if err := daemon . checkImageDepth ( img ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , nil , err
}
2014-04-17 17:43:01 -04:00
if warnings , err = daemon . mergeAndVerifyConfig ( config , img ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , nil , err
}
2014-04-17 17:43:01 -04:00
if container , err = daemon . newContainer ( name , config , img ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , nil , err
}
2014-04-17 17:43:01 -04:00
if err := daemon . createRootfs ( container , img ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , nil , err
}
if err := container . ToDisk ( ) ; err != nil {
return nil , nil , err
}
2014-04-17 17:43:01 -04:00
if err := daemon . Register ( container ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , nil , err
}
return container , warnings , nil
}
2013-09-06 20:33:05 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) checkImageDepth ( img * image . Image ) error {
2013-11-19 03:51:16 -05:00
// We add 2 layers to the depth because the container's rw and
// init layer add to the restriction
depth , err := img . Depth ( )
if err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-11-19 03:51:16 -05:00
}
if depth + 2 >= MaxImageDepth {
2014-04-07 15:20:23 -04:00
return fmt . Errorf ( "Cannot create container with more than %d parents" , MaxImageDepth )
2013-11-19 03:51:16 -05:00
}
2014-04-07 15:20:23 -04:00
return nil
}
2013-11-19 03:51:16 -05:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) checkDeprecatedExpose ( config * runconfig . Config ) bool {
2014-04-07 15:20:23 -04:00
if config != nil {
if config . PortSpecs != nil {
for _ , p := range config . PortSpecs {
if strings . Contains ( p , ":" ) {
return true
2013-10-30 17:36:38 -04:00
}
}
2013-09-20 08:46:24 -04:00
}
2013-09-06 20:33:05 -04:00
}
2014-04-07 15:20:23 -04:00
return false
}
2013-10-30 17:36:38 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) mergeAndVerifyConfig ( config * runconfig . Config , img * image . Image ) ( [ ] string , error ) {
2013-10-30 14:13:10 -04:00
warnings := [ ] string { }
2014-04-17 17:43:01 -04:00
if daemon . checkDeprecatedExpose ( img . Config ) || daemon . checkDeprecatedExpose ( config ) {
2014-03-03 02:35:40 -05:00
warnings = append ( warnings , "The mapping to public ports on your host via Dockerfile EXPOSE (host:port:port) has been deprecated. Use -p to publish the ports." )
2013-10-30 17:36:38 -04:00
}
if img . Config != nil {
2014-02-11 23:04:39 -05:00
if err := runconfig . Merge ( config , img . Config ) ; err != nil {
2014-04-07 15:20:23 -04:00
return nil , err
2013-10-30 14:13:10 -04:00
}
}
2014-02-10 14:04:24 -05:00
if len ( config . Entrypoint ) == 0 && len ( config . Cmd ) == 0 {
2014-04-07 15:20:23 -04:00
return nil , fmt . Errorf ( "No command specified" )
2013-09-06 20:33:05 -04:00
}
2014-04-07 15:20:23 -04:00
return warnings , nil
}
2013-09-06 20:33:05 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) generateIdAndName ( name string ) ( string , string , error ) {
2014-04-07 15:20:23 -04:00
var (
err error
id = utils . GenerateRandomID ( )
)
2013-10-04 22:25:15 -04:00
2013-10-28 19:58:59 -04:00
if name == "" {
2014-04-17 17:43:01 -04:00
name , err = generateRandomName ( daemon )
2013-10-30 21:26:01 -04:00
if err != nil {
name = utils . TruncateID ( id )
}
2013-12-12 16:34:26 -05:00
} else {
2013-12-16 21:17:22 -05:00
if ! validContainerNamePattern . MatchString ( name ) {
2014-04-07 15:20:23 -04:00
return "" , "" , fmt . Errorf ( "Invalid container name (%s), only %s are allowed" , name , validContainerNameChars )
2013-12-12 16:34:26 -05:00
}
2013-10-28 19:58:59 -04:00
}
if name [ 0 ] != '/' {
name = "/" + name
}
// Set the enitity in the graph using the default name specified
2014-04-17 17:43:01 -04:00
if _ , err := daemon . containerGraph . Set ( name , id ) ; err != nil {
2014-02-18 05:41:11 -05:00
if ! graphdb . IsNonUniqueNameError ( err ) {
2014-04-07 15:20:23 -04:00
return "" , "" , err
2013-12-05 18:22:21 -05:00
}
2014-04-17 17:43:01 -04:00
conflictingContainer , err := daemon . GetByName ( name )
2013-12-05 18:22:21 -05:00
if err != nil {
if strings . Contains ( err . Error ( ) , "Could not find entity" ) {
2014-04-07 15:20:23 -04:00
return "" , "" , err
2013-12-05 18:22:21 -05:00
}
// Remove name and continue starting the container
2014-04-17 17:43:01 -04:00
if err := daemon . containerGraph . Delete ( name ) ; err != nil {
2014-04-07 15:20:23 -04:00
return "" , "" , err
2013-12-05 18:22:21 -05:00
}
} else {
2013-11-26 21:58:54 -05:00
nameAsKnownByUser := strings . TrimPrefix ( name , "/" )
2014-04-07 15:20:23 -04:00
return "" , "" , fmt . Errorf (
2013-12-05 18:22:21 -05:00
"Conflict, The name %s is already assigned to %s. You have to delete (or rename) that container to be able to assign %s to a container again." , nameAsKnownByUser ,
utils . TruncateID ( conflictingContainer . ID ) , nameAsKnownByUser )
2013-10-30 14:24:50 -04:00
}
2013-10-04 22:25:15 -04:00
}
2014-04-07 15:20:23 -04:00
return id , name , nil
}
2013-10-04 22:25:15 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) generateHostname ( id string , config * runconfig . Config ) {
2013-09-06 20:33:05 -04:00
// Generate default hostname
// FIXME: the lxc template no longer needs to set a default hostname
if config . Hostname == "" {
config . Hostname = id [ : 12 ]
}
2014-04-07 15:20:23 -04:00
}
2013-09-06 20:33:05 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) getEntrypointAndArgs ( config * runconfig . Config ) ( string , [ ] string ) {
2014-04-07 15:20:23 -04:00
var (
entrypoint string
args [ ] string
)
2013-09-06 20:33:05 -04:00
if len ( config . Entrypoint ) != 0 {
entrypoint = config . Entrypoint [ 0 ]
args = append ( config . Entrypoint [ 1 : ] , config . Cmd ... )
} else {
entrypoint = config . Cmd [ 0 ]
args = config . Cmd [ 1 : ]
}
2014-04-07 15:20:23 -04:00
return entrypoint , args
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) newContainer ( name string , config * runconfig . Config , img * image . Image ) ( * Container , error ) {
2014-04-07 15:20:23 -04:00
var (
id string
err error
)
2014-04-17 17:43:01 -04:00
id , name , err = daemon . generateIdAndName ( name )
2014-04-07 15:20:23 -04:00
if err != nil {
return nil , err
}
2014-04-17 17:43:01 -04:00
daemon . generateHostname ( id , config )
entrypoint , args := daemon . getEntrypointAndArgs ( config )
2013-09-06 20:33:05 -04:00
container := & Container {
// FIXME: we should generate the ID here instead of receiving it as an argument
ID : id ,
2013-11-21 19:41:41 -05:00
Created : time . Now ( ) . UTC ( ) ,
2013-09-06 20:33:05 -04:00
Path : entrypoint ,
Args : args , //FIXME: de-duplicate from config
Config : config ,
2014-02-11 23:04:39 -05:00
hostConfig : & runconfig . HostConfig { } ,
2013-09-06 20:33:05 -04:00
Image : img . ID , // Always use the resolved image id
NetworkSettings : & NetworkSettings { } ,
2013-12-17 17:04:37 -05:00
Name : name ,
2014-04-17 17:43:01 -04:00
Driver : daemon . driver . String ( ) ,
ExecDriver : daemon . execDriver . Name ( ) ,
2013-09-06 20:33:05 -04:00
}
2014-04-17 17:43:01 -04:00
container . root = daemon . containerRoot ( container . ID )
2014-04-28 17:36:04 -04:00
2014-04-29 04:08:19 -04:00
if container . ProcessLabel , container . MountLabel , err = label . GenLabels ( "" ) ; err != nil {
2014-04-28 17:36:04 -04:00
return nil , err
}
2014-04-07 15:20:23 -04:00
return container , nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) createRootfs ( container * Container , img * image . Image ) error {
2013-09-06 20:33:05 -04:00
// Step 1: create the container directory.
// This doubles as a barrier to avoid race conditions.
if err := os . Mkdir ( container . root , 0700 ) ; err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-09-06 20:33:05 -04:00
}
2013-11-07 15:34:01 -05:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
2014-04-17 19:47:27 -04:00
if err := daemon . driver . Create ( initID , img . ID ) ; err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-11-07 15:34:01 -05:00
}
2014-04-17 19:47:27 -04:00
initPath , err := daemon . driver . Get ( initID , "" )
2013-11-07 15:34:01 -05:00
if err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-11-07 15:34:01 -05:00
}
2014-04-17 17:43:01 -04:00
defer daemon . driver . Put ( initID )
2013-12-05 16:18:02 -05:00
2014-03-07 21:04:38 -05:00
if err := graph . SetupInitLayer ( initPath ) ; err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-11-07 15:34:01 -05:00
}
2014-04-17 19:47:27 -04:00
if err := daemon . driver . Create ( container . ID , initID ) ; err != nil {
2014-04-07 15:20:23 -04:00
return err
2013-11-07 15:34:01 -05:00
}
2014-04-07 15:20:23 -04:00
return nil
}
2013-09-06 20:33:05 -04:00
// Commit creates a new filesystem image from the current state of a container.
// The image can optionally be tagged into a repository
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Commit ( container * Container , repository , tag , comment , author string , config * runconfig . Config ) ( * image . Image , error ) {
2013-09-06 20:33:05 -04:00
// FIXME: freeze the container before copying it to avoid data corruption?
2013-12-06 06:15:14 -05:00
if err := container . Mount ( ) ; err != nil {
2013-09-06 20:33:05 -04:00
return nil , err
}
2013-12-05 16:18:02 -05:00
defer container . Unmount ( )
2013-09-06 20:33:05 -04:00
rwTar , err := container . ExportRw ( )
if err != nil {
return nil , err
}
2014-02-14 06:41:46 -05:00
defer rwTar . Close ( )
2013-09-06 20:33:05 -04:00
// Create a new image from the container's base layers + a new layer from container changes
2014-03-07 21:04:38 -05:00
var (
containerID , containerImage string
containerConfig * runconfig . Config
)
if container != nil {
containerID = container . ID
containerImage = container . Image
containerConfig = container . Config
}
2014-04-17 17:43:01 -04:00
img , err := daemon . graph . Create ( rwTar , containerID , containerImage , comment , author , containerConfig , config )
2013-09-06 20:33:05 -04:00
if err != nil {
return nil , err
}
// Register the image if needed
if repository != "" {
2014-04-17 17:43:01 -04:00
if err := daemon . repositories . Set ( repository , tag , img . ID , true ) ; err != nil {
2013-09-06 20:33:05 -04:00
return img , err
}
}
return img , nil
}
2014-03-07 21:42:29 -05:00
func GetFullContainerName ( name string ) ( string , error ) {
2013-11-04 12:28:40 -05:00
if name == "" {
return "" , fmt . Errorf ( "Container name cannot be empty" )
}
2013-10-24 19:49:28 -04:00
if name [ 0 ] != '/' {
name = "/" + name
}
2013-11-04 12:28:40 -05:00
return name , nil
2013-10-24 19:49:28 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) GetByName ( name string ) ( * Container , error ) {
2014-03-07 21:42:29 -05:00
fullName , err := GetFullContainerName ( name )
2013-11-04 12:28:40 -05:00
if err != nil {
return nil , err
}
2014-04-17 17:43:01 -04:00
entity := daemon . containerGraph . Get ( fullName )
2013-10-04 22:25:15 -04:00
if entity == nil {
return nil , fmt . Errorf ( "Could not find entity for %s" , name )
}
2014-04-17 17:43:01 -04:00
e := daemon . getContainerElement ( entity . ID ( ) )
2013-10-04 22:25:15 -04:00
if e == nil {
return nil , fmt . Errorf ( "Could not find container for entity id %s" , entity . ID ( ) )
}
return e . Value . ( * Container ) , nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Children ( name string ) ( map [ string ] * Container , error ) {
2014-03-07 21:42:29 -05:00
name , err := GetFullContainerName ( name )
2013-11-04 12:28:40 -05:00
if err != nil {
return nil , err
}
2013-10-04 22:25:15 -04:00
children := make ( map [ string ] * Container )
2014-04-17 17:43:01 -04:00
err = daemon . containerGraph . Walk ( name , func ( p string , e * graphdb . Entity ) error {
c := daemon . Get ( e . ID ( ) )
2013-10-04 22:25:15 -04:00
if c == nil {
return fmt . Errorf ( "Could not get container for name %s and id %s" , e . ID ( ) , p )
}
children [ p ] = c
return nil
} , 0 )
if err != nil {
return nil , err
}
return children , nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) RegisterLink ( parent , child * Container , alias string ) error {
2013-10-28 19:58:59 -04:00
fullName := path . Join ( parent . Name , alias )
2014-04-17 17:43:01 -04:00
if ! daemon . containerGraph . Exists ( fullName ) {
_ , err := daemon . containerGraph . Set ( fullName , child . ID )
2013-10-04 22:25:15 -04:00
return err
}
2013-10-28 19:58:59 -04:00
return nil
2013-10-04 22:25:15 -04:00
}
2014-05-12 20:54:46 -04:00
func ( daemon * Daemon ) RegisterLinks ( container * Container , hostConfig * runconfig . HostConfig ) error {
if hostConfig != nil && hostConfig . Links != nil {
for _ , l := range hostConfig . Links {
parts , err := utils . PartParser ( "name:alias" , l )
if err != nil {
return err
}
child , err := daemon . GetByName ( parts [ "name" ] )
if err != nil {
return err
}
if child == nil {
return fmt . Errorf ( "Could not get container for %s" , parts [ "name" ] )
}
if err := daemon . RegisterLink ( container , child , parts [ "alias" ] ) ; err != nil {
return err
}
}
// After we load all the links into the daemon
// set them to nil on the hostconfig
hostConfig . Links = nil
if err := container . WriteHostConfig ( ) ; err != nil {
return err
}
}
return nil
}
2013-03-31 05:02:01 -04:00
// FIXME: harmonize with NewGraph()
2014-04-17 17:43:01 -04:00
func NewDaemon ( config * daemonconfig . Config , eng * engine . Engine ) ( * Daemon , error ) {
daemon , err := NewDaemonFromDirectory ( config , eng )
2013-04-18 23:47:24 -04:00
if err != nil {
return nil , err
}
2014-04-17 17:43:01 -04:00
return daemon , nil
2013-01-18 19:13:39 -05:00
}
2014-04-17 17:43:01 -04:00
func NewDaemonFromDirectory ( config * daemonconfig . Config , eng * engine . Engine ) ( * Daemon , error ) {
2014-04-07 17:43:50 -04:00
if ! config . EnableSelinuxSupport {
selinux . SetDisabled ( )
}
2014-05-09 21:05:54 -04:00
// Create the root directory if it doesn't exists
if err := os . MkdirAll ( config . Root , 0700 ) ; err != nil && ! os . IsExist ( err ) {
return nil , err
}
2013-11-15 02:02:09 -05:00
// Set the default driver
graphdriver . DefaultDriver = config . GraphDriver
2013-11-07 15:34:01 -05:00
// Load storage driver
driver , err := graphdriver . New ( config . Root )
if err != nil {
return nil , err
}
2013-11-07 20:01:57 -05:00
utils . Debugf ( "Using graph driver %s" , driver )
2013-11-07 15:34:01 -05:00
2014-03-27 16:38:27 -04:00
if err := remountPrivate ( config . Root ) ; err != nil {
return nil , err
}
2014-04-17 17:43:01 -04:00
daemonRepo := path . Join ( config . Root , "containers" )
2013-03-13 21:48:50 -04:00
2014-04-17 17:43:01 -04:00
if err := os . MkdirAll ( daemonRepo , 0700 ) ; err != nil && ! os . IsExist ( err ) {
2013-03-13 21:48:50 -04:00
return nil , err
}
2014-03-14 14:23:54 -04:00
// Migrate the container if it is aufs and aufs is enabled
if err = migrateIfAufs ( driver , config . Root ) ; err != nil {
return nil , err
2013-11-15 20:16:30 -05:00
}
2013-12-18 13:43:42 -05:00
utils . Debugf ( "Creating images graph" )
2014-03-07 21:04:38 -05:00
g , err := graph . NewGraph ( path . Join ( config . Root , "graph" ) , driver )
2013-02-26 20:45:46 -05:00
if err != nil {
return nil , err
}
2013-11-15 05:30:28 -05:00
// We don't want to use a complex driver like aufs or devmapper
// for volumes, just a plain filesystem
2013-11-22 17:58:19 -05:00
volumesDriver , err := graphdriver . GetDriver ( "vfs" , config . Root )
2013-04-05 21:00:10 -04:00
if err != nil {
return nil , err
}
2013-12-18 13:43:42 -05:00
utils . Debugf ( "Creating volumes graph" )
2014-03-07 21:04:38 -05:00
volumes , err := graph . NewGraph ( path . Join ( config . Root , "volumes" ) , volumesDriver )
2013-04-05 21:00:10 -04:00
if err != nil {
return nil , err
}
2013-12-18 13:43:42 -05:00
utils . Debugf ( "Creating repository list" )
2014-03-07 21:04:38 -05:00
repositories , err := graph . NewTagStore ( path . Join ( config . Root , "repositories-" + driver . String ( ) ) , g )
2013-03-21 20:35:49 -04:00
if err != nil {
return nil , fmt . Errorf ( "Couldn't create Tag store: %s" , err )
}
2014-01-29 21:34:43 -05:00
if ! config . DisableNetwork {
job := eng . Job ( "init_networkdriver" )
job . SetenvBool ( "EnableIptables" , config . EnableIptables )
job . SetenvBool ( "InterContainerCommunication" , config . InterContainerCommunication )
job . SetenvBool ( "EnableIpForward" , config . EnableIpForward )
job . Setenv ( "BridgeIface" , config . BridgeIface )
job . Setenv ( "BridgeIP" , config . BridgeIP )
2014-01-30 14:25:06 -05:00
job . Setenv ( "DefaultBindingIP" , config . DefaultIp . String ( ) )
2014-01-29 21:34:43 -05:00
if err := job . Run ( ) ; err != nil {
return nil , err
}
2013-04-04 08:33:28 -04:00
}
2013-10-04 22:25:15 -04:00
2013-11-15 18:55:45 -05:00
graphdbPath := path . Join ( config . Root , "linkgraph.db" )
2013-12-19 00:14:16 -05:00
graph , err := graphdb . NewSqliteConn ( graphdbPath )
2013-02-25 17:06:22 -05:00
if err != nil {
return nil , err
}
2013-10-04 22:25:15 -04:00
2014-02-11 19:26:54 -05:00
localCopy := path . Join ( config . Root , "init" , fmt . Sprintf ( "dockerinit-%s" , dockerversion . VERSION ) )
2013-11-25 17:42:22 -05:00
sysInitPath := utils . DockerInitPath ( localCopy )
if sysInitPath == "" {
return nil , fmt . Errorf ( "Could not locate dockerinit: This usually means docker was built incorrectly. See http://docs.docker.io/en/latest/contributing/devenvironment for official build instructions." )
}
2013-12-05 04:10:41 -05:00
if sysInitPath != localCopy {
// When we find a suitable dockerinit binary (even if it's our local binary), we copy it into config.Root at localCopy for future use (so that the original can go away without that being a problem, for example during a package upgrade).
if err := os . Mkdir ( path . Dir ( localCopy ) , 0700 ) ; err != nil && ! os . IsExist ( err ) {
2013-11-25 17:42:22 -05:00
return nil , err
}
if _ , err := utils . CopyFile ( sysInitPath , localCopy ) ; err != nil {
return nil , err
}
2013-12-05 04:10:41 -05:00
if err := os . Chmod ( localCopy , 0700 ) ; err != nil {
2013-11-25 17:42:22 -05:00
return nil , err
}
2013-12-05 04:10:41 -05:00
sysInitPath = localCopy
2013-11-25 17:42:22 -05:00
}
2014-03-05 04:40:55 -05:00
sysInfo := sysinfo . New ( false )
2014-03-03 10:15:29 -05:00
ed , err := execdrivers . NewDriver ( config . ExecDriver , config . Root , sysInitPath , sysInfo )
2014-01-09 19:03:22 -05:00
if err != nil {
return nil , err
}
2014-04-17 17:43:01 -04:00
daemon := & Daemon {
repository : daemonRepo ,
2013-02-28 14:52:07 -05:00
containers : list . New ( ) ,
2013-03-21 20:35:49 -04:00
graph : g ,
repositories : repositories ,
2014-04-11 16:39:58 -04:00
idIndex : utils . NewTruncIndex ( [ ] string { } ) ,
2014-01-15 17:36:13 -05:00
sysInfo : sysInfo ,
2013-04-05 21:00:10 -04:00
volumes : volumes ,
2013-10-04 22:25:15 -04:00
config : config ,
containerGraph : graph ,
2013-11-07 18:58:03 -05:00
driver : driver ,
2013-11-25 17:42:22 -05:00
sysInitPath : sysInitPath ,
2014-01-09 19:03:22 -05:00
execDriver : ed ,
2014-01-30 14:50:59 -05:00
eng : eng ,
2013-01-18 19:13:39 -05:00
}
2014-04-17 17:43:01 -04:00
if err := daemon . checkLocaldns ( ) ; err != nil {
2014-04-07 22:12:22 -04:00
return nil , err
}
2014-04-17 17:43:01 -04:00
if err := daemon . restore ( ) ; err != nil {
2013-01-18 19:13:39 -05:00
return nil , err
}
2014-04-17 17:43:01 -04:00
return daemon , nil
2013-01-18 19:13:39 -05:00
}
2013-01-29 15:15:39 -05:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) shutdown ( ) error {
2014-03-25 19:21:07 -04:00
group := sync . WaitGroup { }
utils . Debugf ( "starting clean shutdown of all containers..." )
2014-04-17 17:43:01 -04:00
for _ , container := range daemon . List ( ) {
2014-03-31 20:11:17 -04:00
c := container
if c . State . IsRunning ( ) {
utils . Debugf ( "stopping %s" , c . ID )
2014-03-25 19:21:07 -04:00
group . Add ( 1 )
go func ( ) {
defer group . Done ( )
2014-03-31 20:11:17 -04:00
if err := c . KillSig ( 15 ) ; err != nil {
utils . Debugf ( "kill 15 error for %s - %s" , c . ID , err )
}
c . Wait ( )
utils . Debugf ( "container stopped %s" , c . ID )
2014-03-25 19:21:07 -04:00
} ( )
}
}
group . Wait ( )
return nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Close ( ) error {
2013-11-19 20:08:21 -05:00
errorsStrings := [ ] string { }
2014-04-17 17:43:01 -04:00
if err := daemon . shutdown ( ) ; err != nil {
utils . Errorf ( "daemon.shutdown(): %s" , err )
2014-03-25 19:21:07 -04:00
errorsStrings = append ( errorsStrings , err . Error ( ) )
}
2014-01-23 15:17:28 -05:00
if err := portallocator . ReleaseAll ( ) ; err != nil {
utils . Errorf ( "portallocator.ReleaseAll(): %s" , err )
2013-11-19 20:08:21 -05:00
errorsStrings = append ( errorsStrings , err . Error ( ) )
}
2014-04-17 17:43:01 -04:00
if err := daemon . driver . Cleanup ( ) ; err != nil {
utils . Errorf ( "daemon.driver.Cleanup(): %s" , err . Error ( ) )
2013-11-19 20:08:21 -05:00
errorsStrings = append ( errorsStrings , err . Error ( ) )
}
2014-04-17 17:43:01 -04:00
if err := daemon . containerGraph . Close ( ) ; err != nil {
utils . Errorf ( "daemon.containerGraph.Close(): %s" , err . Error ( ) )
2013-11-19 20:08:21 -05:00
errorsStrings = append ( errorsStrings , err . Error ( ) )
}
if len ( errorsStrings ) > 0 {
return fmt . Errorf ( "%s" , strings . Join ( errorsStrings , ", " ) )
}
return nil
2013-10-22 19:23:52 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Mount ( container * Container ) error {
2014-04-29 04:08:19 -04:00
dir , err := daemon . driver . Get ( container . ID , container . GetMountLabel ( ) )
2013-10-31 21:07:54 -04:00
if err != nil {
2014-04-17 17:43:01 -04:00
return fmt . Errorf ( "Error getting container %s from driver %s: %s" , container . ID , daemon . driver , err )
2013-11-07 15:34:01 -05:00
}
2014-01-30 10:43:53 -05:00
if container . basefs == "" {
container . basefs = dir
} else if container . basefs != dir {
2013-11-07 15:34:01 -05:00
return fmt . Errorf ( "Error: driver %s is returning inconsistent paths for container %s ('%s' then '%s')" ,
2014-04-17 17:43:01 -04:00
daemon . driver , container . ID , container . basefs , dir )
2013-10-31 21:07:54 -04:00
}
2013-11-07 15:34:01 -05:00
return nil
2013-10-31 21:07:54 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Unmount ( container * Container ) error {
daemon . driver . Put ( container . ID )
2013-11-07 15:34:01 -05:00
return nil
2013-10-31 21:07:54 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Changes ( container * Container ) ( [ ] archive . Change , error ) {
if differ , ok := daemon . driver . ( graphdriver . Differ ) ; ok {
2013-11-11 20:17:38 -05:00
return differ . Changes ( container . ID )
}
2014-04-17 19:47:27 -04:00
cDir , err := daemon . driver . Get ( container . ID , "" )
2013-11-11 20:17:38 -05:00
if err != nil {
2014-04-17 17:43:01 -04:00
return nil , fmt . Errorf ( "Error getting container rootfs %s from driver %s: %s" , container . ID , container . daemon . driver , err )
2013-11-11 20:17:38 -05:00
}
2014-04-17 17:43:01 -04:00
defer daemon . driver . Put ( container . ID )
2014-04-17 19:47:27 -04:00
initDir , err := daemon . driver . Get ( container . ID + "-init" , "" )
2013-11-11 20:17:38 -05:00
if err != nil {
2014-04-17 17:43:01 -04:00
return nil , fmt . Errorf ( "Error getting container init rootfs %s from driver %s: %s" , container . ID , container . daemon . driver , err )
2013-11-11 20:17:38 -05:00
}
2014-04-17 17:43:01 -04:00
defer daemon . driver . Put ( container . ID + "-init" )
2013-11-11 20:17:38 -05:00
return archive . ChangesDirs ( cDir , initDir )
2013-10-31 21:07:54 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Diff ( container * Container ) ( archive . Archive , error ) {
if differ , ok := daemon . driver . ( graphdriver . Differ ) ; ok {
2013-11-11 20:17:38 -05:00
return differ . Diff ( container . ID )
}
2014-04-17 17:43:01 -04:00
changes , err := daemon . Changes ( container )
2013-11-11 20:17:38 -05:00
if err != nil {
return nil , err
}
2014-04-17 19:47:27 -04:00
cDir , err := daemon . driver . Get ( container . ID , "" )
2013-11-11 20:17:38 -05:00
if err != nil {
2014-04-17 17:43:01 -04:00
return nil , fmt . Errorf ( "Error getting container rootfs %s from driver %s: %s" , container . ID , container . daemon . driver , err )
2013-11-11 20:17:38 -05:00
}
2013-12-05 16:18:02 -05:00
archive , err := archive . ExportChanges ( cDir , changes )
if err != nil {
return nil , err
}
2014-02-14 06:41:46 -05:00
return utils . NewReadCloserWrapper ( archive , func ( ) error {
err := archive . Close ( )
2014-04-17 17:43:01 -04:00
daemon . driver . Put ( container . ID )
2014-02-14 06:41:46 -05:00
return err
} ) , nil
2013-10-22 19:23:52 -04:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Run ( c * Container , pipes * execdriver . Pipes , startCallback execdriver . StartCallback ) ( int , error ) {
return daemon . execDriver . Run ( c . command , pipes , startCallback )
2014-01-10 17:26:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Kill ( c * Container , sig int ) error {
return daemon . execDriver . Kill ( c . command , sig )
2014-01-10 17:26:29 -05:00
}
2013-11-14 01:08:08 -05:00
// Nuke kills all containers then removes all content
// from the content root, including images, volumes and
// container filesystems.
2014-04-17 17:43:01 -04:00
// Again: this will remove your entire docker daemon!
func ( daemon * Daemon ) Nuke ( ) error {
2013-11-14 01:08:08 -05:00
var wg sync . WaitGroup
2014-04-17 17:43:01 -04:00
for _ , container := range daemon . List ( ) {
2013-11-14 01:08:08 -05:00
wg . Add ( 1 )
go func ( c * Container ) {
c . Kill ( )
wg . Done ( )
} ( container )
}
wg . Wait ( )
2014-04-17 17:43:01 -04:00
daemon . Close ( )
2013-11-14 01:08:08 -05:00
2014-04-17 17:43:01 -04:00
return os . RemoveAll ( daemon . config . Root )
2013-11-14 01:08:08 -05:00
}
// FIXME: this is a convenience function for integration tests
2014-04-17 17:43:01 -04:00
// which need direct access to daemon.graph.
2013-11-14 01:08:08 -05:00
// Once the tests switch to using engine and jobs, this method
// can go away.
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Graph ( ) * graph . Graph {
return daemon . graph
2013-11-14 01:08:08 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Repositories ( ) * graph . TagStore {
return daemon . repositories
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Config ( ) * daemonconfig . Config {
return daemon . config
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) SystemConfig ( ) * sysinfo . SysInfo {
return daemon . sysInfo
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) SystemInitPath ( ) string {
return daemon . sysInitPath
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) GraphDriver ( ) graphdriver . Driver {
return daemon . driver
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) ExecutionDriver ( ) execdriver . Driver {
return daemon . execDriver
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) Volumes ( ) * graph . Graph {
return daemon . volumes
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) ContainerGraph ( ) * graphdb . Database {
return daemon . containerGraph
2014-03-07 21:42:29 -05:00
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) SetServer ( server Server ) {
daemon . srv = server
2014-03-07 21:42:29 -05:00
}
2014-04-07 22:12:22 -04:00
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) checkLocaldns ( ) error {
2014-05-05 18:51:32 -04:00
resolvConf , err := resolvconf . Get ( )
2014-04-07 22:12:22 -04:00
if err != nil {
return err
}
2014-04-17 17:43:01 -04:00
if len ( daemon . config . Dns ) == 0 && utils . CheckLocalDns ( resolvConf ) {
2014-04-07 22:12:22 -04:00
log . Printf ( "Local (127.0.0.1) DNS resolver found in resolv.conf and containers can't use it. Using default external servers : %v\n" , DefaultDns )
2014-04-17 17:43:01 -04:00
daemon . config . Dns = DefaultDns
2014-04-07 22:12:22 -04:00
}
return nil
}