2013-01-18 19:13:39 -05:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
2013-01-28 17:30:05 -05:00
|
|
|
"bytes"
|
2013-01-18 19:13:39 -05:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
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-01-28 17:30:05 -05: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
|
|
|
)
|
|
|
|
|
2013-02-13 17:01:44 -05:00
|
|
|
var sysInitPath string
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
sysInitPath = SelfPath()
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
type Container struct {
|
2013-01-21 21:39:52 -05:00
|
|
|
Id string
|
2013-01-18 19:13:39 -05:00
|
|
|
Root 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-01-22 14:13:22 -05:00
|
|
|
Config *Config
|
|
|
|
Filesystem *Filesystem
|
|
|
|
State *State
|
2013-01-18 19:13:39 -05:00
|
|
|
|
2013-02-13 17:01:44 -05:00
|
|
|
SysInitPath string
|
2013-01-18 19:13:39 -05:00
|
|
|
lxcConfigPath string
|
|
|
|
cmd *exec.Cmd
|
|
|
|
stdout *writeBroadcaster
|
|
|
|
stderr *writeBroadcaster
|
2013-01-28 20:50:12 -05:00
|
|
|
stdin io.ReadCloser
|
|
|
|
stdinPipe io.WriteCloser
|
2013-01-26 18:56:42 -05:00
|
|
|
|
2013-01-28 17:30:05 -05:00
|
|
|
stdoutLog *bytes.Buffer
|
|
|
|
stderrLog *bytes.Buffer
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
2013-01-29 16:50:27 -05:00
|
|
|
Hostname string
|
|
|
|
Ram int64
|
|
|
|
Tty bool // Attach standard streams to a tty, including stdin if it is not closed.
|
|
|
|
OpenStdin bool // Open stdin
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-01-21 21:39:52 -05:00
|
|
|
func createContainer(id string, root string, command string, args []string, layers []string, config *Config) (*Container, error) {
|
2013-01-18 19:13:39 -05:00
|
|
|
container := &Container{
|
2013-01-21 21:39:52 -05:00
|
|
|
Id: id,
|
2013-01-18 19:13:39 -05:00
|
|
|
Root: root,
|
2013-01-22 14:13:22 -05:00
|
|
|
Created: time.Now(),
|
2013-01-18 19:13:39 -05:00
|
|
|
Path: command,
|
|
|
|
Args: args,
|
|
|
|
Config: config,
|
|
|
|
Filesystem: newFilesystem(path.Join(root, "rootfs"), path.Join(root, "rw"), layers),
|
|
|
|
State: newState(),
|
|
|
|
|
2013-02-13 17:01:44 -05:00
|
|
|
SysInitPath: sysInitPath,
|
2013-01-18 19:13:39 -05:00
|
|
|
lxcConfigPath: path.Join(root, "config.lxc"),
|
|
|
|
stdout: newWriteBroadcaster(),
|
|
|
|
stderr: newWriteBroadcaster(),
|
2013-01-28 17:30:05 -05:00
|
|
|
stdoutLog: new(bytes.Buffer),
|
|
|
|
stderrLog: new(bytes.Buffer),
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
2013-01-28 20:50:12 -05:00
|
|
|
if container.Config.OpenStdin {
|
|
|
|
container.stdin, container.stdinPipe = io.Pipe()
|
|
|
|
} else {
|
2013-01-29 16:50:27 -05:00
|
|
|
container.stdinPipe = NopWriteCloser(ioutil.Discard) // Silently drop stdin
|
2013-01-28 20:50:12 -05:00
|
|
|
}
|
2013-01-26 18:56:42 -05:00
|
|
|
container.stdout.AddWriter(NopWriteCloser(container.stdoutLog))
|
|
|
|
container.stderr.AddWriter(NopWriteCloser(container.stderrLog))
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
if err := os.Mkdir(root, 0700); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-01-27 18:42:42 -05:00
|
|
|
if err := container.Filesystem.createMountPoints(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
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) {
|
2013-01-22 14:13:22 -05:00
|
|
|
data, err := ioutil.ReadFile(path.Join(containerPath, "config.json"))
|
2013-01-18 19:13:39 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-01-25 19:20:34 -05:00
|
|
|
container := &Container{
|
2013-01-28 17:30:05 -05:00
|
|
|
stdout: newWriteBroadcaster(),
|
|
|
|
stderr: newWriteBroadcaster(),
|
2013-01-26 18:56:42 -05:00
|
|
|
stdoutLog: new(bytes.Buffer),
|
|
|
|
stderrLog: new(bytes.Buffer),
|
2013-01-25 19:20:34 -05:00
|
|
|
}
|
2013-01-22 14:13:22 -05:00
|
|
|
if err := json.Unmarshal(data, container); err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2013-01-27 03:49:09 -05:00
|
|
|
if err := container.Filesystem.createMountPoints(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-01-28 20:50:12 -05:00
|
|
|
if container.Config.OpenStdin {
|
|
|
|
container.stdin, container.stdinPipe = io.Pipe()
|
|
|
|
} else {
|
2013-01-29 16:50:27 -05:00
|
|
|
container.stdinPipe = NopWriteCloser(ioutil.Discard) // Silently drop stdin
|
2013-01-28 20:50:12 -05:00
|
|
|
}
|
2013-01-25 19:20:34 -05:00
|
|
|
container.State = newState()
|
2013-01-18 19:13:39 -05:00
|
|
|
return container, 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-01-25 17:39:02 -05:00
|
|
|
func (container *Container) loadUserData() (map[string]string, error) {
|
|
|
|
jsonData, err := ioutil.ReadFile(path.Join(container.Root, "userdata.json"))
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return make(map[string]string), nil
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
data := make(map[string]string)
|
|
|
|
if err := json.Unmarshal(jsonData, &data); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) saveUserData(data map[string]string) error {
|
|
|
|
jsonData, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ioutil.WriteFile(path.Join(container.Root, "userdata.json"), jsonData, 0700)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) SetUserData(key, value string) error {
|
|
|
|
data, err := container.loadUserData()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
data[key] = value
|
|
|
|
return container.saveUserData(data)
|
|
|
|
}
|
|
|
|
|
2013-01-28 17:30:05 -05:00
|
|
|
func (container *Container) GetUserData(key string) string {
|
2013-01-25 17:39:02 -05:00
|
|
|
data, err := container.loadUserData()
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
if value, exists := data[key]; exists {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2013-01-22 14:13:22 -05:00
|
|
|
func (container *Container) save() (err error) {
|
|
|
|
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-01-22 14:13:22 -05:00
|
|
|
return ioutil.WriteFile(path.Join(container.Root, "config.json"), data, 0700)
|
2013-01-18 19:13:39 -05: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
|
|
|
|
}
|
|
|
|
|
2013-01-29 18:17:20 -05:00
|
|
|
func (container *Container) startPty() error {
|
|
|
|
stdout_master, stdout_slave, err := pty.Open()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.cmd.Stdout = stdout_slave
|
|
|
|
|
|
|
|
stderr_master, stderr_slave, err := pty.Open()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.cmd.Stderr = stderr_slave
|
|
|
|
|
|
|
|
// Copy the PTYs to our broadcasters
|
|
|
|
go func() {
|
|
|
|
defer container.stdout.Close()
|
|
|
|
io.Copy(container.stdout, stdout_master)
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer container.stderr.Close()
|
|
|
|
io.Copy(container.stderr, stderr_master)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// stdin
|
|
|
|
var stdin_slave io.ReadCloser
|
|
|
|
if container.Config.OpenStdin {
|
|
|
|
stdin_master, stdin_slave, err := pty.Open()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
container.cmd.Stdin = stdin_slave
|
|
|
|
// FIXME: The following appears to be broken.
|
|
|
|
// "cannot set terminal process group (-1): Inappropriate ioctl for device"
|
|
|
|
// container.cmd.SysProcAttr = &syscall.SysProcAttr{Setctty: true, Setsid: true}
|
|
|
|
go func() {
|
|
|
|
defer container.stdin.Close()
|
|
|
|
io.Copy(stdin_master, container.stdin)
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
if err := container.cmd.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stdout_slave.Close()
|
|
|
|
stderr_slave.Close()
|
|
|
|
if stdin_slave != nil {
|
|
|
|
stdin_slave.Close()
|
|
|
|
}
|
|
|
|
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()
|
|
|
|
io.Copy(stdin, container.stdin)
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
return container.cmd.Start()
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func (container *Container) Start() error {
|
2013-01-27 04:06:02 -05:00
|
|
|
if err := container.Filesystem.EnsureMounted(); err != nil {
|
2013-01-18 19:13:39 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
params := []string{
|
2013-01-21 21:39:52 -05:00
|
|
|
"-n", container.Id,
|
2013-01-18 19:13:39 -05:00
|
|
|
"-f", container.lxcConfigPath,
|
|
|
|
"--",
|
2013-02-13 17:01:44 -05:00
|
|
|
"/sbin/init",
|
2013-01-18 19:13:39 -05:00
|
|
|
container.Path,
|
|
|
|
}
|
|
|
|
params = append(params, container.Args...)
|
|
|
|
|
|
|
|
container.cmd = exec.Command("/usr/bin/lxc-start", params...)
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
container.State.setRunning(container.cmd.Process.Pid)
|
2013-01-22 14:13:22 -05:00
|
|
|
container.save()
|
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
|
|
|
|
}
|
|
|
|
|
2013-01-26 18:56:42 -05:00
|
|
|
func (container *Container) StdoutLog() io.Reader {
|
|
|
|
return strings.NewReader(container.stdoutLog.String())
|
|
|
|
}
|
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
func (container *Container) StderrPipe() (io.ReadCloser, error) {
|
|
|
|
reader, writer := io.Pipe()
|
|
|
|
container.stderr.AddWriter(writer)
|
|
|
|
return newBufReader(reader), nil
|
|
|
|
}
|
|
|
|
|
2013-01-26 18:56:42 -05:00
|
|
|
func (container *Container) StderrLog() io.Reader {
|
|
|
|
return strings.NewReader(container.stderrLog.String())
|
|
|
|
}
|
|
|
|
|
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-01-18 19:13:39 -05:00
|
|
|
container.cmd.Wait()
|
2013-01-22 20:30:09 -05:00
|
|
|
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-01-18 19:13:39 -05:00
|
|
|
container.stdout.Close()
|
|
|
|
container.stderr.Close()
|
2013-01-21 21:03:23 -05:00
|
|
|
if err := container.Filesystem.Umount(); 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
|
|
|
}
|
|
|
|
|
|
|
|
// Report status back
|
|
|
|
container.State.setStopped(exitCode)
|
2013-01-22 14:13:22 -05:00
|
|
|
container.save()
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
|
|
|
|
2013-01-21 21:03:23 -05:00
|
|
|
func (container *Container) kill() error {
|
2013-01-25 18:36:47 -05:00
|
|
|
if err := container.cmd.Process.Kill(); err != nil {
|
2013-01-21 21:03:23 -05:00
|
|
|
return err
|
2013-01-18 19:13:39 -05:00
|
|
|
}
|
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 {
|
|
|
|
if !container.State.Running {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return container.kill()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) Stop() error {
|
|
|
|
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-01-25 18:36:47 -05:00
|
|
|
if output, err := exec.Command("/usr/bin/lxc-kill", "-n", container.Id, "15").CombinedOutput(); err != nil {
|
|
|
|
log.Printf(string(output))
|
|
|
|
log.Printf("Failed to send SIGTERM to the process, force killing")
|
|
|
|
if err := container.Kill(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Wait for the process to exit on its own
|
|
|
|
if err := container.WaitTimeout(10 * time.Second); err != nil {
|
2013-01-25 18:36:47 -05:00
|
|
|
log.Printf("Container %v failed to exit within 10 seconds of SIGTERM - using the force", container.Id)
|
|
|
|
if err := container.Kill(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-01-21 21:03:23 -05:00
|
|
|
}
|
2013-01-18 19:13:39 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-01-22 18:03:40 -05: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-18 19:13:39 -05:00
|
|
|
func (container *Container) Wait() {
|
2013-01-25 18:36:47 -05:00
|
|
|
|
2013-01-18 19:13:39 -05:00
|
|
|
for container.State.Running {
|
|
|
|
container.State.wait()
|
|
|
|
}
|
|
|
|
}
|
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):
|
|
|
|
return errors.New("Timed Out")
|
|
|
|
case <-done:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|