2013-01-18 19:13:39 -05:00
package docker
import (
2013-10-22 19:23:52 -04:00
_ "code.google.com/p/gosqlite/sqlite3"
2013-01-18 19:13:39 -05:00
"container/list"
2013-10-22 19:23:52 -04:00
"database/sql"
2013-01-18 19:13:39 -05:00
"fmt"
2013-10-04 22:25:15 -04:00
"github.com/dotcloud/docker/gograph"
2013-05-14 18:37:35 -04:00
"github.com/dotcloud/docker/utils"
2013-03-21 03:25:00 -04:00
"io"
2013-01-18 19:13:39 -05:00
"io/ioutil"
2013-04-18 23:47:24 -04:00
"log"
2013-01-18 19:13:39 -05:00
"os"
2013-03-31 20:40:39 -04:00
"os/exec"
2013-01-18 19:13:39 -05:00
"path"
2013-01-29 15:15:39 -05:00
"sort"
2013-03-31 20:40:39 -04:00
"strings"
2013-09-07 20:03:40 -04:00
"time"
2013-01-18 19:13:39 -05:00
)
2013-09-06 20:33:05 -04:00
var defaultDns = [ ] string { "8.8.8.8" , "8.8.4.4" }
2013-04-18 23:55:41 -04:00
type Capabilities struct {
2013-08-19 08:34:30 -04:00
MemoryLimit bool
SwapLimit bool
IPv4ForwardingDisabled bool
2013-10-31 17:58:43 -04:00
AppArmor bool
2013-04-18 23:55:41 -04:00
}
2013-03-21 03:41:15 -04:00
type Runtime struct {
2013-02-28 14:52:07 -05:00
repository string
containers * list . List
networkManager * NetworkManager
2013-03-21 20:47:23 -04:00
graph * Graph
repositories * TagStore
2013-05-14 18:37:35 -04:00
idIndex * utils . TruncIndex
2013-04-18 23:55:41 -04:00
capabilities * Capabilities
2013-04-05 21:00:10 -04:00
volumes * Graph
2013-05-15 20:17:33 -04:00
srv * Server
2013-10-04 22:25:15 -04:00
config * DaemonConfig
containerGraph * gograph . Database
2013-03-21 03:25:00 -04:00
}
2013-09-06 20:43:34 -04:00
// List returns an array of all containers registered in the runtime.
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) List ( ) [ ] * Container {
2013-01-29 15:15:39 -05:00
containers := new ( History )
2013-03-21 03:41:15 -04:00
for e := runtime . containers . Front ( ) ; e != nil ; e = e . Next ( ) {
2013-01-29 15:15:39 -05:00
containers . Add ( e . Value . ( * Container ) )
2013-01-29 06:24:31 -05:00
}
2013-01-29 15:15:39 -05:00
return * containers
2013-01-18 19:13:39 -05:00
}
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) getContainerElement ( id string ) * list . Element {
for e := runtime . containers . Front ( ) ; e != nil ; e = e . Next ( ) {
2013-01-18 19:13:39 -05:00
container := e . Value . ( * Container )
2013-06-04 14:00:22 -04:00
if container . ID == id {
2013-01-18 19:13:39 -05:00
return e
}
}
return nil
}
2013-09-06 20:43:34 -04:00
// Get looks for a container by the specified ID or name, and returns it.
// If the container is not found, or if an error occurs, nil is returned.
2013-03-31 05:02:01 -04:00
func ( runtime * Runtime ) Get ( name string ) * Container {
2013-10-04 22:25:15 -04:00
if c , _ := runtime . GetByName ( name ) ; c != nil {
return c
}
2013-03-31 05:02:01 -04:00
id , err := runtime . idIndex . Get ( name )
if err != nil {
return nil
}
2013-10-04 22:25:15 -04:00
2013-03-21 03:41:15 -04:00
e := runtime . getContainerElement ( id )
2013-01-18 19:13:39 -05:00
if e == nil {
return nil
}
return e . Value . ( * Container )
}
2013-09-06 20:43:34 -04:00
// Exists returns a true if a container of the specified ID or name exists,
// false otherwise.
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) Exists ( id string ) bool {
return runtime . Get ( id ) != nil
2013-01-18 19:13:39 -05:00
}
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) containerRoot ( id string ) string {
return path . Join ( runtime . 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.
2013-10-04 22:25:15 -04:00
func ( runtime * Runtime ) load ( id string ) ( * Container , error ) {
2013-03-21 03:41:15 -04:00
container := & Container { root : runtime . containerRoot ( id ) }
2013-03-21 03:25:00 -04:00
if err := container . FromDisk ( ) ; err != nil {
return nil , err
}
2013-06-04 14:00:22 -04:00
if container . ID != id {
return container , fmt . Errorf ( "Container %s is stored at %s" , container . ID , id )
2013-03-21 03:25:00 -04:00
}
2013-04-11 12:26:17 -04:00
if container . State . Running {
container . State . Ghost = true
}
2013-01-18 19:13:39 -05:00
return container , nil
}
2013-06-04 14:00:22 -04:00
// Register makes a container object usable by the runtime as <container.ID>
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) Register ( container * Container ) error {
2013-06-04 14:00:22 -04:00
if container . runtime != nil || runtime . 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
}
2013-11-04 12:28:40 -05:00
if err := runtime . ensureName ( container ) ; err != nil {
return err
}
2013-03-31 20:40:39 -04:00
2013-04-09 20:40:02 -04:00
// init the wait lock
container . waitLock = make ( chan struct { } )
2013-03-21 03:41:15 -04:00
container . runtime = runtime
2013-04-09 10:57:59 -04:00
2013-03-21 03:25:00 -04:00
// Attach to stdout and stderr
2013-05-14 18:37:35 -04:00
container . stderr = utils . NewWriteBroadcaster ( )
container . stdout = utils . NewWriteBroadcaster ( )
2013-03-21 03:25:00 -04:00
// Attach to stdin
if container . Config . OpenStdin {
container . stdin , container . stdinPipe = io . Pipe ( )
} else {
2013-05-14 18:37:35 -04:00
container . stdinPipe = utils . NopWriteCloser ( ioutil . Discard ) // Silently drop stdin
2013-03-21 03:25:00 -04:00
}
// done
2013-03-21 03:41:15 -04:00
runtime . containers . PushBack ( container )
2013-06-04 14:00:22 -04:00
runtime . idIndex . Add ( container . ID )
2013-04-19 15:08:43 -04:00
2013-04-24 22:01:23 -04:00
// When we actually restart, Start() do the monitoring.
// However, when we simply 'reattach', we have to restart a monitor
nomonitor := false
// 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
if container . State . Running {
2013-06-04 14:00:22 -04:00
output , err := exec . Command ( "lxc-info" , "-n" , container . ID ) . CombinedOutput ( )
2013-06-04 09:51:12 -04:00
if err != nil {
2013-04-24 22:01:23 -04:00
return err
2013-06-04 09:51:12 -04:00
}
if ! strings . Contains ( string ( output ) , "RUNNING" ) {
2013-06-04 14:00:22 -04:00
utils . Debugf ( "Container %s was supposed to be running be is not." , container . ID )
2013-10-04 22:25:15 -04:00
if runtime . config . AutoRestart {
2013-06-04 09:51:12 -04:00
utils . Debugf ( "Restarting" )
container . State . Ghost = false
container . State . setStopped ( 0 )
2013-10-31 17:58:43 -04:00
if err := container . Start ( ) ; err != nil {
2013-06-04 09:51:12 -04:00
return err
}
nomonitor = true
} else {
utils . Debugf ( "Marking as stopped" )
container . State . setStopped ( - 127 )
if err := container . ToDisk ( ) ; err != nil {
return err
2013-04-24 22:01:23 -04:00
}
}
}
}
2013-04-19 15:08:43 -04:00
// If the container is not running or just has been flagged not running
// then close the wait lock chan (will be reset upon start)
if ! container . State . Running {
close ( container . waitLock )
2013-04-24 22:01:23 -04:00
} else if ! nomonitor {
2013-10-31 17:58:43 -04:00
go container . monitor ( )
2013-04-19 15:08:43 -04:00
}
2013-03-21 03:25:00 -04:00
return nil
}
2013-11-04 12:28:40 -05:00
func ( runtime * Runtime ) ensureName ( container * Container ) error {
if container . Name == "" {
name , err := generateRandomName ( runtime )
if err != nil {
name = container . ShortID ( )
}
container . Name = name
if err := container . ToDisk ( ) ; err != nil {
utils . Debugf ( "Error saving container name %s" , err )
}
if ! runtime . containerGraph . Exists ( name ) {
if _ , err := runtime . containerGraph . Set ( name , container . ID ) ; err != nil {
utils . Debugf ( "Setting default id - %s" , err )
}
}
}
return nil
}
2013-07-11 13:18:28 -04:00
func ( runtime * Runtime ) LogToDisk ( src * utils . WriteBroadcaster , dst , stream string ) error {
2013-03-21 03:25:00 -04:00
log , err := os . OpenFile ( dst , os . O_RDWR | os . O_APPEND | os . O_CREATE , 0600 )
if err != nil {
return err
}
2013-07-11 13:18:28 -04:00
src . AddWriter ( log , stream )
2013-03-21 03:25:00 -04:00
return nil
}
2013-09-06 20:43:34 -04:00
// Destroy unregisters a container from the runtime and cleanly removes its contents from the filesystem.
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) Destroy ( container * Container ) error {
2013-05-07 14:18:13 -04:00
if container == nil {
return fmt . Errorf ( "The given container is <nil>" )
}
2013-06-04 14:00:22 -04:00
element := runtime . getContainerElement ( container . ID )
2013-01-18 19:13:39 -05:00
if element == nil {
2013-06-04 14:00:22 -04:00
return fmt . Errorf ( "Container %v not found - maybe it was already destroyed?" , container . ID )
2013-01-18 19:13:39 -05:00
}
2013-05-10 00:53:56 -04:00
if err := container . Stop ( 3 ) ; err != nil {
2013-01-18 19:13:39 -05:00
return err
}
2013-10-04 22:25:15 -04:00
2013-03-21 03:25:00 -04:00
if mounted , err := container . Mounted ( ) ; err != nil {
return err
} else if mounted {
if err := container . Unmount ( ) ; err != nil {
2013-06-04 14:00:22 -04:00
return fmt . Errorf ( "Unable to unmount container %v: %v" , container . ID , err )
2013-01-28 14:58:59 -05:00
}
2013-03-14 07:06:57 -04:00
}
2013-10-04 22:25:15 -04:00
if _ , err := runtime . containerGraph . Purge ( container . ID ) ; err != nil {
utils . Debugf ( "Unable to remove container from link graph: %s" , err )
}
2013-03-21 03:25:00 -04:00
// Deregister the container before removing its directory, to avoid race conditions
2013-06-04 14:00:22 -04:00
runtime . idIndex . Delete ( container . ID )
2013-03-21 03:41:15 -04:00
runtime . containers . Remove ( element )
2013-03-21 03:25:00 -04:00
if err := os . RemoveAll ( container . root ) ; err != nil {
2013-06-04 14:00:22 -04:00
return fmt . Errorf ( "Unable to remove filesystem for %v: %v" , container . ID , err )
2013-01-18 19:13:39 -05:00
}
return nil
}
2013-03-21 03:41:15 -04:00
func ( runtime * Runtime ) restore ( ) error {
2013-08-16 09:31:50 -04:00
wheel := "-\\|/"
2013-08-29 18:59:34 -04:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
2013-08-16 09:31:50 -04:00
fmt . Printf ( "Loading containers: " )
}
2013-03-21 03:41:15 -04:00
dir , err := ioutil . ReadDir ( runtime . repository )
2013-01-18 19:13:39 -05:00
if err != nil {
return err
}
2013-10-24 19:49:28 -04:00
containers := make ( map [ string ] * Container )
2013-08-16 09:31:50 -04:00
for i , v := range dir {
2013-03-21 03:25:00 -04:00
id := v . Name ( )
2013-10-04 22:25:15 -04:00
container , err := runtime . load ( id )
2013-08-29 18:59:34 -04:00
if i % 21 == 0 && os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
2013-08-16 09:31:50 -04:00
fmt . Printf ( "\b%c" , wheel [ i % 4 ] )
}
2013-01-18 19:13:39 -05:00
if err != nil {
2013-10-08 03:54:47 -04:00
utils . Errorf ( "Failed to load container %v: %v" , id , err )
2013-01-18 19:13:39 -05:00
continue
}
2013-06-04 14:00:22 -04:00
utils . Debugf ( "Loaded container %v" , container . ID )
2013-10-24 19:49:28 -04:00
containers [ container . ID ] = container
2013-10-04 22:25:15 -04:00
}
2013-10-24 19:49:28 -04:00
register := func ( container * Container ) {
if err := runtime . Register ( container ) ; err != nil {
utils . Debugf ( "Failed to register container %s: %s" , container . ID , err )
2013-10-04 22:25:15 -04:00
}
2013-10-24 19:49:28 -04:00
}
if entities := runtime . containerGraph . List ( "/" , - 1 ) ; entities != nil {
for _ , p := range entities . Paths ( ) {
e := entities [ p ]
if container , ok := containers [ e . ID ( ) ] ; ok {
register ( container )
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
2013-10-30 21:26:01 -04:00
name , err := generateRandomName ( runtime )
if err != nil {
container . Name = container . ShortID ( )
}
2013-10-28 19:58:59 -04:00
container . Name = name
if _ , err := runtime . containerGraph . Set ( name , container . ID ) ; err != nil {
2013-10-24 13:25:07 -04:00
utils . Debugf ( "Setting default id - %s" , err )
}
2013-10-24 19:49:28 -04:00
register ( container )
2013-01-18 19:13:39 -05:00
}
2013-10-24 19:49:28 -04:00
2013-08-29 18:59:34 -04:00
if os . Getenv ( "DEBUG" ) == "" && os . Getenv ( "TEST" ) == "" {
2013-08-16 09:31:50 -04:00
fmt . Printf ( "\bdone.\n" )
}
2013-10-04 22:25:15 -04:00
2013-01-18 19:13:39 -05:00
return nil
}
2013-09-06 20:43:34 -04:00
// FIXME: comment please!
2013-04-26 17:32:55 -04:00
func ( runtime * Runtime ) UpdateCapabilities ( quiet bool ) {
2013-05-14 18:37:35 -04:00
if cgroupMemoryMountpoint , err := utils . FindCgroupMountpoint ( "memory" ) ; err != nil {
2013-04-26 17:32:55 -04:00
if ! quiet {
log . Printf ( "WARNING: %s\n" , err )
}
} else {
_ , err1 := ioutil . ReadFile ( path . Join ( cgroupMemoryMountpoint , "memory.limit_in_bytes" ) )
_ , err2 := ioutil . ReadFile ( path . Join ( cgroupMemoryMountpoint , "memory.soft_limit_in_bytes" ) )
runtime . capabilities . MemoryLimit = err1 == nil && err2 == nil
if ! runtime . capabilities . MemoryLimit && ! quiet {
log . Printf ( "WARNING: Your kernel does not support cgroup memory limit." )
}
_ , err = ioutil . ReadFile ( path . Join ( cgroupMemoryMountpoint , "memory.memsw.limit_in_bytes" ) )
runtime . capabilities . SwapLimit = err == nil
if ! runtime . capabilities . SwapLimit && ! quiet {
log . Printf ( "WARNING: Your kernel does not support cgroup swap limit." )
}
2013-08-11 05:52:16 -04:00
}
2013-08-03 18:06:58 -04:00
2013-08-11 05:52:16 -04:00
content , err3 := ioutil . ReadFile ( "/proc/sys/net/ipv4/ip_forward" )
2013-08-19 08:34:30 -04:00
runtime . capabilities . IPv4ForwardingDisabled = err3 != nil || len ( content ) == 0 || content [ 0 ] != '1'
if runtime . capabilities . IPv4ForwardingDisabled && ! quiet {
2013-08-11 05:52:16 -04:00
log . Printf ( "WARNING: IPv4 forwarding is disabled." )
2013-04-26 17:32:55 -04:00
}
2013-10-31 17:58:43 -04:00
// Check if AppArmor seems to be enabled on this system.
if _ , err := os . Stat ( "/sys/kernel/security/apparmor" ) ; os . IsNotExist ( err ) {
utils . Debugf ( "/sys/kernel/security/apparmor not found; assuming AppArmor is not enabled." )
runtime . capabilities . AppArmor = false
} else {
utils . Debugf ( "/sys/kernel/security/apparmor found; assuming AppArmor is enabled." )
runtime . capabilities . AppArmor = true
}
2013-04-26 17:32:55 -04:00
}
2013-10-28 19:58:59 -04:00
// Create creates a new container from the given configuration with a given name.
func ( runtime * Runtime ) Create ( config * Config , name string ) ( * Container , [ ] string , error ) {
2013-09-06 20:33:05 -04:00
// Lookup image
img , err := runtime . repositories . LookupImage ( config . Image )
if err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
2013-10-30 17:36:38 -04:00
checkDeprecatedExpose := func ( config * Config ) bool {
if config != nil {
if config . PortSpecs != nil {
for _ , p := range config . PortSpecs {
if strings . Contains ( p , ":" ) {
return true
}
}
}
2013-09-20 08:46:24 -04:00
}
2013-10-30 17:36:38 -04:00
return false
2013-09-06 20:33:05 -04:00
}
2013-10-30 17:36:38 -04:00
2013-10-30 14:13:10 -04:00
warnings := [ ] string { }
2013-10-30 17:36:38 -04:00
if checkDeprecatedExpose ( img . Config ) || checkDeprecatedExpose ( config ) {
warnings = append ( warnings , "The mapping to public ports on your host has been deprecated. Use -p to publish the ports." )
}
if img . Config != nil {
if err := MergeConfig ( config , img . Config ) ; err != nil {
return nil , nil , err
2013-10-30 14:13:10 -04:00
}
}
2013-09-06 20:33:05 -04:00
if len ( config . Entrypoint ) != 0 && config . Cmd == nil {
config . Cmd = [ ] string { }
} else if config . Cmd == nil || len ( config . Cmd ) == 0 {
2013-10-04 22:25:15 -04:00
return nil , nil , fmt . Errorf ( "No command specified" )
2013-09-06 20:33:05 -04:00
}
2013-10-18 01:40:41 -04:00
sysInitPath := utils . DockerInitPath ( )
if sysInitPath == "" {
return nil , nil , fmt . Errorf ( "Could not locate dockerinit: This usually means docker was built incorrectly. See http://docs.docker.io/en/latest/contributing/devenvironment for official build instructions." )
}
2013-09-06 20:33:05 -04:00
// Generate id
id := GenerateID ( )
2013-10-04 22:25:15 -04:00
2013-10-28 19:58:59 -04:00
if name == "" {
2013-10-30 21:26:01 -04:00
name , err = generateRandomName ( runtime )
if err != nil {
name = utils . TruncateID ( id )
}
2013-10-28 19:58:59 -04:00
}
if name [ 0 ] != '/' {
name = "/" + name
}
// Set the enitity in the graph using the default name specified
if _ , err := runtime . containerGraph . Set ( name , id ) ; err != nil {
2013-10-30 14:24:50 -04:00
if strings . HasSuffix ( err . Error ( ) , "name are not unique" ) {
return nil , nil , fmt . Errorf ( "Conflict, %s already exists." , name )
}
2013-10-04 22:25:15 -04:00
return nil , nil , err
}
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 ]
}
var args [ ] string
var entrypoint string
if len ( config . Entrypoint ) != 0 {
entrypoint = config . Entrypoint [ 0 ]
args = append ( config . Entrypoint [ 1 : ] , config . Cmd ... )
} else {
entrypoint = config . Cmd [ 0 ]
args = config . Cmd [ 1 : ]
}
container := & Container {
// FIXME: we should generate the ID here instead of receiving it as an argument
ID : id ,
Created : time . Now ( ) ,
Path : entrypoint ,
Args : args , //FIXME: de-duplicate from config
Config : config ,
2013-10-31 17:58:43 -04:00
hostConfig : & HostConfig { } ,
2013-09-06 20:33:05 -04:00
Image : img . ID , // Always use the resolved image id
NetworkSettings : & NetworkSettings { } ,
// FIXME: do we need to store this in the container?
SysInitPath : sysInitPath ,
2013-10-28 19:58:59 -04:00
Name : name ,
2013-09-06 20:33:05 -04:00
}
container . root = runtime . containerRoot ( container . ID )
// Step 1: create the container directory.
// This doubles as a barrier to avoid race conditions.
if err := os . Mkdir ( container . root , 0700 ) ; err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
resolvConf , err := utils . GetResolvConf ( )
if err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
2013-10-04 22:25:15 -04:00
if len ( config . Dns ) == 0 && len ( runtime . config . Dns ) == 0 && utils . CheckLocalDns ( resolvConf ) {
2013-09-06 20:33:05 -04:00
//"WARNING: Docker detected local DNS server on resolv.conf. Using default external servers: %v", defaultDns
2013-10-04 22:25:15 -04:00
runtime . config . Dns = defaultDns
2013-09-06 20:33:05 -04:00
}
// If custom dns exists, then create a resolv.conf for the container
2013-10-04 22:25:15 -04:00
if len ( config . Dns ) > 0 || len ( runtime . config . Dns ) > 0 {
2013-09-06 20:33:05 -04:00
var dns [ ] string
if len ( config . Dns ) > 0 {
dns = config . Dns
} else {
2013-10-04 22:25:15 -04:00
dns = runtime . config . Dns
2013-09-06 20:33:05 -04:00
}
container . ResolvConfPath = path . Join ( container . root , "resolv.conf" )
f , err := os . Create ( container . ResolvConfPath )
if err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
defer f . Close ( )
for _ , dns := range dns {
if _ , err := f . Write ( [ ] byte ( "nameserver " + dns + "\n" ) ) ; err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
}
} else {
container . ResolvConfPath = "/etc/resolv.conf"
}
// Step 2: save the container json
if err := container . ToDisk ( ) ; err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
2013-09-09 18:11:53 -04:00
// Step 3: if hostname, build hostname and hosts files
container . HostnamePath = path . Join ( container . root , "hostname" )
ioutil . WriteFile ( container . HostnamePath , [ ] byte ( container . Config . Hostname + "\n" ) , 0644 )
hostsContent := [ ] byte ( `
127.0 .0 .1 localhost
: : 1 localhost ip6 - localhost ip6 - loopback
fe00 : : 0 ip6 - localnet
ff00 : : 0 ip6 - mcastprefix
ff02 : : 1 ip6 - allnodes
ff02 : : 2 ip6 - allrouters
` )
container . HostsPath = path . Join ( container . root , "hosts" )
if container . Config . Domainname != "" {
hostsContent = append ( [ ] byte ( fmt . Sprintf ( "::1\t\t%s.%s %s\n" , container . Config . Hostname , container . Config . Domainname , container . Config . Hostname ) ) , hostsContent ... )
hostsContent = append ( [ ] byte ( fmt . Sprintf ( "127.0.0.1\t%s.%s %s\n" , container . Config . Hostname , container . Config . Domainname , container . Config . Hostname ) ) , hostsContent ... )
} else {
hostsContent = append ( [ ] byte ( fmt . Sprintf ( "::1\t\t%s\n" , container . Config . Hostname ) ) , hostsContent ... )
hostsContent = append ( [ ] byte ( fmt . Sprintf ( "127.0.0.1\t%s\n" , container . Config . Hostname ) ) , hostsContent ... )
}
ioutil . WriteFile ( container . HostsPath , hostsContent , 0644 )
// Step 4: register the container
2013-09-06 20:33:05 -04:00
if err := runtime . Register ( container ) ; err != nil {
2013-10-04 22:25:15 -04:00
return nil , nil , err
2013-09-06 20:33:05 -04:00
}
2013-10-04 22:25:15 -04:00
return container , warnings , nil
2013-09-06 20:33:05 -04:00
}
// Commit creates a new filesystem image from the current state of a container.
// The image can optionally be tagged into a repository
func ( runtime * Runtime ) Commit ( container * Container , repository , tag , comment , author string , config * Config ) ( * Image , error ) {
// FIXME: freeze the container before copying it to avoid data corruption?
// FIXME: this shouldn't be in commands.
if err := container . EnsureMounted ( ) ; err != nil {
return nil , err
}
rwTar , err := container . ExportRw ( )
if err != nil {
return nil , err
}
// Create a new image from the container's base layers + a new layer from container changes
img , err := runtime . graph . Create ( rwTar , container , comment , author , config )
if err != nil {
return nil , err
}
// Register the image if needed
if repository != "" {
if err := runtime . repositories . Set ( repository , tag , img . ID , true ) ; err != nil {
return img , err
}
}
return img , nil
}
2013-11-04 12:28:40 -05:00
func ( runtime * Runtime ) getFullName ( name string ) ( string , error ) {
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
}
func ( runtime * Runtime ) GetByName ( name string ) ( * Container , error ) {
2013-11-04 12:28:40 -05:00
fullName , err := runtime . getFullName ( name )
if err != nil {
return nil , err
}
entity := runtime . 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 )
}
e := runtime . getContainerElement ( entity . ID ( ) )
if e == nil {
return nil , fmt . Errorf ( "Could not find container for entity id %s" , entity . ID ( ) )
}
return e . Value . ( * Container ) , nil
}
func ( runtime * Runtime ) Children ( name string ) ( map [ string ] * Container , error ) {
2013-11-04 12:28:40 -05:00
name , err := runtime . getFullName ( name )
if err != nil {
return nil , err
}
2013-10-04 22:25:15 -04:00
children := make ( map [ string ] * Container )
2013-11-04 12:28:40 -05:00
err = runtime . containerGraph . Walk ( name , func ( p string , e * gograph . Entity ) error {
2013-10-04 22:25:15 -04:00
c := runtime . Get ( e . ID ( ) )
if c == nil {
return fmt . Errorf ( "Could not get container for name %s and id %s" , e . ID ( ) , p )
}
children [ p ] = c
return nil
} , 0 )
if err != nil {
return nil , err
}
return children , nil
}
2013-10-28 19:58:59 -04:00
func ( runtime * Runtime ) RegisterLink ( parent , child * Container , alias string ) error {
fullName := path . Join ( parent . Name , alias )
if ! runtime . containerGraph . Exists ( fullName ) {
_ , err := runtime . 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
}
2013-03-31 05:02:01 -04:00
// FIXME: harmonize with NewGraph()
2013-10-04 22:25:15 -04:00
func NewRuntime ( config * DaemonConfig ) ( * Runtime , error ) {
runtime , err := NewRuntimeFromDirectory ( config )
2013-04-18 23:47:24 -04:00
if err != nil {
return nil , err
}
2013-04-26 17:32:55 -04:00
runtime . UpdateCapabilities ( false )
2013-04-18 23:47:24 -04:00
return runtime , nil
2013-01-18 19:13:39 -05:00
}
2013-10-04 22:25:15 -04:00
func NewRuntimeFromDirectory ( config * DaemonConfig ) ( * Runtime , error ) {
2013-10-23 04:09:16 -04:00
runtimeRepo := path . Join ( config . Root , "containers" )
2013-03-13 21:48:50 -04:00
2013-03-28 20:12:23 -04:00
if err := os . MkdirAll ( runtimeRepo , 0700 ) ; err != nil && ! os . IsExist ( err ) {
2013-03-13 21:48:50 -04:00
return nil , err
}
2013-10-31 18:17:08 -04:00
if err := linkLxcStart ( config . Root ) ; err != nil {
2013-10-31 17:58:43 -04:00
return nil , err
}
2013-10-23 04:09:16 -04:00
g , err := NewGraph ( path . Join ( config . Root , "graph" ) )
2013-02-26 20:45:46 -05:00
if err != nil {
return nil , err
}
2013-10-23 04:09:16 -04:00
volumes , err := NewGraph ( path . Join ( config . Root , "volumes" ) )
2013-04-05 21:00:10 -04:00
if err != nil {
return nil , err
}
2013-10-23 04:09:16 -04:00
repositories , err := NewTagStore ( path . Join ( config . Root , "repositories" ) , g )
2013-03-21 20:35:49 -04:00
if err != nil {
return nil , fmt . Errorf ( "Couldn't create Tag store: %s" , err )
}
2013-10-04 22:25:15 -04:00
if config . BridgeIface == "" {
config . BridgeIface = DefaultNetworkBridge
}
netManager , err := newNetworkManager ( config )
if err != nil {
return nil , err
2013-04-04 08:33:28 -04:00
}
2013-10-04 22:25:15 -04:00
2013-10-23 04:09:16 -04:00
gographPath := path . Join ( config . Root , "linkgraph.db" )
2013-10-22 19:23:52 -04:00
initDatabase := false
if _ , err := os . Stat ( gographPath ) ; err != nil {
if os . IsNotExist ( err ) {
initDatabase = true
2013-10-23 14:01:17 -04:00
} else {
return nil , err
2013-10-22 19:23:52 -04:00
}
}
conn , err := sql . Open ( "sqlite3" , gographPath )
if err != nil {
return nil , err
}
graph , err := gograph . NewDatabase ( conn , initDatabase )
2013-02-25 17:06:22 -05:00
if err != nil {
return nil , err
}
2013-10-04 22:25:15 -04:00
2013-03-21 03:41:15 -04:00
runtime := & Runtime {
2013-03-28 20:12:23 -04:00
repository : runtimeRepo ,
2013-02-28 14:52:07 -05:00
containers : list . New ( ) ,
networkManager : netManager ,
2013-03-21 20:35:49 -04:00
graph : g ,
repositories : repositories ,
2013-05-14 18:37:35 -04:00
idIndex : utils . NewTruncIndex ( ) ,
2013-04-18 23:55:41 -04:00
capabilities : & Capabilities { } ,
2013-04-05 21:00:10 -04:00
volumes : volumes ,
2013-10-04 22:25:15 -04:00
config : config ,
containerGraph : graph ,
2013-01-18 19:13:39 -05:00
}
2013-03-21 03:41:15 -04:00
if err := runtime . restore ( ) ; err != nil {
2013-01-18 19:13:39 -05:00
return nil , err
}
2013-03-21 03:41:15 -04:00
return runtime , nil
2013-01-18 19:13:39 -05:00
}
2013-01-29 15:15:39 -05:00
2013-10-22 19:23:52 -04:00
func ( runtime * Runtime ) Close ( ) error {
runtime . networkManager . Close ( )
return runtime . containerGraph . Close ( )
}
2013-10-31 18:17:08 -04:00
func linkLxcStart ( root string ) error {
2013-10-31 17:58:43 -04:00
sourcePath , err := exec . LookPath ( "lxc-start" )
if err != nil {
return err
}
targetPath := path . Join ( root , "lxc-start-unconfined" )
2013-10-31 18:17:08 -04:00
if _ , err := os . Stat ( targetPath ) ; err != nil && ! os . IsNotExist ( err ) {
2013-10-31 17:58:43 -04:00
return err
2013-10-31 18:17:08 -04:00
} else if err == nil {
if err := os . Remove ( targetPath ) ; err != nil {
return err
}
2013-10-31 17:58:43 -04:00
}
2013-10-31 18:17:08 -04:00
return os . Symlink ( sourcePath , targetPath )
2013-10-31 17:58:43 -04:00
}
2013-09-06 20:43:34 -04:00
// History is a convenience type for storing a list of containers,
// ordered by creation date.
2013-01-29 15:15:39 -05:00
type History [ ] * Container
func ( history * History ) Len ( ) int {
return len ( * history )
}
func ( history * History ) Less ( i , j int ) bool {
containers := * history
return containers [ j ] . When ( ) . Before ( containers [ i ] . When ( ) )
}
func ( history * History ) Swap ( i , j int ) {
containers := * history
tmp := containers [ i ]
containers [ i ] = containers [ j ]
containers [ j ] = tmp
}
func ( history * History ) Add ( container * Container ) {
* history = append ( * history , container )
sort . Sort ( history )
}