2013-01-19 00:13:39 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2013-08-15 18:38:17 +00:00
|
|
|
"errors"
|
2013-03-21 07:25:00 +00:00
|
|
|
"fmt"
|
2013-10-31 23:57:45 +00:00
|
|
|
"github.com/dotcloud/docker/archive"
|
2014-01-16 22:00:18 +00:00
|
|
|
"github.com/dotcloud/docker/engine"
|
2014-01-10 00:03:22 +00:00
|
|
|
"github.com/dotcloud/docker/execdriver"
|
2013-11-19 09:36:54 +00:00
|
|
|
"github.com/dotcloud/docker/graphdriver"
|
2014-02-15 02:18:16 +00:00
|
|
|
"github.com/dotcloud/docker/links"
|
2014-02-12 00:48:44 +00:00
|
|
|
"github.com/dotcloud/docker/nat"
|
2014-02-12 04:04:39 +00:00
|
|
|
"github.com/dotcloud/docker/runconfig"
|
2013-05-14 22:37:35 +00:00
|
|
|
"github.com/dotcloud/docker/utils"
|
2013-01-19 00:13:39 +00:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2013-01-22 02:03:23 +00:00
|
|
|
"log"
|
2013-01-19 00:13:39 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
2013-04-20 02:29:13 +00:00
|
|
|
"strings"
|
2013-11-21 20:21:03 +00:00
|
|
|
"sync"
|
2013-01-19 00:13:39 +00:00
|
|
|
"syscall"
|
2013-01-22 02:03:23 +00:00
|
|
|
"time"
|
2013-01-19 00:13:39 +00:00
|
|
|
)
|
|
|
|
|
2014-02-23 03:01:45 +00:00
|
|
|
const defaultPathEnv = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
|
|
|
2013-11-29 15:40:44 +00:00
|
|
|
var (
|
2014-02-15 01:15:40 +00:00
|
|
|
ErrNotATTY = errors.New("The PTY is not a file")
|
|
|
|
ErrNoTTY = errors.New("No PTY found")
|
|
|
|
ErrContainerStart = errors.New("The container failed to start. Unknown error")
|
|
|
|
ErrContainerStartTimeout = errors.New("The container failed to start due to timed out.")
|
2013-11-29 15:40:44 +00:00
|
|
|
)
|
|
|
|
|
2013-01-19 00:13:39 +00:00
|
|
|
type Container struct {
|
2013-11-21 20:21:03 +00:00
|
|
|
sync.Mutex
|
2013-11-07 23:58:03 +00:00
|
|
|
root string // Path to the "home" of the container, including metadata.
|
2014-01-30 15:43:53 +00:00
|
|
|
basefs string // Path to the graphdriver mountpoint
|
2013-03-21 07:25:00 +00:00
|
|
|
|
2013-06-04 18:00:22 +00:00
|
|
|
ID string
|
2013-01-22 19:13:22 +00:00
|
|
|
|
|
|
|
Created time.Time
|
|
|
|
|
2013-01-19 00:13:39 +00:00
|
|
|
Path string
|
|
|
|
Args []string
|
|
|
|
|
2014-02-12 04:04:39 +00:00
|
|
|
Config *runconfig.Config
|
2013-03-21 07:25:00 +00:00
|
|
|
State State
|
|
|
|
Image string
|
2013-01-19 00:13:39 +00:00
|
|
|
|
2013-02-28 19:51:14 +00:00
|
|
|
NetworkSettings *NetworkSettings
|
2013-01-19 00:13:39 +00:00
|
|
|
|
2013-04-11 01:23:34 +00:00
|
|
|
ResolvConfPath string
|
2013-09-09 18:57:25 +00:00
|
|
|
HostnamePath string
|
|
|
|
HostsPath string
|
2013-10-28 23:58:59 +00:00
|
|
|
Name string
|
2013-11-15 06:52:08 +00:00
|
|
|
Driver string
|
2013-04-11 01:23:34 +00:00
|
|
|
|
2014-01-21 00:05:07 +00:00
|
|
|
command *execdriver.Command
|
2013-05-14 22:37:35 +00:00
|
|
|
stdout *utils.WriteBroadcaster
|
|
|
|
stderr *utils.WriteBroadcaster
|
2013-04-11 01:23:34 +00:00
|
|
|
stdin io.ReadCloser
|
|
|
|
stdinPipe io.WriteCloser
|
2013-03-30 16:05:53 +00:00
|
|
|
|
2013-03-29 15:41:48 +00:00
|
|
|
runtime *Runtime
|
2013-04-09 14:57:59 +00:00
|
|
|
|
|
|
|
waitLock chan struct{}
|
2013-04-10 23:10:53 +00:00
|
|
|
Volumes map[string]string
|
2013-07-26 08:10:42 +00:00
|
|
|
// Store rw/ro in a separate structure to preserve reverse-compatibility on-disk.
|
2013-06-25 06:30:48 +00:00
|
|
|
// Easier than migrating older container configs :)
|
2013-10-31 21:58:43 +00:00
|
|
|
VolumesRW map[string]bool
|
2014-02-12 04:04:39 +00:00
|
|
|
hostConfig *runconfig.HostConfig
|
2013-10-05 02:25:15 +00:00
|
|
|
|
2014-02-15 02:18:16 +00:00
|
|
|
activeLinks map[string]*links.Link
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
2014-02-12 00:48:44 +00:00
|
|
|
// FIXME: move deprecated port stuff to nat to clean up the core.
|
2013-10-05 02:25:15 +00:00
|
|
|
type PortMapping map[string]string // Deprecated
|
2013-06-11 22:46:23 +00:00
|
|
|
|
2013-02-28 19:51:14 +00:00
|
|
|
type NetworkSettings struct {
|
2013-06-04 18:00:22 +00:00
|
|
|
IPAddress string
|
|
|
|
IPPrefixLen int
|
2013-02-28 19:51:14 +00:00
|
|
|
Gateway string
|
2013-04-03 22:05:03 +00:00
|
|
|
Bridge string
|
2013-10-05 02:25:15 +00:00
|
|
|
PortMapping map[string]PortMapping // Deprecated
|
2014-02-12 00:48:44 +00:00
|
|
|
Ports nat.PortMap
|
2013-02-25 22:06:22 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 22:00:18 +00:00
|
|
|
func (settings *NetworkSettings) PortMappingAPI() *engine.Table {
|
|
|
|
var outs = engine.NewTable("", 0)
|
2013-10-05 02:25:15 +00:00
|
|
|
for port, bindings := range settings.Ports {
|
2014-02-12 00:48:44 +00:00
|
|
|
p, _ := nat.ParsePort(port.Port())
|
2013-10-05 02:25:15 +00:00
|
|
|
if len(bindings) == 0 {
|
2014-01-16 22:00:18 +00:00
|
|
|
out := &engine.Env{}
|
|
|
|
out.SetInt("PublicPort", p)
|
|
|
|
out.Set("Type", port.Proto())
|
|
|
|
outs.Add(out)
|
2013-10-05 02:25:15 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, binding := range bindings {
|
2014-01-16 22:00:18 +00:00
|
|
|
out := &engine.Env{}
|
2014-02-12 00:48:44 +00:00
|
|
|
h, _ := nat.ParsePort(binding.HostPort)
|
2014-01-16 22:00:18 +00:00
|
|
|
out.SetInt("PrivatePort", p)
|
|
|
|
out.SetInt("PublicPort", h)
|
|
|
|
out.Set("Type", port.Proto())
|
|
|
|
out.Set("IP", binding.HostIp)
|
|
|
|
outs.Add(out)
|
2013-10-05 02:25:15 +00:00
|
|
|
}
|
2013-06-11 22:46:23 +00:00
|
|
|
}
|
2014-01-16 22:00:18 +00:00
|
|
|
return outs
|
2013-04-20 02:29:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-24 20:37:00 +00: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-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-11-07 20:30:56 +00:00
|
|
|
return fmt.Errorf("inject: error mounting container %s: %s", container.ID, err)
|
2013-04-24 20:51:28 +00:00
|
|
|
}
|
2013-12-05 21:18:02 +00:00
|
|
|
defer container.Unmount()
|
2013-11-07 23:26:52 +00:00
|
|
|
|
2013-11-06 05:44:52 +00:00
|
|
|
// Return error if path exists
|
2014-01-30 15:43:53 +00:00
|
|
|
destPath := path.Join(container.basefs, pth)
|
2013-11-08 20:06:15 +00:00
|
|
|
if _, err := os.Stat(destPath); err == nil {
|
2013-11-06 05:44:52 +00:00
|
|
|
// Since err is nil, the path could be stat'd and it exists
|
|
|
|
return fmt.Errorf("%s exists", pth)
|
2013-11-07 20:19:24 +00:00
|
|
|
} else if !os.IsNotExist(err) {
|
2013-11-06 05:44:52 +00:00
|
|
|
// Expect err might be that the file doesn't exist, so
|
2013-11-07 20:19:24 +00:00
|
|
|
// if it's some other error, return that.
|
2013-11-06 05:44:52 +00:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
2013-11-08 20:06:15 +00:00
|
|
|
|
|
|
|
// Make sure the directory exists
|
2014-01-30 15:43:53 +00:00
|
|
|
if err := os.MkdirAll(path.Join(container.basefs, path.Dir(pth)), 0755); err != nil {
|
2013-11-08 20:06:15 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
dest, err := os.Create(destPath)
|
2013-04-24 20:37:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-11-08 20:06:15 +00:00
|
|
|
defer dest.Close()
|
|
|
|
|
2013-04-24 20:37:00 +00:00
|
|
|
if _, err := io.Copy(dest, file); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-29 11:24:31 +00:00
|
|
|
func (container *Container) When() time.Time {
|
|
|
|
return container.Created
|
|
|
|
}
|
|
|
|
|
2013-03-21 07:25:00 +00:00
|
|
|
func (container *Container) FromDisk() error {
|
|
|
|
data, err := ioutil.ReadFile(container.jsonPath())
|
2013-01-25 22:39:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-03-21 07:25:00 +00:00
|
|
|
// Load container settings
|
2013-07-29 16:40:35 +00: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 22:39:02 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
return container.readHostConfig()
|
2013-01-25 22:39:02 +00:00
|
|
|
}
|
|
|
|
|
2013-03-21 07:25:00 +00:00
|
|
|
func (container *Container) ToDisk() (err error) {
|
2013-01-22 19:13:22 +00:00
|
|
|
data, err := json.Marshal(container)
|
2013-01-19 00:13:39 +00:00
|
|
|
if err != nil {
|
2013-01-22 19:13:22 +00:00
|
|
|
return
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
err = ioutil.WriteFile(container.jsonPath(), data, 0666)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return container.writeHostConfig()
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 21:58:43 +00:00
|
|
|
func (container *Container) readHostConfig() error {
|
2014-02-12 04:04:39 +00:00
|
|
|
container.hostConfig = &runconfig.HostConfig{}
|
2013-10-31 21:58:43 +00:00
|
|
|
// 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 12:19:25 +00:00
|
|
|
data, err := ioutil.ReadFile(container.hostConfigPath())
|
|
|
|
if err != nil {
|
2013-10-31 21:58:43 +00:00
|
|
|
return err
|
2013-07-02 12:19:25 +00:00
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
return json.Unmarshal(data, container.hostConfig)
|
2013-07-02 12:19:25 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 21:58:43 +00:00
|
|
|
func (container *Container) writeHostConfig() (err error) {
|
|
|
|
data, err := json.Marshal(container.hostConfig)
|
2013-07-02 12:19:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return ioutil.WriteFile(container.hostConfigPath(), data, 0666)
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:40:23 +00:00
|
|
|
func (container *Container) generateEnvConfig(env []string) error {
|
2013-08-15 00:14:30 +00:00
|
|
|
data, err := json.Marshal(env)
|
2013-08-13 22:40:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-12-17 22:04:37 +00:00
|
|
|
p, err := container.EnvConfigPath()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ioutil.WriteFile(p, data, 0600)
|
2013-08-13 22:40:23 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-02 19:18:20 +00: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 06:52:20 +00: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 17:41:36 +00:00
|
|
|
utils.Debugf("attach: stdin: begin")
|
|
|
|
defer utils.Debugf("attach: stdin: end")
|
2013-04-02 19:19:01 +00:00
|
|
|
// No matter what, when stdin is closed (io.Copy unblock), close stdout and stderr
|
2013-04-09 15:18:16 +00:00
|
|
|
if container.Config.StdinOnce && !container.Config.Tty {
|
2013-04-02 06:52:20 +00:00
|
|
|
defer cStdin.Close()
|
2013-07-24 22:48:18 +00:00
|
|
|
} else {
|
2014-01-11 00:18:15 +00:00
|
|
|
defer func() {
|
|
|
|
if cStdout != nil {
|
|
|
|
cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
cStderr.Close()
|
|
|
|
}
|
|
|
|
}()
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
2013-04-04 19:57:45 +00:00
|
|
|
if container.Config.Tty {
|
2013-05-14 22:37:35 +00:00
|
|
|
_, err = utils.CopyEscapable(cStdin, stdin)
|
2013-04-04 19:57:45 +00:00
|
|
|
} else {
|
|
|
|
_, err = io.Copy(cStdin, stdin)
|
|
|
|
}
|
2013-10-24 20:00:51 +00:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 06:52:20 +00:00
|
|
|
if err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: stdin: %s", err)
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
2013-10-24 20:00:51 +00:00
|
|
|
errors <- err
|
2013-04-02 06:52:20 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if stdout != nil {
|
|
|
|
nJobs += 1
|
|
|
|
if p, err := container.StdoutPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
cStdout = p
|
|
|
|
go func() {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Debugf("attach: stdout: begin")
|
|
|
|
defer utils.Debugf("attach: stdout: end")
|
2013-04-02 19:18:20 +00:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
2013-09-24 00:53:02 +00:00
|
|
|
if container.Config.StdinOnce && stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
2013-04-02 19:18:20 +00:00
|
|
|
}
|
2013-04-02 06:52:20 +00:00
|
|
|
_, err := io.Copy(stdout, cStdout)
|
2013-10-16 17:41:36 +00:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 06:52:20 +00:00
|
|
|
if err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: stdout: %s", err)
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
2013-06-04 00:39:29 +00:00
|
|
|
} else {
|
|
|
|
go func() {
|
2013-06-04 21:35:32 +00:00
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
|
|
|
if cStdout, err := container.StdoutPipe(); err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: stdout pipe: %s", err)
|
2013-06-04 21:35:32 +00:00
|
|
|
} else {
|
|
|
|
io.Copy(&utils.NopWriter{}, cStdout)
|
2013-06-04 00:39:29 +00:00
|
|
|
}
|
|
|
|
}()
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
|
|
|
if stderr != nil {
|
|
|
|
nJobs += 1
|
|
|
|
if p, err := container.StderrPipe(); err != nil {
|
|
|
|
errors <- err
|
|
|
|
} else {
|
|
|
|
cStderr = p
|
|
|
|
go func() {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Debugf("attach: stderr: begin")
|
|
|
|
defer utils.Debugf("attach: stderr: end")
|
2013-04-02 19:18:20 +00:00
|
|
|
// If we are in StdinOnce mode, then close stdin
|
2013-09-24 00:53:02 +00:00
|
|
|
if container.Config.StdinOnce && stdin != nil {
|
|
|
|
defer stdin.Close()
|
|
|
|
}
|
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
2013-04-02 19:18:20 +00:00
|
|
|
}
|
2013-04-02 06:52:20 +00:00
|
|
|
_, err := io.Copy(stderr, cStderr)
|
2013-10-16 17:41:36 +00:00
|
|
|
if err == io.ErrClosedPipe {
|
|
|
|
err = nil
|
|
|
|
}
|
2013-04-02 06:52:20 +00:00
|
|
|
if err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: stderr: %s", err)
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
|
|
|
errors <- err
|
|
|
|
}()
|
|
|
|
}
|
2013-06-04 00:39:29 +00:00
|
|
|
} else {
|
|
|
|
go func() {
|
2013-06-04 21:35:32 +00:00
|
|
|
if stdinCloser != nil {
|
|
|
|
defer stdinCloser.Close()
|
|
|
|
}
|
2013-06-04 00:39:29 +00:00
|
|
|
|
2013-06-10 18:08:40 +00:00
|
|
|
if cStderr, err := container.StderrPipe(); err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: stdout pipe: %s", err)
|
2013-06-04 21:35:32 +00:00
|
|
|
} else {
|
|
|
|
io.Copy(&utils.NopWriter{}, cStderr)
|
2013-06-04 00:39:29 +00:00
|
|
|
}
|
|
|
|
}()
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
2013-06-04 00:39:29 +00:00
|
|
|
|
2013-05-14 22:37:35 +00:00
|
|
|
return utils.Go(func() error {
|
2014-01-11 00:18:15 +00:00
|
|
|
defer func() {
|
|
|
|
if cStdout != nil {
|
|
|
|
cStdout.Close()
|
|
|
|
}
|
|
|
|
if cStderr != nil {
|
|
|
|
cStderr.Close()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2013-10-16 17:41:36 +00:00
|
|
|
// FIXME: how to clean up the stdin goroutine without the unwanted side effect
|
2013-04-02 06:52:20 +00:00
|
|
|
// of closing the passed stdin? Add an intermediary io.Pipe?
|
|
|
|
for i := 0; i < nJobs; i += 1 {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Debugf("attach: waiting for job %d/%d", i+1, nJobs)
|
2013-04-02 06:52:20 +00:00
|
|
|
if err := <-errors; err != nil {
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Errorf("attach: job %d returned error %s, aborting all jobs", i+1, err)
|
2013-04-02 06:52:20 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Debugf("attach: job %d completed successfully", i+1)
|
2013-04-02 06:52:20 +00:00
|
|
|
}
|
2013-10-16 17:41:36 +00:00
|
|
|
utils.Debugf("attach: all jobs completed successfully")
|
2013-04-02 06:52:20 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-01-21 02:07:18 +00:00
|
|
|
func populateCommand(c *Container) {
|
|
|
|
var (
|
|
|
|
en *execdriver.Network
|
|
|
|
driverConfig []string
|
|
|
|
)
|
2014-01-30 02:34:43 +00:00
|
|
|
|
2014-01-21 02:07:18 +00:00
|
|
|
if !c.Config.NetworkDisabled {
|
|
|
|
network := c.NetworkSettings
|
|
|
|
en = &execdriver.Network{
|
|
|
|
Gateway: network.Gateway,
|
|
|
|
Bridge: network.Bridge,
|
|
|
|
IPAddress: network.IPAddress,
|
|
|
|
IPPrefixLen: network.IPPrefixLen,
|
|
|
|
Mtu: c.runtime.config.Mtu,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if lxcConf := c.hostConfig.LxcConf; lxcConf != nil {
|
|
|
|
for _, pair := range lxcConf {
|
|
|
|
driverConfig = append(driverConfig, fmt.Sprintf("%s = %s", pair.Key, pair.Value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resources := &execdriver.Resources{
|
|
|
|
Memory: c.Config.Memory,
|
|
|
|
MemorySwap: c.Config.MemorySwap,
|
|
|
|
CpuShares: c.Config.CpuShares,
|
|
|
|
}
|
|
|
|
c.command = &execdriver.Command{
|
|
|
|
ID: c.ID,
|
|
|
|
Privileged: c.hostConfig.Privileged,
|
|
|
|
Rootfs: c.RootfsPath(),
|
|
|
|
InitPath: "/.dockerinit",
|
|
|
|
Entrypoint: c.Path,
|
|
|
|
Arguments: c.Args,
|
|
|
|
WorkingDir: c.Config.WorkingDir,
|
|
|
|
Network: en,
|
|
|
|
Tty: c.Config.Tty,
|
|
|
|
User: c.Config.User,
|
|
|
|
Config: driverConfig,
|
|
|
|
Resources: resources,
|
|
|
|
}
|
|
|
|
c.command.SysProcAttr = &syscall.SysProcAttr{Setsid: true}
|
|
|
|
}
|
|
|
|
|
2013-10-31 21:58:43 +00:00
|
|
|
func (container *Container) Start() (err error) {
|
2013-11-21 20:21:03 +00:00
|
|
|
container.Lock()
|
|
|
|
defer container.Unlock()
|
|
|
|
|
|
|
|
if container.State.IsRunning() {
|
2013-11-12 02:15:38 +00:00
|
|
|
return fmt.Errorf("The container %s is already running.", container.ID)
|
|
|
|
}
|
2014-01-30 02:34:43 +00:00
|
|
|
|
2013-10-16 20:12:56 +00:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
container.cleanup()
|
2013-10-16 19:01:55 +00:00
|
|
|
}
|
2013-10-16 20:12:56 +00:00
|
|
|
}()
|
2014-01-30 02:34:43 +00:00
|
|
|
|
2013-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-10-16 20:12:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-01-30 02:34:43 +00:00
|
|
|
|
|
|
|
if container.runtime.config.DisableNetwork {
|
2013-10-16 20:12:56 +00:00
|
|
|
container.Config.NetworkDisabled = true
|
2013-10-10 16:44:48 +00:00
|
|
|
container.buildHostnameAndHostsFiles("127.0.1.1")
|
2013-10-16 20:12:56 +00:00
|
|
|
} else {
|
2013-10-31 21:58:43 +00:00
|
|
|
if err := container.allocateNetwork(); err != nil {
|
2013-07-22 00:49:09 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-10-08 21:29:22 +00:00
|
|
|
container.buildHostnameAndHostsFiles(container.NetworkSettings.IPAddress)
|
2013-10-16 20:12:56 +00:00
|
|
|
}
|
2013-04-11 19:58:23 +00:00
|
|
|
|
2013-10-16 20:12:56 +00:00
|
|
|
// Make sure the config is compatible with the current kernel
|
2014-01-15 22:36:13 +00:00
|
|
|
if container.Config.Memory > 0 && !container.runtime.sysInfo.MemoryLimit {
|
2013-10-16 20:12:56 +00:00
|
|
|
log.Printf("WARNING: Your kernel does not support memory limit capabilities. Limitation discarded.\n")
|
|
|
|
container.Config.Memory = 0
|
|
|
|
}
|
2014-01-15 22:36:13 +00:00
|
|
|
if container.Config.Memory > 0 && !container.runtime.sysInfo.SwapLimit {
|
2013-10-16 20:12:56 +00:00
|
|
|
log.Printf("WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.\n")
|
|
|
|
container.Config.MemorySwap = -1
|
|
|
|
}
|
2013-04-11 19:58:23 +00:00
|
|
|
|
2014-01-15 22:36:13 +00:00
|
|
|
if container.runtime.sysInfo.IPv4ForwardingDisabled {
|
2013-10-16 20:12:56 +00:00
|
|
|
log.Printf("WARNING: IPv4 forwarding is disabled. Networking will not work")
|
|
|
|
}
|
2013-08-03 22:06:58 +00:00
|
|
|
|
2014-02-15 01:15:40 +00:00
|
|
|
if err := prepareVolumesForContainer(container); err != nil {
|
2013-12-03 22:47:49 +00:00
|
|
|
return err
|
2013-10-16 20:12:56 +00:00
|
|
|
}
|
2013-04-10 01:19:55 +00:00
|
|
|
|
2013-08-13 22:40:23 +00:00
|
|
|
// Setup environment
|
|
|
|
env := []string{
|
|
|
|
"HOME=/",
|
2014-02-23 03:01:45 +00:00
|
|
|
"PATH=" + defaultPathEnv,
|
2013-08-13 22:40:23 +00:00
|
|
|
"HOSTNAME=" + container.Config.Hostname,
|
2013-10-16 20:12:56 +00:00
|
|
|
}
|
2013-04-16 07:25:55 +00:00
|
|
|
|
2013-08-13 22:40:23 +00:00
|
|
|
if container.Config.Tty {
|
|
|
|
env = append(env, "TERM=xterm")
|
|
|
|
}
|
2013-10-05 02:25:15 +00:00
|
|
|
|
|
|
|
// Init any links between the parent and children
|
|
|
|
runtime := container.runtime
|
|
|
|
|
2013-10-28 23:58:59 +00:00
|
|
|
children, err := runtime.Children(container.Name)
|
2013-10-05 02:25:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(children) > 0 {
|
2014-02-15 02:18:16 +00:00
|
|
|
container.activeLinks = make(map[string]*links.Link, len(children))
|
2013-10-05 02:25:15 +00:00
|
|
|
|
2014-01-30 20:43:49 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2014-02-15 02:07:33 +00:00
|
|
|
for linkAlias, child := range children {
|
|
|
|
if !child.State.IsRunning() {
|
|
|
|
return fmt.Errorf("Cannot link to a non running container: %s AS %s", child.Name, linkAlias)
|
|
|
|
}
|
|
|
|
|
2014-02-15 02:18:16 +00:00
|
|
|
link, err := links.NewLink(
|
2014-02-15 02:07:33 +00:00
|
|
|
container.NetworkSettings.IPAddress,
|
|
|
|
child.NetworkSettings.IPAddress,
|
|
|
|
linkAlias,
|
|
|
|
child.Config.Env,
|
|
|
|
child.Config.ExposedPorts,
|
|
|
|
runtime.eng)
|
|
|
|
|
2014-01-30 20:43:49 +00:00
|
|
|
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() {
|
|
|
|
env = append(env, envVar)
|
|
|
|
}
|
|
|
|
}
|
2013-10-05 02:25:15 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:40:23 +00:00
|
|
|
for _, elem := range container.Config.Env {
|
|
|
|
env = append(env, elem)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := container.generateEnvConfig(env); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-10-16 20:12:56 +00:00
|
|
|
if container.Config.WorkingDir != "" {
|
2014-01-21 02:07:18 +00:00
|
|
|
container.Config.WorkingDir = path.Clean(container.Config.WorkingDir)
|
2014-01-30 15:43:53 +00:00
|
|
|
if err := os.MkdirAll(path.Join(container.basefs, container.Config.WorkingDir), 0755); err != nil {
|
2013-10-16 20:12:56 +00:00
|
|
|
return nil
|
2013-10-16 19:01:55 +00:00
|
|
|
}
|
2013-10-16 20:12:56 +00:00
|
|
|
}
|
2013-03-29 15:46:06 +00:00
|
|
|
|
2013-12-19 00:42:49 +00:00
|
|
|
envPath, err := container.EnvConfigPath()
|
2013-12-17 22:04:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-02-15 01:15:40 +00:00
|
|
|
if err := mountVolumesForContainer(container, envPath); err != nil {
|
2014-01-30 15:43:53 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-01-21 02:07:18 +00:00
|
|
|
populateCommand(container)
|
2013-10-29 15:16:51 +00:00
|
|
|
|
2013-10-16 20:12:56 +00: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
|
|
|
|
}
|
2014-01-10 23:34:03 +00:00
|
|
|
container.waitLock = make(chan struct{})
|
2014-01-13 23:37:17 +00:00
|
|
|
|
2014-01-15 19:46:25 +00:00
|
|
|
callbackLock := make(chan struct{})
|
2014-01-21 00:05:07 +00:00
|
|
|
callback := func(command *execdriver.Command) {
|
|
|
|
container.State.SetRunning(command.Pid())
|
|
|
|
if command.Tty {
|
2014-01-13 23:37:17 +00:00
|
|
|
// The callback is called after the process Start()
|
|
|
|
// so we are in the parent process. In TTY mode, stdin/out/err is the PtySlace
|
|
|
|
// which we close here.
|
2014-01-21 00:05:07 +00:00
|
|
|
if c, ok := command.Stdout.(io.Closer); ok {
|
2014-01-13 23:02:12 +00:00
|
|
|
c.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := container.ToDisk(); err != nil {
|
|
|
|
utils.Debugf("%s", err)
|
|
|
|
}
|
2014-01-15 19:46:25 +00:00
|
|
|
close(callbackLock)
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
2013-10-16 20:12:56 +00:00
|
|
|
|
2014-01-14 00:10:23 +00:00
|
|
|
// We use a callback here instead of a goroutine and an chan for
|
|
|
|
// syncronization purposes
|
2014-01-14 00:41:35 +00:00
|
|
|
cErr := utils.Go(func() error { return container.monitor(callback) })
|
2014-01-13 23:02:12 +00:00
|
|
|
|
|
|
|
// Start should not return until the process is actually running
|
2014-01-14 00:41:35 +00:00
|
|
|
select {
|
2014-01-15 19:46:25 +00:00
|
|
|
case <-callbackLock:
|
2014-01-14 00:41:35 +00:00
|
|
|
case err := <-cErr:
|
|
|
|
return err
|
|
|
|
}
|
2014-01-10 00:03:22 +00:00
|
|
|
return nil
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Run() error {
|
2013-10-31 21:58:43 +00:00
|
|
|
if err := container.Start(); err != nil {
|
2013-01-19 00:13:39 +00: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 21:58:43 +00:00
|
|
|
if err := container.Start(); err != nil {
|
2013-01-19 00:13:39 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
output, err = ioutil.ReadAll(pipe)
|
|
|
|
container.Wait()
|
|
|
|
return output, err
|
|
|
|
}
|
|
|
|
|
2013-10-16 17:41:36 +00: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-29 01:50:12 +00:00
|
|
|
func (container *Container) StdinPipe() (io.WriteCloser, error) {
|
|
|
|
return container.stdinPipe, nil
|
|
|
|
}
|
|
|
|
|
2013-01-19 00:13:39 +00:00
|
|
|
func (container *Container) StdoutPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
2013-07-11 17:18:28 +00:00
|
|
|
container.stdout.AddWriter(writer, "")
|
2013-05-14 22:37:35 +00:00
|
|
|
return utils.NewBufReader(reader), nil
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) StderrPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
2013-07-11 17:18:28 +00:00
|
|
|
container.stderr.AddWriter(writer, "")
|
2013-05-14 22:37:35 +00:00
|
|
|
return utils.NewBufReader(reader), nil
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
2013-10-08 21:29:22 +00:00
|
|
|
func (container *Container) buildHostnameAndHostsFiles(IP string) {
|
|
|
|
container.HostnamePath = path.Join(container.root, "hostname")
|
|
|
|
ioutil.WriteFile(container.HostnamePath, []byte(container.Config.Hostname+"\n"), 0644)
|
|
|
|
|
|
|
|
hostsContent := []byte(`
|
|
|
|
127.0.0.1 localhost
|
|
|
|
::1 localhost ip6-localhost ip6-loopback
|
|
|
|
fe00::0 ip6-localnet
|
|
|
|
ff00::0 ip6-mcastprefix
|
|
|
|
ff02::1 ip6-allnodes
|
|
|
|
ff02::2 ip6-allrouters
|
|
|
|
`)
|
|
|
|
|
|
|
|
container.HostsPath = path.Join(container.root, "hosts")
|
|
|
|
|
|
|
|
if container.Config.Domainname != "" {
|
|
|
|
hostsContent = append([]byte(fmt.Sprintf("%s\t%s.%s %s\n", IP, container.Config.Hostname, container.Config.Domainname, container.Config.Hostname)), hostsContent...)
|
2014-01-09 00:57:56 +00:00
|
|
|
} else if !container.Config.NetworkDisabled {
|
2013-10-08 21:29:22 +00:00
|
|
|
hostsContent = append([]byte(fmt.Sprintf("%s\t%s\n", IP, container.Config.Hostname)), hostsContent...)
|
|
|
|
}
|
|
|
|
|
|
|
|
ioutil.WriteFile(container.HostsPath, hostsContent, 0644)
|
|
|
|
}
|
|
|
|
|
2013-10-31 21:58:43 +00:00
|
|
|
func (container *Container) allocateNetwork() error {
|
2013-07-23 02:00:35 +00:00
|
|
|
if container.Config.NetworkDisabled {
|
2013-07-22 00:11:47 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-11-21 20:21:03 +00:00
|
|
|
var (
|
2014-01-30 02:34:43 +00:00
|
|
|
env *engine.Env
|
2014-01-30 20:02:56 +00:00
|
|
|
err error
|
2014-01-30 19:50:59 +00:00
|
|
|
eng = container.runtime.eng
|
2013-11-21 20:21:03 +00:00
|
|
|
)
|
2014-01-30 20:02:56 +00:00
|
|
|
|
2013-11-21 20:21:03 +00:00
|
|
|
if container.State.IsGhost() {
|
2014-01-30 02:34:43 +00:00
|
|
|
if container.runtime.config.DisableNetwork {
|
|
|
|
env = &engine.Env{}
|
2013-08-21 14:37:58 +00:00
|
|
|
} else {
|
2014-01-30 20:02:56 +00:00
|
|
|
currentIP := container.NetworkSettings.IPAddress
|
2014-01-30 02:34:43 +00:00
|
|
|
|
2014-01-30 20:02:56 +00:00
|
|
|
job := eng.Job("allocate_interface", container.ID)
|
|
|
|
if currentIP != "" {
|
|
|
|
job.Setenv("RequestIP", currentIP)
|
|
|
|
}
|
|
|
|
|
|
|
|
env, err = job.Stdout.AddEnv()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := job.Run(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-10-27 13:04:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-30 02:34:43 +00:00
|
|
|
job := eng.Job("allocate_interface", container.ID)
|
|
|
|
env, err = job.Stdout.AddEnv()
|
2013-10-27 13:04:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2013-08-21 14:37:58 +00:00
|
|
|
}
|
2014-01-30 02:34:43 +00:00
|
|
|
if err := job.Run(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-02-25 22:06:22 +00:00
|
|
|
}
|
2013-08-21 14:37:58 +00:00
|
|
|
|
2013-10-05 02:25:15 +00:00
|
|
|
if container.Config.PortSpecs != nil {
|
|
|
|
utils.Debugf("Migrating port mappings for container: %s", strings.Join(container.Config.PortSpecs, ", "))
|
2013-10-31 21:58:43 +00:00
|
|
|
if err := migratePortMappings(container.Config, container.hostConfig); err != nil {
|
2013-10-05 02:25:15 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.Config.PortSpecs = nil
|
2013-10-31 21:58:43 +00:00
|
|
|
if err := container.writeHostConfig(); err != nil {
|
2013-10-30 15:15:12 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-10-05 02:25:15 +00:00
|
|
|
}
|
|
|
|
|
2013-11-21 20:21:03 +00:00
|
|
|
var (
|
2014-02-12 00:48:44 +00:00
|
|
|
portSpecs = make(nat.PortSet)
|
|
|
|
bindings = make(nat.PortMap)
|
2013-11-21 20:21:03 +00:00
|
|
|
)
|
2013-10-05 02:25:15 +00:00
|
|
|
|
2013-11-21 20:21:03 +00:00
|
|
|
if !container.State.IsGhost() {
|
2013-10-05 02:25:15 +00:00
|
|
|
if container.Config.ExposedPorts != nil {
|
|
|
|
portSpecs = container.Config.ExposedPorts
|
2013-08-27 19:14:21 +00:00
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
if container.hostConfig.PortBindings != nil {
|
|
|
|
bindings = container.hostConfig.PortBindings
|
2013-10-05 02:25:15 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if container.NetworkSettings.Ports != nil {
|
|
|
|
for port, binding := range container.NetworkSettings.Ports {
|
|
|
|
portSpecs[port] = struct{}{}
|
|
|
|
bindings[port] = binding
|
|
|
|
}
|
2013-08-27 19:14:21 +00:00
|
|
|
}
|
2013-02-25 22:06:22 +00:00
|
|
|
}
|
2013-08-27 19:14:21 +00:00
|
|
|
|
2013-10-05 02:25:15 +00:00
|
|
|
container.NetworkSettings.PortMapping = nil
|
|
|
|
|
|
|
|
for port := range portSpecs {
|
|
|
|
binding := bindings[port]
|
2013-11-01 21:01:32 +00:00
|
|
|
if container.hostConfig.PublishAllPorts && len(binding) == 0 {
|
2014-02-12 00:48:44 +00:00
|
|
|
binding = append(binding, nat.PortBinding{})
|
2013-10-31 18:10:25 +00:00
|
|
|
}
|
2014-01-30 02:34:43 +00:00
|
|
|
|
2013-10-05 02:25:15 +00:00
|
|
|
for i := 0; i < len(binding); i++ {
|
|
|
|
b := binding[i]
|
2014-01-30 02:34:43 +00:00
|
|
|
|
|
|
|
portJob := eng.Job("allocate_port", container.ID)
|
|
|
|
portJob.Setenv("HostIP", b.HostIp)
|
|
|
|
portJob.Setenv("HostPort", b.HostPort)
|
|
|
|
portJob.Setenv("Proto", port.Proto())
|
|
|
|
portJob.Setenv("ContainerPort", port.Port())
|
|
|
|
|
2014-01-30 22:52:59 +00:00
|
|
|
portEnv, err := portJob.Stdout.AddEnv()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-01-30 02:34:43 +00:00
|
|
|
if err := portJob.Run(); err != nil {
|
|
|
|
eng.Job("release_interface", container.ID).Run()
|
2013-10-05 02:25:15 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-01-30 22:52:59 +00:00
|
|
|
b.HostIp = portEnv.Get("HostIP")
|
|
|
|
b.HostPort = portEnv.Get("HostPort")
|
|
|
|
|
|
|
|
binding[i] = b
|
2013-02-28 19:51:14 +00:00
|
|
|
}
|
2013-10-05 02:25:15 +00:00
|
|
|
bindings[port] = binding
|
2013-02-28 19:51:14 +00:00
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
container.writeHostConfig()
|
2013-10-05 02:25:15 +00:00
|
|
|
|
|
|
|
container.NetworkSettings.Ports = bindings
|
|
|
|
|
2014-01-30 02:34:43 +00:00
|
|
|
container.NetworkSettings.Bridge = env.Get("Bridge")
|
|
|
|
container.NetworkSettings.IPAddress = env.Get("IP")
|
|
|
|
container.NetworkSettings.IPPrefixLen = env.GetInt("IPPrefixLen")
|
|
|
|
container.NetworkSettings.Gateway = env.Get("Gateway")
|
2013-10-05 02:25:15 +00:00
|
|
|
|
2013-02-25 22:06:22 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-01 05:04:59 +00:00
|
|
|
func (container *Container) releaseNetwork() {
|
2014-01-30 02:34:43 +00:00
|
|
|
if container.Config.NetworkDisabled {
|
2013-07-22 00:11:47 +00:00
|
|
|
return
|
|
|
|
}
|
2014-01-30 19:50:59 +00:00
|
|
|
eng := container.runtime.eng
|
2014-01-30 02:34:43 +00:00
|
|
|
|
|
|
|
eng.Job("release_interface", container.ID).Run()
|
2013-02-28 19:51:14 +00:00
|
|
|
container.NetworkSettings = &NetworkSettings{}
|
2013-01-26 23:56:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-14 00:41:35 +00:00
|
|
|
func (container *Container) monitor(callback execdriver.StartCallback) error {
|
2014-01-13 23:02:12 +00:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
exitCode int
|
|
|
|
)
|
|
|
|
|
2014-01-21 00:05:07 +00:00
|
|
|
if container.command == nil {
|
2014-01-13 23:02:12 +00:00
|
|
|
// This happends when you have a GHOST container with lxc
|
2014-01-21 02:43:54 +00:00
|
|
|
populateCommand(container)
|
|
|
|
err = container.runtime.RestoreCommand(container)
|
2014-01-10 23:06:16 +00:00
|
|
|
} else {
|
2014-02-21 20:32:14 +00:00
|
|
|
pipes := execdriver.NewPipes(container.stdin, container.stdout, container.stderr, container.Config.OpenStdin)
|
|
|
|
exitCode, err = container.runtime.Run(container, pipes, callback)
|
2014-01-10 23:06:16 +00:00
|
|
|
}
|
|
|
|
|
2014-01-14 00:41:35 +00:00
|
|
|
if err != nil {
|
2014-01-22 00:18:57 +00:00
|
|
|
utils.Errorf("Error running container: %s", err)
|
2013-09-20 20:36:19 +00:00
|
|
|
}
|
|
|
|
|
2013-01-22 23:03:40 +00:00
|
|
|
// Cleanup
|
2013-10-16 19:01:55 +00:00
|
|
|
container.cleanup()
|
|
|
|
|
|
|
|
// Re-create a brand new stdin pipe once the container exited
|
|
|
|
if container.Config.OpenStdin {
|
|
|
|
container.stdin, container.stdinPipe = io.Pipe()
|
|
|
|
}
|
|
|
|
|
2014-01-10 02:48:34 +00:00
|
|
|
container.State.SetStopped(exitCode)
|
|
|
|
|
2014-01-22 00:18:57 +00:00
|
|
|
if container.runtime != nil && container.runtime.srv != nil {
|
|
|
|
container.runtime.srv.LogEvent("die", container.ID, container.runtime.repositories.ImageName(container.Image))
|
|
|
|
}
|
|
|
|
|
2014-01-11 01:25:32 +00:00
|
|
|
close(container.waitLock)
|
|
|
|
|
2014-01-14 00:41:35 +00: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)
|
|
|
|
container.ToDisk()
|
|
|
|
|
|
|
|
return err
|
2013-10-16 19:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) cleanup() {
|
2013-03-30 22:32:10 +00:00
|
|
|
container.releaseNetwork()
|
2013-10-05 02:25:15 +00:00
|
|
|
|
|
|
|
// Disable all active links
|
|
|
|
if container.activeLinks != nil {
|
|
|
|
for _, link := range container.activeLinks {
|
|
|
|
link.Disable()
|
|
|
|
}
|
|
|
|
}
|
2013-03-30 16:08:53 +00:00
|
|
|
if container.Config.OpenStdin {
|
|
|
|
if err := container.stdin.Close(); err != nil {
|
2013-10-08 07:54:47 +00:00
|
|
|
utils.Errorf("%s: Error close stdin: %s", container.ID, err)
|
2013-03-30 16:08:53 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-21 20:52:18 +00:00
|
|
|
if err := container.stdout.CloseWriters(); err != nil {
|
2013-10-08 07:54:47 +00:00
|
|
|
utils.Errorf("%s: Error close stdout: %s", container.ID, err)
|
2013-03-29 15:29:59 +00:00
|
|
|
}
|
2014-02-21 20:52:18 +00:00
|
|
|
if err := container.stderr.CloseWriters(); err != nil {
|
2013-10-08 07:54:47 +00:00
|
|
|
utils.Errorf("%s: Error close stderr: %s", container.ID, err)
|
2013-03-29 15:29:59 +00:00
|
|
|
}
|
2014-02-21 20:32:14 +00:00
|
|
|
if container.command.Terminal != nil {
|
|
|
|
if err := container.command.Terminal.Close(); err != nil {
|
|
|
|
utils.Errorf("%s: Error closing terminal: %s", container.ID, err)
|
2013-03-30 16:05:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 01:15:40 +00:00
|
|
|
unmountVolumesForContainer(container)
|
2014-01-30 15:43:53 +00:00
|
|
|
|
2013-03-21 07:25:00 +00:00
|
|
|
if err := container.Unmount(); err != nil {
|
2013-06-04 18:00:22 +00:00
|
|
|
log.Printf("%v: Failed to umount filesystem: %v", container.ID, err)
|
2013-01-22 02:03:23 +00:00
|
|
|
}
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 06:50:26 +00:00
|
|
|
func (container *Container) kill(sig int) error {
|
2013-11-21 20:21:03 +00:00
|
|
|
container.Lock()
|
|
|
|
defer container.Unlock()
|
2013-10-08 19:15:29 +00:00
|
|
|
|
2013-11-21 20:21:03 +00:00
|
|
|
if !container.State.IsRunning() {
|
2013-03-24 02:51:35 +00:00
|
|
|
return nil
|
|
|
|
}
|
2014-01-10 22:26:29 +00:00
|
|
|
return container.runtime.Kill(container, sig)
|
2013-10-08 19:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Kill() error {
|
2013-11-21 20:21:03 +00:00
|
|
|
if !container.State.IsRunning() {
|
2013-10-08 19:15:29 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1. Send SIGKILL
|
|
|
|
if err := container.kill(9); err != nil {
|
|
|
|
return err
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
2013-04-11 16:02:34 +00: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 {
|
2014-01-21 00:05:07 +00:00
|
|
|
if container.command == nil {
|
2013-10-25 01:59:59 +00:00
|
|
|
return fmt.Errorf("lxc-kill failed, impossible to kill the container %s", utils.TruncateID(container.ID))
|
2013-04-19 19:12:30 +00:00
|
|
|
}
|
2013-10-25 01:59:59 +00:00
|
|
|
log.Printf("Container %s failed to exit within 10 seconds of lxc-kill %s - trying direct SIGKILL", "SIGKILL", utils.TruncateID(container.ID))
|
2014-01-10 22:26:29 +00:00
|
|
|
if err := container.runtime.Kill(container, 9); err != nil {
|
2013-04-11 16:02:34 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-23 01:30:09 +00:00
|
|
|
container.Wait()
|
2013-01-22 02:03:23 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-16 16:43:44 +00:00
|
|
|
func (container *Container) Stop(seconds int) error {
|
2013-11-21 20:21:03 +00:00
|
|
|
if !container.State.IsRunning() {
|
2013-01-19 00:13:39 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-01-22 02:03:23 +00:00
|
|
|
|
|
|
|
// 1. Send a SIGTERM
|
2013-10-08 19:15:29 +00:00
|
|
|
if err := container.kill(15); err != nil {
|
|
|
|
utils.Debugf("Error sending kill SIGTERM: %s", err)
|
2013-03-30 07:23:12 +00:00
|
|
|
log.Print("Failed to send SIGTERM to the process, force killing")
|
2013-09-12 06:50:26 +00:00
|
|
|
if err := container.kill(9); err != nil {
|
2013-01-25 23:36:47 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-01-22 02:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Wait for the process to exit on its own
|
2013-04-16 16:43:44 +00:00
|
|
|
if err := container.WaitTimeout(time.Duration(seconds) * time.Second); err != nil {
|
2013-06-04 18:00:22 +00:00
|
|
|
log.Printf("Container %v failed to exit within %d seconds of SIGTERM - using the force", container.ID, seconds)
|
2013-10-08 19:15:29 +00:00
|
|
|
// 3. If it doesn't, then send SIGKILL
|
|
|
|
if err := container.Kill(); err != nil {
|
2013-01-25 23:36:47 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-01-22 02:03:23 +00:00
|
|
|
}
|
2013-01-19 00:13:39 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-04-16 16:43:44 +00:00
|
|
|
func (container *Container) Restart(seconds int) error {
|
2014-02-17 15:10:54 +00:00
|
|
|
// Avoid unnecessarily unmounting and then directly mounting
|
|
|
|
// the container when the container stops and then starts
|
|
|
|
// again
|
|
|
|
if err := container.Mount(); err == nil {
|
|
|
|
defer container.Unmount()
|
|
|
|
}
|
|
|
|
|
2013-04-16 16:43:44 +00:00
|
|
|
if err := container.Stop(seconds); err != nil {
|
2013-01-22 23:03:40 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-10-31 21:58:43 +00:00
|
|
|
return container.Start()
|
2013-01-22 23:03:40 +00:00
|
|
|
}
|
|
|
|
|
2013-02-26 19:43:54 +00:00
|
|
|
// Wait blocks until the container stops running, then returns its exit code.
|
|
|
|
func (container *Container) Wait() int {
|
2014-01-10 23:34:03 +00:00
|
|
|
<-container.waitLock
|
|
|
|
return container.State.GetExitCode()
|
2013-01-19 00:13:39 +00:00
|
|
|
}
|
2013-01-22 02:03:23 +00:00
|
|
|
|
2013-05-24 02:33:28 +00:00
|
|
|
func (container *Container) Resize(h, w int) error {
|
2014-02-21 20:32:14 +00:00
|
|
|
return container.command.Terminal.Resize(h, w)
|
2013-05-24 02:33:28 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 23:57:45 +00:00
|
|
|
func (container *Container) ExportRw() (archive.Archive, error) {
|
2013-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-11-08 02:48:52 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-11-07 20:34:01 +00:00
|
|
|
if container.runtime == nil {
|
|
|
|
return nil, fmt.Errorf("Can't load storage driver for unregistered container %s", container.ID)
|
2013-04-19 15:25:55 +00:00
|
|
|
}
|
2014-02-03 23:56:58 +00:00
|
|
|
archive, err := container.runtime.Diff(container)
|
|
|
|
if err != nil {
|
|
|
|
container.Unmount()
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-02-14 11:41:46 +00:00
|
|
|
return utils.NewReadCloserWrapper(archive, func() error {
|
|
|
|
err := archive.Close()
|
|
|
|
container.Unmount()
|
|
|
|
return err
|
|
|
|
}), nil
|
2013-04-19 15:25:55 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 23:57:45 +00:00
|
|
|
func (container *Container) Export() (archive.Archive, error) {
|
2013-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-03-21 07:25:00 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-12-05 21:18:02 +00:00
|
|
|
|
2014-01-30 15:43:53 +00:00
|
|
|
archive, err := archive.Tar(container.basefs, archive.Uncompressed)
|
2013-12-05 21:18:02 +00:00
|
|
|
if err != nil {
|
2014-02-03 23:56:58 +00:00
|
|
|
container.Unmount()
|
2013-12-05 21:18:02 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-02-14 11:41:46 +00:00
|
|
|
return utils.NewReadCloserWrapper(archive, func() error {
|
|
|
|
err := archive.Close()
|
|
|
|
container.Unmount()
|
|
|
|
return err
|
|
|
|
}), nil
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
2013-01-22 02:03:23 +00: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 15:19:42 +00:00
|
|
|
return fmt.Errorf("Timed Out")
|
2013-01-22 02:03:23 +00:00
|
|
|
case <-done:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 07:25:00 +00:00
|
|
|
|
|
|
|
func (container *Container) Mount() error {
|
2013-11-01 01:07:54 +00:00
|
|
|
return container.runtime.Mount(container)
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
2013-11-08 00:35:26 +00:00
|
|
|
func (container *Container) Changes() ([]archive.Change, error) {
|
2013-11-01 01:07:54 +00:00
|
|
|
return container.runtime.Changes(container)
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
2013-03-22 00:47:23 +00:00
|
|
|
func (container *Container) GetImage() (*Image, error) {
|
2013-03-21 07:25:00 +00: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) Unmount() error {
|
2013-11-01 01:07:54 +00:00
|
|
|
return container.runtime.Unmount(container)
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) logPath(name string) string {
|
2013-06-04 18:00:22 +00:00
|
|
|
return path.Join(container.root, fmt.Sprintf("%s-%s.log", container.ID, name))
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) ReadLog(name string) (io.Reader, error) {
|
|
|
|
return os.Open(container.logPath(name))
|
|
|
|
}
|
|
|
|
|
2013-07-02 12:19:25 +00:00
|
|
|
func (container *Container) hostConfigPath() string {
|
2013-07-02 17:02:42 +00:00
|
|
|
return path.Join(container.root, "hostconfig.json")
|
2013-07-02 12:19:25 +00:00
|
|
|
}
|
|
|
|
|
2013-03-21 07:25:00 +00:00
|
|
|
func (container *Container) jsonPath() string {
|
|
|
|
return path.Join(container.root, "config.json")
|
|
|
|
}
|
|
|
|
|
2013-12-17 22:04:37 +00:00
|
|
|
func (container *Container) EnvConfigPath() (string, error) {
|
|
|
|
p := path.Join(container.root, "config.env")
|
|
|
|
if _, err := os.Stat(p); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
f, err := os.Create(p)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
} else {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p, nil
|
2013-08-13 22:40:23 +00:00
|
|
|
}
|
|
|
|
|
2013-03-21 07:25:00 +00:00
|
|
|
// This method must be exported to be used from the lxc template
|
2014-01-30 15:43:53 +00:00
|
|
|
// This directory is only usable when the container is running
|
2013-03-21 07:25:00 +00:00
|
|
|
func (container *Container) RootfsPath() string {
|
2014-01-30 15:43:53 +00:00
|
|
|
return path.Join(container.root, "root")
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the stand-alone version of the root fs, without any additional mounts.
|
|
|
|
// This directory is usable whenever the container is mounted (and not unmounted)
|
|
|
|
func (container *Container) BasefsPath() string {
|
|
|
|
return container.basefs
|
2013-03-21 07:25:00 +00:00
|
|
|
}
|
|
|
|
|
2013-06-04 18:00:22 +00:00
|
|
|
func validateID(id string) error {
|
2013-03-21 07:25:00 +00:00
|
|
|
if id == "" {
|
|
|
|
return fmt.Errorf("Invalid empty id")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2013-05-13 13:10:26 +00:00
|
|
|
|
|
|
|
// GetSize, return real size, virtual size
|
|
|
|
func (container *Container) GetSize() (int64, int64) {
|
2013-11-11 20:09:26 +00:00
|
|
|
var (
|
|
|
|
sizeRw, sizeRootfs int64
|
|
|
|
err error
|
|
|
|
driver = container.runtime.driver
|
|
|
|
)
|
2013-05-13 13:10:26 +00:00
|
|
|
|
2013-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-11-07 20:30:56 +00:00
|
|
|
utils.Errorf("Warning: failed to compute size of container rootfs %s: %s", container.ID, err)
|
|
|
|
return sizeRw, sizeRootfs
|
|
|
|
}
|
2013-12-05 21:18:02 +00:00
|
|
|
defer container.Unmount()
|
2013-11-19 09:36:54 +00:00
|
|
|
|
|
|
|
if differ, ok := container.runtime.driver.(graphdriver.Differ); ok {
|
|
|
|
sizeRw, err = differ.DiffSize(container.ID)
|
|
|
|
if err != nil {
|
|
|
|
utils.Errorf("Warning: driver %s couldn't return diff size of container %s: %s", driver, container.ID, err)
|
|
|
|
// FIXME: GetSize should return an error. Not changing it now in case
|
|
|
|
// there is a side-effect.
|
|
|
|
sizeRw = -1
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
changes, _ := container.Changes()
|
|
|
|
if changes != nil {
|
2014-01-30 15:43:53 +00:00
|
|
|
sizeRw = archive.ChangesSize(container.basefs, changes)
|
2013-11-19 09:36:54 +00:00
|
|
|
} else {
|
|
|
|
sizeRw = -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 15:43:53 +00:00
|
|
|
if _, err = os.Stat(container.basefs); err != nil {
|
|
|
|
if sizeRootfs, err = utils.TreeSize(container.basefs); err != nil {
|
2013-11-22 01:18:41 +00:00
|
|
|
sizeRootfs = -1
|
2013-05-13 13:10:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return sizeRw, sizeRootfs
|
|
|
|
}
|
2013-07-17 04:07:41 +00:00
|
|
|
|
2014-02-11 14:21:33 +00:00
|
|
|
func (container *Container) Copy(resource string) (io.ReadCloser, error) {
|
2013-12-06 11:15:14 +00:00
|
|
|
if err := container.Mount(); err != nil {
|
2013-07-17 04:07:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-07-17 14:25:49 +00:00
|
|
|
var filter []string
|
2014-01-30 15:43:53 +00:00
|
|
|
basePath := path.Join(container.basefs, resource)
|
2013-07-17 14:25:49 +00:00
|
|
|
stat, err := os.Stat(basePath)
|
|
|
|
if err != nil {
|
2013-12-05 21:18:02 +00:00
|
|
|
container.Unmount()
|
2013-07-17 14:25:49 +00:00
|
|
|
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-12-05 21:18:02 +00:00
|
|
|
|
|
|
|
archive, err := archive.TarFilter(basePath, &archive.TarOptions{
|
2013-11-11 22:30:38 +00:00
|
|
|
Compression: archive.Uncompressed,
|
|
|
|
Includes: filter,
|
|
|
|
})
|
2013-12-05 21:18:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-02-14 11:41:46 +00:00
|
|
|
return utils.NewReadCloserWrapper(archive, func() error {
|
|
|
|
err := archive.Close()
|
|
|
|
container.Unmount()
|
|
|
|
return err
|
|
|
|
}), nil
|
2013-07-17 04:07:41 +00:00
|
|
|
}
|
2013-10-05 02:25:15 +00:00
|
|
|
|
|
|
|
// Returns true if the container exposes a certain port
|
2014-02-12 00:48:44 +00:00
|
|
|
func (container *Container) Exposes(p nat.Port) bool {
|
2013-10-05 02:25:15 +00:00
|
|
|
_, exists := container.Config.ExposedPorts[p]
|
|
|
|
return exists
|
|
|
|
}
|
2013-11-29 15:40:44 +00:00
|
|
|
|
|
|
|
func (container *Container) GetPtyMaster() (*os.File, error) {
|
2014-02-21 21:27:15 +00:00
|
|
|
ttyConsole, ok := container.command.Terminal.(execdriver.TtyTerminal)
|
2014-02-21 19:47:53 +00:00
|
|
|
if !ok {
|
2013-11-29 15:40:44 +00:00
|
|
|
return nil, ErrNoTTY
|
|
|
|
}
|
2014-02-21 21:27:15 +00:00
|
|
|
return ttyConsole.Master(), nil
|
2013-11-29 15:40:44 +00:00
|
|
|
}
|