2013-01-18 19:13:39 -05:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
2013-10-22 18:01:06 -04:00
|
|
|
"bytes"
|
2013-01-18 19:13:39 -05:00
|
|
|
"encoding/json"
|
2013-08-15 14:38:17 -04:00
|
|
|
"errors"
|
2013-04-23 12:20:53 -04:00
|
|
|
"flag"
|
2013-03-21 03:25:00 -04:00
|
|
|
"fmt"
|
2013-10-31 19:57:45 -04:00
|
|
|
"github.com/dotcloud/docker/archive"
|
2013-05-24 17:44:16 -04:00
|
|
|
"github.com/dotcloud/docker/term"
|
2013-05-14 18:37:35 -04:00
|
|
|
"github.com/dotcloud/docker/utils"
|
2013-01-29 16:50:27 -05:00
|
|
|
"github.com/kr/pty"
|
2013-01-18 19:13:39 -05:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2013-01-21 21:03:23 -05:00
|
|
|
"log"
|
2013-08-29 18:21:32 -04:00
|
|
|
"net"
|
2013-01-18 19:13:39 -05:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
2013-05-13 09:10:26 -04:00
|
|
|
"path/filepath"
|
2013-02-28 14:51:14 -05:00
|
|
|
"strconv"
|
2013-04-19 22:29:13 -04:00
|
|
|
"strings"
|
2013-01-18 19:13:39 -05:00
|
|
|
"syscall"
|
2013-01-21 21:03:23 -05:00
|
|
|
"time"
|
2013-01-18 19:13:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Container struct {
|
2013-03-21 03:25:00 -04:00
|
|
|
root string
|
|
|
|
|
2013-06-04 14:00:22 -04:00
|
|
|
ID string
|
2013-01-22 14:13:22 -05:00
|
|
|
|
|
|
|
Created time.Time
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
Path string
|
|
|
|
Args []string
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
Config *Config
|
|
|
|
State State
|
|
|
|
Image string
|
2013-01-18 19:13:39 -05:00
|
|
|
|
2013-02-28 14:51:14 -05:00
|
|
|
network *NetworkInterface
|
|
|
|
NetworkSettings *NetworkSettings
|
2013-01-18 19:13:39 -05:00
|
|
|
|
2013-04-10 21:23:34 -04:00
|
|
|
SysInitPath string
|
|
|
|
ResolvConfPath string
|
2013-09-09 14:57:25 -04:00
|
|
|
HostnamePath string
|
|
|
|
HostsPath string
|
2013-10-28 19:58:59 -04:00
|
|
|
Name string
|
2013-04-10 21:23:34 -04:00
|
|
|
|
|
|
|
cmd *exec.Cmd
|
2013-05-14 18:37:35 -04:00
|
|
|
stdout *utils.WriteBroadcaster
|
|
|
|
stderr *utils.WriteBroadcaster
|
2013-04-10 21:23:34 -04:00
|
|
|
stdin io.ReadCloser
|
|
|
|
stdinPipe io.WriteCloser
|
2013-04-04 15:12:22 -04:00
|
|
|
ptyMaster io.Closer
|
2013-03-30 12:05:53 -04:00
|
|
|
|
2013-03-29 11:41:48 -04:00
|
|
|
runtime *Runtime
|
2013-04-09 10:57:59 -04:00
|
|
|
|
|
|
|
waitLock chan struct{}
|
2013-04-10 19:10:53 -04:00
|
|
|
Volumes map[string]string
|
2013-07-26 04:10:42 -04:00
|
|
|
// Store rw/ro in a separate structure to preserve reverse-compatibility on-disk.
|
2013-06-25 02:30:48 -04:00
|
|
|
// Easier than migrating older container configs :)
|
2013-10-31 17:58:43 -04:00
|
|
|
VolumesRW map[string]bool
|
|
|
|
hostConfig *HostConfig
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
activeLinks map[string]*Link
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
// Note: the Config structure should hold only portable information about the container.
|
|
|
|
// Here, "portable" means "independent from the host we are running on".
|
|
|
|
// Non-portable information *should* appear in HostConfig.
|
2013-01-18 19:13:39 -05:00
|
|
|
type Config struct {
|
2013-07-22 22:00:35 -04:00
|
|
|
Hostname string
|
2013-08-29 18:21:32 -04:00
|
|
|
Domainname string
|
2013-07-22 22:00:35 -04:00
|
|
|
User string
|
|
|
|
Memory int64 // Memory limit (in bytes)
|
|
|
|
MemorySwap int64 // Total memory usage (memory + swap); set `-1' to disable swap
|
|
|
|
CpuShares int64 // CPU shares (relative weight vs. other containers)
|
|
|
|
AttachStdin bool
|
|
|
|
AttachStdout bool
|
|
|
|
AttachStderr bool
|
2013-10-04 22:25:15 -04:00
|
|
|
PortSpecs []string // Deprecated - Can be in the format of 8080/tcp
|
|
|
|
ExposedPorts map[Port]struct{}
|
2013-07-22 22:00:35 -04:00
|
|
|
Tty bool // Attach standard streams to a tty, including stdin if it is not closed.
|
|
|
|
OpenStdin bool // Open stdin
|
|
|
|
StdinOnce bool // If true, close stdin after the 1 attached client disconnects.
|
|
|
|
Env []string
|
|
|
|
Cmd []string
|
|
|
|
Dns []string
|
|
|
|
Image string // Name of the image as it was passed by the operator (eg. could be symbolic)
|
|
|
|
Volumes map[string]struct{}
|
|
|
|
VolumesFrom string
|
2013-08-15 14:38:17 -04:00
|
|
|
WorkingDir string
|
2013-07-22 22:00:35 -04:00
|
|
|
Entrypoint []string
|
|
|
|
NetworkDisabled bool
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
type HostConfig struct {
|
2013-07-08 04:01:16 -04:00
|
|
|
Binds []string
|
|
|
|
ContainerIDFile string
|
2013-08-15 19:35:03 -04:00
|
|
|
LxcConf []KeyValuePair
|
2013-10-31 17:58:43 -04:00
|
|
|
Privileged bool
|
2013-10-04 22:25:15 -04:00
|
|
|
PortBindings map[Port][]PortBinding
|
|
|
|
Links []string
|
2013-10-31 14:10:25 -04:00
|
|
|
PublishAllPorts bool
|
2013-05-13 19:39:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type BindMap struct {
|
|
|
|
SrcPath string
|
|
|
|
DstPath string
|
|
|
|
Mode string
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:38:17 -04:00
|
|
|
var (
|
2013-10-08 21:42:53 -04:00
|
|
|
ErrContainerStart = errors.New("The container failed to start. Unkown error")
|
|
|
|
ErrContainerStartTimeout = errors.New("The container failed to start due to timed out.")
|
2013-10-08 15:15:29 -04:00
|
|
|
ErrInvalidWorikingDirectory = errors.New("The working directory is invalid. It needs to be an absolute path.")
|
|
|
|
ErrConflictAttachDetach = errors.New("Conflicting options: -a and -d")
|
|
|
|
ErrConflictDetachAutoRemove = errors.New("Conflicting options: -rm and -d")
|
2013-08-15 14:38:17 -04:00
|
|
|
)
|
|
|
|
|
2013-08-15 19:35:03 -04:00
|
|
|
type KeyValuePair struct {
|
|
|
|
Key string
|
|
|
|
Value string
|
|
|
|
}
|
|
|
|
|
2013-10-04 22:25:15 -04:00
|
|
|
type PortBinding struct {
|
|
|
|
HostIp string
|
|
|
|
HostPort string
|
|
|
|
}
|
|
|
|
|
|
|
|
// 80/tcp
|
|
|
|
type Port string
|
|
|
|
|
|
|
|
func (p Port) Proto() string {
|
|
|
|
return strings.Split(string(p), "/")[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Port) Port() string {
|
|
|
|
return strings.Split(string(p), "/")[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Port) Int() int {
|
|
|
|
i, err := parsePort(p.Port())
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewPort(proto, port string) Port {
|
|
|
|
return Port(fmt.Sprintf("%s/%s", port, proto))
|
|
|
|
}
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
func ParseRun(args []string, capabilities *Capabilities) (*Config, *HostConfig, *flag.FlagSet, error) {
|
2013-06-21 04:06:41 -04:00
|
|
|
cmd := Subcmd("run", "[OPTIONS] IMAGE [COMMAND] [ARG...]", "Run a command in a new container")
|
2013-08-19 09:47:38 -04:00
|
|
|
if os.Getenv("TEST") != "" {
|
2013-03-26 11:31:26 -04:00
|
|
|
cmd.SetOutput(ioutil.Discard)
|
2013-07-19 11:56:00 -04:00
|
|
|
cmd.Usage = nil
|
2013-03-26 11:31:26 -04:00
|
|
|
}
|
|
|
|
|
2013-04-01 16:03:24 -04:00
|
|
|
flHostname := cmd.String("h", "", "Container host name")
|
2013-08-15 14:38:17 -04:00
|
|
|
flWorkingDir := cmd.String("w", "", "Working directory inside the container")
|
2013-03-28 20:12:23 -04:00
|
|
|
flUser := cmd.String("u", "", "Username or UID")
|
2013-07-29 17:17:15 -04:00
|
|
|
flDetach := cmd.Bool("d", false, "Detached mode: Run container in the background, print new container id")
|
2013-04-02 21:07:16 -04:00
|
|
|
flAttach := NewAttachOpts()
|
|
|
|
cmd.Var(flAttach, "a", "Attach to stdin, stdout or stderr.")
|
2013-03-28 20:12:23 -04:00
|
|
|
flStdin := cmd.Bool("i", false, "Keep stdin open even if not attached")
|
|
|
|
flTty := cmd.Bool("t", false, "Allocate a pseudo-tty")
|
|
|
|
flMemory := cmd.Int64("m", 0, "Memory limit (in bytes)")
|
2013-07-08 04:01:16 -04:00
|
|
|
flContainerIDFile := cmd.String("cidfile", "", "Write the container ID to the file")
|
2013-07-21 20:11:47 -04:00
|
|
|
flNetwork := cmd.Bool("n", true, "Enable networking for this container")
|
2013-08-09 18:53:02 -04:00
|
|
|
flPrivileged := cmd.Bool("privileged", false, "Give extended privileges to this container")
|
2013-08-15 14:48:05 -04:00
|
|
|
flAutoRemove := cmd.Bool("rm", false, "Automatically remove the container when it exits (incompatible with -d)")
|
2013-10-28 21:23:41 -04:00
|
|
|
cmd.Bool("sig-proxy", true, "Proxify all received signal to the process (even in non-tty mode)")
|
2013-10-28 19:58:59 -04:00
|
|
|
cmd.String("name", "", "Assign a name to the container")
|
2013-10-31 14:10:25 -04:00
|
|
|
flPublishAll := cmd.Bool("P", false, "Publish all exposed ports to the host interfaces")
|
2013-03-28 20:12:23 -04:00
|
|
|
|
2013-05-07 13:23:50 -04:00
|
|
|
if capabilities != nil && *flMemory > 0 && !capabilities.MemoryLimit {
|
|
|
|
//fmt.Fprintf(stdout, "WARNING: Your kernel does not support memory limit capabilities. Limitation discarded.\n")
|
2013-04-11 15:58:23 -04:00
|
|
|
*flMemory = 0
|
|
|
|
}
|
|
|
|
|
2013-05-07 14:43:45 -04:00
|
|
|
flCpuShares := cmd.Int64("c", 0, "CPU shares (relative weight)")
|
2013-05-07 14:16:30 -04:00
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flPublish utils.ListOpts
|
2013-10-04 22:25:15 -04:00
|
|
|
cmd.Var(&flPublish, "p", "Publish a container's port to the host (use 'docker port' to see the actual mapping)")
|
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flExpose utils.ListOpts
|
2013-10-04 22:25:15 -04:00
|
|
|
cmd.Var(&flExpose, "expose", "Expose a port from the container without publishing it to your host")
|
2013-03-28 01:50:33 -04:00
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flEnv utils.ListOpts
|
2013-03-28 20:12:23 -04:00
|
|
|
cmd.Var(&flEnv, "e", "Set environment variables")
|
2013-03-28 01:50:33 -04:00
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flDns utils.ListOpts
|
2013-04-10 22:02:23 -04:00
|
|
|
cmd.Var(&flDns, "dns", "Set custom dns servers")
|
|
|
|
|
2013-04-05 21:00:10 -04:00
|
|
|
flVolumes := NewPathOpts()
|
2013-07-15 20:18:11 -04:00
|
|
|
cmd.Var(flVolumes, "v", "Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)")
|
2013-04-05 21:00:10 -04:00
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flVolumesFrom utils.ListOpts
|
2013-09-14 16:09:15 -04:00
|
|
|
cmd.Var(&flVolumesFrom, "volumes-from", "Mount volumes from the specified container")
|
|
|
|
|
2013-06-24 22:20:05 -04:00
|
|
|
flEntrypoint := cmd.String("entrypoint", "", "Overwrite the default entrypoint of the image")
|
2013-04-10 19:23:30 -04:00
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flLxcOpts utils.ListOpts
|
2013-08-15 19:35:03 -04:00
|
|
|
cmd.Var(&flLxcOpts, "lxc-conf", "Add custom lxc options -lxc-conf=\"lxc.cgroup.cpuset.cpus = 0,1\"")
|
|
|
|
|
2013-10-10 04:49:18 -04:00
|
|
|
var flLinks utils.ListOpts
|
2013-10-28 19:58:59 -04:00
|
|
|
cmd.Var(&flLinks, "link", "Add link to another container (name:alias)")
|
2013-10-04 22:25:15 -04:00
|
|
|
|
2013-03-23 15:16:58 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
2013-05-13 19:39:54 -04:00
|
|
|
return nil, nil, cmd, err
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
2013-04-03 10:06:35 -04:00
|
|
|
if *flDetach && len(flAttach) > 0 {
|
2013-10-08 15:15:29 -04:00
|
|
|
return nil, nil, cmd, ErrConflictAttachDetach
|
2013-04-02 21:07:16 -04:00
|
|
|
}
|
2013-08-15 14:38:17 -04:00
|
|
|
if *flWorkingDir != "" && !path.IsAbs(*flWorkingDir) {
|
2013-10-08 15:15:29 -04:00
|
|
|
return nil, nil, cmd, ErrInvalidWorikingDirectory
|
2013-08-15 14:38:17 -04:00
|
|
|
}
|
2013-10-08 15:15:29 -04:00
|
|
|
if *flDetach && *flAutoRemove {
|
|
|
|
return nil, nil, cmd, ErrConflictDetachAutoRemove
|
|
|
|
}
|
|
|
|
|
2013-04-02 21:07:16 -04:00
|
|
|
// If neither -d or -a are set, attach to everything by default
|
2013-04-03 10:06:35 -04:00
|
|
|
if len(flAttach) == 0 && !*flDetach {
|
2013-04-02 21:07:16 -04:00
|
|
|
if !*flDetach {
|
|
|
|
flAttach.Set("stdout")
|
|
|
|
flAttach.Set("stderr")
|
|
|
|
if *flStdin {
|
|
|
|
flAttach.Set("stdin")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-13 19:39:54 -04:00
|
|
|
|
2013-08-13 20:31:04 -04:00
|
|
|
envs := []string{}
|
|
|
|
|
|
|
|
for _, env := range flEnv {
|
|
|
|
arr := strings.Split(env, "=")
|
|
|
|
if len(arr) > 1 {
|
|
|
|
envs = append(envs, env)
|
|
|
|
} else {
|
|
|
|
v := os.Getenv(env)
|
|
|
|
envs = append(envs, env+"="+v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-15 20:18:11 -04:00
|
|
|
var binds []string
|
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
// add any bind targets to the list of container volumes
|
2013-07-15 20:18:11 -04:00
|
|
|
for bind := range flVolumes {
|
2013-05-13 19:39:54 -04:00
|
|
|
arr := strings.Split(bind, ":")
|
2013-07-15 20:18:11 -04:00
|
|
|
if len(arr) > 1 {
|
2013-10-18 18:44:06 -04:00
|
|
|
if arr[0] == "/" {
|
|
|
|
return nil, nil, cmd, fmt.Errorf("Invalid bind mount: source can't be '/'")
|
|
|
|
}
|
2013-07-15 20:18:11 -04:00
|
|
|
dstDir := arr[1]
|
|
|
|
flVolumes[dstDir] = struct{}{}
|
|
|
|
binds = append(binds, bind)
|
|
|
|
delete(flVolumes, bind)
|
|
|
|
}
|
2013-05-13 19:39:54 -04:00
|
|
|
}
|
|
|
|
|
2013-03-25 10:17:11 -04:00
|
|
|
parsedArgs := cmd.Args()
|
|
|
|
runCmd := []string{}
|
2013-06-24 22:20:05 -04:00
|
|
|
entrypoint := []string{}
|
2013-03-25 10:17:11 -04:00
|
|
|
image := ""
|
|
|
|
if len(parsedArgs) >= 1 {
|
|
|
|
image = cmd.Arg(0)
|
|
|
|
}
|
|
|
|
if len(parsedArgs) > 1 {
|
|
|
|
runCmd = parsedArgs[1:]
|
|
|
|
}
|
2013-06-24 22:20:05 -04:00
|
|
|
if *flEntrypoint != "" {
|
|
|
|
entrypoint = []string{*flEntrypoint}
|
|
|
|
}
|
|
|
|
|
2013-08-15 19:35:03 -04:00
|
|
|
var lxcConf []KeyValuePair
|
|
|
|
lxcConf, err := parseLxcConfOpts(flLxcOpts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, cmd, err
|
|
|
|
}
|
|
|
|
|
2013-08-29 18:21:32 -04:00
|
|
|
hostname := *flHostname
|
|
|
|
domainname := ""
|
|
|
|
|
|
|
|
parts := strings.SplitN(hostname, ".", 2)
|
|
|
|
if len(parts) > 1 {
|
|
|
|
hostname = parts[0]
|
|
|
|
domainname = parts[1]
|
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
ports, portBindings, err := parsePortSpecs(flPublish)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, cmd, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge in exposed ports to the map of published ports
|
|
|
|
for _, e := range flExpose {
|
|
|
|
if strings.Contains(e, ":") {
|
|
|
|
return nil, nil, cmd, fmt.Errorf("Invalid port format for -expose: %s", e)
|
|
|
|
}
|
|
|
|
p := NewPort(splitProtoPort(e))
|
|
|
|
if _, exists := ports[p]; !exists {
|
|
|
|
ports[p] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-23 15:16:58 -04:00
|
|
|
config := &Config{
|
2013-11-01 18:46:26 -04:00
|
|
|
Hostname: hostname,
|
2013-08-29 18:21:32 -04:00
|
|
|
Domainname: domainname,
|
2013-10-04 22:25:15 -04:00
|
|
|
PortSpecs: nil, // Deprecated
|
|
|
|
ExposedPorts: ports,
|
2013-07-22 22:00:35 -04:00
|
|
|
User: *flUser,
|
|
|
|
Tty: *flTty,
|
|
|
|
NetworkDisabled: !*flNetwork,
|
|
|
|
OpenStdin: *flStdin,
|
|
|
|
Memory: *flMemory,
|
|
|
|
CpuShares: *flCpuShares,
|
|
|
|
AttachStdin: flAttach.Get("stdin"),
|
|
|
|
AttachStdout: flAttach.Get("stdout"),
|
|
|
|
AttachStderr: flAttach.Get("stderr"),
|
2013-08-13 20:31:04 -04:00
|
|
|
Env: envs,
|
2013-07-22 22:00:35 -04:00
|
|
|
Cmd: runCmd,
|
|
|
|
Dns: flDns,
|
|
|
|
Image: image,
|
|
|
|
Volumes: flVolumes,
|
2013-09-14 16:09:15 -04:00
|
|
|
VolumesFrom: strings.Join(flVolumesFrom, ","),
|
2013-07-22 22:00:35 -04:00
|
|
|
Entrypoint: entrypoint,
|
2013-08-15 14:38:17 -04:00
|
|
|
WorkingDir: *flWorkingDir,
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
|
2013-05-13 19:39:54 -04:00
|
|
|
hostConfig := &HostConfig{
|
2013-07-08 04:01:16 -04:00
|
|
|
Binds: binds,
|
|
|
|
ContainerIDFile: *flContainerIDFile,
|
2013-08-15 19:35:03 -04:00
|
|
|
LxcConf: lxcConf,
|
2013-10-31 17:58:43 -04:00
|
|
|
Privileged: *flPrivileged,
|
2013-10-04 22:25:15 -04:00
|
|
|
PortBindings: portBindings,
|
|
|
|
Links: flLinks,
|
2013-10-31 14:10:25 -04:00
|
|
|
PublishAllPorts: *flPublishAll,
|
2013-05-13 19:39:54 -04:00
|
|
|
}
|
2013-04-18 23:55:41 -04:00
|
|
|
|
2013-05-07 13:23:50 -04:00
|
|
|
if capabilities != nil && *flMemory > 0 && !capabilities.SwapLimit {
|
|
|
|
//fmt.Fprintf(stdout, "WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.\n")
|
2013-04-18 23:55:41 -04:00
|
|
|
config.MemorySwap = -1
|
|
|
|
}
|
|
|
|
|
2013-04-02 14:02:19 -04:00
|
|
|
// When allocating stdin in attached mode, close stdin at client disconnect
|
2013-04-02 21:07:16 -04:00
|
|
|
if config.OpenStdin && config.AttachStdin {
|
2013-04-02 14:02:19 -04:00
|
|
|
config.StdinOnce = true
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
2013-05-13 19:39:54 -04:00
|
|
|
return config, hostConfig, cmd, nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-10-04 22:25:15 -04:00
|
|
|
type PortMapping map[string]string // Deprecated
|
2013-06-11 18:46:23 -04:00
|
|
|
|
2013-02-28 14:51:14 -05:00
|
|
|
type NetworkSettings struct {
|
2013-06-04 14:00:22 -04:00
|
|
|
IPAddress string
|
|
|
|
IPPrefixLen int
|
2013-02-28 14:51:14 -05:00
|
|
|
Gateway string
|
2013-04-03 18:05:03 -04:00
|
|
|
Bridge string
|
2013-10-04 22:25:15 -04:00
|
|
|
PortMapping map[string]PortMapping // Deprecated
|
|
|
|
Ports map[Port][]PortBinding
|
2013-02-25 17:06:22 -05:00
|
|
|
}
|
|
|
|
|
2013-08-27 18:20:35 -04:00
|
|
|
func (settings *NetworkSettings) PortMappingAPI() []APIPort {
|
|
|
|
var mapping []APIPort
|
2013-10-04 22:25:15 -04:00
|
|
|
for port, bindings := range settings.Ports {
|
|
|
|
p, _ := parsePort(port.Port())
|
|
|
|
if len(bindings) == 0 {
|
|
|
|
mapping = append(mapping, APIPort{
|
|
|
|
PublicPort: int64(p),
|
|
|
|
Type: port.Proto(),
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, binding := range bindings {
|
|
|
|
p, _ := parsePort(port.Port())
|
|
|
|
h, _ := parsePort(binding.HostPort)
|
|
|
|
mapping = append(mapping, APIPort{
|
|
|
|
PrivatePort: int64(p),
|
|
|
|
PublicPort: int64(h),
|
|
|
|
Type: port.Proto(),
|
|
|
|
IP: binding.HostIp,
|
|
|
|
})
|
|
|
|
}
|
2013-06-11 18:46:23 -04:00
|
|
|
}
|
2013-08-27 18:20:35 -04:00
|
|
|
return mapping
|
2013-04-19 22:29:13 -04:00
|
|
|
}
|
|
|
|
|
2013-04-24 16:37:00 -04:00
|
|
|
// Inject the io.Reader at the given path. Note: do not close the reader
|
|
|
|
func (container *Container) Inject(file io.Reader, pth string) error {
|
2013-11-06 00:44:52 -05:00
|
|
|
// Return error if path exists
|
|
|
|
if _, err := os.Stat(path.Join(container.rwPath(), pth)); err == nil {
|
|
|
|
// Since err is nil, the path could be stat'd and it exists
|
|
|
|
return fmt.Errorf("%s exists", pth)
|
|
|
|
} else if ! os.IsNotExist(err) {
|
|
|
|
// Expect err might be that the file doesn't exist, so
|
|
|
|
// if it's some other error, return that.
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-04-24 16:51:28 -04:00
|
|
|
// Make sure the directory exists
|
|
|
|
if err := os.MkdirAll(path.Join(container.rwPath(), path.Dir(pth)), 0755); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-11-06 00:44:52 -05:00
|
|
|
|
2013-04-24 16:51:28 -04:00
|
|
|
dest, err := os.Create(path.Join(container.rwPath(), pth))
|
2013-04-24 16:37:00 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := io.Copy(dest, file); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-26 18:56:42 -05:00
|
|
|
func (container *Container) Cmd() *exec.Cmd {
|
|
|
|
return container.cmd
|
|
|
|
}
|
|
|
|
|
2013-01-29 06:24:31 -05:00
|
|
|
func (container *Container) When() time.Time {
|
|
|
|
return container.Created
|
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
func (container *Container) FromDisk() error {
|
|
|
|
data, err := ioutil.ReadFile(container.jsonPath())
|
2013-01-25 17:39:02 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-03-21 03:25:00 -04:00
|
|
|
// Load container settings
|
2013-07-29 12:40:35 -04:00
|
|
|
// udp broke compat of docker.PortMapping, but it's not used when loading a container, we can skip it
|
|
|
|
if err := json.Unmarshal(data, container); err != nil && !strings.Contains(err.Error(), "docker.PortMapping") {
|
2013-01-25 17:39:02 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
return container.readHostConfig()
|
2013-01-25 17:39:02 -05:00
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
func (container *Container) ToDisk() (err error) {
|
2013-01-22 14:13:22 -05:00
|
|
|
data, err := json.Marshal(container)
|
2013-01-18 19:13:39 -05:00
|
|
|
if err != nil {
|
2013-01-22 14:13:22 -05:00
|
|
|
return
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
err = ioutil.WriteFile(container.jsonPath(), data, 0666)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return container.writeHostConfig()
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) readHostConfig() error {
|
|
|
|
container.hostConfig = &HostConfig{}
|
|
|
|
// If the hostconfig file does not exist, do not read it.
|
|
|
|
// (We still have to initialize container.hostConfig,
|
|
|
|
// but that's OK, since we just did that above.)
|
|
|
|
_, err := os.Stat(container.hostConfigPath())
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
2013-07-02 08:19:25 -04:00
|
|
|
data, err := ioutil.ReadFile(container.hostConfigPath())
|
|
|
|
if err != nil {
|
2013-10-31 17:58:43 -04:00
|
|
|
return err
|
2013-07-02 08:19:25 -04:00
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
return json.Unmarshal(data, container.hostConfig)
|
2013-07-02 08:19:25 -04:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) writeHostConfig() (err error) {
|
|
|
|
data, err := json.Marshal(container.hostConfig)
|
2013-07-02 08:19:25 -04:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return ioutil.WriteFile(container.hostConfigPath(), data, 0666)
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:40:23 -04:00
|
|
|
func (container *Container) generateEnvConfig(env []string) error {
|
2013-08-14 20:14:30 -04:00
|
|
|
data, err := json.Marshal(env)
|
2013-08-13 18:40:23 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-08-14 20:14:30 -04:00
|
|
|
ioutil.WriteFile(container.EnvConfigPath(), data, 0600)
|
2013-08-13 18:40:23 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) generateLXCConfig() error {
|
2013-03-21 03:25:00 -04:00
|
|
|
fo, err := os.Create(container.lxcConfigPath())
|
2013-01-18 19:13:39 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer fo.Close()
|
2013-10-31 17:58:43 -04:00
|
|
|
return LxcTemplateCompiled.Execute(fo, container)
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 18:17:20 -05:00
|
|
|
func (container *Container) startPty() error {
|
2013-04-04 15:12:22 -04:00
|
|
|
ptyMaster, ptySlave, err := pty.Open()
|
2013-01-29 18:17:20 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-04-04 15:12:22 -04:00
|
|
|
container.ptyMaster = ptyMaster
|
|
|
|
container.cmd.Stdout = ptySlave
|
|
|
|
container.cmd.Stderr = ptySlave
|
2013-01-29 18:17:20 -05:00
|
|
|
|
|
|
|
// Copy the PTYs to our broadcasters
|
|
|
|
go func() {
|
2013-04-02 04:45:17 -04:00
|
|
|
defer container.stdout.CloseWriters()
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("startPty: begin of stdout pipe")
|
2013-04-04 15:12:22 -04:00
|
|
|
io.Copy(container.stdout, ptyMaster)
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("startPty: end of stdout pipe")
|
2013-01-29 18:17:20 -05:00
|
|
|
}()
|
|
|
|
|
|
|
|
// stdin
|
|
|
|
if container.Config.OpenStdin {
|
2013-04-04 15:12:22 -04:00
|
|
|
container.cmd.Stdin = ptySlave
|
2013-09-24 08:57:29 -04:00
|
|
|
container.cmd.SysProcAttr.Setctty = true
|
2013-01-29 18:17:20 -05:00
|
|
|
go func() {
|
|
|
|
defer container.stdin.Close()
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("startPty: begin of stdin pipe")
|
2013-04-04 15:12:22 -04:00
|
|
|
io.Copy(ptyMaster, container.stdin)
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("startPty: end of stdin pipe")
|
2013-01-29 18:17:20 -05:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
if err := container.cmd.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-04-04 15:12:22 -04:00
|
|
|
ptySlave.Close()
|
2013-01-29 18:17:20 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) start() error {
|
|
|
|
container.cmd.Stdout = container.stdout
|
|
|
|
container.cmd.Stderr = container.stderr
|
|
|
|
if container.Config.OpenStdin {
|
|
|
|
stdin, err := container.cmd.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
defer stdin.Close()
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("start: begin of stdin pipe")
|
2013-01-29 18:17:20 -05:00
|
|
|
io.Copy(stdin, container.stdin)
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("start: end of stdin pipe")
|
2013-01-29 18:17:20 -05:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
return container.cmd.Start()
|
|
|
|
}
|
|
|
|
|
2013-04-02 15:18:20 -04:00
|
|
|
func (container *Container) Attach(stdin io.ReadCloser, stdinCloser io.Closer, stdout io.Writer, stderr io.Writer) chan error {
|
|
|
|
var cStdout, cStderr io.ReadCloser
|
|
|
|
|
2013-04-02 02:52:20 -04:00
|
|
|
var nJobs int
|
|
|
|
errors := make(chan error, 3)
|
|
|
|
if stdin != nil && container.Config.OpenStdin {
|
|
|
|
nJobs += 1
|
|
|
|
if cStdin, err := container.StdinPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
go func() {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: stdin: begin")
|
|
|
|
defer utils.Debugf("attach: stdin: end")
|
2013-04-02 15:19:01 -04:00
|
|
|
// No matter what, when stdin is closed (io.Copy unblock), close stdout and stderr
|
2013-04-09 11:18:16 -04:00
|
|
|
if container.Config.StdinOnce && !container.Config.Tty {
|
2013-04-02 02:52:20 -04:00
|
|
|
defer cStdin.Close()
|
2013-07-24 18:48:18 -04:00
|
|
|
} else {
|
|
|
|
if cStdout != nil {
|
|
|
|
defer cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
defer cStderr.Close()
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-04-04 15:57:45 -04:00
|
|
|
if container.Config.Tty {
|
2013-05-14 18:37:35 -04:00
|
|
|
_, err = utils.CopyEscapable(cStdin, stdin)
|
2013-04-04 15:57:45 -04:00
|
|
|
} else {
|
|
|
|
_, err = io.Copy(cStdin, stdin)
|
|
|
|
}
|
2013-10-24 16:00:51 -04:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
if err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: stdin: %s", err)
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-10-24 16:00:51 -04:00
|
|
|
errors <- err
|
2013-04-02 02:52:20 -04:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if stdout != nil {
|
|
|
|
nJobs += 1
|
|
|
|
if p, err := container.StdoutPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
cStdout = p
|
|
|
|
go func() {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: stdout: begin")
|
|
|
|
defer utils.Debugf("attach: stdout: end")
|
2013-04-02 15:18:20 -04:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
2013-09-23 20:53:02 -04:00
|
|
|
if container.Config.StdinOnce && stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
2013-04-02 15:18:20 -04:00
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
_, err := io.Copy(stdout, cStdout)
|
2013-10-16 13:41:36 -04:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
if err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: stdout: %s", err)
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
2013-06-03 20:39:29 -04:00
|
|
|
} else {
|
|
|
|
go func() {
|
2013-06-04 17:35:32 -04:00
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
|
|
|
if cStdout, err := container.StdoutPipe(); err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: stdout pipe: %s", err)
|
2013-06-04 17:35:32 -04:00
|
|
|
} else {
|
|
|
|
io.Copy(&utils.NopWriter{}, cStdout)
|
2013-06-03 20:39:29 -04:00
|
|
|
}
|
|
|
|
}()
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
|
|
|
if stderr != nil {
|
|
|
|
nJobs += 1
|
|
|
|
if p, err := container.StderrPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
cStderr = p
|
|
|
|
go func() {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: stderr: begin")
|
|
|
|
defer utils.Debugf("attach: stderr: end")
|
2013-04-02 15:18:20 -04:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
2013-09-23 20:53:02 -04:00
|
|
|
if container.Config.StdinOnce && stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
2013-04-02 15:18:20 -04:00
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
_, err := io.Copy(stderr, cStderr)
|
2013-10-16 13:41:36 -04:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
if err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: stderr: %s", err)
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
2013-06-03 20:39:29 -04:00
|
|
|
} else {
|
|
|
|
go func() {
|
2013-06-04 17:35:32 -04:00
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
2013-06-03 20:39:29 -04:00
|
|
|
|
2013-06-10 14:08:40 -04:00
|
|
|
if cStderr, err := container.StderrPipe(); err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: stdout pipe: %s", err)
|
2013-06-04 17:35:32 -04:00
|
|
|
} else {
|
|
|
|
io.Copy(&utils.NopWriter{}, cStderr)
|
2013-06-03 20:39:29 -04:00
|
|
|
}
|
|
|
|
}()
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-06-03 20:39:29 -04:00
|
|
|
|
2013-05-14 18:37:35 -04:00
|
|
|
return utils.Go(func() error {
|
2013-04-02 02:52:20 -04:00
|
|
|
if cStdout != nil {
|
|
|
|
defer cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
defer cStderr.Close()
|
|
|
|
}
|
2013-10-16 13:41:36 -04:00
|
|
|
// FIXME: how to clean up the stdin goroutine without the unwanted side effect
|
2013-04-02 02:52:20 -04:00
|
|
|
// of closing the passed stdin? Add an intermediary io.Pipe?
|
|
|
|
for i := 0; i < nJobs; i += 1 {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: waiting for job %d/%d", i+1, nJobs)
|
2013-04-02 02:52:20 -04:00
|
|
|
if err := <-errors; err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("attach: job %d returned error %s, aborting all jobs", i+1, err)
|
2013-04-02 02:52:20 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: job %d completed successfully", i+1)
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("attach: all jobs completed successfully")
|
2013-04-02 02:52:20 -04:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) Start() (err error) {
|
2013-07-02 18:46:32 -04:00
|
|
|
container.State.Lock()
|
|
|
|
defer container.State.Unlock()
|
2013-10-16 16:12:56 -04:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
container.cleanup()
|
2013-10-16 15:01:55 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
}()
|
2013-10-16 15:01:55 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if container.State.Running {
|
|
|
|
return fmt.Errorf("The container %s is already running.", container.ID)
|
|
|
|
}
|
|
|
|
if err := container.EnsureMounted(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if container.runtime.networkManager.disabled {
|
|
|
|
container.Config.NetworkDisabled = true
|
|
|
|
} else {
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := container.allocateNetwork(); err != nil {
|
2013-07-21 20:49:09 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
}
|
2013-04-11 15:58:23 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Make sure the config is compatible with the current kernel
|
|
|
|
if container.Config.Memory > 0 && !container.runtime.capabilities.MemoryLimit {
|
|
|
|
log.Printf("WARNING: Your kernel does not support memory limit capabilities. Limitation discarded.\n")
|
|
|
|
container.Config.Memory = 0
|
|
|
|
}
|
|
|
|
if container.Config.Memory > 0 && !container.runtime.capabilities.SwapLimit {
|
|
|
|
log.Printf("WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.\n")
|
|
|
|
container.Config.MemorySwap = -1
|
|
|
|
}
|
2013-04-11 15:58:23 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if container.runtime.capabilities.IPv4ForwardingDisabled {
|
|
|
|
log.Printf("WARNING: IPv4 forwarding is disabled. Networking will not work")
|
|
|
|
}
|
2013-08-03 18:06:58 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Create the requested bind mounts
|
|
|
|
binds := make(map[string]BindMap)
|
|
|
|
// Define illegal container destinations
|
|
|
|
illegalDsts := []string{"/", "."}
|
2013-05-13 19:39:54 -04:00
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
for _, bind := range container.hostConfig.Binds {
|
2013-10-16 16:12:56 -04:00
|
|
|
// FIXME: factorize bind parsing in parseBind
|
|
|
|
var src, dst, mode string
|
|
|
|
arr := strings.Split(bind, ":")
|
|
|
|
if len(arr) == 2 {
|
|
|
|
src = arr[0]
|
|
|
|
dst = arr[1]
|
|
|
|
mode = "rw"
|
|
|
|
} else if len(arr) == 3 {
|
|
|
|
src = arr[0]
|
|
|
|
dst = arr[1]
|
|
|
|
mode = arr[2]
|
|
|
|
} else {
|
|
|
|
return fmt.Errorf("Invalid bind specification: %s", bind)
|
|
|
|
}
|
2013-05-13 19:39:54 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Bail if trying to mount to an illegal destination
|
|
|
|
for _, illegal := range illegalDsts {
|
|
|
|
if dst == illegal {
|
|
|
|
return fmt.Errorf("Illegal bind destination: %s", dst)
|
2013-05-13 19:39:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
bindMap := BindMap{
|
|
|
|
SrcPath: src,
|
|
|
|
DstPath: dst,
|
|
|
|
Mode: mode,
|
2013-05-13 19:39:54 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
binds[path.Clean(dst)] = bindMap
|
|
|
|
}
|
2013-06-25 02:30:48 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if container.Volumes == nil || len(container.Volumes) == 0 {
|
|
|
|
container.Volumes = make(map[string]string)
|
|
|
|
container.VolumesRW = make(map[string]bool)
|
|
|
|
}
|
2013-08-10 00:55:23 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Apply volumes from another container if requested
|
|
|
|
if container.Config.VolumesFrom != "" {
|
|
|
|
volumes := strings.Split(container.Config.VolumesFrom, ",")
|
|
|
|
for _, v := range volumes {
|
|
|
|
c := container.runtime.Get(v)
|
|
|
|
if c == nil {
|
|
|
|
return fmt.Errorf("Container %s not found. Impossible to mount its volumes", container.ID)
|
2013-08-10 00:55:23 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
for volPath, id := range c.Volumes {
|
|
|
|
if _, exists := container.Volumes[volPath]; exists {
|
|
|
|
continue
|
2013-10-16 15:01:55 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
if err := os.MkdirAll(path.Join(container.RootfsPath(), volPath), 0755); err != nil {
|
2013-10-16 15:01:55 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
container.Volumes[volPath] = id
|
|
|
|
if isRW, exists := c.VolumesRW[volPath]; exists {
|
|
|
|
container.VolumesRW[volPath] = isRW
|
2013-10-16 15:01:55 -04:00
|
|
|
}
|
2013-08-10 00:55:23 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the requested volumes if they don't exist
|
|
|
|
for volPath := range container.Config.Volumes {
|
|
|
|
volPath = path.Clean(volPath)
|
|
|
|
// Skip existing volumes
|
|
|
|
if _, exists := container.Volumes[volPath]; exists {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var srcPath string
|
|
|
|
var isBindMount bool
|
|
|
|
srcRW := false
|
|
|
|
// If an external bind is defined for this volume, use that as a source
|
|
|
|
if bindMap, exists := binds[volPath]; exists {
|
|
|
|
isBindMount = true
|
|
|
|
srcPath = bindMap.SrcPath
|
|
|
|
if strings.ToLower(bindMap.Mode) == "rw" {
|
|
|
|
srcRW = true
|
2013-08-10 00:55:23 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
// Otherwise create an directory in $ROOT/volumes/ and use that
|
|
|
|
} else {
|
|
|
|
c, err := container.runtime.volumes.Create(nil, container, "", "", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
srcPath, err = c.layer()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
srcRW = true // RW by default
|
|
|
|
}
|
|
|
|
container.Volumes[volPath] = srcPath
|
|
|
|
container.VolumesRW[volPath] = srcRW
|
|
|
|
// Create the mountpoint
|
|
|
|
rootVolPath := path.Join(container.RootfsPath(), volPath)
|
|
|
|
if err := os.MkdirAll(rootVolPath, 0755); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-09-19 16:09:19 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Do not copy or change permissions if we are mounting from the host
|
|
|
|
if srcRW && !isBindMount {
|
|
|
|
volList, err := ioutil.ReadDir(rootVolPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(volList) > 0 {
|
|
|
|
srcList, err := ioutil.ReadDir(srcPath)
|
2013-08-29 20:29:35 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
if len(srcList) == 0 {
|
|
|
|
// If the source volume is empty copy files from the root into the volume
|
2013-10-31 19:57:45 -04:00
|
|
|
if err := archive.CopyWithTar(rootVolPath, srcPath); err != nil {
|
2013-08-29 20:29:35 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-09-19 16:09:19 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
var stat syscall.Stat_t
|
|
|
|
if err := syscall.Stat(rootVolPath, &stat); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var srcStat syscall.Stat_t
|
|
|
|
if err := syscall.Stat(srcPath, &srcStat); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Change the source volume's ownership if it differs from the root
|
|
|
|
// files that where just copied
|
|
|
|
if stat.Uid != srcStat.Uid || stat.Gid != srcStat.Gid {
|
|
|
|
if err := os.Chown(srcPath, int(stat.Uid), int(stat.Gid)); err != nil {
|
2013-09-19 16:09:19 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 20:22:08 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-29 20:29:35 -04:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
}
|
2013-04-09 21:19:55 -04:00
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := container.generateLXCConfig(); err != nil {
|
2013-10-16 16:12:56 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-02-20 20:47:09 -05:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
params := []string{
|
|
|
|
"-n", container.ID,
|
|
|
|
"-f", container.lxcConfigPath(),
|
|
|
|
"--",
|
|
|
|
"/.dockerinit",
|
|
|
|
}
|
2013-04-16 03:25:55 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Networking
|
|
|
|
if !container.Config.NetworkDisabled {
|
|
|
|
params = append(params, "-g", container.network.Gateway.String())
|
|
|
|
}
|
2013-08-15 14:38:17 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// User
|
|
|
|
if container.Config.User != "" {
|
|
|
|
params = append(params, "-u", container.Config.User)
|
|
|
|
}
|
2013-04-16 03:25:55 -04:00
|
|
|
|
2013-08-13 18:40:23 -04:00
|
|
|
// Setup environment
|
|
|
|
env := []string{
|
|
|
|
"HOME=/",
|
|
|
|
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
|
|
|
|
"container=lxc",
|
|
|
|
"HOSTNAME=" + container.Config.Hostname,
|
2013-10-16 16:12:56 -04:00
|
|
|
}
|
2013-04-16 03:25:55 -04:00
|
|
|
|
2013-08-13 18:40:23 -04:00
|
|
|
if container.Config.Tty {
|
|
|
|
env = append(env, "TERM=xterm")
|
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
// Init any links between the parent and children
|
|
|
|
runtime := container.runtime
|
|
|
|
|
2013-10-28 19:58:59 -04:00
|
|
|
children, err := runtime.Children(container.Name)
|
2013-10-04 22:25:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(children) > 0 {
|
|
|
|
container.activeLinks = make(map[string]*Link, len(children))
|
|
|
|
|
|
|
|
// If we encounter an error make sure that we rollback any network
|
|
|
|
// config and ip table changes
|
|
|
|
rollback := func() {
|
|
|
|
for _, link := range container.activeLinks {
|
|
|
|
link.Disable()
|
|
|
|
}
|
|
|
|
container.activeLinks = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for p, child := range children {
|
|
|
|
link, err := NewLink(container, child, p, runtime.networkManager.bridgeIface)
|
|
|
|
if err != nil {
|
|
|
|
rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
container.activeLinks[link.Alias()] = link
|
|
|
|
if err := link.Enable(); err != nil {
|
|
|
|
rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, envVar := range link.ToEnv() {
|
2013-08-13 18:40:23 -04:00
|
|
|
env = append(env, envVar)
|
2013-10-04 22:25:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:40:23 -04:00
|
|
|
for _, elem := range container.Config.Env {
|
|
|
|
env = append(env, elem)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := container.generateEnvConfig(env); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if container.Config.WorkingDir != "" {
|
|
|
|
workingDir := path.Clean(container.Config.WorkingDir)
|
|
|
|
utils.Debugf("[working dir] working dir is %s", workingDir)
|
2013-02-20 20:47:09 -05:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if err := os.MkdirAll(path.Join(container.RootfsPath(), workingDir), 0755); err != nil {
|
|
|
|
return nil
|
2013-10-16 15:01:55 -04:00
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
params = append(params,
|
|
|
|
"-w", workingDir,
|
|
|
|
)
|
|
|
|
}
|
2013-03-29 11:46:06 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
// Program
|
|
|
|
params = append(params, "--", container.Path)
|
|
|
|
params = append(params, container.Args...)
|
2013-10-16 15:01:55 -04:00
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
var lxcStart string = "lxc-start"
|
|
|
|
if container.hostConfig.Privileged && container.runtime.capabilities.AppArmor {
|
2013-11-01 17:01:32 -04:00
|
|
|
lxcStart = path.Join(container.runtime.config.Root, "lxc-start-unconfined")
|
2013-10-31 17:58:43 -04:00
|
|
|
}
|
|
|
|
container.cmd = exec.Command(lxcStart, params...)
|
2013-10-16 16:12:56 -04:00
|
|
|
// Setup logging of stdout and stderr to disk
|
|
|
|
if err := container.runtime.LogToDisk(container.stdout, container.logPath("json"), "stdout"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := container.runtime.LogToDisk(container.stderr, container.logPath("json"), "stderr"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-10-16 15:01:55 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
container.cmd.SysProcAttr = &syscall.SysProcAttr{Setsid: true}
|
2013-10-16 15:01:55 -04:00
|
|
|
|
2013-10-16 16:12:56 -04:00
|
|
|
if container.Config.Tty {
|
|
|
|
err = container.startPty()
|
|
|
|
} else {
|
|
|
|
err = container.start()
|
2013-01-28 20:50:12 -05:00
|
|
|
}
|
2013-01-29 18:17:20 -05:00
|
|
|
if err != nil {
|
2013-10-16 16:12:56 -04:00
|
|
|
return err
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-10-16 16:12:56 -04:00
|
|
|
// FIXME: save state on disk *first*, then converge
|
|
|
|
// this way disk state is used as a journal, eg. we can restore after crash etc.
|
|
|
|
container.State.setRunning(container.cmd.Process.Pid)
|
|
|
|
|
|
|
|
// Init the lock
|
|
|
|
container.waitLock = make(chan struct{})
|
|
|
|
|
|
|
|
container.ToDisk()
|
2013-10-31 17:58:43 -04:00
|
|
|
go container.monitor()
|
2013-10-08 21:42:53 -04:00
|
|
|
|
|
|
|
defer utils.Debugf("Container running: %v", container.State.Running)
|
|
|
|
// We wait for the container to be fully running.
|
|
|
|
// Timeout after 5 seconds. In case of broken pipe, just retry.
|
|
|
|
// Note: The container can run and finish correctly before
|
|
|
|
// the end of this loop
|
|
|
|
for now := time.Now(); time.Since(now) < 5*time.Second; {
|
2013-10-22 18:01:06 -04:00
|
|
|
// If the container dies while waiting for it, just return
|
2013-10-08 21:42:53 -04:00
|
|
|
if !container.State.Running {
|
|
|
|
return nil
|
|
|
|
}
|
2013-10-22 18:01:06 -04:00
|
|
|
output, err := exec.Command("lxc-info", "-s", "-n", container.ID).CombinedOutput()
|
2013-10-08 21:42:53 -04:00
|
|
|
if err != nil {
|
|
|
|
utils.Debugf("Error with lxc-info: %s (%s)", err, output)
|
|
|
|
|
2013-10-22 18:01:06 -04:00
|
|
|
output, err = exec.Command("lxc-info", "-s", "-n", container.ID).CombinedOutput()
|
2013-10-08 21:42:53 -04:00
|
|
|
if err != nil {
|
|
|
|
utils.Debugf("Second Error with lxc-info: %s (%s)", err, output)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if strings.Contains(string(output), "RUNNING") {
|
|
|
|
return nil
|
|
|
|
}
|
2013-10-22 18:01:06 -04:00
|
|
|
utils.Debugf("Waiting for the container to start (running: %v): %s", container.State.Running, bytes.TrimSpace(output))
|
2013-10-08 21:42:53 -04:00
|
|
|
time.Sleep(50 * time.Millisecond)
|
|
|
|
}
|
|
|
|
|
|
|
|
if container.State.Running {
|
|
|
|
return ErrContainerStartTimeout
|
|
|
|
}
|
|
|
|
return ErrContainerStart
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Run() error {
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := container.Start(); err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.Wait()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Output() (output []byte, err error) {
|
|
|
|
pipe, err := container.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer pipe.Close()
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := container.Start(); err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
output, err = ioutil.ReadAll(pipe)
|
|
|
|
container.Wait()
|
|
|
|
return output, err
|
|
|
|
}
|
|
|
|
|
2013-10-16 13:41:36 -04:00
|
|
|
// Container.StdinPipe returns a WriteCloser which can be used to feed data
|
|
|
|
// to the standard input of the container's active process.
|
|
|
|
// Container.StdoutPipe and Container.StderrPipe each return a ReadCloser
|
|
|
|
// which can be used to retrieve the standard output (and error) generated
|
|
|
|
// by the container's active process. The output (and error) are actually
|
|
|
|
// copied and delivered to all StdoutPipe and StderrPipe consumers, using
|
|
|
|
// a kind of "broadcaster".
|
|
|
|
|
2013-01-28 20:50:12 -05:00
|
|
|
func (container *Container) StdinPipe() (io.WriteCloser, error) {
|
|
|
|
return container.stdinPipe, nil
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func (container *Container) StdoutPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
2013-07-11 13:18:28 -04:00
|
|
|
container.stdout.AddWriter(writer, "")
|
2013-05-14 18:37:35 -04:00
|
|
|
return utils.NewBufReader(reader), nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) StderrPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
2013-07-11 13:18:28 -04:00
|
|
|
container.stderr.AddWriter(writer, "")
|
2013-05-14 18:37:35 -04:00
|
|
|
return utils.NewBufReader(reader), nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) allocateNetwork() error {
|
2013-07-22 22:00:35 -04:00
|
|
|
if container.Config.NetworkDisabled {
|
2013-07-21 20:11:47 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-08-21 10:37:58 -04:00
|
|
|
var iface *NetworkInterface
|
|
|
|
var err error
|
2013-10-27 09:04:57 -04:00
|
|
|
if container.State.Ghost {
|
2013-08-21 10:37:58 -04:00
|
|
|
manager := container.runtime.networkManager
|
|
|
|
if manager.disabled {
|
|
|
|
iface = &NetworkInterface{disabled: true}
|
|
|
|
} else {
|
|
|
|
iface = &NetworkInterface{
|
2013-08-29 18:21:32 -04:00
|
|
|
IPNet: net.IPNet{IP: net.ParseIP(container.NetworkSettings.IPAddress), Mask: manager.bridgeNetwork.Mask},
|
2013-08-21 10:37:58 -04:00
|
|
|
Gateway: manager.bridgeNetwork.IP,
|
|
|
|
manager: manager,
|
2013-08-29 18:21:32 -04:00
|
|
|
}
|
2013-10-27 09:04:57 -04:00
|
|
|
if iface !=nil && iface.IPNet.IP != nil {
|
|
|
|
ipNum := ipToInt(iface.IPNet.IP)
|
|
|
|
manager.ipAllocator.inUse[ipNum] = struct{}{}
|
|
|
|
} else {
|
|
|
|
iface, err = container.runtime.networkManager.Allocate()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
iface, err = container.runtime.networkManager.Allocate()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-08-21 10:37:58 -04:00
|
|
|
}
|
2013-02-25 17:06:22 -05:00
|
|
|
}
|
2013-08-21 10:37:58 -04:00
|
|
|
|
2013-10-04 22:25:15 -04:00
|
|
|
if container.Config.PortSpecs != nil {
|
|
|
|
utils.Debugf("Migrating port mappings for container: %s", strings.Join(container.Config.PortSpecs, ", "))
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := migratePortMappings(container.Config, container.hostConfig); err != nil {
|
2013-10-04 22:25:15 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.Config.PortSpecs = nil
|
2013-10-31 17:58:43 -04:00
|
|
|
if err := container.writeHostConfig(); err != nil {
|
2013-10-30 11:15:12 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
portSpecs := make(map[Port]struct{})
|
|
|
|
bindings := make(map[Port][]PortBinding)
|
|
|
|
|
2013-08-27 15:14:21 -04:00
|
|
|
if !container.State.Ghost {
|
2013-10-04 22:25:15 -04:00
|
|
|
if container.Config.ExposedPorts != nil {
|
|
|
|
portSpecs = container.Config.ExposedPorts
|
2013-08-27 15:14:21 -04:00
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
if container.hostConfig.PortBindings != nil {
|
|
|
|
bindings = container.hostConfig.PortBindings
|
2013-10-04 22:25:15 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if container.NetworkSettings.Ports != nil {
|
|
|
|
for port, binding := range container.NetworkSettings.Ports {
|
|
|
|
portSpecs[port] = struct{}{}
|
|
|
|
bindings[port] = binding
|
|
|
|
}
|
2013-08-27 15:14:21 -04:00
|
|
|
}
|
2013-02-25 17:06:22 -05:00
|
|
|
}
|
2013-08-27 15:14:21 -04:00
|
|
|
|
2013-10-04 22:25:15 -04:00
|
|
|
container.NetworkSettings.PortMapping = nil
|
|
|
|
|
|
|
|
for port := range portSpecs {
|
|
|
|
binding := bindings[port]
|
2013-11-01 17:01:32 -04:00
|
|
|
if container.hostConfig.PublishAllPorts && len(binding) == 0 {
|
2013-10-31 14:10:25 -04:00
|
|
|
binding = append(binding, PortBinding{})
|
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
for i := 0; i < len(binding); i++ {
|
|
|
|
b := binding[i]
|
|
|
|
nat, err := iface.AllocatePort(port, b)
|
|
|
|
if err != nil {
|
|
|
|
iface.Release()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
utils.Debugf("Allocate port: %s:%s->%s", nat.Binding.HostIp, port, nat.Binding.HostPort)
|
|
|
|
binding[i] = nat.Binding
|
2013-02-28 14:51:14 -05:00
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
bindings[port] = binding
|
2013-02-28 14:51:14 -05:00
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
container.writeHostConfig()
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
container.NetworkSettings.Ports = bindings
|
2013-02-25 17:06:22 -05:00
|
|
|
container.network = iface
|
2013-10-04 22:25:15 -04:00
|
|
|
|
2013-04-03 18:05:03 -04:00
|
|
|
container.NetworkSettings.Bridge = container.runtime.networkManager.bridgeIface
|
2013-06-04 14:00:22 -04:00
|
|
|
container.NetworkSettings.IPAddress = iface.IPNet.IP.String()
|
|
|
|
container.NetworkSettings.IPPrefixLen, _ = iface.IPNet.Mask.Size()
|
2013-02-28 14:51:14 -05:00
|
|
|
container.NetworkSettings.Gateway = iface.Gateway.String()
|
2013-10-04 22:25:15 -04:00
|
|
|
|
2013-02-25 17:06:22 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:04:59 -04:00
|
|
|
func (container *Container) releaseNetwork() {
|
2013-10-16 17:39:03 -04:00
|
|
|
if container.Config.NetworkDisabled || container.network == nil {
|
2013-07-21 20:11:47 -04:00
|
|
|
return
|
|
|
|
}
|
2013-03-30 18:32:10 -04:00
|
|
|
container.network.Release()
|
2013-02-25 17:06:22 -05:00
|
|
|
container.network = nil
|
2013-02-28 14:51:14 -05:00
|
|
|
container.NetworkSettings = &NetworkSettings{}
|
2013-01-26 18:56:42 -05:00
|
|
|
}
|
|
|
|
|
2013-10-18 01:39:57 -04:00
|
|
|
// FIXME: replace this with a control socket within dockerinit
|
2013-04-19 15:08:43 -04:00
|
|
|
func (container *Container) waitLxc() error {
|
|
|
|
for {
|
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-19 15:08:43 -04:00
|
|
|
return err
|
2013-06-04 09:51:12 -04:00
|
|
|
}
|
|
|
|
if !strings.Contains(string(output), "RUNNING") {
|
|
|
|
return nil
|
2013-04-19 15:08:43 -04:00
|
|
|
}
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:58:43 -04:00
|
|
|
func (container *Container) monitor() {
|
2013-01-22 18:03:40 -05:00
|
|
|
// Wait for the program to exit
|
2013-04-19 15:08:43 -04:00
|
|
|
|
2013-10-16 13:41:36 -04:00
|
|
|
// If the command does not exist, try to wait via lxc
|
|
|
|
// (This probably happens only for ghost containers, i.e. containers that were running when Docker started)
|
2013-04-19 15:08:43 -04:00
|
|
|
if container.cmd == nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("monitor: waiting for container %s using waitLxc", container.ID)
|
2013-04-19 15:08:43 -04:00
|
|
|
if err := container.waitLxc(); err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Errorf("monitor: while waiting for container %s, waitLxc had a problem: %s", container.ID, err)
|
2013-04-19 15:08:43 -04:00
|
|
|
}
|
|
|
|
} else {
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("monitor: waiting for container %s using cmd.Wait", container.ID)
|
2013-04-19 15:08:43 -04:00
|
|
|
if err := container.cmd.Wait(); err != nil {
|
2013-10-16 13:41:36 -04:00
|
|
|
// Since non-zero exit status and signal terminations will cause err to be non-nil,
|
|
|
|
// we have to actually discard it. Still, log it anyway, just in case.
|
|
|
|
utils.Debugf("monitor: cmd.Wait reported exit status %s for container %s", err, container.ID)
|
2013-04-19 15:08:43 -04:00
|
|
|
}
|
2013-03-29 11:29:59 -04:00
|
|
|
}
|
2013-10-16 13:41:36 -04:00
|
|
|
utils.Debugf("monitor: container %s finished", container.ID)
|
2013-09-20 14:31:00 -04:00
|
|
|
|
2013-06-04 09:51:12 -04:00
|
|
|
exitCode := -1
|
2013-04-19 15:08:43 -04:00
|
|
|
if container.cmd != nil {
|
|
|
|
exitCode = container.cmd.ProcessState.Sys().(syscall.WaitStatus).ExitStatus()
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
|
2013-09-20 14:31:00 -04:00
|
|
|
// Report status back
|
|
|
|
container.State.setStopped(exitCode)
|
|
|
|
|
2013-09-20 16:36:19 -04:00
|
|
|
if container.runtime != nil && container.runtime.srv != nil {
|
|
|
|
container.runtime.srv.LogEvent("die", container.ShortID(), container.runtime.repositories.ImageName(container.Image))
|
|
|
|
}
|
|
|
|
|
2013-01-22 18:03:40 -05:00
|
|
|
// Cleanup
|
2013-10-16 15:01:55 -04:00
|
|
|
container.cleanup()
|
|
|
|
|
|
|
|
// Re-create a brand new stdin pipe once the container exited
|
|
|
|
if container.Config.OpenStdin {
|
|
|
|
container.stdin, container.stdinPipe = io.Pipe()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release the lock
|
|
|
|
close(container.waitLock)
|
|
|
|
|
|
|
|
if err := container.ToDisk(); err != nil {
|
|
|
|
// FIXME: there is a race condition here which causes this to fail during the unit tests.
|
|
|
|
// If another goroutine was waiting for Wait() to return before removing the container's root
|
|
|
|
// from the filesystem... At this point it may already have done so.
|
|
|
|
// This is because State.setStopped() has already been called, and has caused Wait()
|
|
|
|
// to return.
|
|
|
|
// FIXME: why are we serializing running state to disk in the first place?
|
|
|
|
//log.Printf("%s: Failed to dump configuration to the disk: %s", container.ID, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) cleanup() {
|
2013-03-30 18:32:10 -04:00
|
|
|
container.releaseNetwork()
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
// Disable all active links
|
|
|
|
if container.activeLinks != nil {
|
|
|
|
for _, link := range container.activeLinks {
|
|
|
|
link.Disable()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 12:08:53 -04:00
|
|
|
if container.Config.OpenStdin {
|
|
|
|
if err := container.stdin.Close(); err != nil {
|
2013-10-08 03:54:47 -04:00
|
|
|
utils.Errorf("%s: Error close stdin: %s", container.ID, err)
|
2013-03-30 12:08:53 -04:00
|
|
|
}
|
|
|
|
}
|
2013-04-02 04:45:17 -04:00
|
|
|
if err := container.stdout.CloseWriters(); err != nil {
|
2013-10-08 03:54:47 -04:00
|
|
|
utils.Errorf("%s: Error close stdout: %s", container.ID, err)
|
2013-03-29 11:29:59 -04:00
|
|
|
}
|
2013-04-02 04:45:17 -04:00
|
|
|
if err := container.stderr.CloseWriters(); err != nil {
|
2013-10-08 03:54:47 -04:00
|
|
|
utils.Errorf("%s: Error close stderr: %s", container.ID, err)
|
2013-03-29 11:29:59 -04:00
|
|
|
}
|
2013-03-30 12:05:53 -04:00
|
|
|
|
2013-04-04 15:12:22 -04:00
|
|
|
if container.ptyMaster != nil {
|
|
|
|
if err := container.ptyMaster.Close(); err != nil {
|
2013-10-08 03:54:47 -04:00
|
|
|
utils.Errorf("%s: Error closing Pty master: %s", container.ID, err)
|
2013-03-30 12:05:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
if err := container.Unmount(); err != nil {
|
2013-06-04 14:00:22 -04:00
|
|
|
log.Printf("%v: Failed to umount filesystem: %v", container.ID, err)
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-09-12 02:50:26 -04:00
|
|
|
func (container *Container) kill(sig int) error {
|
2013-10-08 15:15:29 -04:00
|
|
|
container.State.Lock()
|
|
|
|
defer container.State.Unlock()
|
|
|
|
|
2013-04-19 15:12:30 -04:00
|
|
|
if !container.State.Running {
|
2013-03-23 22:51:35 -04:00
|
|
|
return nil
|
|
|
|
}
|
2013-04-11 12:02:34 -04:00
|
|
|
|
2013-10-08 15:15:29 -04:00
|
|
|
if output, err := exec.Command("lxc-kill", "-n", container.ID, strconv.Itoa(sig)).CombinedOutput(); err != nil {
|
|
|
|
log.Printf("error killing container %s (%s, %s)", container.ShortID(), output, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Kill() error {
|
|
|
|
if !container.State.Running {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1. Send SIGKILL
|
|
|
|
if err := container.kill(9); err != nil {
|
|
|
|
return err
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-04-11 12:02:34 -04:00
|
|
|
|
|
|
|
// 2. Wait for the process to die, in last resort, try to kill the process directly
|
|
|
|
if err := container.WaitTimeout(10 * time.Second); err != nil {
|
2013-04-19 15:12:30 -04:00
|
|
|
if container.cmd == nil {
|
2013-10-08 15:15:29 -04:00
|
|
|
return fmt.Errorf("lxc-kill failed, impossible to kill the container %s", container.ShortID())
|
2013-04-19 15:12:30 -04:00
|
|
|
}
|
2013-10-08 15:15:29 -04:00
|
|
|
log.Printf("Container %s failed to exit within 10 seconds of lxc-kill %s - trying direct SIGKILL", "SIGKILL", container.ShortID())
|
2013-04-11 12:02:34 -04:00
|
|
|
if err := container.cmd.Process.Kill(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-22 20:30:09 -05:00
|
|
|
container.Wait()
|
2013-01-21 21:03:23 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-16 12:43:44 -04:00
|
|
|
func (container *Container) Stop(seconds int) error {
|
2013-01-21 21:03:23 -05:00
|
|
|
if !container.State.Running {
|
2013-01-18 19:13:39 -05:00
|
|
|
return nil
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
|
|
|
|
// 1. Send a SIGTERM
|
2013-10-08 15:15:29 -04:00
|
|
|
if err := container.kill(15); err != nil {
|
|
|
|
utils.Debugf("Error sending kill SIGTERM: %s", err)
|
2013-03-30 03:23:12 -04:00
|
|
|
log.Print("Failed to send SIGTERM to the process, force killing")
|
2013-09-12 02:50:26 -04:00
|
|
|
if err := container.kill(9); err != nil {
|
2013-01-25 18:36:47 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Wait for the process to exit on its own
|
2013-04-16 12:43:44 -04:00
|
|
|
if err := container.WaitTimeout(time.Duration(seconds) * time.Second); err != nil {
|
2013-06-04 14:00:22 -04:00
|
|
|
log.Printf("Container %v failed to exit within %d seconds of SIGTERM - using the force", container.ID, seconds)
|
2013-10-08 15:15:29 -04:00
|
|
|
// 3. If it doesn't, then send SIGKILL
|
|
|
|
if err := container.Kill(); err != nil {
|
2013-01-25 18:36:47 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-16 12:43:44 -04:00
|
|
|
func (container *Container) Restart(seconds int) error {
|
|
|
|
if err := container.Stop(seconds); err != nil {
|
2013-01-22 18:03:40 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-10-31 17:58:43 -04:00
|
|
|
return container.Start()
|
2013-01-22 18:03:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-26 14:43:54 -05:00
|
|
|
// Wait blocks until the container stops running, then returns its exit code.
|
|
|
|
func (container *Container) Wait() int {
|
2013-04-09 10:57:59 -04:00
|
|
|
<-container.waitLock
|
2013-02-26 14:43:54 -05:00
|
|
|
return container.State.ExitCode
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
|
2013-05-23 22:33:28 -04:00
|
|
|
func (container *Container) Resize(h, w int) error {
|
2013-05-24 17:44:16 -04:00
|
|
|
pty, ok := container.ptyMaster.(*os.File)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("ptyMaster does not have Fd() method")
|
|
|
|
}
|
|
|
|
return term.SetWinsize(pty.Fd(), &term.Winsize{Height: uint16(h), Width: uint16(w)})
|
2013-05-23 22:33:28 -04:00
|
|
|
}
|
|
|
|
|
2013-10-31 19:57:45 -04:00
|
|
|
func (container *Container) ExportRw() (archive.Archive, error) {
|
|
|
|
return archive.Tar(container.rwPath(), archive.Uncompressed)
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
2013-04-19 11:25:55 -04:00
|
|
|
func (container *Container) RwChecksum() (string, error) {
|
2013-10-31 19:57:45 -04:00
|
|
|
rwData, err := archive.Tar(container.rwPath(), archive.Xz)
|
2013-04-19 11:25:55 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2013-05-14 18:37:35 -04:00
|
|
|
return utils.HashData(rwData)
|
2013-04-19 11:25:55 -04:00
|
|
|
}
|
|
|
|
|
2013-10-31 19:57:45 -04:00
|
|
|
func (container *Container) Export() (archive.Archive, error) {
|
2013-03-21 03:25:00 -04:00
|
|
|
if err := container.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-10-31 19:57:45 -04:00
|
|
|
return archive.Tar(container.RootfsPath(), archive.Uncompressed)
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
2013-01-21 21:03:23 -05:00
|
|
|
func (container *Container) WaitTimeout(timeout time.Duration) error {
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
container.Wait()
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-time.After(timeout):
|
2013-03-29 11:19:42 -04:00
|
|
|
return fmt.Errorf("Timed Out")
|
2013-01-21 21:03:23 -05:00
|
|
|
case <-done:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 03:25:00 -04:00
|
|
|
|
|
|
|
func (container *Container) EnsureMounted() error {
|
|
|
|
if mounted, err := container.Mounted(); err != nil {
|
|
|
|
return err
|
|
|
|
} else if mounted {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return container.Mount()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Mount() error {
|
|
|
|
image, err := container.GetImage()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return image.Mount(container.RootfsPath(), container.rwPath())
|
|
|
|
}
|
|
|
|
|
2013-03-21 20:47:23 -04:00
|
|
|
func (container *Container) Changes() ([]Change, error) {
|
2013-03-21 03:25:00 -04:00
|
|
|
image, err := container.GetImage()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return image.Changes(container.rwPath())
|
|
|
|
}
|
|
|
|
|
2013-03-21 20:47:23 -04:00
|
|
|
func (container *Container) GetImage() (*Image, error) {
|
2013-03-21 03:25:00 -04:00
|
|
|
if container.runtime == nil {
|
|
|
|
return nil, fmt.Errorf("Can't get image of unregistered container")
|
|
|
|
}
|
|
|
|
return container.runtime.graph.Get(container.Image)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Mounted() (bool, error) {
|
2013-03-21 20:47:23 -04:00
|
|
|
return Mounted(container.RootfsPath())
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Unmount() error {
|
2013-10-24 18:43:14 -04:00
|
|
|
if _, err := os.Stat(container.RootfsPath()); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2013-03-21 20:47:23 -04:00
|
|
|
return Unmount(container.RootfsPath())
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
2013-06-04 14:00:22 -04:00
|
|
|
// ShortID returns a shorthand version of the container's id for convenience.
|
2013-03-31 05:02:01 -04:00
|
|
|
// A collision with other container shorthands is very unlikely, but possible.
|
|
|
|
// In case of a collision a lookup with Runtime.Get() will fail, and the caller
|
|
|
|
// will need to use a langer prefix, or the full-length container Id.
|
2013-06-04 14:00:22 -04:00
|
|
|
func (container *Container) ShortID() string {
|
|
|
|
return utils.TruncateID(container.ID)
|
2013-03-31 05:02:01 -04:00
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
func (container *Container) logPath(name string) string {
|
2013-06-04 14:00:22 -04:00
|
|
|
return path.Join(container.root, fmt.Sprintf("%s-%s.log", container.ID, name))
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) ReadLog(name string) (io.Reader, error) {
|
|
|
|
return os.Open(container.logPath(name))
|
|
|
|
}
|
|
|
|
|
2013-07-02 08:19:25 -04:00
|
|
|
func (container *Container) hostConfigPath() string {
|
2013-07-02 13:02:42 -04:00
|
|
|
return path.Join(container.root, "hostconfig.json")
|
2013-07-02 08:19:25 -04:00
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
func (container *Container) jsonPath() string {
|
|
|
|
return path.Join(container.root, "config.json")
|
|
|
|
}
|
|
|
|
|
2013-08-13 18:40:23 -04:00
|
|
|
func (container *Container) EnvConfigPath() string {
|
|
|
|
return path.Join(container.root, "config.env")
|
|
|
|
}
|
|
|
|
|
2013-03-21 03:25:00 -04:00
|
|
|
func (container *Container) lxcConfigPath() string {
|
|
|
|
return path.Join(container.root, "config.lxc")
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method must be exported to be used from the lxc template
|
|
|
|
func (container *Container) RootfsPath() string {
|
|
|
|
return path.Join(container.root, "rootfs")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) rwPath() string {
|
|
|
|
return path.Join(container.root, "rw")
|
|
|
|
}
|
|
|
|
|
2013-06-04 14:00:22 -04:00
|
|
|
func validateID(id string) error {
|
2013-03-21 03:25:00 -04:00
|
|
|
if id == "" {
|
|
|
|
return fmt.Errorf("Invalid empty id")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-05-13 09:10:26 -04:00
|
|
|
|
|
|
|
// GetSize, return real size, virtual size
|
|
|
|
func (container *Container) GetSize() (int64, int64) {
|
|
|
|
var sizeRw, sizeRootfs int64
|
|
|
|
|
|
|
|
filepath.Walk(container.rwPath(), func(path string, fileInfo os.FileInfo, err error) error {
|
|
|
|
if fileInfo != nil {
|
|
|
|
sizeRw += fileInfo.Size()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
_, err := os.Stat(container.RootfsPath())
|
|
|
|
if err == nil {
|
|
|
|
filepath.Walk(container.RootfsPath(), func(path string, fileInfo os.FileInfo, err error) error {
|
|
|
|
if fileInfo != nil {
|
|
|
|
sizeRootfs += fileInfo.Size()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return sizeRw, sizeRootfs
|
|
|
|
}
|
2013-07-17 00:07:41 -04:00
|
|
|
|
2013-10-31 19:57:45 -04:00
|
|
|
func (container *Container) Copy(resource string) (archive.Archive, error) {
|
2013-07-17 00:07:41 -04:00
|
|
|
if err := container.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-07-17 10:25:49 -04:00
|
|
|
var filter []string
|
|
|
|
basePath := path.Join(container.RootfsPath(), resource)
|
|
|
|
stat, err := os.Stat(basePath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !stat.IsDir() {
|
|
|
|
d, f := path.Split(basePath)
|
|
|
|
basePath = d
|
|
|
|
filter = []string{f}
|
|
|
|
} else {
|
|
|
|
filter = []string{path.Base(basePath)}
|
|
|
|
basePath = path.Dir(basePath)
|
|
|
|
}
|
2013-10-31 19:57:45 -04:00
|
|
|
return archive.TarFilter(basePath, archive.Uncompressed, filter)
|
2013-07-17 00:07:41 -04:00
|
|
|
}
|
2013-10-04 22:25:15 -04:00
|
|
|
|
|
|
|
// Returns true if the container exposes a certain port
|
|
|
|
func (container *Container) Exposes(p Port) bool {
|
|
|
|
_, exists := container.Config.ExposedPorts[p]
|
|
|
|
return exists
|
|
|
|
}
|