moby--moby/container.go

268 lines
6.0 KiB
Go
Raw Normal View History

2013-01-19 00:13:39 +00:00
package docker
import (
"encoding/json"
"errors"
"io"
"io/ioutil"
"log"
2013-01-19 00:13:39 +00:00
"os"
"os/exec"
"path"
"syscall"
"time"
2013-01-19 00:13:39 +00:00
)
type Container struct {
2013-01-22 02:39:52 +00:00
Id string
2013-01-19 00:13:39 +00:00
Root string
Created time.Time
2013-01-19 00:13:39 +00:00
Path string
Args []string
Config *Config
Filesystem *Filesystem
State *State
2013-01-19 00:13:39 +00:00
lxcConfigPath string
cmd *exec.Cmd
stdout *writeBroadcaster
stderr *writeBroadcaster
}
type Config struct {
Hostname string
Ram int64
}
2013-01-22 02:39:52 +00:00
func createContainer(id string, root string, command string, args []string, layers []string, config *Config) (*Container, error) {
2013-01-19 00:13:39 +00:00
container := &Container{
2013-01-22 02:39:52 +00:00
Id: id,
2013-01-19 00:13:39 +00:00
Root: root,
Created: time.Now(),
2013-01-19 00:13:39 +00:00
Path: command,
Args: args,
Config: config,
Filesystem: newFilesystem(path.Join(root, "rootfs"), path.Join(root, "rw"), layers),
State: newState(),
lxcConfigPath: path.Join(root, "config.lxc"),
stdout: newWriteBroadcaster(),
stderr: newWriteBroadcaster(),
}
if err := os.Mkdir(root, 0700); err != nil {
return nil, err
}
if err := container.save(); err != nil {
return nil, err
}
if err := container.generateLXCConfig(); err != nil {
return nil, err
}
return container, nil
}
func loadContainer(containerPath string) (*Container, error) {
data, err := ioutil.ReadFile(path.Join(containerPath, "config.json"))
2013-01-19 00:13:39 +00:00
if err != nil {
return nil, err
}
container := &Container{}
if err := json.Unmarshal(data, container); err != nil {
2013-01-19 00:13:39 +00:00
return nil, err
}
return container, nil
}
func (container *Container) save() (err error) {
data, err := json.Marshal(container)
2013-01-19 00:13:39 +00:00
if err != nil {
return
2013-01-19 00:13:39 +00:00
}
return ioutil.WriteFile(path.Join(container.Root, "config.json"), data, 0700)
2013-01-19 00:13:39 +00:00
}
func (container *Container) generateLXCConfig() error {
fo, err := os.Create(container.lxcConfigPath)
if err != nil {
return err
}
defer fo.Close()
if err := LxcTemplateCompiled.Execute(fo, container); err != nil {
return err
}
return nil
}
func (container *Container) Start() error {
if err := container.Filesystem.Mount(); err != nil {
return err
}
params := []string{
2013-01-22 02:39:52 +00:00
"-n", container.Id,
2013-01-19 00:13:39 +00:00
"-f", container.lxcConfigPath,
"--",
container.Path,
}
params = append(params, container.Args...)
container.cmd = exec.Command("/usr/bin/lxc-start", params...)
container.cmd.Stdout = container.stdout
container.cmd.Stderr = container.stderr
if err := container.cmd.Start(); err != nil {
return err
}
container.State.setRunning(container.cmd.Process.Pid)
container.save()
2013-01-19 00:13:39 +00:00
go container.monitor()
if err := exec.Command("/usr/bin/lxc-wait", "-n", container.Id, "-s", "RUNNING|STOPPED").Run(); err != nil {
// lxc-wait might return an error if by the time we call it,
// the container we just started is already STOPPED.
// This is a rare race condition that happens for short living programs.
//
// A workaround is to discard lxc-wait errors if the container is not
// running anymore.
if !container.State.Running {
2013-01-19 00:13:39 +00:00
return nil
}
return errors.New("Container failed to start")
2013-01-19 00:13:39 +00:00
}
return nil
2013-01-19 00:13:39 +00: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
}
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
}
func (container *Container) monitor() {
2013-01-22 23:03:40 +00:00
// Wait for the program to exit
2013-01-19 00:13:39 +00:00
container.cmd.Wait()
exitCode := container.cmd.ProcessState.Sys().(syscall.WaitStatus).ExitStatus()
2013-01-22 23:03:40 +00:00
// Cleanup
2013-01-19 00:13:39 +00:00
container.stdout.Close()
container.stderr.Close()
if err := container.Filesystem.Umount(); err != nil {
2013-01-22 02:39:52 +00:00
log.Printf("%v: Failed to umount filesystem: %v", container.Id, err)
}
// Report status back
container.State.setStopped(exitCode)
container.save()
2013-01-19 00:13:39 +00:00
}
func (container *Container) kill() error {
// This will cause the main container process to receive a SIGKILL
2013-01-22 02:39:52 +00:00
if err := exec.Command("/usr/bin/lxc-stop", "-n", container.Id).Run(); err != nil {
log.Printf("Failed to lxc-stop %v", container.Id)
return err
2013-01-19 00:13:39 +00:00
}
// Wait for the container to be actually stopped
container.Wait()
// Make sure the underlying LXC thinks it's stopped too
// LXC Issue: lxc-wait MIGHT say that the container doesn't exist
// That's probably because it was destroyed and it cannot find it anymore
// We are going to ignore lxc-wait's error
exec.Command("/usr/bin/lxc-wait", "-n", container.Id, "-s", "STOPPED").Run()
return nil
}
func (container *Container) Kill() error {
if !container.State.Running {
return nil
}
return container.kill()
}
func (container *Container) Stop() error {
if !container.State.Running {
2013-01-19 00:13:39 +00:00
return nil
}
// 1. Send a SIGTERM
2013-01-22 02:39:52 +00:00
if err := exec.Command("/usr/bin/lxc-kill", "-n", container.Id, "15").Run(); err != nil {
return err
}
// 2. Wait for the process to exit on its own
if err := container.WaitTimeout(10 * time.Second); err != nil {
2013-01-22 02:39:52 +00:00
log.Printf("Container %v failed to exit within 10 seconds of SIGTERM", container.Id)
}
// 3. Force kill
if err := container.kill(); err != nil {
return err
}
2013-01-19 00:13:39 +00:00
return nil
}
2013-01-22 23:03:40 +00:00
func (container *Container) Restart() error {
if err := container.Stop(); err != nil {
return err
}
if err := container.Start(); err != nil {
return err
}
return nil
}
2013-01-19 00:13:39 +00:00
func (container *Container) Wait() {
for container.State.Running {
container.State.wait()
}
}
func (container *Container) WaitTimeout(timeout time.Duration) error {
done := make(chan bool)
go func() {
container.Wait()
done <- true
}()
select {
case <-time.After(timeout):
return errors.New("Timed Out")
case <-done:
return nil
}
return nil
}