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-08-27 23:34:46 +08:00
|
|
|
"strconv"
|
2016-01-12 08:57:18 +08:00
|
|
|
"syscall"
|
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-27 23:34:46 +08:00
|
|
|
const SD_LISTEN_FDS_START = 3
|
|
|
|
|
2015-08-29 23:50:39 +08:00
|
|
|
// default action is to start a container
|
2015-08-18 09:30:17 +08:00
|
|
|
var startCommand = cli.Command{
|
|
|
|
Name: "start",
|
|
|
|
Usage: "create and run a container",
|
2015-09-02 00:32:29 +08:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
2015-10-28 03:23:44 +08:00
|
|
|
Name: "bundle, b",
|
|
|
|
Value: "",
|
|
|
|
Usage: "path to the root of the bundle directory",
|
2015-09-02 00:32:29 +08:00
|
|
|
},
|
2016-01-08 06:34:11 +08:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "console",
|
|
|
|
Value: "",
|
|
|
|
Usage: "specify the pty slave path for use with the container",
|
|
|
|
},
|
2016-01-12 08:57:18 +08:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "detach,d",
|
|
|
|
Usage: "detach from the container's process",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "pid-file",
|
|
|
|
Value: "",
|
|
|
|
Usage: "specify the file to write the process id to",
|
|
|
|
},
|
2015-09-02 00:32:29 +08:00
|
|
|
},
|
2015-08-18 09:30:17 +08:00
|
|
|
Action: func(context *cli.Context) {
|
2015-10-28 03:23:44 +08:00
|
|
|
bundle := context.String("bundle")
|
|
|
|
if bundle != "" {
|
|
|
|
if err := os.Chdir(bundle); err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spec, rspec, err := loadSpec(specConfig, runtimeConfig)
|
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 != "" {
|
2015-09-02 00:32:29 +08:00
|
|
|
setupSdNotify(spec, rspec, notifySocket)
|
2015-08-18 09:30:17 +08:00
|
|
|
}
|
|
|
|
|
2016-01-08 06:34:11 +08:00
|
|
|
var (
|
|
|
|
listenFds = os.Getenv("LISTEN_FDS")
|
|
|
|
listenPid = os.Getenv("LISTEN_PID")
|
|
|
|
)
|
2015-08-27 23:34:46 +08:00
|
|
|
if listenFds != "" && listenPid == strconv.Itoa(os.Getpid()) {
|
|
|
|
setupSocketActivation(spec, listenFds)
|
|
|
|
}
|
|
|
|
|
2015-08-18 09:30:17 +08:00
|
|
|
if os.Geteuid() != 0 {
|
|
|
|
logrus.Fatal("runc should be run as root")
|
|
|
|
}
|
2015-09-02 00:32:29 +08:00
|
|
|
status, err := startContainer(context, spec, rspec)
|
2015-08-18 09:30:17 +08:00
|
|
|
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-09-02 00:32:29 +08:00
|
|
|
func startContainer(context *cli.Context, spec *specs.LinuxSpec, rspec *specs.LinuxRuntimeSpec) (int, error) {
|
|
|
|
config, err := createLibcontainerConfig(context.GlobalString("id"), spec, rspec)
|
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.
|
2016-01-12 08:57:18 +08:00
|
|
|
detach := context.Bool("detach")
|
|
|
|
if !detach {
|
|
|
|
defer destroy(container)
|
|
|
|
}
|
2015-06-30 02:21:05 +08:00
|
|
|
process := newProcess(spec.Process)
|
2015-08-27 23:34:46 +08:00
|
|
|
// Support on-demand socket activation by passing file descriptors into the container init process.
|
|
|
|
if os.Getenv("LISTEN_FDS") != "" {
|
|
|
|
listenFdsInt, err := strconv.Atoi(os.Getenv("LISTEN_FDS"))
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
for i := SD_LISTEN_FDS_START; i < (listenFdsInt + SD_LISTEN_FDS_START); i++ {
|
|
|
|
process.ExtraFiles = append(process.ExtraFiles, os.NewFile(uintptr(i), ""))
|
|
|
|
}
|
|
|
|
}
|
2016-01-12 08:57:18 +08:00
|
|
|
var tty *tty
|
|
|
|
if spec.Process.Terminal {
|
|
|
|
if tty, err = createTty(process, rootuid, context.String("console")); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
} else if detach {
|
|
|
|
if err := dupStdio(process, rootuid); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if tty, err = createStdioPipes(process, rootuid); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
2015-06-22 10:31:12 +08:00
|
|
|
}
|
|
|
|
if err := container.Start(process); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
2016-01-12 08:57:18 +08:00
|
|
|
if pidFile := context.String("pid-file"); pidFile != "" {
|
|
|
|
pid, err := process.Pid()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
f, err := os.Create(pidFile)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithField("pid", pid).Error("create pid file")
|
|
|
|
} else {
|
|
|
|
_, err = fmt.Fprintf(f, "%d", pid)
|
|
|
|
f.Close()
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithField("error", err).Error("write pid file")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if detach {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
handler := newSignalHandler(tty)
|
|
|
|
defer handler.Close()
|
2015-06-22 10:31:12 +08:00
|
|
|
return handler.forward(process)
|
|
|
|
}
|
|
|
|
|
2016-01-12 08:57:18 +08:00
|
|
|
func dupStdio(process *libcontainer.Process, rootuid int) error {
|
|
|
|
process.Stdin = os.Stdin
|
|
|
|
process.Stdout = os.Stdout
|
|
|
|
process.Stderr = os.Stderr
|
|
|
|
for _, fd := range []uintptr{
|
|
|
|
os.Stdin.Fd(),
|
|
|
|
os.Stdout.Fd(),
|
|
|
|
os.Stderr.Fd(),
|
|
|
|
} {
|
|
|
|
if err := syscall.Fchown(int(fd), rootuid, rootuid); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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.
|
2015-09-02 00:32:29 +08:00
|
|
|
func setupSdNotify(spec *specs.LinuxSpec, rspec *specs.LinuxRuntimeSpec, notifySocket string) {
|
|
|
|
mountName := "sdNotify"
|
|
|
|
spec.Mounts = append(spec.Mounts, specs.MountPoint{Name: mountName, Path: notifySocket})
|
2015-07-15 22:50:22 +08:00
|
|
|
spec.Process.Env = append(spec.Process.Env, fmt.Sprintf("NOTIFY_SOCKET=%s", notifySocket))
|
2015-09-02 00:32:29 +08:00
|
|
|
rspec.Mounts[mountName] = specs.Mount{Type: "bind", Source: notifySocket, Options: []string{"bind"}}
|
2015-07-15 22:50:22 +08:00
|
|
|
}
|
|
|
|
|
2015-08-27 23:34:46 +08:00
|
|
|
// If systemd is supporting on-demand socket activation, this function will add support
|
|
|
|
// for on-demand socket activation for the containerized service.
|
|
|
|
func setupSocketActivation(spec *specs.LinuxSpec, listenFds string) {
|
|
|
|
spec.Process.Env = append(spec.Process.Env, fmt.Sprintf("LISTEN_FDS=%s", listenFds), "LISTEN_PID=1")
|
|
|
|
}
|
|
|
|
|
2015-06-22 10:31:12 +08:00
|
|
|
func destroy(container libcontainer.Container) {
|
2015-10-03 02:16:50 +08:00
|
|
|
if err := container.Destroy(); err != nil {
|
2015-06-22 10:31:12 +08:00
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
}
|