2015-07-30 21:01:53 +00:00
// Package daemon exposes the functions that occur on the host server
// that the Docker daemon is running.
//
// In implementing the various functions of the daemon, there is often
// a method-specific struct for configuring the runtime behavior.
2014-04-17 21:43:01 +00:00
package daemon
2013-01-19 00:13:39 +00:00
import (
2015-05-15 23:34:26 +00:00
"errors"
2013-01-19 00:13:39 +00:00
"fmt"
2014-04-28 21:36:04 +00:00
"io"
"io/ioutil"
"os"
2015-01-16 19:48:25 +00:00
"path/filepath"
2014-04-28 21:36:04 +00:00
"regexp"
2014-07-30 06:51:43 +00:00
"runtime"
2014-04-28 21:36:04 +00:00
"strings"
"sync"
"time"
2015-03-26 22:22:04 +00:00
"github.com/Sirupsen/logrus"
2014-11-17 19:23:41 +00:00
"github.com/docker/docker/api"
2015-07-21 20:30:32 +00:00
derr "github.com/docker/docker/api/errors"
2015-04-03 22:17:49 +00:00
"github.com/docker/docker/daemon/events"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/daemon/execdriver"
"github.com/docker/docker/daemon/execdriver/execdrivers"
"github.com/docker/docker/daemon/graphdriver"
2015-07-30 21:01:53 +00:00
// register vfs
2015-06-16 13:08:10 +00:00
_ "github.com/docker/docker/daemon/graphdriver/vfs"
2015-04-09 04:23:30 +00:00
"github.com/docker/docker/daemon/logger"
2015-04-04 04:06:48 +00:00
"github.com/docker/docker/daemon/network"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/graph"
2015-07-20 17:57:15 +00:00
"github.com/docker/docker/image"
2015-07-25 00:49:43 +00:00
"github.com/docker/docker/pkg/archive"
2014-07-30 15:16:10 +00:00
"github.com/docker/docker/pkg/broadcastwriter"
2015-03-29 21:17:23 +00:00
"github.com/docker/docker/pkg/fileutils"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/pkg/graphdb"
2014-08-12 16:10:43 +00:00
"github.com/docker/docker/pkg/ioutils"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/pkg/namesgenerator"
2015-07-30 22:28:11 +00:00
"github.com/docker/docker/pkg/nat"
2015-08-25 01:42:58 +00:00
"github.com/docker/docker/pkg/signal"
2015-03-24 11:25:26 +00:00
"github.com/docker/docker/pkg/stringid"
2015-08-28 15:29:10 +00:00
"github.com/docker/docker/pkg/stringutils"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/pkg/sysinfo"
2015-05-15 23:34:26 +00:00
"github.com/docker/docker/pkg/system"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/pkg/truncindex"
2015-03-31 23:21:37 +00:00
"github.com/docker/docker/registry"
2014-07-24 22:19:50 +00:00
"github.com/docker/docker/runconfig"
2014-10-02 01:26:06 +00:00
"github.com/docker/docker/trust"
2015-09-16 21:18:24 +00:00
volumedrivers "github.com/docker/docker/volume/drivers"
"github.com/docker/docker/volume/local"
2015-05-15 23:34:26 +00:00
"github.com/docker/libnetwork"
2015-07-16 23:00:55 +00:00
"github.com/opencontainers/runc/libcontainer/netlink"
2013-01-19 00:13:39 +00:00
)
2013-12-12 21:34:26 +00:00
var (
2014-09-12 17:45:07 +00:00
validContainerNameChars = ` [a-zA-Z0-9][a-zA-Z0-9_.-] `
2013-12-17 02:17:22 +00:00
validContainerNamePattern = regexp . MustCompile ( ` ^/? ` + validContainerNameChars + ` +$ ` )
2015-05-15 23:34:26 +00:00
2015-07-30 21:01:53 +00:00
errSystemNotSupported = errors . New ( "The Docker daemon is not supported on this platform." )
2013-12-12 21:34:26 +00:00
)
2013-09-07 00:33:05 +00:00
2014-05-30 08:55:25 +00: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 06:49:40 +00:00
c . Lock ( )
2014-05-30 08:55:25 +00:00
for _ , cont := range c . s {
containers . Add ( cont )
}
2014-06-05 06:49:40 +00:00
c . Unlock ( )
2015-07-30 21:01:53 +00:00
containers . sort ( )
2014-05-30 08:55:25 +00:00
return * containers
}
2015-07-30 21:01:53 +00:00
// Daemon holds information about the Docker daemon.
2014-04-17 21:43:01 +00:00
type Daemon struct {
2015-02-04 19:04:58 +00:00
ID string
repository string
sysInitPath string
containers * contStore
execCommands * execStore
graph * graph . Graph
repositories * graph . TagStore
idIndex * truncindex . TruncIndex
2015-07-30 21:01:53 +00:00
configStore * Config
containerGraphDB * graphdb . Database
2015-02-04 19:04:58 +00:00
driver graphdriver . Driver
execDriver execdriver . Driver
statsCollector * statsCollector
defaultLogConfig runconfig . LogConfig
2015-03-31 23:21:37 +00:00
RegistryService * registry . Service
2015-04-03 22:17:49 +00:00
EventsService * events . Events
2015-05-06 22:39:29 +00:00
netController libnetwork . NetworkController
2015-06-12 13:25:32 +00:00
volumes * volumeStore
2015-05-19 20:05:25 +00:00
root string
2015-08-05 21:09:08 +00:00
shutdown bool
2013-03-21 07:25:00 +00:00
}
2015-02-13 20:14:38 +00: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 23:06:35 +00:00
// prefix is an exact match to a full container ID
return containerByID , nil
2014-08-06 15:54:13 +00:00
}
2014-11-03 00:25:44 +00:00
2015-02-13 20:14:38 +00:00
// GetByName will match only an exact name provided; we ignore errors
2015-06-09 05:47:31 +00:00
if containerByName , _ := daemon . GetByName ( prefixOrName ) ; containerByName != nil {
2014-12-16 23:06:35 +00:00
// prefix is an exact match to a full container Name
return containerByName , nil
2013-10-05 02:25:15 +00:00
}
2014-11-03 00:25:44 +00:00
2015-07-30 21:01:53 +00:00
containerID , indexError := daemon . idIndex . Get ( prefixOrName )
2015-06-09 05:47:31 +00:00
if indexError != nil {
2015-07-21 20:30:32 +00:00
// When truncindex defines an error type, use that instead
if strings . Contains ( indexError . Error ( ) , "no such id" ) {
return nil , derr . ErrorCodeNoSuchContainer . WithArgs ( prefixOrName )
}
2015-06-09 05:47:31 +00:00
return nil , indexError
2014-11-03 00:25:44 +00:00
}
2015-07-30 21:01:53 +00:00
return daemon . containers . Get ( containerID ) , nil
2013-01-19 00:13:39 +00:00
}
2013-09-07 00:43:34 +00:00
// Exists returns a true if a container of the specified ID or name exists,
// false otherwise.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) Exists ( id string ) bool {
2014-12-16 23:06:35 +00:00
c , _ := daemon . Get ( id )
return c != nil
2013-01-19 00:13:39 +00:00
}
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) containerRoot ( id string ) string {
2015-05-15 23:34:26 +00:00
return filepath . Join ( daemon . repository , id )
2013-03-21 07:25:00 +00:00
}
2013-10-05 02:25:15 +00:00
// Load reads the contents of a container from disk
2013-09-07 00:43:34 +00:00
// This is typically done at startup.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) load ( id string ) ( * Container , error ) {
2015-07-16 21:14:58 +00:00
container := daemon . newBaseContainer ( id )
2015-04-29 22:53:35 +00:00
2015-07-30 21:01:53 +00:00
if err := container . fromDisk ( ) ; err != nil {
2013-03-21 07:25:00 +00:00
return nil , err
}
2014-08-06 17:40:43 +00:00
2013-06-04 18:00:22 +00:00
if container . ID != id {
2015-07-16 21:14:58 +00:00
return & container , fmt . Errorf ( "Container %s is stored at %s" , container . ID , id )
2013-03-21 07:25:00 +00:00
}
2014-08-06 17:40:43 +00:00
2015-07-16 21:14:58 +00:00
return & container , nil
2013-01-19 00:13:39 +00:00
}
2014-04-17 21:43:01 +00:00
// Register makes a container object usable by the daemon as <container.ID>
func ( daemon * Daemon ) Register ( container * Container ) error {
if container . daemon != nil || daemon . Exists ( container . ID ) {
2013-03-21 07:25:00 +00:00
return fmt . Errorf ( "Container is already loaded" )
}
2013-06-04 18:00:22 +00:00
if err := validateID ( container . ID ) ; err != nil {
2013-03-21 07:25:00 +00:00
return err
}
2014-04-17 21:43:01 +00:00
if err := daemon . ensureName ( container ) ; err != nil {
2013-11-04 17:28:40 +00:00
return err
}
2013-04-01 00:40:39 +00:00
2014-04-17 21:43:01 +00:00
container . daemon = daemon
2013-04-09 14:57:59 +00:00
2013-03-21 07:25:00 +00:00
// Attach to stdout and stderr
2014-08-26 22:44:00 +00:00
container . stderr = broadcastwriter . New ( )
container . stdout = broadcastwriter . New ( )
2013-03-21 07:25:00 +00:00
// Attach to stdin
if container . Config . OpenStdin {
2014-08-26 22:44:00 +00:00
container . stdin , container . stdinPipe = io . Pipe ( )
2013-03-21 07:25:00 +00:00
} else {
2014-08-12 16:10:43 +00:00
container . stdinPipe = ioutils . NopWriteCloser ( ioutil . Discard ) // Silently drop stdin
2013-03-21 07:25:00 +00:00
}
// done
2014-05-30 08:55:25 +00:00
daemon . containers . Add ( container . ID , container )
2014-05-14 14:58:37 +00: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 22:24:02 +00:00
daemon . idIndex . Add ( container . ID )
2013-04-19 19:08:43 +00:00
2014-08-31 15:20:35 +00:00
if container . IsRunning ( ) {
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "killing old running container %s" , container . ID )
2015-06-12 08:20:23 +00:00
// Set exit code to 128 + SIGKILL (9) to properly represent unsuccessful exit
2015-07-30 21:01:53 +00:00
container . setStoppedLocking ( & execdriver . ExitStatus { ExitCode : 137 } )
2015-05-04 17:49:28 +00:00
// use the current driver and ensure that the container is dead x.x
cmd := & execdriver . Command {
ID : container . ID ,
2014-04-18 03:42:57 +00:00
}
2015-05-04 17:49:28 +00:00
daemon . execDriver . Terminate ( cmd )
2014-07-22 02:59:44 +00:00
2014-04-18 03:42:57 +00:00
if err := container . Unmount ( ) ; err != nil {
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "unmount error %s" , err )
2014-04-18 03:42:57 +00:00
}
2015-07-30 21:01:53 +00:00
if err := container . toDiskLocking ( ) ; err != nil {
2015-07-02 10:24:35 +00:00
logrus . Errorf ( "Error saving stopped state to disk: %v" , err )
2014-03-06 22:14:25 +00:00
}
2013-04-19 19:08:43 +00:00
}
2015-04-16 00:39:34 +00:00
2015-08-21 03:29:53 +00:00
if err := daemon . verifyVolumesInfo ( container ) ; err != nil {
return err
}
if err := container . prepareMountPoints ( ) ; err != nil {
return err
}
2013-03-21 07:25:00 +00:00
return nil
}
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) ensureName ( container * Container ) error {
2013-11-04 17:28:40 +00:00
if container . Name == "" {
2014-05-24 00:51:16 +00:00
name , err := daemon . generateNewName ( container . ID )
2013-11-04 17:28:40 +00:00
if err != nil {
2014-05-24 00:51:16 +00:00
return err
2013-11-04 17:28:40 +00:00
}
container . Name = name
2015-07-30 21:01:53 +00:00
if err := container . toDiskLocking ( ) ; err != nil {
2015-07-02 10:24:35 +00:00
logrus . Errorf ( "Error saving container name to disk: %v" , err )
2013-11-04 17:28:40 +00:00
}
}
return nil
}
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) restore ( ) error {
2015-05-19 20:05:25 +00:00
type cr struct {
container * Container
registered bool
}
2014-06-06 00:31:58 +00:00
var (
2015-08-01 13:08:04 +00:00
debug = os . Getenv ( "DEBUG" ) != ""
2014-08-06 17:40:43 +00:00
currentDriver = daemon . driver . String ( )
2015-05-19 20:05:25 +00:00
containers = make ( map [ string ] * cr )
2014-06-06 00:31:58 +00:00
)
2014-05-30 18:03:56 +00:00
if ! debug {
2015-03-26 22:22:04 +00:00
logrus . Info ( "Loading containers: start." )
2013-08-16 13:31:50 +00:00
}
2014-04-17 21:43:01 +00:00
dir , err := ioutil . ReadDir ( daemon . repository )
2013-01-19 00:13:39 +00:00
if err != nil {
return err
}
2013-10-24 23:49:28 +00:00
2013-12-18 18:43:42 +00:00
for _ , v := range dir {
2013-03-21 07:25:00 +00:00
id := v . Name ( )
2014-04-17 21:43:01 +00:00
container , err := daemon . load ( id )
2015-03-26 22:22:04 +00:00
if ! debug && logrus . GetLevel ( ) == logrus . InfoLevel {
2013-12-18 18:43:42 +00:00
fmt . Print ( "." )
2013-08-16 13:31:50 +00:00
}
2013-01-19 00:13:39 +00:00
if err != nil {
2015-03-26 22:22:04 +00:00
logrus . Errorf ( "Failed to load container %v: %v" , id , err )
2013-01-19 00:13:39 +00:00
continue
}
2013-11-15 06:52:08 +00:00
// Ignore the container if it does not support the current driver being used by the graph
2014-08-06 17:40:43 +00:00
if ( container . Driver == "" && currentDriver == "aufs" ) || container . Driver == currentDriver {
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "Loaded container %v" , container . ID )
2014-08-06 17:40:43 +00:00
2015-05-19 20:05:25 +00:00
containers [ container . ID ] = & cr { container : container }
2013-11-15 06:52:08 +00:00
} else {
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "Cannot load container %s because it was created with another graph driver." , container . ID )
2013-11-15 06:52:08 +00:00
}
2013-10-05 02:25:15 +00:00
}
2015-07-30 21:01:53 +00:00
if entities := daemon . containerGraphDB . List ( "/" , - 1 ) ; entities != nil {
2013-10-24 23:49:28 +00:00
for _ , p := range entities . Paths ( ) {
2015-03-26 22:22:04 +00:00
if ! debug && logrus . GetLevel ( ) == logrus . InfoLevel {
2013-12-18 18:43:42 +00:00
fmt . Print ( "." )
}
2014-08-06 17:40:43 +00:00
2013-10-24 23:49:28 +00:00
e := entities [ p ]
2014-08-06 17:40:43 +00:00
2015-05-19 20:05:25 +00:00
if c , ok := containers [ e . ID ( ) ] ; ok {
c . registered = true
2013-10-24 23:49:28 +00:00
}
2013-10-05 02:25:15 +00:00
}
2013-10-24 23:49:28 +00:00
}
2013-10-24 17:25:07 +00:00
2015-05-19 20:05:25 +00:00
group := sync . WaitGroup { }
for _ , c := range containers {
group . Add ( 1 )
2014-08-06 17:40:43 +00:00
2015-05-19 20:05:25 +00:00
go func ( container * Container , registered bool ) {
defer group . Done ( )
2014-08-06 17:40:43 +00:00
2015-05-19 20:05:25 +00:00
if ! registered {
// Try to set the default name for a container if it exists prior to links
container . Name , err = daemon . generateNewName ( container . ID )
if err != nil {
logrus . Debugf ( "Setting default id - %s" , err )
}
}
2013-10-24 23:49:28 +00:00
2015-09-09 20:18:13 +00:00
if err := daemon . Register ( container ) ; err != nil {
2015-09-14 02:52:56 +00:00
logrus . Errorf ( "Failed to register container %s: %s" , container . ID , err )
// The container register failed should not be started.
return
2015-05-19 20:05:25 +00:00
}
2014-08-06 17:40:43 +00:00
2015-05-19 20:05:25 +00:00
// check the restart policy on the containers and restart any container with
// the restart policy of "always"
2015-07-30 21:01:53 +00:00
if daemon . configStore . AutoRestart && container . shouldRestart ( ) {
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "Starting container %s" , container . ID )
2014-08-06 17:40:43 +00:00
if err := container . Start ( ) ; err != nil {
2015-09-14 02:52:56 +00:00
logrus . Errorf ( "Failed to start container %s: %s" , container . ID , err )
2014-08-06 17:40:43 +00:00
}
}
2015-05-19 20:05:25 +00:00
} ( c . container , c . registered )
2014-06-06 00:31:58 +00:00
}
2015-05-19 20:05:25 +00:00
group . Wait ( )
2014-06-06 00:31:58 +00:00
2014-05-30 18:03:56 +00:00
if ! debug {
2015-03-26 22:22:04 +00:00
if logrus . GetLevel ( ) == logrus . InfoLevel {
2015-03-18 00:27:53 +00:00
fmt . Println ( )
}
2015-03-26 22:22:04 +00:00
logrus . Info ( "Loading containers: done." )
2013-08-16 13:31:50 +00:00
}
2013-10-05 02:25:15 +00:00
2013-01-19 00:13:39 +00:00
return nil
}
2015-07-20 17:57:15 +00:00
func ( daemon * Daemon ) mergeAndVerifyConfig ( config * runconfig . Config , img * image . Image ) error {
2014-10-28 21:06:23 +00:00
if img != nil && img . Config != nil {
2014-02-12 04:04:39 +00:00
if err := runconfig . Merge ( config , img . Config ) ; err != nil {
2015-05-24 13:17:29 +00:00
return err
2013-10-30 18:13:10 +00:00
}
}
2015-04-11 00:05:21 +00:00
if config . Entrypoint . Len ( ) == 0 && config . Cmd . Len ( ) == 0 {
2015-05-24 13:17:29 +00:00
return fmt . Errorf ( "No command specified" )
2013-09-07 00:33:05 +00:00
}
2015-05-24 13:17:29 +00:00
return nil
2014-04-07 19:20:23 +00:00
}
2013-09-07 00:33:05 +00:00
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) generateIDAndName ( name string ) ( string , string , error ) {
2014-04-07 19:20:23 +00:00
var (
err error
2015-07-29 00:19:17 +00:00
id = stringid . GenerateNonCryptoID ( )
2014-04-07 19:20:23 +00:00
)
2013-10-05 02:25:15 +00:00
2013-10-28 23:58:59 +00:00
if name == "" {
2014-05-24 00:51:16 +00:00
if name , err = daemon . generateNewName ( id ) ; err != nil {
return "" , "" , err
2013-12-12 21:34:26 +00:00
}
2014-05-24 00:51:16 +00: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 23:58:59 +00:00
}
2014-05-24 00:51:16 +00:00
2013-10-28 23:58:59 +00:00
if name [ 0 ] != '/' {
name = "/" + name
}
2014-05-24 00:51:16 +00:00
2015-07-30 21:01:53 +00:00
if _ , err := daemon . containerGraphDB . Set ( name , id ) ; err != nil {
2014-02-18 10:41:11 +00:00
if ! graphdb . IsNonUniqueNameError ( err ) {
2014-05-24 00:51:16 +00:00
return "" , err
2013-12-05 23:22:21 +00:00
}
2014-04-17 21:43:01 +00:00
conflictingContainer , err := daemon . GetByName ( name )
2013-12-05 23:22:21 +00:00
if err != nil {
if strings . Contains ( err . Error ( ) , "Could not find entity" ) {
2014-05-24 00:51:16 +00:00
return "" , err
2013-12-05 23:22:21 +00:00
}
// Remove name and continue starting the container
2015-07-30 21:01:53 +00:00
if err := daemon . containerGraphDB . Delete ( name ) ; err != nil {
2014-05-24 00:51:16 +00:00
return "" , err
2013-12-05 23:22:21 +00:00
}
} else {
2013-11-27 02:58:54 +00:00
nameAsKnownByUser := strings . TrimPrefix ( name , "/" )
2014-05-24 00:51:16 +00:00
return "" , fmt . Errorf (
2015-07-25 12:08:38 +00:00
"Conflict. The name %q is already in use by container %s. You have to remove (or rename) that container to be able to reuse that name." , nameAsKnownByUser ,
2015-03-24 11:25:26 +00:00
stringid . TruncateID ( conflictingContainer . ID ) )
2013-10-30 18:24:50 +00:00
}
2013-10-05 02:25:15 +00:00
}
2014-05-24 00:51:16 +00:00
return name , nil
}
func ( daemon * Daemon ) generateNewName ( id string ) ( string , error ) {
var name string
2014-05-30 19:08:21 +00:00
for i := 0 ; i < 6 ; i ++ {
2014-05-24 00:51:16 +00:00
name = namesgenerator . GetRandomName ( i )
if name [ 0 ] != '/' {
name = "/" + name
}
2015-07-30 21:01:53 +00:00
if _ , err := daemon . containerGraphDB . Set ( name , id ) ; err != nil {
2014-05-24 00:51:16 +00:00
if ! graphdb . IsNonUniqueNameError ( err ) {
return "" , err
}
continue
}
return name , nil
}
2015-03-24 11:25:26 +00:00
name = "/" + stringid . TruncateID ( id )
2015-07-30 21:01:53 +00:00
if _ , err := daemon . containerGraphDB . Set ( name , id ) ; err != nil {
2014-05-24 00:51:16 +00:00
return "" , err
}
return name , nil
2014-04-07 19:20:23 +00:00
}
2013-10-05 02:25:15 +00:00
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) generateHostname ( id string , config * runconfig . Config ) {
2013-09-07 00:33:05 +00: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 19:20:23 +00:00
}
2013-09-07 00:33:05 +00:00
2015-08-28 15:29:10 +00:00
func ( daemon * Daemon ) getEntrypointAndArgs ( configEntrypoint * stringutils . StrSlice , configCmd * stringutils . StrSlice ) ( string , [ ] string ) {
2014-04-07 19:20:23 +00:00
var (
entrypoint string
args [ ] string
)
2015-04-11 00:05:21 +00:00
cmdSlice := configCmd . Slice ( )
if configEntrypoint . Len ( ) != 0 {
eSlice := configEntrypoint . Slice ( )
entrypoint = eSlice [ 0 ]
args = append ( eSlice [ 1 : ] , cmdSlice ... )
2013-09-07 00:33:05 +00:00
} else {
2015-04-11 00:05:21 +00:00
entrypoint = cmdSlice [ 0 ]
args = cmdSlice [ 1 : ]
2013-09-07 00:33:05 +00:00
}
2014-04-07 19:20:23 +00:00
return entrypoint , args
}
2014-10-28 21:06:23 +00:00
func ( daemon * Daemon ) newContainer ( name string , config * runconfig . Config , imgID string ) ( * Container , error ) {
2014-09-30 19:10:03 +00:00
var (
id string
err error
2014-04-07 19:20:23 +00:00
)
2015-07-30 21:01:53 +00:00
id , name , err = daemon . generateIDAndName ( name )
2014-04-07 19:20:23 +00:00
if err != nil {
return nil , err
}
2014-04-17 21:43:01 +00:00
daemon . generateHostname ( id , config )
2014-09-09 04:19:32 +00:00
entrypoint , args := daemon . getEntrypointAndArgs ( config . Entrypoint , config . Cmd )
2013-09-07 00:33:05 +00:00
2015-06-03 16:26:41 +00:00
base := daemon . newBaseContainer ( id )
base . Created = time . Now ( ) . UTC ( )
base . Path = entrypoint
base . Args = args //FIXME: de-duplicate from config
base . Config = config
base . hostConfig = & runconfig . HostConfig { }
base . ImageID = imgID
base . NetworkSettings = & network . Settings { }
base . Name = name
base . Driver = daemon . driver . String ( )
base . ExecDriver = daemon . execDriver . Name ( )
2015-07-16 21:14:58 +00:00
return & base , err
2014-04-07 19:20:23 +00:00
}
2015-07-30 21:01:53 +00:00
// GetFullContainerName returns a constructed container name. I think
2015-09-07 06:43:17 +00:00
// it has to do with the fact that a container is a file on disk and
2015-07-30 21:01:53 +00:00
// this is sort of just creating a file name.
2014-03-08 02:42:29 +00:00
func GetFullContainerName ( name string ) ( string , error ) {
2013-11-04 17:28:40 +00:00
if name == "" {
return "" , fmt . Errorf ( "Container name cannot be empty" )
}
2013-10-24 23:49:28 +00:00
if name [ 0 ] != '/' {
name = "/" + name
}
2013-11-04 17:28:40 +00:00
return name , nil
2013-10-24 23:49:28 +00:00
}
2015-07-30 21:01:53 +00:00
// GetByName returns a container given a name.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) GetByName ( name string ) ( * Container , error ) {
2014-03-08 02:42:29 +00:00
fullName , err := GetFullContainerName ( name )
2013-11-04 17:28:40 +00:00
if err != nil {
return nil , err
}
2015-07-30 21:01:53 +00:00
entity := daemon . containerGraphDB . Get ( fullName )
2013-10-05 02:25:15 +00:00
if entity == nil {
return nil , fmt . Errorf ( "Could not find entity for %s" , name )
}
2014-05-30 08:55:25 +00:00
e := daemon . containers . Get ( entity . ID ( ) )
2013-10-05 02:25:15 +00:00
if e == nil {
return nil , fmt . Errorf ( "Could not find container for entity id %s" , entity . ID ( ) )
}
2014-05-30 08:55:25 +00:00
return e , nil
2013-10-05 02:25:15 +00:00
}
2015-07-30 21:01:53 +00:00
// children returns all child containers of the container with the
// given name. The containers are returned as a map from the container
// name to a pointer to Container.
func ( daemon * Daemon ) children ( name string ) ( map [ string ] * Container , error ) {
2014-03-08 02:42:29 +00:00
name , err := GetFullContainerName ( name )
2013-11-04 17:28:40 +00:00
if err != nil {
return nil , err
}
2013-10-05 02:25:15 +00:00
children := make ( map [ string ] * Container )
2015-07-30 21:01:53 +00:00
err = daemon . containerGraphDB . Walk ( name , func ( p string , e * graphdb . Entity ) error {
2014-12-16 23:06:35 +00:00
c , err := daemon . Get ( e . ID ( ) )
if err != nil {
return err
2013-10-05 02:25:15 +00:00
}
children [ p ] = c
return nil
} , 0 )
if err != nil {
return nil , err
}
return children , nil
}
2015-07-30 21:01:53 +00:00
// parents returns the names of the parent containers of the container
// with the given name.
func ( daemon * Daemon ) parents ( name string ) ( [ ] string , error ) {
2014-07-14 23:19:37 +00:00
name , err := GetFullContainerName ( name )
if err != nil {
return nil , err
}
2015-07-30 21:01:53 +00:00
return daemon . containerGraphDB . Parents ( name )
2014-07-14 23:19:37 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) registerLink ( parent , child * Container , alias string ) error {
2015-05-15 23:34:26 +00:00
fullName := filepath . Join ( parent . Name , alias )
2015-07-30 21:01:53 +00:00
if ! daemon . containerGraphDB . Exists ( fullName ) {
_ , err := daemon . containerGraphDB . Set ( fullName , child . ID )
2013-10-05 02:25:15 +00:00
return err
}
2013-10-28 23:58:59 +00:00
return nil
2013-10-05 02:25:15 +00:00
}
2015-07-30 21:01:53 +00:00
// NewDaemon sets up everything for the daemon to be able to service
// requests from the webserver.
2015-04-27 21:11:29 +00:00
func NewDaemon ( config * Config , registryService * registry . Service ) ( daemon * Daemon , err error ) {
2015-06-15 23:33:02 +00:00
setDefaultMtu ( config )
2015-05-15 23:34:26 +00:00
// Ensure we have compatible configuration options
if err := checkConfigOptions ( config ) ; err != nil {
return nil , err
2014-09-17 03:00:15 +00:00
}
2015-05-15 23:34:26 +00:00
// Do we have a disabled network?
2015-06-30 17:34:15 +00:00
config . DisableBridge = isBridgeNetworkDisabled ( config )
2014-08-10 01:18:32 +00:00
2015-07-11 19:32:08 +00:00
// Verify the platform is supported as a daemon
2015-08-07 16:33:29 +00:00
if ! platformSupported {
2015-07-30 21:01:53 +00:00
return nil , errSystemNotSupported
2015-07-11 19:32:08 +00:00
}
// Validate platform-specific requirements
2015-05-15 23:34:26 +00:00
if err := checkSystem ( ) ; err != nil {
2014-09-16 17:42:59 +00:00
return nil , err
2014-07-30 06:51:43 +00:00
}
2015-07-07 01:58:53 +00:00
// set up SIGUSR1 handler on Unix-like systems, or a Win32 global event
// on Windows to dump Go routine stacks
setupDumpStackTrap ( )
2015-04-21 04:24:24 +00:00
2014-07-30 06:51:03 +00: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 21:17:23 +00:00
realRoot , err = fileutils . ReadSymlinkedDirectory ( config . Root )
2014-07-30 06:51:03 +00:00
if err != nil {
2014-09-16 17:42:59 +00:00
return nil , fmt . Errorf ( "Unable to get the full path to root (%s): %s" , config . Root , err )
2014-07-30 06:51:03 +00:00
}
}
config . Root = realRoot
2014-05-10 01:05:54 +00:00
// Create the root directory if it doesn't exists
Simplify and fix os.MkdirAll() usage
TL;DR: check for IsExist(err) after a failed MkdirAll() is both
redundant and wrong -- so two reasons to remove it.
Quoting MkdirAll documentation:
> MkdirAll creates a directory named path, along with any necessary
> parents, and returns nil, or else returns an error. If path
> is already a directory, MkdirAll does nothing and returns nil.
This means two things:
1. If a directory to be created already exists, no error is returned.
2. If the error returned is IsExist (EEXIST), it means there exists
a non-directory with the same name as MkdirAll need to use for
directory. Example: we want to MkdirAll("a/b"), but file "a"
(or "a/b") already exists, so MkdirAll fails.
The above is a theory, based on quoted documentation and my UNIX
knowledge.
3. In practice, though, current MkdirAll implementation [1] returns
ENOTDIR in most of cases described in #2, with the exception when
there is a race between MkdirAll and someone else creating the
last component of MkdirAll argument as a file. In this very case
MkdirAll() will indeed return EEXIST.
Because of #1, IsExist check after MkdirAll is not needed.
Because of #2 and #3, ignoring IsExist error is just plain wrong,
as directory we require is not created. It's cleaner to report
the error now.
Note this error is all over the tree, I guess due to copy-paste,
or trying to follow the same usage pattern as for Mkdir(),
or some not quite correct examples on the Internet.
[v2: a separate aufs commit is merged into this one]
[1] https://github.com/golang/go/blob/f9ed2f75/src/os/path.go
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2015-07-29 23:49:05 +00:00
if err := system . MkdirAll ( config . Root , 0700 ) ; err != nil {
2014-05-10 01:05:54 +00:00
return nil , err
}
2015-06-23 12:53:18 +00:00
// set up the tmpDir to use a canonical path
tmp , err := tempDir ( config . Root )
if err != nil {
return nil , fmt . Errorf ( "Unable to get the TempDir under %s: %s" , config . Root , err )
}
realTmp , err := fileutils . ReadSymlinkedDirectory ( tmp )
if err != nil {
return nil , fmt . Errorf ( "Unable to get the full path to the TempDir (%s): %s" , tmp , err )
}
os . Setenv ( "TMPDIR" , realTmp )
2013-11-15 07:02:09 +00:00
// Set the default driver
graphdriver . DefaultDriver = config . GraphDriver
2013-11-07 20:34:01 +00:00
// Load storage driver
2014-06-05 08:34:20 +00:00
driver , err := graphdriver . New ( config . Root , config . GraphOptions )
2013-11-07 20:34:01 +00:00
if err != nil {
2015-04-27 20:33:30 +00:00
return nil , fmt . Errorf ( "error initializing graphdriver: %v" , err )
2013-11-07 20:34:01 +00:00
}
2015-03-26 22:22:04 +00:00
logrus . Debugf ( "Using graph driver %s" , driver )
2015-04-27 21:11:29 +00:00
d := & Daemon { }
d . driver = driver
2015-05-15 23:34:26 +00:00
// Ensure the graph driver is shutdown at a later point
2015-04-27 21:11:29 +00:00
defer func ( ) {
if err != nil {
if err := d . Shutdown ( ) ; err != nil {
logrus . Error ( err )
}
2015-03-11 14:33:06 +00:00
}
2015-04-27 21:11:29 +00:00
} ( )
2013-11-07 20:34:01 +00:00
2015-04-09 04:23:30 +00:00
// Verify logging driver type
if config . LogConfig . Type != "none" {
if _ , err := logger . GetLogDriver ( config . LogConfig . Type ) ; err != nil {
return nil , fmt . Errorf ( "error finding the logging driver: %v" , err )
}
}
logrus . Debugf ( "Using default logging driver %s" , config . LogConfig . Type )
2015-05-15 23:34:26 +00:00
// Configure and validate the kernels security support
if err := configureKernelSecuritySupport ( config , d . driver . String ( ) ) ; err != nil {
return nil , err
2014-06-04 20:38:06 +00:00
}
2015-05-15 23:34:26 +00:00
daemonRepo := filepath . Join ( config . Root , "containers" )
2013-03-14 01:48:50 +00:00
Simplify and fix os.MkdirAll() usage
TL;DR: check for IsExist(err) after a failed MkdirAll() is both
redundant and wrong -- so two reasons to remove it.
Quoting MkdirAll documentation:
> MkdirAll creates a directory named path, along with any necessary
> parents, and returns nil, or else returns an error. If path
> is already a directory, MkdirAll does nothing and returns nil.
This means two things:
1. If a directory to be created already exists, no error is returned.
2. If the error returned is IsExist (EEXIST), it means there exists
a non-directory with the same name as MkdirAll need to use for
directory. Example: we want to MkdirAll("a/b"), but file "a"
(or "a/b") already exists, so MkdirAll fails.
The above is a theory, based on quoted documentation and my UNIX
knowledge.
3. In practice, though, current MkdirAll implementation [1] returns
ENOTDIR in most of cases described in #2, with the exception when
there is a race between MkdirAll and someone else creating the
last component of MkdirAll argument as a file. In this very case
MkdirAll() will indeed return EEXIST.
Because of #1, IsExist check after MkdirAll is not needed.
Because of #2 and #3, ignoring IsExist error is just plain wrong,
as directory we require is not created. It's cleaner to report
the error now.
Note this error is all over the tree, I guess due to copy-paste,
or trying to follow the same usage pattern as for Mkdir(),
or some not quite correct examples on the Internet.
[v2: a separate aufs commit is merged into this one]
[1] https://github.com/golang/go/blob/f9ed2f75/src/os/path.go
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2015-07-29 23:49:05 +00:00
if err := system . MkdirAll ( daemonRepo , 0700 ) ; err != nil {
2013-03-14 01:48:50 +00:00
return nil , err
}
2014-03-14 18:23:54 +00:00
// Migrate the container if it is aufs and aufs is enabled
2015-05-15 23:34:26 +00:00
if err := migrateIfDownlevel ( d . driver , config . Root ) ; err != nil {
2014-03-14 18:23:54 +00:00
return nil , err
2013-11-16 01:16:30 +00:00
}
2015-03-26 22:22:04 +00:00
logrus . Debug ( "Creating images graph" )
2015-05-15 23:34:26 +00:00
g , err := graph . NewGraph ( filepath . Join ( config . Root , "graph" ) , d . driver )
2013-02-27 01:45:46 +00:00
if err != nil {
return nil , err
}
2013-11-15 10:30:28 +00:00
2015-05-15 23:34:26 +00:00
// Configure the volumes driver
2015-06-12 13:25:32 +00:00
volStore , err := configureVolumes ( config )
if err != nil {
2013-04-06 01:00:10 +00:00
return nil , err
}
2014-08-28 14:18:08 +00:00
2015-01-07 22:59:12 +00:00
trustKey , err := api . LoadOrCreateTrustKey ( config . TrustKeyPath )
if err != nil {
return nil , err
}
2015-05-15 23:34:26 +00:00
trustDir := filepath . Join ( config . Root , "trust" )
Simplify and fix os.MkdirAll() usage
TL;DR: check for IsExist(err) after a failed MkdirAll() is both
redundant and wrong -- so two reasons to remove it.
Quoting MkdirAll documentation:
> MkdirAll creates a directory named path, along with any necessary
> parents, and returns nil, or else returns an error. If path
> is already a directory, MkdirAll does nothing and returns nil.
This means two things:
1. If a directory to be created already exists, no error is returned.
2. If the error returned is IsExist (EEXIST), it means there exists
a non-directory with the same name as MkdirAll need to use for
directory. Example: we want to MkdirAll("a/b"), but file "a"
(or "a/b") already exists, so MkdirAll fails.
The above is a theory, based on quoted documentation and my UNIX
knowledge.
3. In practice, though, current MkdirAll implementation [1] returns
ENOTDIR in most of cases described in #2, with the exception when
there is a race between MkdirAll and someone else creating the
last component of MkdirAll argument as a file. In this very case
MkdirAll() will indeed return EEXIST.
Because of #1, IsExist check after MkdirAll is not needed.
Because of #2 and #3, ignoring IsExist error is just plain wrong,
as directory we require is not created. It's cleaner to report
the error now.
Note this error is all over the tree, I guess due to copy-paste,
or trying to follow the same usage pattern as for Mkdir(),
or some not quite correct examples on the Internet.
[v2: a separate aufs commit is merged into this one]
[1] https://github.com/golang/go/blob/f9ed2f75/src/os/path.go
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2015-07-29 23:49:05 +00:00
if err := system . MkdirAll ( trustDir , 0700 ) ; err != nil {
2014-10-02 01:26:06 +00:00
return nil , err
}
2015-08-27 07:33:21 +00:00
trustService , err := trust . NewStore ( trustDir )
2014-10-02 01:26:06 +00:00
if err != nil {
return nil , fmt . Errorf ( "could not create trust store: %s" , err )
}
2015-04-20 19:48:33 +00:00
eventsService := events . New ( )
logrus . Debug ( "Creating repository list" )
tagCfg := & graph . TagStoreConfig {
Graph : g ,
Key : trustKey ,
Registry : registryService ,
Events : eventsService ,
Trust : trustService ,
}
2015-05-15 23:34:26 +00:00
repositories , err := graph . NewTagStore ( filepath . Join ( config . Root , "repositories-" + d . driver . String ( ) ) , tagCfg )
2015-04-20 19:48:33 +00:00
if err != nil {
2015-07-22 12:02:32 +00:00
return nil , fmt . Errorf ( "Couldn't create Tag store repositories-%s: %s" , d . driver . String ( ) , err )
2015-04-20 19:48:33 +00:00
}
2015-07-25 00:49:43 +00:00
if restorer , ok := d . driver . ( graphdriver . ImageRestorer ) ; ok {
if _ , err := restorer . RestoreCustomImages ( repositories , g ) ; err != nil {
return nil , fmt . Errorf ( "Couldn't restore custom images: %s" , err )
}
}
2015-06-30 17:34:15 +00:00
d . netController , err = initNetworkController ( config )
if err != nil {
return nil , fmt . Errorf ( "Error initializing network controller: %v" , err )
2013-04-04 12:33:28 +00:00
}
2013-10-05 02:25:15 +00:00
2015-05-15 23:34:26 +00:00
graphdbPath := filepath . Join ( config . Root , "linkgraph.db" )
2013-12-19 05:14:16 +00:00
graph , err := graphdb . NewSqliteConn ( graphdbPath )
2013-02-25 22:06:22 +00:00
if err != nil {
return nil , err
}
2015-04-27 21:11:29 +00:00
2015-07-30 21:01:53 +00:00
d . containerGraphDB = graph
2013-10-05 02:25:15 +00:00
2015-07-08 21:12:49 +00:00
var sysInitPath string
if config . ExecDriver == "lxc" {
initPath , err := configureSysInit ( config )
if err != nil {
return nil , err
}
sysInitPath = initPath
2013-11-25 22:42:22 +00:00
}
2014-03-05 09:40:55 +00:00
sysInfo := sysinfo . New ( false )
2015-06-19 22:29:47 +00:00
// Check if Devices cgroup is mounted, it is hard requirement for container security,
// on Linux/FreeBSD.
if runtime . GOOS != "windows" && ! sysInfo . CgroupDevicesEnabled {
2015-06-17 02:36:20 +00:00
return nil , fmt . Errorf ( "Devices cgroup isn't mounted" )
}
2015-05-15 02:59:11 +00:00
ed , err := execdrivers . NewDriver ( config . ExecDriver , config . ExecOptions , config . ExecRoot , config . Root , sysInitPath , sysInfo )
2014-01-10 00:03:22 +00:00
if err != nil {
return nil , err
}
2015-04-27 21:11:29 +00:00
d . ID = trustKey . PublicKey ( ) . KeyID ( )
d . repository = daemonRepo
d . containers = & contStore { s : make ( map [ string ] * Container ) }
d . execCommands = newExecStore ( )
d . graph = g
d . repositories = repositories
d . idIndex = truncindex . NewTruncIndex ( [ ] string { } )
2015-07-30 21:01:53 +00:00
d . configStore = config
2015-04-27 21:11:29 +00:00
d . sysInitPath = sysInitPath
d . execDriver = ed
d . statsCollector = newStatsCollector ( 1 * time . Second )
d . defaultLogConfig = config . LogConfig
d . RegistryService = registryService
d . EventsService = eventsService
2015-06-12 13:25:32 +00:00
d . volumes = volStore
2015-05-19 20:05:25 +00:00
d . root = config . Root
2015-07-08 18:13:47 +00:00
go d . execCommandGC ( )
2015-04-27 21:11:29 +00:00
if err := d . restore ( ) ; err != nil {
2015-03-06 20:44:31 +00:00
return nil , err
}
2015-05-06 22:39:29 +00:00
return d , nil
}
2015-07-30 21:01:53 +00:00
// Shutdown stops the daemon.
2015-04-27 21:11:29 +00:00
func ( daemon * Daemon ) Shutdown ( ) error {
2015-08-05 21:09:08 +00:00
daemon . shutdown = true
2015-04-27 21:11:29 +00:00
if daemon . containers != nil {
group := sync . WaitGroup { }
logrus . Debug ( "starting clean shutdown of all containers..." )
for _ , container := range daemon . List ( ) {
c := container
if c . IsRunning ( ) {
logrus . Debugf ( "stopping %s" , c . ID )
group . Add ( 1 )
go func ( ) {
defer group . Done ( )
2015-08-25 01:42:58 +00:00
// TODO(windows): Handle docker restart with paused containers
2015-07-30 21:01:53 +00:00
if c . isPaused ( ) {
2015-08-25 01:42:58 +00:00
// To terminate a process in freezer cgroup, we should send
// SIGTERM to this process then unfreeze it, and the process will
// force to terminate immediately.
logrus . Debugf ( "Found container %s is paused, sending SIGTERM before unpause it" , c . ID )
sig , ok := signal . SignalMap [ "TERM" ]
if ! ok {
logrus . Warnf ( "System does not support SIGTERM" )
return
}
2015-07-30 21:01:53 +00:00
if err := daemon . kill ( c , int ( sig ) ) ; err != nil {
2015-08-25 01:42:58 +00:00
logrus . Debugf ( "sending SIGTERM to container %s with error: %v" , c . ID , err )
return
}
2015-07-30 21:01:53 +00:00
if err := c . unpause ( ) ; err != nil {
2015-08-25 01:42:58 +00:00
logrus . Debugf ( "Failed to unpause container %s with error: %v" , c . ID , err )
return
}
if _ , err := c . WaitStop ( 10 * time . Second ) ; err != nil {
logrus . Debugf ( "container %s failed to exit in 10 second of SIGTERM, sending SIGKILL to force" , c . ID )
sig , ok := signal . SignalMap [ "KILL" ]
if ! ok {
logrus . Warnf ( "System does not support SIGKILL" )
return
}
2015-07-30 21:01:53 +00:00
daemon . kill ( c , int ( sig ) )
2015-08-25 01:42:58 +00:00
}
} else {
// If container failed to exit in 10 seconds of SIGTERM, then using the force
if err := c . Stop ( 10 ) ; err != nil {
logrus . Errorf ( "Stop container %s with error: %v" , c . ID , err )
}
2015-04-27 21:11:29 +00:00
}
c . WaitStop ( - 1 * time . Second )
logrus . Debugf ( "container stopped %s" , c . ID )
} ( )
}
}
group . Wait ( )
2015-06-05 22:02:56 +00:00
2015-09-14 18:04:12 +00:00
// trigger libnetwork Stop only if it's initialized
2015-06-05 22:02:56 +00:00
if daemon . netController != nil {
2015-09-14 18:04:12 +00:00
daemon . netController . Stop ( )
2015-06-05 22:02:56 +00:00
}
2015-04-27 21:11:29 +00:00
}
2014-03-25 23:21:07 +00:00
2015-07-30 21:01:53 +00:00
if daemon . containerGraphDB != nil {
if err := daemon . containerGraphDB . Close ( ) ; err != nil {
2015-06-10 23:07:53 +00:00
logrus . Errorf ( "Error during container graph.Close(): %v" , err )
}
}
if daemon . driver != nil {
if err := daemon . driver . Cleanup ( ) ; err != nil {
logrus . Errorf ( "Error during graph storage driver.Cleanup(): %v" , err )
}
}
2014-03-25 23:21:07 +00:00
return nil
}
2015-07-30 21:01:53 +00:00
// Mount sets container.basefs
// (is it not set coming in? why is it unset?)
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) Mount ( container * Container ) error {
2015-07-30 21:01:53 +00:00
dir , err := daemon . driver . Get ( container . ID , container . getMountLabel ( ) )
2013-11-01 01:07:54 +00:00
if err != nil {
2014-04-17 21:43:01 +00:00
return fmt . Errorf ( "Error getting container %s from driver %s: %s" , container . ID , daemon . driver , err )
2013-11-07 20:34:01 +00:00
}
2015-05-15 23:34:26 +00:00
if container . basefs != dir {
// The mount path reported by the graph driver should always be trusted on Windows, since the
// volume path for a given mounted layer may change over time. This should only be an error
// on non-Windows operating systems.
if container . basefs != "" && runtime . GOOS != "windows" {
daemon . driver . Put ( container . ID )
return fmt . Errorf ( "Error: driver %s is returning inconsistent paths for container %s ('%s' then '%s')" ,
daemon . driver , container . ID , container . basefs , dir )
}
2013-11-01 01:07:54 +00:00
}
2015-05-15 23:34:26 +00:00
container . basefs = dir
2013-11-07 20:34:01 +00:00
return nil
2013-11-01 01:07:54 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) unmount ( container * Container ) error {
2014-04-17 21:43:01 +00:00
daemon . driver . Put ( container . ID )
2013-11-07 20:34:01 +00:00
return nil
2013-11-01 01:07:54 +00:00
}
2015-09-11 19:05:57 +00:00
func ( daemon * Daemon ) run ( c * Container , pipes * execdriver . Pipes , startCallback execdriver . DriverCallback ) ( execdriver . ExitStatus , error ) {
hooks := execdriver . Hooks {
Start : startCallback ,
}
hooks . PreStart = append ( hooks . PreStart , func ( processConfig * execdriver . ProcessConfig , pid int ) error {
return c . setNetworkNamespaceKey ( pid )
} )
return daemon . execDriver . Run ( c . command , pipes , hooks )
2014-01-10 22:26:29 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) kill ( c * Container , sig int ) error {
2014-04-17 21:43:01 +00:00
return daemon . execDriver . Kill ( c . command , sig )
2014-01-10 22:26:29 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) stats ( c * Container ) ( * execdriver . ResourceStats , error ) {
2015-01-07 22:43:04 +00:00
return daemon . execDriver . Stats ( c . ID )
}
2015-09-08 14:12:46 +00:00
func ( daemon * Daemon ) subscribeToContainerStats ( c * Container ) ( chan interface { } , error ) {
2015-01-07 22:43:04 +00:00
ch := daemon . statsCollector . collect ( c )
return ch , nil
}
2015-09-08 14:12:46 +00:00
func ( daemon * Daemon ) unsubscribeToContainerStats ( c * Container , ch chan interface { } ) error {
2015-01-08 02:02:08 +00:00
daemon . statsCollector . unsubscribe ( c , ch )
return nil
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) changes ( container * Container ) ( [ ] archive . Change , error ) {
2015-07-25 00:49:43 +00:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
return daemon . driver . Changes ( container . ID , initID )
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) diff ( container * Container ) ( archive . Archive , error ) {
2015-07-25 00:49:43 +00:00
initID := fmt . Sprintf ( "%s-init" , container . ID )
return daemon . driver . Diff ( container . ID , initID )
}
func ( daemon * Daemon ) createRootfs ( container * Container ) error {
// Step 1: create the container directory.
// This doubles as a barrier to avoid race conditions.
if err := os . Mkdir ( container . root , 0700 ) ; err != nil {
return err
}
initID := fmt . Sprintf ( "%s-init" , container . ID )
if err := daemon . driver . Create ( initID , container . ImageID ) ; err != nil {
return err
}
initPath , err := daemon . driver . Get ( initID , "" )
if err != nil {
return err
}
if err := setupInitLayer ( initPath ) ; err != nil {
daemon . driver . Put ( initID )
return err
}
// We want to unmount init layer before we take snapshot of it
// for the actual container.
daemon . driver . Put ( initID )
if err := daemon . driver . Create ( container . ID , initID ) ; err != nil {
return err
}
return nil
}
2015-07-30 21:01:53 +00:00
// Graph needs to be removed.
//
2013-11-14 06:08:08 +00:00
// FIXME: this is a convenience function for integration tests
2014-04-17 21:43:01 +00:00
// which need direct access to daemon.graph.
2013-11-14 06:08:08 +00:00
// Once the tests switch to using engine and jobs, this method
// can go away.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) Graph ( ) * graph . Graph {
return daemon . graph
2013-11-14 06:08:08 +00:00
}
2015-07-30 21:01:53 +00:00
// Repositories returns all repositories.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) Repositories ( ) * graph . TagStore {
return daemon . repositories
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) config ( ) * Config {
return daemon . configStore
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) systemInitPath ( ) string {
2014-04-17 21:43:01 +00:00
return daemon . sysInitPath
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
// GraphDriver returns the currently used driver for processing
// container layers.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) GraphDriver ( ) graphdriver . Driver {
return daemon . driver
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
// ExecutionDriver returns the currently used driver for creating and
// starting execs in a container.
2014-04-17 21:43:01 +00:00
func ( daemon * Daemon ) ExecutionDriver ( ) execdriver . Driver {
return daemon . execDriver
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
func ( daemon * Daemon ) containerGraph ( ) * graphdb . Database {
return daemon . containerGraphDB
2014-03-08 02:42:29 +00:00
}
2015-07-30 21:01:53 +00:00
// ImageGetCached returns the earliest created image that is a child
// of the image with imgID, that had the same config when it was
// created. nil is returned if a child cannot be found. An error is
// returned if the parent image cannot be found.
2015-07-20 17:57:15 +00:00
func ( daemon * Daemon ) ImageGetCached ( imgID string , config * runconfig . Config ) ( * image . Image , error ) {
2014-07-29 05:22:58 +00:00
// Retrieve all images
2015-06-19 15:01:39 +00:00
images := daemon . Graph ( ) . Map ( )
2014-07-29 05:22:58 +00:00
// 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
2015-07-20 17:57:15 +00:00
var match * image . Image
2014-07-29 05:22:58 +00:00
for elem := range imageMap [ imgID ] {
2014-11-11 20:15:00 +00:00
img , ok := images [ elem ]
if ! ok {
return nil , fmt . Errorf ( "unable to find image %q" , elem )
2014-07-29 05:22:58 +00:00
}
if runconfig . Compare ( & img . ContainerConfig , config ) {
if match == nil || match . Created . Before ( img . Created ) {
match = img
}
}
}
return match , nil
}
2014-07-30 06:51:43 +00:00
2015-03-29 18:51:17 +00: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" )
}
2015-05-15 23:34:26 +00:00
return tmpDir , system . MkdirAll ( tmpDir , 0700 )
2015-04-16 06:31:52 +00:00
}
2015-04-23 02:23:02 +00:00
func ( daemon * Daemon ) setHostConfig ( container * Container , hostConfig * runconfig . HostConfig ) error {
2015-05-27 19:29:49 +00:00
container . Lock ( )
if err := parseSecurityOpt ( container , hostConfig ) ; err != nil {
container . Unlock ( )
2015-05-19 20:05:25 +00:00
return err
}
2015-05-27 19:29:49 +00:00
container . Unlock ( )
2015-05-19 20:05:25 +00:00
2015-05-27 19:29:49 +00:00
// Do not lock while creating volumes since this could be calling out to external plugins
// Don't want to block other actions, like `docker ps` because we're waiting on an external plugin
if err := daemon . registerMountPoints ( container , hostConfig ) ; err != nil {
2015-04-23 02:23:02 +00:00
return err
}
2015-05-27 19:29:49 +00:00
container . Lock ( )
defer container . Unlock ( )
2015-04-23 02:23:02 +00:00
// Register any links from the host config before starting the container
2015-07-30 21:01:53 +00:00
if err := daemon . registerLinks ( container , hostConfig ) ; err != nil {
2015-04-23 02:23:02 +00:00
return err
}
container . hostConfig = hostConfig
container . toDisk ( )
return nil
}
2015-06-03 16:26:41 +00:00
2015-06-15 23:33:02 +00:00
func setDefaultMtu ( config * Config ) {
// do nothing if the config does not have the default 0 value.
if config . Mtu != 0 {
return
}
config . Mtu = defaultNetworkMtu
if routeMtu , err := getDefaultRouteMtu ( ) ; err == nil {
config . Mtu = routeMtu
}
}
var errNoDefaultRoute = errors . New ( "no default route was found" )
// getDefaultRouteMtu returns the MTU for the default route's interface.
func getDefaultRouteMtu ( ) ( int , error ) {
routes , err := netlink . NetworkGetRoutes ( )
if err != nil {
return 0 , err
}
for _ , r := range routes {
2015-08-17 13:35:57 +00:00
if r . Default && r . Iface != nil {
2015-06-15 23:33:02 +00:00
return r . Iface . MTU , nil
}
}
return 0 , errNoDefaultRoute
}
2015-07-30 22:28:11 +00:00
// verifyContainerSettings performs validation of the hostconfig and config
// structures.
func ( daemon * Daemon ) verifyContainerSettings ( hostConfig * runconfig . HostConfig , config * runconfig . Config ) ( [ ] string , error ) {
// First perform verification of settings common across all platforms.
if config != nil {
2015-09-02 01:50:41 +00:00
if config . WorkingDir != "" {
config . WorkingDir = filepath . FromSlash ( config . WorkingDir ) // Ensure in platform semantics
if ! system . IsAbs ( config . WorkingDir ) {
return nil , fmt . Errorf ( "The working directory '%s' is invalid. It needs to be an absolute path." , config . WorkingDir )
}
2015-07-30 22:28:11 +00:00
}
2015-08-18 17:30:44 +00:00
if len ( config . StopSignal ) > 0 {
_ , err := signal . ParseSignal ( config . StopSignal )
if err != nil {
return nil , err
}
}
2015-07-30 22:28:11 +00:00
}
if hostConfig == nil {
return nil , nil
}
for port := range hostConfig . PortBindings {
_ , portStr := nat . SplitProtoPort ( string ( port ) )
if _ , err := nat . ParsePort ( portStr ) ; err != nil {
return nil , fmt . Errorf ( "Invalid port specification: %q" , portStr )
}
for _ , pb := range hostConfig . PortBindings [ port ] {
_ , err := nat . NewPort ( nat . SplitProtoPort ( pb . HostPort ) )
if err != nil {
return nil , fmt . Errorf ( "Invalid port specification: %q" , pb . HostPort )
}
}
}
// Now do platform-specific verification
return verifyPlatformContainerSettings ( daemon , hostConfig , config )
}
2015-09-16 21:18:24 +00:00
func configureVolumes ( config * Config ) ( * volumeStore , error ) {
volumesDriver , err := local . New ( config . Root )
if err != nil {
return nil , err
}
volumedrivers . Register ( volumesDriver , volumesDriver . Name ( ) )
return newVolumeStore ( volumesDriver . List ( ) ) , nil
}