2014-04-17 17:43:01 -04:00
package daemon
2013-01-18 19:13:39 -05:00
import (
2014-12-10 00:55:09 -05:00
"bytes"
2013-01-18 19:13:39 -05:00
"fmt"
2014-04-28 17:36:04 -04:00
"io"
"io/ioutil"
"os"
"path"
2015-01-16 14:48:25 -05:00
"path/filepath"
2014-04-28 17:36:04 -04:00
"regexp"
2014-07-30 02:51:43 -04:00
"runtime"
2014-04-28 17:36:04 -04:00
"strings"
"sync"
"time"
2014-07-24 16:37:44 -04:00
"github.com/docker/libcontainer/label"
2015-03-26 18:22:04 -04:00
"github.com/Sirupsen/logrus"
2014-11-17 14:23:41 -05:00
"github.com/docker/docker/api"
2015-02-04 16:22:38 -05:00
"github.com/docker/docker/autogen/dockerversion"
2015-04-03 18:17:49 -04:00
"github.com/docker/docker/daemon/events"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/daemon/execdriver"
"github.com/docker/docker/daemon/execdriver/execdrivers"
"github.com/docker/docker/daemon/execdriver/lxc"
"github.com/docker/docker/daemon/graphdriver"
_ "github.com/docker/docker/daemon/graphdriver/vfs"
2015-04-04 00:06:48 -04:00
"github.com/docker/docker/daemon/network"
"github.com/docker/docker/daemon/networkdriver/bridge"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/engine"
"github.com/docker/docker/graph"
"github.com/docker/docker/image"
2014-09-30 02:23:36 -04:00
"github.com/docker/docker/pkg/archive"
2014-07-30 11:16:10 -04:00
"github.com/docker/docker/pkg/broadcastwriter"
2015-03-29 17:17:23 -04:00
"github.com/docker/docker/pkg/fileutils"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/pkg/graphdb"
2014-08-12 12:10:43 -04:00
"github.com/docker/docker/pkg/ioutils"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/pkg/namesgenerator"
2014-07-28 20:23:38 -04:00
"github.com/docker/docker/pkg/parsers"
2014-07-30 02:51:43 -04:00
"github.com/docker/docker/pkg/parsers/kernel"
2015-02-25 13:33:01 -05:00
"github.com/docker/docker/pkg/pidfile"
2015-03-23 02:27:04 -04:00
"github.com/docker/docker/pkg/resolvconf"
2015-03-24 07:25:26 -04:00
"github.com/docker/docker/pkg/stringid"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/pkg/sysinfo"
"github.com/docker/docker/pkg/truncindex"
2015-03-31 19:21:37 -04:00
"github.com/docker/docker/registry"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/runconfig"
2014-10-01 21:26:06 -04:00
"github.com/docker/docker/trust"
2014-07-24 18:19:50 -04:00
"github.com/docker/docker/utils"
2014-08-28 10:18:08 -04:00
"github.com/docker/docker/volumes"
2014-12-10 00:55:09 -05:00
"github.com/go-fsnotify/fsnotify"
2013-01-18 19:13:39 -05:00
)
2013-12-12 16:34:26 -05:00
var (
2014-09-12 13:45:07 -04:00
validContainerNameChars = ` [a-zA-Z0-9][a-zA-Z0-9_.-] `
2013-12-16 21:17:22 -05:00
validContainerNamePattern = regexp . MustCompile ( ` ^/? ` + validContainerNameChars + ` +$ ` )
2013-12-12 16:34:26 -05:00
)
2013-09-06 20:33:05 -04:00
2014-05-30 04:55:25 -04:00
type contStore struct {
s map [ string ] * Container
sync . Mutex
}
func ( c * contStore ) Add ( id string , cont * Container ) {
c . Lock ( )
c . s [ id ] = cont
c . Unlock ( )
}
func ( c * contStore ) Get ( id string ) * Container {
c . Lock ( )
res := c . s [ id ]
c . Unlock ( )
return res
}
func ( c * contStore ) Delete ( id string ) {
c . Lock ( )
delete ( c . s , id )
c . Unlock ( )
}
func ( c * contStore ) List ( ) [ ] * Container {
containers := new ( History )
2014-06-05 02:49:40 -04:00
c . Lock ( )
2014-05-30 04:55:25 -04:00
for _ , cont := range c . s {
containers . Add ( cont )
}
2014-06-05 02:49:40 -04:00
c . Unlock ( )
2014-05-30 04:55:25 -04:00
containers . Sort ( )
return * containers
}
2014-04-17 17:43:01 -04:00
type Daemon struct {
2015-02-04 14:04:58 -05:00
ID string
repository string
sysInitPath string
containers * contStore
execCommands * execStore
graph * graph . Graph
repositories * graph . TagStore
idIndex * truncindex . TruncIndex
sysInfo * sysinfo . SysInfo
volumes * volumes . Repository
eng * engine . Engine
config * Config
containerGraph * graphdb . Database
driver graphdriver . Driver
execDriver execdriver . Driver
statsCollector * statsCollector
defaultLogConfig runconfig . LogConfig
2015-03-31 19:21:37 -04:00
RegistryService * registry . Service
2015-04-03 18:17:49 -04:00
EventsService * events . Events
2013-03-21 03:25:00 -04:00
}
2014-05-20 15:36:15 -04:00
// Install installs daemon capabilities to eng.
func ( daemon * Daemon ) Install ( eng * engine . Engine ) error {
2014-08-08 05:12:39 -04:00
// FIXME: this hack is necessary for legacy integration tests to access
// the daemon object.
2015-03-25 21:40:23 -04:00
eng . HackSetGlobalVar ( "httpapi.daemon" , daemon )
2014-07-30 04:16:23 -04:00
return nil
2014-05-20 15:36:15 -04:00
}
2015-02-13 15:14:38 -05:00
// Get looks for a container using the provided information, which could be
// one of the following inputs from the caller:
// - A full container ID, which will exact match a container in daemon's list
// - A container name, which will only exact match via the GetByName() function
// - A partial container ID prefix (e.g. short ID) of any length that is
// unique enough to only return a single container object
// If none of these searches succeed, an error is returned
func ( daemon * Daemon ) Get ( prefixOrName string ) ( * Container , error ) {
if containerByID := daemon . containers . Get ( prefixOrName ) ; containerByID != nil {
2014-12-16 18:06:35 -05:00
// prefix is an exact match to a full container ID
return containerByID , nil
2014-08-06 11:54:13 -04:00
}
2014-11-02 19:25:44 -05:00
2015-02-13 15:14:38 -05:00
// GetByName will match only an exact name provided; we ignore errors
containerByName , _ := daemon . GetByName ( prefixOrName )
containerId , indexError := daemon . idIndex . Get ( prefixOrName )
2014-12-16 18:06:35 -05:00
if containerByName != nil {
// prefix is an exact match to a full container Name
return containerByName , nil
2013-10-04 22:25:15 -04:00
}
2014-11-02 19:25:44 -05:00
2014-12-16 18:06:35 -05:00
if containerId != "" {
// prefix is a fuzzy match to a container ID
return daemon . containers . Get ( containerId ) , nil
2014-11-02 19:25:44 -05:00
}
2014-12-16 18:06:35 -05:00
return nil , indexError
2013-01-18 19:13:39 -05:00
}
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 {
2014-12-16 18:06:35 -05:00
c , _ := daemon . Get ( id )
return c != 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 ) {
2014-09-18 17:38:22 -04:00
container := & Container {
root : daemon . containerRoot ( id ) ,
State : NewState ( ) ,
execCommands : newExecStore ( ) ,
}
2013-03-21 03:25:00 -04:00
if err := container . FromDisk ( ) ; err != nil {
return nil , err
}
2014-08-06 13:40:43 -04:00
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
}
2014-08-06 13:40:43 -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-08-06 13:40:43 -04:00
return daemon . register ( container , true )
2014-05-14 10:58:37 -04:00
}
// register makes a container object usable by the daemon as <container.ID>
2014-08-06 13:40:43 -04:00
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
2014-08-26 18:44:00 -04:00
container . stderr = broadcastwriter . New ( )
container . stdout = broadcastwriter . New ( )
2013-03-21 03:25:00 -04:00
// Attach to stdin
if container . Config . OpenStdin {
2014-08-26 18:44:00 -04:00
container . stdin , container . stdinPipe = io . Pipe ( )
2013-03-21 03:25:00 -04:00
} else {
2014-08-12 12:10:43 -04:00
container . stdinPipe = ioutils . NopWriteCloser ( ioutil . Discard ) // Silently drop stdin
2013-03-21 03:25:00 -04:00
}
// done
2014-05-30 04:55:25 -04:00
daemon . containers . Add ( container . ID , 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
2014-06-24 18:24:02 -04:00
daemon . idIndex . Add ( container . ID )
2013-04-19 15:08:43 -04:00
2015-01-16 14:48:25 -05:00
container . registerVolumes ( )
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
2014-08-31 11:20:35 -04:00
if container . IsRunning ( ) {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "killing old running container %s" , container . ID )
2014-04-17 23:42:57 -04:00
2014-12-12 13:38:48 -05:00
container . SetStopped ( & execdriver . ExitStatus { ExitCode : 0 } )
2014-04-17 23:42:57 -04:00
// 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
daemon . execDriver . Terminate ( cmd )
}
2014-07-21 22:59:44 -04:00
2014-04-17 23:42:57 -04:00
if err := container . Unmount ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "unmount error %s" , err )
2014-04-17 23:42:57 -04:00
}
if err := container . ToDisk ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "saving stopped state to disk %s" , err )
2014-03-06 17:14:25 -05:00
}
2013-04-19 15:08:43 -04:00
}
2015-04-15 20:39:34 -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-05-23 20:51:16 -04:00
name , err := daemon . generateNewName ( container . ID )
2013-11-04 12:28:40 -05:00
if err != nil {
2014-05-23 20:51:16 -04:00
return err
2013-11-04 12:28:40 -05:00
}
container . Name = name
if err := container . ToDisk ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Error saving container name %s" , err )
2013-11-04 12:28:40 -05:00
}
}
return nil
}
2014-04-17 17:43:01 -04:00
func ( daemon * Daemon ) restore ( ) error {
2014-06-05 20:31:58 -04:00
var (
2014-08-06 13:40:43 -04:00
debug = ( os . Getenv ( "DEBUG" ) != "" || os . Getenv ( "TEST" ) != "" )
containers = make ( map [ string ] * Container )
currentDriver = daemon . driver . String ( )
2014-06-05 20:31:58 -04:00
)
2014-05-30 14:03:56 -04:00
if ! debug {
2015-03-26 18:22:04 -04:00
logrus . Info ( "Loading containers: start." )
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
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 )
2015-03-26 18:22:04 -04:00
if ! debug && logrus . GetLevel ( ) == logrus . InfoLevel {
2013-12-18 13:43:42 -05:00
fmt . Print ( "." )
2013-08-16 09:31:50 -04:00
}
2013-01-18 19:13:39 -05:00
if err != nil {
2015-03-26 18:22:04 -04:00
logrus . 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
2014-08-06 13:40:43 -04:00
if ( container . Driver == "" && currentDriver == "aufs" ) || container . Driver == currentDriver {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Loaded container %v" , container . ID )
2014-08-06 13:40:43 -04:00
2013-11-15 01:52:08 -05:00
containers [ container . ID ] = container
} else {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Cannot load container %s because it was created with another graph driver." , container . ID )
2013-11-15 01:52:08 -05:00
}
2013-10-04 22:25:15 -04:00
}
2014-08-06 13:40:43 -04:00
registeredContainers := [ ] * Container { }
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 ( ) {
2015-03-26 18:22:04 -04:00
if ! debug && logrus . GetLevel ( ) == logrus . InfoLevel {
2013-12-18 13:43:42 -05:00
fmt . Print ( "." )
}
2014-08-06 13:40:43 -04:00
2013-10-24 19:49:28 -04:00
e := entities [ p ]
2014-08-06 13:40:43 -04:00
2013-10-24 19:49:28 -04:00
if container , ok := containers [ e . ID ( ) ] ; ok {
2014-08-06 13:40:43 -04:00
if err := daemon . register ( container , false ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Failed to register container %s: %s" , container . ID , err )
2014-05-30 14:03:56 -04:00
}
2014-08-06 13:40:43 -04:00
registeredContainers = append ( registeredContainers , container )
// delete from the map so that a new name is not automatically generated
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-05-23 20:51:16 -04:00
container . Name , err = daemon . generateNewName ( container . ID )
2013-10-30 21:26:01 -04:00
if err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Setting default id - %s" , err )
2013-10-24 13:25:07 -04:00
}
2014-08-06 13:40:43 -04:00
if err := daemon . register ( container , false ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Failed to register container %s: %s" , container . ID , err )
2014-05-30 14:03:56 -04:00
}
2014-08-06 13:40:43 -04:00
registeredContainers = append ( registeredContainers , container )
2013-01-18 19:13:39 -05:00
}
2013-10-24 19:49:28 -04:00
2014-08-06 13:40:43 -04:00
// check the restart policy on the containers and restart any container with
// the restart policy of "always"
if daemon . config . AutoRestart {
2015-03-26 18:22:04 -04:00
logrus . Debug ( "Restarting containers..." )
2014-08-06 13:40:43 -04:00
for _ , container := range registeredContainers {
2014-08-07 00:13:06 -04:00
if container . hostConfig . RestartPolicy . Name == "always" ||
2014-08-31 11:20:35 -04:00
( container . hostConfig . RestartPolicy . Name == "on-failure" && container . ExitCode != 0 ) {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Starting container %s" , container . ID )
2014-08-06 13:40:43 -04:00
if err := container . Start ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Failed to start container %s: %s" , container . ID , err )
2014-08-06 13:40:43 -04:00
}
}
2014-06-05 20:31:58 -04:00
}
}
2014-05-30 14:03:56 -04:00
if ! debug {
2015-03-26 18:22:04 -04:00
if logrus . GetLevel ( ) == logrus . InfoLevel {
2015-03-17 20:27:53 -04:00
fmt . Println ( )
}
2015-03-26 18:22:04 -04:00
logrus . Info ( "Loading containers: done." )
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
}
2014-12-10 00:55:09 -05:00
// set up the watch on the host's /etc/resolv.conf so that we can update container's
// live resolv.conf when the network changes on the host
func ( daemon * Daemon ) setupResolvconfWatcher ( ) error {
watcher , err := fsnotify . NewWatcher ( )
if err != nil {
return err
}
//this goroutine listens for the events on the watch we add
//on the resolv.conf file on the host
go func ( ) {
for {
select {
case event := <- watcher . Events :
2015-02-11 15:01:30 -05:00
if event . Name == "/etc/resolv.conf" &&
2015-03-25 19:24:55 -04:00
( event . Op & ( fsnotify . Write | fsnotify . Create ) != 0 ) {
2014-12-10 00:55:09 -05:00
// verify a real change happened before we go further--a file write may have happened
// without an actual change to the file
updatedResolvConf , newResolvConfHash , err := resolvconf . GetIfChanged ( )
if err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Error retrieving updated host resolv.conf: %v" , err )
2014-12-10 00:55:09 -05:00
} else if updatedResolvConf != nil {
// because the new host resolv.conf might have localhost nameservers..
2015-04-04 00:06:48 -04:00
updatedResolvConf , modified := resolvconf . FilterResolvDns ( updatedResolvConf , daemon . config . Bridge . EnableIPv6 )
2014-12-10 00:55:09 -05:00
if modified {
// changes have occurred during localhost cleanup: generate an updated hash
2015-03-29 17:17:23 -04:00
newHash , err := ioutils . HashData ( bytes . NewReader ( updatedResolvConf ) )
2014-12-10 00:55:09 -05:00
if err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Error generating hash of new resolv.conf: %v" , err )
2014-12-10 00:55:09 -05:00
} else {
newResolvConfHash = newHash
}
}
2015-03-26 18:22:04 -04:00
logrus . Debug ( "host network resolv.conf changed--walking container list for updates" )
2014-12-10 00:55:09 -05:00
contList := daemon . containers . List ( )
for _ , container := range contList {
if err := container . updateResolvConf ( updatedResolvConf , newResolvConfHash ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Error on resolv.conf update check for container ID: %s: %v" , container . ID , err )
2014-12-10 00:55:09 -05:00
}
}
}
}
case err := <- watcher . Errors :
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "host resolv.conf notify error: %v" , err )
2014-12-10 00:55:09 -05:00
}
}
} ( )
2015-02-11 15:01:30 -05:00
if err := watcher . Add ( "/etc" ) ; err != nil {
2014-12-10 00:55:09 -05:00
return err
}
return nil
}
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-10-28 17:06:23 -04:00
if ( img != nil && 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
}
2014-10-28 17:06:23 -04:00
if img != nil && 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
}
}
2015-04-10 20:05:21 -04:00
if config . Entrypoint . Len ( ) == 0 && config . Cmd . Len ( ) == 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
2015-03-24 07:25:26 -04:00
id = stringid . GenerateRandomID ( )
2014-04-07 15:20:23 -04:00
)
2013-10-04 22:25:15 -04:00
2013-10-28 19:58:59 -04:00
if name == "" {
2014-05-23 20:51:16 -04:00
if name , err = daemon . generateNewName ( id ) ; err != nil {
return "" , "" , err
2013-12-12 16:34:26 -05:00
}
2014-05-23 20:51:16 -04:00
return id , name , nil
}
if name , err = daemon . reserveName ( id , name ) ; err != nil {
return "" , "" , err
}
return id , name , nil
}
func ( daemon * Daemon ) reserveName ( id , name string ) ( string , error ) {
if ! validContainerNamePattern . MatchString ( name ) {
return "" , fmt . Errorf ( "Invalid container name (%s), only %s are allowed" , name , validContainerNameChars )
2013-10-28 19:58:59 -04:00
}
2014-05-23 20:51:16 -04:00
2013-10-28 19:58:59 -04:00
if name [ 0 ] != '/' {
name = "/" + name
}
2014-05-23 20:51:16 -04:00
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-05-23 20:51:16 -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-05-23 20:51:16 -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-05-23 20:51:16 -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-05-23 20:51:16 -04:00
return "" , fmt . Errorf (
2015-01-13 15:57:48 -05:00
"Conflict. The name %q is already in use by container %s. You have to delete (or rename) that container to be able to reuse that name." , nameAsKnownByUser ,
2015-03-24 07:25:26 -04:00
stringid . TruncateID ( conflictingContainer . ID ) )
2013-10-30 14:24:50 -04:00
}
2013-10-04 22:25:15 -04:00
}
2014-05-23 20:51:16 -04:00
return name , nil
}
func ( daemon * Daemon ) generateNewName ( id string ) ( string , error ) {
var name string
2014-05-30 15:08:21 -04:00
for i := 0 ; i < 6 ; i ++ {
2014-05-23 20:51:16 -04:00
name = namesgenerator . GetRandomName ( i )
if name [ 0 ] != '/' {
name = "/" + name
}
if _ , err := daemon . containerGraph . Set ( name , id ) ; err != nil {
if ! graphdb . IsNonUniqueNameError ( err ) {
return "" , err
}
continue
}
return name , nil
}
2015-03-24 07:25:26 -04:00
name = "/" + stringid . TruncateID ( id )
2014-05-23 20:51:16 -04:00
if _ , err := daemon . containerGraph . Set ( name , id ) ; err != nil {
return "" , err
}
return name , nil
2014-04-07 15:20:23 -04:00
}
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
2015-04-10 20:05:21 -04:00
func ( daemon * Daemon ) getEntrypointAndArgs ( configEntrypoint * runconfig . Entrypoint , configCmd * runconfig . Command ) ( string , [ ] string ) {
2014-04-07 15:20:23 -04:00
var (
entrypoint string
args [ ] string
)
2015-04-10 20:05:21 -04:00
cmdSlice := configCmd . Slice ( )
if configEntrypoint . Len ( ) != 0 {
eSlice := configEntrypoint . Slice ( )
entrypoint = eSlice [ 0 ]
args = append ( eSlice [ 1 : ] , cmdSlice ... )
2013-09-06 20:33:05 -04:00
} else {
2015-04-10 20:05:21 -04:00
entrypoint = cmdSlice [ 0 ]
args = cmdSlice [ 1 : ]
2013-09-06 20:33:05 -04:00
}
2014-04-07 15:20:23 -04:00
return entrypoint , args
}
2014-11-03 17:57:18 -05:00
func parseSecurityOpt ( container * Container , config * runconfig . HostConfig ) error {
2014-04-07 15:20:23 -04:00
var (
2014-11-03 17:57:18 -05:00
labelOpts [ ] string
err error
2014-09-30 15:10:03 -04:00
)
for _ , opt := range config . SecurityOpt {
con := strings . SplitN ( opt , ":" , 2 )
if len ( con ) == 1 {
return fmt . Errorf ( "Invalid --security-opt: %q" , opt )
}
switch con [ 0 ] {
case "label" :
2014-11-03 17:57:18 -05:00
labelOpts = append ( labelOpts , con [ 1 ] )
2014-09-30 15:10:03 -04:00
case "apparmor" :
container . AppArmorProfile = con [ 1 ]
default :
return fmt . Errorf ( "Invalid --security-opt: %q" , opt )
}
}
2014-11-03 17:57:18 -05:00
container . ProcessLabel , container . MountLabel , err = label . InitLabels ( labelOpts )
2014-09-30 15:10:03 -04:00
return err
}
2014-10-28 17:06:23 -04:00
func ( daemon * Daemon ) newContainer ( name string , config * runconfig . Config , imgID string ) ( * Container , error ) {
2014-09-30 15:10:03 -04:00
var (
id string
err error
2014-04-07 15:20:23 -04:00
)
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 )
2014-09-09 00:19:32 -04:00
entrypoint , args := daemon . getEntrypointAndArgs ( config . Entrypoint , config . Cmd )
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 { } ,
2014-10-28 17:06:23 -04:00
ImageID : imgID ,
2015-04-04 00:06:48 -04:00
NetworkSettings : & network . Settings { } ,
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 ( ) ,
2014-06-06 07:30:04 -04:00
State : NewState ( ) ,
2014-09-15 18:56:47 -04:00
execCommands : newExecStore ( ) ,
2013-09-06 20:33:05 -04:00
}
2014-04-17 17:43:01 -04:00
container . root = daemon . containerRoot ( container . ID )
2014-09-30 15:10:03 -04:00
return container , err
2014-04-07 15:20:23 -04:00
}
2014-10-28 17:06:23 -04:00
func ( daemon * Daemon ) createRootfs ( container * Container ) 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-10-28 17:06:23 -04:00
if err := daemon . driver . Create ( initID , container . ImageID ) ; 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
}
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-05-30 04:55:25 -04:00
e := daemon . containers . Get ( 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 ( ) )
}
2014-05-30 04:55:25 -04:00
return e , nil
2013-10-04 22:25:15 -04:00
}
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 {
2014-12-16 18:06:35 -05:00
c , err := daemon . Get ( e . ID ( ) )
if err != nil {
return err
2013-10-04 22:25:15 -04:00
}
children [ p ] = c
return nil
} , 0 )
if err != nil {
return nil , err
}
return children , nil
}
2014-07-14 19:19:37 -04:00
func ( daemon * Daemon ) Parents ( name string ) ( [ ] string , error ) {
name , err := GetFullContainerName ( name )
if err != nil {
return nil , err
}
return daemon . containerGraph . Parents ( name )
}
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 {
2014-07-28 20:23:38 -04:00
parts , err := parsers . PartParser ( "name:alias" , l )
2014-05-12 20:54:46 -04:00
if err != nil {
return err
}
2014-12-16 18:06:35 -05:00
child , err := daemon . Get ( parts [ "name" ] )
if err != nil {
2015-02-13 15:14:38 -05:00
//An error from daemon.Get() means this name could not be found
2014-05-12 20:54:46 -04:00
return fmt . Errorf ( "Could not get container for %s" , parts [ "name" ] )
}
2015-03-17 10:50:12 -04:00
for child . hostConfig . NetworkMode . IsContainer ( ) {
parts := strings . SplitN ( string ( child . hostConfig . NetworkMode ) , ":" , 2 )
child , err = daemon . Get ( parts [ 1 ] )
if err != nil {
return fmt . Errorf ( "Could not get container for %s" , parts [ 1 ] )
}
}
2014-12-08 14:33:18 -05:00
if child . hostConfig . NetworkMode . IsHost ( ) {
return runconfig . ErrConflictHostNetworkAndLinks
}
2014-05-12 20:54:46 -04:00
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()
2015-03-31 19:21:37 -04:00
func NewDaemon ( config * Config , eng * engine . Engine , registryService * registry . Service ) ( * Daemon , error ) {
daemon , err := NewDaemonFromDirectory ( config , eng , registryService )
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
}
2015-03-31 19:21:37 -04:00
func NewDaemonFromDirectory ( config * Config , eng * engine . Engine , registryService * registry . Service ) ( * Daemon , error ) {
2014-08-09 21:18:32 -04:00
if config . Mtu == 0 {
2014-11-04 18:53:34 -05:00
config . Mtu = getDefaultNetworkMtu ( )
2014-08-09 21:18:32 -04:00
}
2014-08-09 23:58:19 -04:00
// Check for mutually incompatible config options
2015-04-04 00:06:48 -04:00
if config . Bridge . Iface != "" && config . Bridge . IP != "" {
2014-08-09 23:58:19 -04:00
return nil , fmt . Errorf ( "You specified -b & --bip, mutually exclusive options. Please specify only one." )
}
2015-04-04 00:06:48 -04:00
if ! config . Bridge . EnableIptables && ! config . Bridge . InterContainerCommunication {
2014-08-09 23:58:19 -04:00
return nil , fmt . Errorf ( "You specified --iptables=false with --icc=false. ICC uses iptables to function. Please set --icc or --iptables to true." )
}
2015-04-04 00:06:48 -04:00
if ! config . Bridge . EnableIptables && config . Bridge . EnableIpMasq {
config . Bridge . EnableIpMasq = false
2014-09-16 23:00:15 -04:00
}
2015-04-04 00:06:48 -04:00
config . DisableNetwork = config . Bridge . Iface == disableNetworkBridge
2014-08-09 21:18:32 -04:00
2014-08-06 04:12:22 -04:00
// Claim the pidfile first, to avoid any and all unexpected race conditions.
// Some of the init doesn't need a pidfile lock - but let's not try to be smart.
if config . Pidfile != "" {
2015-02-25 13:33:01 -05:00
file , err := pidfile . New ( config . Pidfile )
if err != nil {
2014-08-06 04:12:22 -04:00
return nil , err
}
eng . OnShutdown ( func ( ) {
// Always release the pidfile last, just in case
2015-02-25 13:33:01 -05:00
file . Remove ( )
2014-08-06 04:12:22 -04:00
} )
}
// Check that the system is supported and we have sufficient privileges
2014-07-30 02:37:12 -04:00
if runtime . GOOS != "linux" {
2014-09-16 13:42:59 -04:00
return nil , fmt . Errorf ( "The Docker daemon is only supported on linux" )
2014-07-30 02:37:12 -04:00
}
if os . Geteuid ( ) != 0 {
2014-09-16 13:42:59 -04:00
return nil , fmt . Errorf ( "The Docker daemon needs to be run as root" )
2014-07-30 02:37:12 -04:00
}
2015-01-29 13:36:56 -05:00
if err := checkKernel ( ) ; err != nil {
2014-09-16 13:42:59 -04:00
return nil , err
2014-07-30 02:51:43 -04:00
}
2015-03-29 14:51:17 -04:00
// set up the tmpDir to use a canonical path
tmp , err := tempDir ( config . Root )
2014-08-05 16:43:33 -04:00
if err != nil {
2014-09-16 13:42:59 -04:00
return nil , fmt . Errorf ( "Unable to get the TempDir under %s: %s" , config . Root , err )
2014-08-05 16:43:33 -04:00
}
2015-03-29 17:17:23 -04:00
realTmp , err := fileutils . ReadSymlinkedDirectory ( tmp )
2014-07-30 02:44:34 -04:00
if err != nil {
2014-09-16 13:42:59 -04:00
return nil , fmt . Errorf ( "Unable to get the full path to the TempDir (%s): %s" , tmp , err )
2014-07-30 02:44:34 -04:00
}
os . Setenv ( "TMPDIR" , realTmp )
2014-05-09 21:05:54 -04:00
2014-07-30 02:51:03 -04:00
// get the canonical path to the Docker root directory
var realRoot string
if _ , err := os . Stat ( config . Root ) ; err != nil && os . IsNotExist ( err ) {
realRoot = config . Root
} else {
2015-03-29 17:17:23 -04:00
realRoot , err = fileutils . ReadSymlinkedDirectory ( config . Root )
2014-07-30 02:51:03 -04:00
if err != nil {
2014-09-16 13:42:59 -04:00
return nil , fmt . Errorf ( "Unable to get the full path to root (%s): %s" , config . Root , err )
2014-07-30 02:51:03 -04:00
}
}
config . Root = realRoot
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
2014-06-05 04:34:20 -04:00
driver , err := graphdriver . New ( config . Root , config . GraphOptions )
2013-11-07 15:34:01 -05:00
if err != nil {
2015-03-12 09:15:32 -04:00
return nil , fmt . Errorf ( "error intializing graphdriver: %v" , err )
2013-11-07 15:34:01 -05:00
}
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "Using graph driver %s" , driver )
2015-03-11 10:33:06 -04:00
// register cleanup for graph driver
eng . OnShutdown ( func ( ) {
if err := driver . Cleanup ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Errorf ( "Error during graph storage driver.Cleanup(): %v" , err )
2015-03-11 10:33:06 -04:00
}
} )
2013-11-07 15:34:01 -05:00
2015-03-09 22:00:07 -04:00
if config . EnableSelinuxSupport {
if selinuxEnabled ( ) {
// As Docker on btrfs and SELinux are incompatible at present, error on both being enabled
if driver . String ( ) == "btrfs" {
return nil , fmt . Errorf ( "SELinux is not supported with the BTRFS graph driver" )
}
2015-03-26 18:22:04 -04:00
logrus . Debug ( "SELinux enabled successfully" )
2015-03-09 22:00:07 -04:00
} else {
2015-03-26 18:22:04 -04:00
logrus . Warn ( "Docker could not enable SELinux on the host system" )
2015-03-09 22:00:07 -04:00
}
} else {
selinuxSetDisabled ( )
2014-06-04 16:38:06 -04:00
}
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
}
2015-03-26 18:22:04 -04:00
logrus . Debug ( "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
2014-06-05 04:34:20 -04:00
volumesDriver , err := graphdriver . GetDriver ( "vfs" , config . Root , config . GraphOptions )
2013-04-05 21:00:10 -04:00
if err != nil {
return nil , err
}
2014-08-28 10:18:08 -04:00
2015-01-16 14:48:25 -05:00
volumes , err := volumes . NewRepository ( filepath . Join ( config . Root , "volumes" ) , volumesDriver )
2013-04-05 21:00:10 -04:00
if err != nil {
return nil , err
}
2014-08-28 10:18:08 -04:00
2015-01-07 17:59:12 -05:00
trustKey , err := api . LoadOrCreateTrustKey ( config . TrustKeyPath )
if err != nil {
return nil , err
}
2014-10-01 21:26:06 -04:00
trustDir := path . Join ( config . Root , "trust" )
if err := os . MkdirAll ( trustDir , 0700 ) ; err != nil && ! os . IsExist ( err ) {
return nil , err
}
2015-04-20 15:48:33 -04:00
trustService , err := trust . NewTrustStore ( trustDir )
2014-10-01 21:26:06 -04:00
if err != nil {
return nil , fmt . Errorf ( "could not create trust store: %s" , err )
}
2015-04-20 15:48:33 -04:00
eventsService := events . New ( )
logrus . Debug ( "Creating repository list" )
tagCfg := & graph . TagStoreConfig {
Graph : g ,
Key : trustKey ,
Registry : registryService ,
Events : eventsService ,
Trust : trustService ,
}
repositories , err := graph . NewTagStore ( path . Join ( config . Root , "repositories-" + driver . String ( ) ) , tagCfg )
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 {
2015-04-04 00:06:48 -04:00
if err := bridge . InitDriver ( & config . Bridge ) ; err != nil {
2015-04-12 19:26:37 -04:00
return nil , fmt . Errorf ( "Error initializing Bridge: %v" , err )
2014-01-29 21:34:43 -05:00
}
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
}
2015-03-11 10:33:06 -04:00
// register graph close on shutdown
eng . OnShutdown ( func ( ) {
if err := graph . Close ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Errorf ( "Error during container graph.Close(): %v" , err )
2015-03-11 10:33:06 -04:00
}
} )
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 == "" {
2015-04-11 13:31:34 -04:00
return nil , fmt . Errorf ( "Could not locate dockerinit: This usually means docker was built incorrectly. See https://docs.docker.com/contributing/devenvironment for official build instructions." )
2013-11-25 17:42:22 -05:00
}
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
}
2015-03-29 17:17:23 -04:00
if _ , err := fileutils . CopyFile ( sysInitPath , localCopy ) ; err != nil {
2013-11-25 17:42:22 -05:00
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 )
2015-03-24 13:47:30 -04:00
const runDir = "/var/run/docker"
2015-03-24 20:11:49 -04:00
ed , err := execdrivers . NewDriver ( config . ExecDriver , runDir , 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 {
2015-02-04 14:04:58 -05:00
ID : trustKey . PublicKey ( ) . KeyID ( ) ,
repository : daemonRepo ,
containers : & contStore { s : make ( map [ string ] * Container ) } ,
execCommands : newExecStore ( ) ,
graph : g ,
repositories : repositories ,
idIndex : truncindex . NewTruncIndex ( [ ] string { } ) ,
sysInfo : sysInfo ,
volumes : volumes ,
config : config ,
containerGraph : graph ,
driver : driver ,
sysInitPath : sysInitPath ,
execDriver : ed ,
eng : eng ,
statsCollector : newStatsCollector ( 1 * time . Second ) ,
defaultLogConfig : config . LogConfig ,
2015-03-31 19:21:37 -04:00
RegistryService : registryService ,
2015-04-03 18:17:49 -04:00
EventsService : eventsService ,
2013-01-18 19:13:39 -05:00
}
2014-12-10 00:55:09 -05:00
2014-08-06 04:12:22 -04:00
eng . OnShutdown ( func ( ) {
if err := daemon . shutdown ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Errorf ( "Error during daemon.shutdown(): %v" , err )
2014-08-06 04:12:22 -04:00
}
} )
2015-03-06 15:44:31 -05:00
if err := daemon . restore ( ) ; err != nil {
return nil , err
}
// set up filesystem watch on resolv.conf for network changes
if err := daemon . setupResolvconfWatcher ( ) ; err != nil {
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 { }
2015-03-26 18:22:04 -04:00
logrus . Debug ( "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
2014-08-31 11:20:35 -04:00
if c . IsRunning ( ) {
2015-03-26 18:22:04 -04:00
logrus . 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 {
2015-03-26 18:22:04 -04:00
logrus . Debugf ( "kill 15 error for %s - %s" , c . ID , err )
2014-03-31 20:11:17 -04:00
}
2014-08-31 11:20:35 -04:00
c . WaitStop ( - 1 * time . Second )
2015-03-26 18:22:04 -04:00
logrus . 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 ) 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 {
2014-10-30 01:31:19 -04:00
daemon . driver . Put ( container . ID )
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 ) {
2014-09-10 23:30:52 -04:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
return daemon . driver . Changes ( container . ID , initID )
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 ) {
2014-09-10 23:30:52 -04:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
return daemon . driver . Diff ( container . ID , initID )
2013-10-22 19:23:52 -04:00
}
2014-10-30 19:06:54 -04:00
func ( daemon * Daemon ) Run ( c * Container , pipes * execdriver . Pipes , startCallback execdriver . StartCallback ) ( execdriver . ExitStatus , error ) {
2014-04-17 17:43:01 -04:00
return daemon . execDriver . Run ( c . command , pipes , startCallback )
2014-01-10 17:26:29 -05:00
}
2014-05-21 17:06:18 -04:00
func ( daemon * Daemon ) Pause ( c * Container ) error {
2014-06-03 11:44:21 -04:00
if err := daemon . execDriver . Pause ( c . command ) ; err != nil {
2014-05-21 17:06:18 -04:00
return err
}
2014-08-31 11:20:35 -04:00
c . SetPaused ( )
2014-05-21 17:06:18 -04:00
return nil
}
func ( daemon * Daemon ) Unpause ( c * Container ) error {
2014-06-03 11:44:21 -04:00
if err := daemon . execDriver . Unpause ( c . command ) ; err != nil {
2014-05-21 17:06:18 -04:00
return err
}
2014-08-31 11:20:35 -04:00
c . SetUnpaused ( )
2014-05-21 17:06:18 -04:00
return nil
}
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
}
2015-01-07 17:43:04 -05:00
func ( daemon * Daemon ) Stats ( c * Container ) ( * execdriver . ResourceStats , error ) {
return daemon . execDriver . Stats ( c . ID )
}
2015-01-19 18:29:42 -05:00
func ( daemon * Daemon ) SubscribeToContainerStats ( name string ) ( chan interface { } , error ) {
2014-12-16 18:06:35 -05:00
c , err := daemon . Get ( name )
if err != nil {
return nil , err
2015-01-07 17:43:04 -05:00
}
ch := daemon . statsCollector . collect ( c )
return ch , nil
}
2015-01-19 18:29:42 -05:00
func ( daemon * Daemon ) UnsubscribeToContainerStats ( name string , ch chan interface { } ) error {
2014-12-16 18:06:35 -05:00
c , err := daemon . Get ( name )
if err != nil {
return err
2015-01-07 21:02:08 -05:00
}
daemon . statsCollector . unsubscribe ( c , ch )
return nil
}
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!
2014-08-06 04:12:22 -04:00
// FIXME: this is deprecated, and only used in legacy
// tests. Please remove.
2014-04-17 17:43:01 -04:00
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
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-08-09 18:30:27 -04:00
func ( daemon * Daemon ) Config ( ) * Config {
2014-04-17 17:43:01 -04:00
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 ) ContainerGraph ( ) * graphdb . Database {
return daemon . containerGraph
2014-03-07 21:42:29 -05:00
}
2014-07-29 01:22:58 -04:00
func ( daemon * Daemon ) ImageGetCached ( imgID string , config * runconfig . Config ) ( * image . Image , error ) {
// Retrieve all images
images , err := daemon . Graph ( ) . Map ( )
if err != nil {
return nil , err
}
// Store the tree in a map of map (map[parentId][childId])
imageMap := make ( map [ string ] map [ string ] struct { } )
for _ , img := range images {
if _ , exists := imageMap [ img . Parent ] ; ! exists {
imageMap [ img . Parent ] = make ( map [ string ] struct { } )
}
imageMap [ img . Parent ] [ img . ID ] = struct { } { }
}
// Loop on the children of the given image and check the config
var match * image . Image
for elem := range imageMap [ imgID ] {
2014-11-11 15:15:00 -05:00
img , ok := images [ elem ]
if ! ok {
return nil , fmt . Errorf ( "unable to find image %q" , elem )
2014-07-29 01:22:58 -04:00
}
if runconfig . Compare ( & img . ContainerConfig , config ) {
if match == nil || match . Created . Before ( img . Created ) {
match = img
}
}
}
return match , nil
}
2014-07-30 02:51:43 -04:00
2015-03-29 14:51:17 -04:00
// tempDir returns the default directory to use for temporary files.
func tempDir ( rootDir string ) ( string , error ) {
var tmpDir string
if tmpDir = os . Getenv ( "DOCKER_TMPDIR" ) ; tmpDir == "" {
tmpDir = filepath . Join ( rootDir , "tmp" )
}
err := os . MkdirAll ( tmpDir , 0700 )
return tmpDir , err
}
2015-01-29 13:36:56 -05:00
func checkKernel ( ) error {
2014-07-30 02:51:43 -04:00
// Check for unsupported kernel versions
// FIXME: it would be cleaner to not test for specific versions, but rather
// test for specific functionalities.
// Unfortunately we can't test for the feature "does not cause a kernel panic"
// without actually causing a kernel panic, so we need this workaround until
// the circumstances of pre-3.8 crashes are clearer.
2015-04-11 13:31:34 -04:00
// For details see https://github.com/docker/docker/issues/407
2014-07-30 02:51:43 -04:00
if k , err := kernel . GetKernelVersion ( ) ; err != nil {
2015-03-26 18:22:04 -04:00
logrus . Warnf ( "%s" , err )
2014-07-30 02:51:43 -04:00
} else {
if kernel . CompareKernelVersion ( k , & kernel . KernelVersionInfo { Kernel : 3 , Major : 8 , Minor : 0 } ) < 0 {
if os . Getenv ( "DOCKER_NOWARN_KERNEL_VERSION" ) == "" {
2015-03-26 18:22:04 -04:00
logrus . Warnf ( "You are running linux kernel version %s, which might be unstable running docker. Please upgrade your kernel to 3.8.0." , k . String ( ) )
2014-07-30 02:51:43 -04:00
}
}
}
return nil
}
2015-04-16 02:31:52 -04:00
func ( daemon * Daemon ) verifyHostConfig ( hostConfig * runconfig . HostConfig ) ( [ ] string , error ) {
var warnings [ ] string
2015-04-15 18:43:18 -04:00
if hostConfig == nil {
return warnings , nil
}
2015-04-16 02:31:52 -04:00
if hostConfig . LxcConf . Len ( ) > 0 && ! strings . Contains ( daemon . ExecutionDriver ( ) . Name ( ) , "lxc" ) {
return warnings , fmt . Errorf ( "Cannot use --lxc-conf with execdriver: %s" , daemon . ExecutionDriver ( ) . Name ( ) )
}
if hostConfig . Memory != 0 && hostConfig . Memory < 4194304 {
return warnings , fmt . Errorf ( "Minimum memory limit allowed is 4MB" )
}
if hostConfig . Memory > 0 && ! daemon . SystemConfig ( ) . MemoryLimit {
2015-04-20 10:00:03 -04:00
warnings = append ( warnings , "Your kernel does not support memory limit capabilities. Limitation discarded." )
2015-04-16 02:31:52 -04:00
hostConfig . Memory = 0
}
if hostConfig . Memory > 0 && hostConfig . MemorySwap != - 1 && ! daemon . SystemConfig ( ) . SwapLimit {
2015-04-20 10:00:03 -04:00
warnings = append ( warnings , "Your kernel does not support swap limit capabilities, memory limited without swap." )
2015-04-16 02:31:52 -04:00
hostConfig . MemorySwap = - 1
}
if hostConfig . Memory > 0 && hostConfig . MemorySwap > 0 && hostConfig . MemorySwap < hostConfig . Memory {
2015-04-20 10:00:03 -04:00
return warnings , fmt . Errorf ( "Minimum memoryswap limit should be larger than memory limit, see usage." )
2015-04-16 02:31:52 -04:00
}
if hostConfig . Memory == 0 && hostConfig . MemorySwap > 0 {
2015-04-20 10:00:03 -04:00
return warnings , fmt . Errorf ( "You should always set the Memory limit when using Memoryswap limit, see usage." )
2015-04-16 02:31:52 -04:00
}
2015-04-20 11:16:47 -04:00
if hostConfig . CpuQuota > 0 && ! daemon . SystemConfig ( ) . CpuCfsQuota {
warnings = append ( warnings , "Your kernel does not support CPU cfs quota. Quota discarded." )
hostConfig . CpuQuota = 0
}
2015-04-16 02:31:52 -04:00
return warnings , nil
}
2015-04-22 22:23:02 -04:00
func ( daemon * Daemon ) setHostConfig ( container * Container , hostConfig * runconfig . HostConfig ) error {
container . Lock ( )
defer container . Unlock ( )
if err := parseSecurityOpt ( container , hostConfig ) ; err != nil {
return err
}
// Register any links from the host config before starting the container
if err := daemon . RegisterLinks ( container , hostConfig ) ; err != nil {
return err
}
container . hostConfig = hostConfig
container . toDisk ( )
return nil
}