2013-01-18 19:13:39 -05:00
package docker
import (
"container/list"
"fmt"
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-01-18 19:13:39 -05:00
)
2013-04-18 23:55:41 -04:00
type Capabilities struct {
MemoryLimit bool
SwapLimit bool
}
2013-03-21 03:41:15 -04:00
type Runtime struct {
2013-02-28 14:52:07 -05:00
root string
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-05-14 18:37:35 -04:00
kernelVersion * utils . KernelVersionInfo
2013-04-24 22:01:23 -04:00
autoRestart bool
2013-04-05 21:00:10 -04:00
volumes * Graph
2013-05-15 20:17:33 -04:00
srv * Server
2013-06-05 17:20:19 -04:00
Dns [ ] string
2013-03-21 03:25:00 -04:00
}
var sysInitPath string
func init ( ) {
2013-05-14 18:37:35 -04:00
sysInitPath = utils . SelfPath ( )
2013-01-18 19:13:39 -05:00
}
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-03-31 05:02:01 -04:00
func ( runtime * Runtime ) Get ( name string ) * Container {
id , err := runtime . idIndex . Get ( name )
if err != nil {
return nil
}
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-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-03-21 03:41:15 -04:00
func ( runtime * Runtime ) Load ( id string ) ( * Container , error ) {
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-03-21 03:41:15 -04:00
if err := runtime . Register ( container ) ; err != nil {
2013-01-18 19:13:39 -05:00
return nil , err
}
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-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-06-04 09:51:12 -04:00
if runtime . autoRestart {
utils . Debugf ( "Restarting" )
container . State . Ghost = false
container . State . setStopped ( 0 )
2013-05-13 19:39:54 -04:00
hostConfig := & HostConfig { }
if err := container . Start ( hostConfig ) ; 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-04-19 15:08:43 -04:00
container . allocateNetwork ( )
go container . monitor ( )
}
2013-03-21 03:25:00 -04:00
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-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-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-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 {
dir , err := ioutil . ReadDir ( runtime . repository )
2013-01-18 19:13:39 -05:00
if err != nil {
return err
}
for _ , v := range dir {
2013-03-21 03:25:00 -04:00
id := v . Name ( )
2013-03-21 03:41:15 -04:00
container , err := runtime . Load ( id )
2013-01-18 19:13:39 -05:00
if err != nil {
2013-05-14 18:37:35 -04:00
utils . Debugf ( "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-01-18 19:13:39 -05:00
}
return nil
}
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-03-31 05:02:01 -04:00
// FIXME: harmonize with NewGraph()
2013-06-20 17:29:54 -04:00
func NewRuntime ( flGraphPath string , autoRestart bool , dns [ ] string ) ( * Runtime , error ) {
runtime , err := NewRuntimeFromDirectory ( flGraphPath , autoRestart )
2013-04-18 23:47:24 -04:00
if err != nil {
return nil , err
}
2013-06-05 17:20:19 -04:00
runtime . Dns = dns
2013-04-18 23:47:24 -04:00
2013-05-15 20:40:47 -04:00
if k , err := utils . GetKernelVersion ( ) ; err != nil {
2013-04-22 14:26:34 -04:00
log . Printf ( "WARNING: %s\n" , err )
} else {
runtime . kernelVersion = k
2013-05-14 18:37:35 -04:00
if utils . CompareKernelVersion ( k , & utils . KernelVersionInfo { Kernel : 3 , Major : 8 , Minor : 0 } ) < 0 {
2013-04-22 14:26:34 -04:00
log . Printf ( "WARNING: You are running linux kernel version %s, which might be unstable running docker. Please upgrade your kernel to 3.8.0." , k . String ( ) )
}
2013-04-18 23:47:24 -04:00
}
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-04-24 22:01:23 -04:00
func NewRuntimeFromDirectory ( root string , autoRestart bool ) ( * Runtime , error ) {
2013-03-28 20:12:23 -04:00
runtimeRepo := path . Join ( 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-03-21 20:47:23 -04:00
g , err := NewGraph ( path . Join ( root , "graph" ) )
2013-02-26 20:45:46 -05:00
if err != nil {
return nil , err
}
2013-04-05 21:00:10 -04:00
volumes , err := NewGraph ( path . Join ( root , "volumes" ) )
if err != nil {
return nil , err
}
2013-03-21 20:47:23 -04:00
repositories , err := NewTagStore ( path . Join ( 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-04-04 08:33:28 -04:00
if NetworkBridgeIface == "" {
NetworkBridgeIface = DefaultNetworkBridge
}
2013-04-03 17:53:09 -04:00
netManager , err := newNetworkManager ( NetworkBridgeIface )
2013-02-25 17:06:22 -05:00
if err != nil {
return nil , err
}
2013-03-21 03:41:15 -04:00
runtime := & Runtime {
2013-02-28 14:52:07 -05:00
root : root ,
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-24 22:01:23 -04:00
autoRestart : autoRestart ,
2013-04-05 21:00:10 -04:00
volumes : volumes ,
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
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 )
}