2013-01-18 19:13:39 -05:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2013-03-21 03:25:00 -04:00
|
|
|
"fmt"
|
2013-03-26 11:31:26 -04:00
|
|
|
"github.com/dotcloud/docker/rcli"
|
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-01-18 19:13:39 -05:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
2013-04-19 22:29:13 -04:00
|
|
|
"sort"
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
cmd *exec.Cmd
|
|
|
|
stdout *writeBroadcaster
|
|
|
|
stderr *writeBroadcaster
|
|
|
|
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-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
2013-04-02 21:07:16 -04:00
|
|
|
Hostname string
|
|
|
|
User string
|
|
|
|
Memory int64 // Memory limit (in bytes)
|
|
|
|
MemorySwap int64 // Total memory usage (memory + swap); set `-1' to disable swap
|
|
|
|
AttachStdin bool
|
|
|
|
AttachStdout bool
|
|
|
|
AttachStderr bool
|
2013-04-05 01:58:01 -04:00
|
|
|
PortSpecs []string
|
2013-04-02 21:07:16 -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
|
2013-04-10 22:02:23 -04:00
|
|
|
Dns []string
|
2013-04-02 21:07:16 -04:00
|
|
|
Image string // Name of the image as it was passed by the operator (eg. could be symbolic)
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
|
|
|
|
2013-04-18 23:55:41 -04:00
|
|
|
func ParseRun(args []string, stdout io.Writer, capabilities *Capabilities) (*Config, error) {
|
2013-03-26 11:31:26 -04:00
|
|
|
cmd := rcli.Subcmd(stdout, "run", "[OPTIONS] IMAGE COMMAND [ARG...]", "Run a command in a new container")
|
|
|
|
if len(args) > 0 && args[0] != "--help" {
|
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
}
|
|
|
|
|
2013-04-01 16:03:24 -04:00
|
|
|
flHostname := cmd.String("h", "", "Container host name")
|
2013-03-28 20:12:23 -04:00
|
|
|
flUser := cmd.String("u", "", "Username or UID")
|
|
|
|
flDetach := cmd.Bool("d", false, "Detached mode: leave the container running in the background")
|
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-04-18 23:55:41 -04:00
|
|
|
if *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-04-05 01:58:01 -04:00
|
|
|
var flPorts ListOpts
|
2013-04-03 09:37:56 -04:00
|
|
|
cmd.Var(&flPorts, "p", "Expose a container's port to the host (use 'docker port' to see the actual mapping)")
|
2013-03-28 01:50:33 -04:00
|
|
|
|
2013-03-28 20:12:23 -04:00
|
|
|
var flEnv ListOpts
|
|
|
|
cmd.Var(&flEnv, "e", "Set environment variables")
|
2013-03-28 01:50:33 -04:00
|
|
|
|
2013-04-10 22:02:23 -04:00
|
|
|
var flDns ListOpts
|
|
|
|
cmd.Var(&flDns, "dns", "Set custom dns servers")
|
|
|
|
|
2013-03-23 15:16:58 -04:00
|
|
|
if err := cmd.Parse(args); err != nil {
|
2013-03-23 15:39:09 -04:00
|
|
|
return nil, err
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
2013-04-03 10:06:35 -04:00
|
|
|
if *flDetach && len(flAttach) > 0 {
|
2013-04-02 21:07:16 -04:00
|
|
|
return nil, fmt.Errorf("Conflicting options: -a and -d")
|
|
|
|
}
|
|
|
|
// 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-03-25 10:17:11 -04:00
|
|
|
parsedArgs := cmd.Args()
|
|
|
|
runCmd := []string{}
|
|
|
|
image := ""
|
|
|
|
if len(parsedArgs) >= 1 {
|
|
|
|
image = cmd.Arg(0)
|
|
|
|
}
|
|
|
|
if len(parsedArgs) > 1 {
|
|
|
|
runCmd = parsedArgs[1:]
|
|
|
|
}
|
2013-03-23 15:16:58 -04:00
|
|
|
config := &Config{
|
2013-04-02 23:46:32 -04:00
|
|
|
Hostname: *flHostname,
|
2013-04-05 01:58:01 -04:00
|
|
|
PortSpecs: flPorts,
|
2013-04-02 21:07:16 -04:00
|
|
|
User: *flUser,
|
|
|
|
Tty: *flTty,
|
|
|
|
OpenStdin: *flStdin,
|
|
|
|
Memory: *flMemory,
|
|
|
|
AttachStdin: flAttach.Get("stdin"),
|
|
|
|
AttachStdout: flAttach.Get("stdout"),
|
|
|
|
AttachStderr: flAttach.Get("stderr"),
|
|
|
|
Env: flEnv,
|
|
|
|
Cmd: runCmd,
|
2013-04-10 22:02:23 -04:00
|
|
|
Dns: flDns,
|
2013-04-02 21:07:16 -04:00
|
|
|
Image: image,
|
2013-03-23 15:16:58 -04:00
|
|
|
}
|
2013-04-18 23:55:41 -04:00
|
|
|
|
|
|
|
if *flMemory > 0 && !capabilities.SwapLimit {
|
|
|
|
fmt.Fprintf(stdout, "WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.\n")
|
|
|
|
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-03-23 15:39:09 -04:00
|
|
|
return config, nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-02-28 14:51:14 -05:00
|
|
|
type NetworkSettings struct {
|
2013-02-25 17:06:22 -05: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-02-28 14:51:14 -05:00
|
|
|
PortMapping map[string]string
|
2013-02-25 17:06:22 -05:00
|
|
|
}
|
|
|
|
|
2013-04-19 22:29:13 -04:00
|
|
|
// String returns a human-readable description of the port mapping defined in the settings
|
|
|
|
func (settings *NetworkSettings) PortMappingHuman() string {
|
|
|
|
var mapping []string
|
|
|
|
for private, public := range settings.PortMapping {
|
|
|
|
mapping = append(mapping, fmt.Sprintf("%s->%s", public, private))
|
|
|
|
}
|
|
|
|
sort.Strings(mapping)
|
|
|
|
return strings.Join(mapping, ", ")
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
if err := json.Unmarshal(data, container); err != nil {
|
2013-01-25 17:39:02 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-03-21 03:25:00 -04:00
|
|
|
return nil
|
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-03-21 03:25:00 -04:00
|
|
|
return ioutil.WriteFile(container.jsonPath(), data, 0666)
|
2013-01-18 19:13:39 -05: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()
|
|
|
|
if err := LxcTemplateCompiled.Execute(fo, container); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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-03-29 11:18:43 -04:00
|
|
|
Debugf("[startPty] Begin of stdout pipe")
|
2013-04-04 15:12:22 -04:00
|
|
|
io.Copy(container.stdout, ptyMaster)
|
2013-03-29 11:18:43 -04:00
|
|
|
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-04-04 14:24:22 -04:00
|
|
|
container.cmd.SysProcAttr = &syscall.SysProcAttr{Setctty: true, Setsid: true}
|
2013-01-29 18:17:20 -05:00
|
|
|
go func() {
|
|
|
|
defer container.stdin.Close()
|
2013-03-29 11:18:43 -04:00
|
|
|
Debugf("[startPty] Begin of stdin pipe")
|
2013-04-04 15:12:22 -04:00
|
|
|
io.Copy(ptyMaster, container.stdin)
|
2013-03-29 11:18:43 -04:00
|
|
|
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-03-29 11:18:43 -04:00
|
|
|
Debugf("Begin of stdin pipe [start]")
|
2013-01-29 18:17:20 -05:00
|
|
|
io.Copy(stdin, container.stdin)
|
2013-03-29 11:18:43 -04:00
|
|
|
Debugf("End of stdin pipe [start]")
|
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() {
|
|
|
|
Debugf("[start] attach stdin\n")
|
2013-04-02 15:19:01 -04:00
|
|
|
defer Debugf("[end] attach stdin\n")
|
|
|
|
// No matter what, when stdin is closed (io.Copy unblock), close stdout and stderr
|
|
|
|
if cStdout != nil {
|
|
|
|
defer cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
defer cStderr.Close()
|
|
|
|
}
|
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-04-04 15:57:45 -04:00
|
|
|
if container.Config.Tty {
|
|
|
|
_, err = CopyEscapable(cStdin, stdin)
|
|
|
|
} else {
|
|
|
|
_, err = io.Copy(cStdin, stdin)
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
if err != nil {
|
2013-04-02 15:19:01 -04:00
|
|
|
Debugf("[error] attach stdin: %s\n", err)
|
2013-04-02 02:52:20 -04:00
|
|
|
}
|
2013-04-02 15:18:20 -04:00
|
|
|
// Discard error, expecting pipe error
|
|
|
|
errors <- nil
|
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() {
|
|
|
|
Debugf("[start] attach stdout\n")
|
|
|
|
defer Debugf("[end] attach stdout\n")
|
2013-04-02 15:18:20 -04:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
|
|
|
if container.Config.StdinOnce {
|
|
|
|
if stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
_, err := io.Copy(stdout, cStdout)
|
|
|
|
if err != nil {
|
|
|
|
Debugf("[error] attach stdout: %s\n", err)
|
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if stderr != nil {
|
|
|
|
nJobs += 1
|
|
|
|
if p, err := container.StderrPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
cStderr = p
|
|
|
|
go func() {
|
|
|
|
Debugf("[start] attach stderr\n")
|
|
|
|
defer Debugf("[end] attach stderr\n")
|
2013-04-02 15:18:20 -04:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
|
|
|
if container.Config.StdinOnce {
|
|
|
|
if stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 02:52:20 -04:00
|
|
|
_, err := io.Copy(stderr, cStderr)
|
|
|
|
if err != nil {
|
|
|
|
Debugf("[error] attach stderr: %s\n", err)
|
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Go(func() error {
|
|
|
|
if cStdout != nil {
|
|
|
|
defer cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
defer cStderr.Close()
|
|
|
|
}
|
|
|
|
// FIXME: how do clean up the stdin goroutine without the unwanted side effect
|
|
|
|
// of closing the passed stdin? Add an intermediary io.Pipe?
|
|
|
|
for i := 0; i < nJobs; i += 1 {
|
|
|
|
Debugf("Waiting for job %d/%d\n", i+1, nJobs)
|
|
|
|
if err := <-errors; err != nil {
|
|
|
|
Debugf("Job %d returned error %s. Aborting all jobs\n", i+1, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
Debugf("Job %d completed successfully\n", i+1)
|
|
|
|
}
|
|
|
|
Debugf("All jobs completed successfully\n")
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func (container *Container) Start() error {
|
2013-04-09 12:09:54 -04:00
|
|
|
container.State.lock()
|
|
|
|
defer container.State.unlock()
|
|
|
|
|
2013-03-31 17:15:10 -04:00
|
|
|
if container.State.Running {
|
|
|
|
return fmt.Errorf("The container %s is already running.", container.Id)
|
|
|
|
}
|
2013-03-21 03:25:00 -04:00
|
|
|
if err := container.EnsureMounted(); err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-02-25 17:06:22 -05:00
|
|
|
if err := container.allocateNetwork(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-04-11 15:58:23 -04:00
|
|
|
|
2013-04-19 00:08:20 -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")
|
2013-04-11 15:58:23 -04:00
|
|
|
container.Config.Memory = 0
|
|
|
|
}
|
2013-04-19 00:08:20 -04:00
|
|
|
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-02-13 21:14:46 -05:00
|
|
|
if err := container.generateLXCConfig(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
params := []string{
|
2013-01-21 21:39:52 -05:00
|
|
|
"-n", container.Id,
|
2013-03-21 03:25:00 -04:00
|
|
|
"-f", container.lxcConfigPath(),
|
2013-01-18 19:13:39 -05:00
|
|
|
"--",
|
2013-02-13 17:01:44 -05:00
|
|
|
"/sbin/init",
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-02-20 20:47:09 -05:00
|
|
|
|
|
|
|
// Networking
|
2013-02-25 17:06:22 -05:00
|
|
|
params = append(params, "-g", container.network.Gateway.String())
|
2013-02-20 20:47:09 -05:00
|
|
|
|
|
|
|
// User
|
2013-02-13 20:24:35 -05:00
|
|
|
if container.Config.User != "" {
|
|
|
|
params = append(params, "-u", container.Config.User)
|
|
|
|
}
|
2013-02-20 20:47:09 -05:00
|
|
|
|
2013-04-16 03:25:55 -04:00
|
|
|
if container.Config.Tty {
|
|
|
|
params = append(params, "-e", "TERM=xterm")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup environment
|
|
|
|
params = append(params,
|
|
|
|
"-e", "HOME=/",
|
|
|
|
"-e", "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, elem := range container.Config.Env {
|
|
|
|
params = append(params, "-e", elem)
|
|
|
|
}
|
|
|
|
|
2013-02-20 20:47:09 -05:00
|
|
|
// Program
|
2013-02-13 20:24:35 -05:00
|
|
|
params = append(params, "--", container.Path)
|
2013-01-18 19:13:39 -05:00
|
|
|
params = append(params, container.Args...)
|
2013-02-20 20:47:09 -05:00
|
|
|
|
2013-03-29 01:07:25 -04:00
|
|
|
container.cmd = exec.Command("lxc-start", params...)
|
2013-01-18 19:13:39 -05:00
|
|
|
|
2013-03-29 11:46:06 -04:00
|
|
|
// Setup logging of stdout and stderr to disk
|
|
|
|
if err := container.runtime.LogToDisk(container.stdout, container.logPath("stdout")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := container.runtime.LogToDisk(container.stderr, container.logPath("stderr")); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-01-29 18:17:20 -05:00
|
|
|
var err error
|
2013-01-28 20:50:12 -05:00
|
|
|
if container.Config.Tty {
|
2013-01-29 18:17:20 -05:00
|
|
|
err = container.startPty()
|
2013-01-28 20:50:12 -05:00
|
|
|
} else {
|
2013-01-29 18:17:20 -05:00
|
|
|
err = container.start()
|
2013-01-28 20:50:12 -05:00
|
|
|
}
|
2013-01-29 18:17:20 -05:00
|
|
|
if err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-03-21 03:25:00 -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.
|
2013-01-18 19:13:39 -05:00
|
|
|
container.State.setRunning(container.cmd.Process.Pid)
|
2013-04-09 10:57:59 -04:00
|
|
|
|
|
|
|
// Init the lock
|
|
|
|
container.waitLock = make(chan struct{})
|
2013-03-21 03:25:00 -04:00
|
|
|
container.ToDisk()
|
2013-01-18 19:13:39 -05:00
|
|
|
go container.monitor()
|
2013-01-22 20:30:09 -05:00
|
|
|
return nil
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Run() error {
|
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
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()
|
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
output, err = ioutil.ReadAll(pipe)
|
|
|
|
container.Wait()
|
|
|
|
return output, err
|
|
|
|
}
|
|
|
|
|
2013-01-28 20:50:12 -05:00
|
|
|
// StdinPipe() returns a pipe connected to the standard input of the container's
|
|
|
|
// active process.
|
|
|
|
//
|
|
|
|
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()
|
|
|
|
container.stdout.AddWriter(writer)
|
|
|
|
return newBufReader(reader), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) StderrPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
|
|
|
container.stderr.AddWriter(writer)
|
|
|
|
return newBufReader(reader), nil
|
|
|
|
}
|
|
|
|
|
2013-02-25 17:06:22 -05:00
|
|
|
func (container *Container) allocateNetwork() error {
|
2013-03-21 04:43:03 -04:00
|
|
|
iface, err := container.runtime.networkManager.Allocate()
|
2013-02-25 17:06:22 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-02-28 14:51:14 -05:00
|
|
|
container.NetworkSettings.PortMapping = make(map[string]string)
|
2013-04-05 01:58:01 -04:00
|
|
|
for _, spec := range container.Config.PortSpecs {
|
|
|
|
if nat, err := iface.AllocatePort(spec); err != nil {
|
2013-02-28 14:51:14 -05:00
|
|
|
iface.Release()
|
|
|
|
return err
|
|
|
|
} else {
|
2013-04-05 01:58:01 -04:00
|
|
|
container.NetworkSettings.PortMapping[strconv.Itoa(nat.Backend)] = strconv.Itoa(nat.Frontend)
|
2013-02-28 14:51:14 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-25 17:06:22 -05:00
|
|
|
container.network = iface
|
2013-04-03 18:05:03 -04:00
|
|
|
container.NetworkSettings.Bridge = container.runtime.networkManager.bridgeIface
|
2013-02-28 14:51:14 -05:00
|
|
|
container.NetworkSettings.IpAddress = iface.IPNet.IP.String()
|
|
|
|
container.NetworkSettings.IpPrefixLen, _ = iface.IPNet.Mask.Size()
|
|
|
|
container.NetworkSettings.Gateway = iface.Gateway.String()
|
2013-02-25 17:06:22 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:04:59 -04:00
|
|
|
func (container *Container) releaseNetwork() {
|
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-04-19 15:08:43 -04:00
|
|
|
// FIXME: replace this with a control socket within docker-init
|
|
|
|
func (container *Container) waitLxc() error {
|
|
|
|
for {
|
|
|
|
if output, err := exec.Command("lxc-info", "-n", container.Id).CombinedOutput(); err != nil {
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
if !strings.Contains(string(output), "RUNNING") {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func (container *Container) monitor() {
|
2013-01-22 18:03:40 -05:00
|
|
|
// Wait for the program to exit
|
2013-03-29 11:18:43 -04:00
|
|
|
Debugf("Waiting for process")
|
2013-04-19 15:08:43 -04:00
|
|
|
|
|
|
|
// If the command does not exists, try to wait via lxc
|
|
|
|
if container.cmd == nil {
|
|
|
|
if err := container.waitLxc(); err != nil {
|
|
|
|
Debugf("%s: Process: %s", container.Id, err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := container.cmd.Wait(); err != nil {
|
|
|
|
// Discard the error as any signals or non 0 returns will generate an error
|
|
|
|
Debugf("%s: Process: %s", container.Id, err)
|
|
|
|
}
|
2013-03-29 11:29:59 -04:00
|
|
|
}
|
2013-03-29 11:18:43 -04:00
|
|
|
Debugf("Process finished")
|
|
|
|
|
2013-04-19 15:08:43 -04:00
|
|
|
var exitCode int = -1
|
|
|
|
if container.cmd != nil {
|
|
|
|
exitCode = container.cmd.ProcessState.Sys().(syscall.WaitStatus).ExitStatus()
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
|
2013-01-22 18:03:40 -05:00
|
|
|
// Cleanup
|
2013-03-30 18:32:10 -04:00
|
|
|
container.releaseNetwork()
|
2013-03-30 12:08:53 -04:00
|
|
|
if container.Config.OpenStdin {
|
|
|
|
if err := container.stdin.Close(); err != nil {
|
|
|
|
Debugf("%s: Error close stdin: %s", container.Id, err)
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 04:45:17 -04:00
|
|
|
if err := container.stdout.CloseWriters(); err != nil {
|
2013-03-29 11:29:59 -04:00
|
|
|
Debugf("%s: Error close stdout: %s", container.Id, err)
|
|
|
|
}
|
2013-04-02 04:45:17 -04:00
|
|
|
if err := container.stderr.CloseWriters(); err != nil {
|
2013-03-29 11:29:59 -04:00
|
|
|
Debugf("%s: Error close stderr: %s", container.Id, err)
|
|
|
|
}
|
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 {
|
|
|
|
Debugf("%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-01-21 21:39:52 -05:00
|
|
|
log.Printf("%v: Failed to umount filesystem: %v", container.Id, err)
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
|
|
|
|
2013-02-13 22:05:57 -05:00
|
|
|
// Re-create a brand new stdin pipe once the container exited
|
|
|
|
if container.Config.OpenStdin {
|
|
|
|
container.stdin, container.stdinPipe = io.Pipe()
|
|
|
|
}
|
|
|
|
|
2013-01-21 21:03:23 -05:00
|
|
|
// Report status back
|
|
|
|
container.State.setStopped(exitCode)
|
2013-04-09 10:57:59 -04:00
|
|
|
|
|
|
|
// Release the lock
|
|
|
|
close(container.waitLock)
|
|
|
|
|
2013-03-29 11:29:59 -04:00
|
|
|
if err := container.ToDisk(); err != nil {
|
2013-04-01 01:05:14 -04:00
|
|
|
// 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)
|
2013-03-29 11:29:59 -04:00
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-01-21 21:03:23 -05:00
|
|
|
func (container *Container) kill() error {
|
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-04-11 19:21:19 -04:00
|
|
|
// Sending SIGKILL to the process via lxc
|
2013-04-11 12:02:34 -04:00
|
|
|
output, err := exec.Command("lxc-kill", "-n", container.Id, "9").CombinedOutput()
|
|
|
|
if err != nil {
|
2013-04-11 19:21:19 -04:00
|
|
|
log.Printf("error killing container %s (%s, %s)", container.Id, output, 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 {
|
|
|
|
return fmt.Errorf("lxc-kill failed, impossible to kill the container %s", container.Id)
|
|
|
|
}
|
2013-04-11 19:21:19 -04:00
|
|
|
log.Printf("Container %s failed to exit within 10 seconds of lxc SIGKILL - trying direct SIGKILL", container.Id)
|
2013-04-11 12:02:34 -04:00
|
|
|
if err := container.cmd.Process.Kill(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-21 21:03:23 -05:00
|
|
|
// Wait for the container to be actually stopped
|
2013-01-22 20:30:09 -05:00
|
|
|
container.Wait()
|
2013-01-21 21:03:23 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Kill() error {
|
2013-04-09 12:09:54 -04:00
|
|
|
container.State.lock()
|
|
|
|
defer container.State.unlock()
|
2013-04-11 12:26:17 -04:00
|
|
|
if !container.State.Running {
|
|
|
|
return nil
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
return container.kill()
|
|
|
|
}
|
|
|
|
|
2013-04-16 12:43:44 -04:00
|
|
|
func (container *Container) Stop(seconds int) error {
|
2013-04-09 12:09:54 -04:00
|
|
|
container.State.lock()
|
|
|
|
defer container.State.unlock()
|
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-03-29 01:07:25 -04:00
|
|
|
if output, err := exec.Command("lxc-kill", "-n", container.Id, "15").CombinedOutput(); err != nil {
|
2013-03-30 03:23:12 -04:00
|
|
|
log.Print(string(output))
|
|
|
|
log.Print("Failed to send SIGTERM to the process, force killing")
|
2013-04-09 12:09:54 -04:00
|
|
|
if err := container.kill(); 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 {
|
|
|
|
log.Printf("Container %v failed to exit within %d seconds of SIGTERM - using the force", container.Id, seconds)
|
2013-04-09 15:06:01 -04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
if err := container.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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-03-21 20:47:23 -04:00
|
|
|
func (container *Container) ExportRw() (Archive, error) {
|
|
|
|
return Tar(container.rwPath(), Uncompressed)
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
2013-03-21 20:47:23 -04:00
|
|
|
func (container *Container) Export() (Archive, error) {
|
2013-03-21 03:25:00 -04:00
|
|
|
if err := container.EnsureMounted(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-03-21 20:47:23 -04:00
|
|
|
return Tar(container.RootfsPath(), 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-04-03 05:18:23 -04:00
|
|
|
panic("unreachable")
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
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-03-21 20:47:23 -04:00
|
|
|
return Unmount(container.RootfsPath())
|
2013-03-21 03:25:00 -04:00
|
|
|
}
|
|
|
|
|
2013-03-31 05:02:01 -04:00
|
|
|
// ShortId returns a shorthand version of the container's id for convenience.
|
|
|
|
// 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.
|
|
|
|
func (container *Container) ShortId() string {
|
2013-04-01 01:11:55 -04:00
|
|
|
return 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 {
|
|
|
|
return path.Join(container.root, fmt.Sprintf("%s-%s.log", container.Id, name))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) ReadLog(name string) (io.Reader, error) {
|
|
|
|
return os.Open(container.logPath(name))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) jsonPath() string {
|
|
|
|
return path.Join(container.root, "config.json")
|
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateId(id string) error {
|
|
|
|
if id == "" {
|
|
|
|
return fmt.Errorf("Invalid empty id")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|