2015-06-30 07:49:13 +08:00
|
|
|
// +build linux
|
|
|
|
|
2015-06-22 10:31:12 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-06-25 15:19:44 +08:00
|
|
|
"os"
|
2015-06-30 07:49:13 +08:00
|
|
|
"runtime"
|
2015-06-22 10:31:12 +08:00
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/codegangsta/cli"
|
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
2015-07-03 00:55:24 +08:00
|
|
|
"github.com/opencontainers/specs"
|
2015-06-22 10:31:12 +08:00
|
|
|
)
|
|
|
|
|
2015-08-18 09:30:17 +08:00
|
|
|
var startCommand = cli.Command{
|
|
|
|
Name: "start",
|
|
|
|
Usage: "create and run a container",
|
|
|
|
Action: func(context *cli.Context) {
|
|
|
|
spec, err := loadSpec(context.Args().First())
|
2015-08-27 23:03:43 +08:00
|
|
|
if err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
2015-08-18 09:30:17 +08:00
|
|
|
|
|
|
|
notifySocket := os.Getenv("NOTIFY_SOCKET")
|
|
|
|
if notifySocket != "" {
|
|
|
|
setupSdNotify(spec, notifySocket)
|
|
|
|
}
|
|
|
|
|
|
|
|
if os.Geteuid() != 0 {
|
|
|
|
logrus.Fatal("runc should be run as root")
|
|
|
|
}
|
|
|
|
status, err := startContainer(context, spec)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Fatalf("Container start failed: %v", err)
|
|
|
|
}
|
|
|
|
// exit with the container's exit status so any external supervisor is
|
|
|
|
// notified of the exit with the correct exit status.
|
|
|
|
os.Exit(status)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:49:13 +08:00
|
|
|
func init() {
|
|
|
|
if len(os.Args) > 1 && os.Args[1] == "init" {
|
|
|
|
runtime.GOMAXPROCS(1)
|
|
|
|
runtime.LockOSThread()
|
|
|
|
factory, _ := libcontainer.New("")
|
|
|
|
if err := factory.StartInitialization(); err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
2015-07-08 15:55:23 +08:00
|
|
|
panic("--this line should have never been executed, congratulations--")
|
2015-06-30 07:49:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 09:30:17 +08:00
|
|
|
func startContainer(context *cli.Context, spec *specs.LinuxSpec) (int, error) {
|
2015-08-11 07:22:49 +08:00
|
|
|
config, err := createLibcontainerConfig(context.GlobalString("id"), spec)
|
2015-06-22 10:31:12 +08:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
2015-06-25 15:19:44 +08:00
|
|
|
if _, err := os.Stat(config.Rootfs); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return -1, fmt.Errorf("Rootfs (%q) does not exist", config.Rootfs)
|
|
|
|
}
|
|
|
|
return -1, err
|
|
|
|
}
|
2015-06-22 10:31:12 +08:00
|
|
|
rootuid, err := config.HostUID()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
factory, err := loadFactory(context)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
container, err := factory.Create(context.GlobalString("id"), config)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
// ensure that the container is always removed if we were the process
|
|
|
|
// that created it.
|
|
|
|
defer destroy(container)
|
2015-06-30 02:21:05 +08:00
|
|
|
process := newProcess(spec.Process)
|
|
|
|
tty, err := newTty(spec.Process.Terminal, process, rootuid)
|
2015-06-22 10:31:12 +08:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
handler := newSignalHandler(tty)
|
|
|
|
defer handler.Close()
|
|
|
|
if err := container.Start(process); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
return handler.forward(process)
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:49:13 +08:00
|
|
|
// default action is to execute a container
|
|
|
|
|
2015-07-15 22:50:22 +08:00
|
|
|
// If systemd is supporting sd_notify protocol, this function will add support
|
|
|
|
// for sd_notify protocol from within the container.
|
|
|
|
func setupSdNotify(spec *specs.LinuxSpec, notifySocket string) {
|
|
|
|
spec.Mounts = append(spec.Mounts, specs.Mount{Type: "bind", Source: notifySocket, Destination: notifySocket, Options: "bind"})
|
|
|
|
spec.Process.Env = append(spec.Process.Env, fmt.Sprintf("NOTIFY_SOCKET=%s", notifySocket))
|
|
|
|
}
|
|
|
|
|
2015-06-22 10:31:12 +08:00
|
|
|
func destroy(container libcontainer.Container) {
|
|
|
|
status, err := container.Status()
|
|
|
|
if err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
if status != libcontainer.Checkpointed {
|
|
|
|
if err := container.Destroy(); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|