2015-06-30 07:49:13 +08:00
|
|
|
// +build linux
|
|
|
|
|
2015-06-22 10:31:12 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2015-08-19 17:30:57 +08:00
|
|
|
"path/filepath"
|
2015-06-22 10:31:12 +08:00
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/codegangsta/cli"
|
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
|
|
|
"github.com/opencontainers/runc/libcontainer/configs"
|
2015-07-03 00:55:24 +08:00
|
|
|
"github.com/opencontainers/specs"
|
2015-06-22 10:31:12 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
var restoreCommand = cli.Command{
|
|
|
|
Name: "restore",
|
|
|
|
Usage: "restore a container from a previous checkpoint",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{Name: "image-path", Value: "", Usage: "path to criu image files for restoring"},
|
|
|
|
cli.StringFlag{Name: "work-path", Value: "", Usage: "path for saving work files and logs"},
|
|
|
|
cli.BoolFlag{Name: "tcp-established", Usage: "allow open tcp connections"},
|
|
|
|
cli.BoolFlag{Name: "ext-unix-sk", Usage: "allow external unix sockets"},
|
|
|
|
cli.BoolFlag{Name: "shell-job", Usage: "allow shell jobs"},
|
2015-06-27 17:56:24 +08:00
|
|
|
cli.BoolFlag{Name: "file-locks", Usage: "handle file locks, for safety"},
|
2015-06-22 10:31:12 +08:00
|
|
|
},
|
|
|
|
Action: func(context *cli.Context) {
|
|
|
|
imagePath := context.String("image-path")
|
|
|
|
if imagePath == "" {
|
|
|
|
imagePath = getDefaultImagePath(context)
|
|
|
|
}
|
|
|
|
spec, err := loadSpec(context.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
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 {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
status, err := restoreContainer(context, spec, config, imagePath)
|
|
|
|
if err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
os.Exit(status)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-03 00:55:24 +08:00
|
|
|
func restoreContainer(context *cli.Context, spec *specs.LinuxSpec, config *configs.Config, imagePath string) (code int, err error) {
|
2015-06-22 10:31:12 +08:00
|
|
|
rootuid := 0
|
|
|
|
factory, err := loadFactory(context)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
container, err := factory.Load(context.GlobalString("id"))
|
|
|
|
if err != nil {
|
|
|
|
container, err = factory.Create(context.GlobalString("id"), config)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
options := criuOptions(context)
|
|
|
|
// ensure that the container is always removed if we were the process
|
|
|
|
// that created it.
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
status, err := container.Status()
|
|
|
|
if err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
if status != libcontainer.Checkpointed {
|
|
|
|
if err := container.Destroy(); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
if err := os.RemoveAll(options.ImagesDirectory); err != nil {
|
|
|
|
logrus.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
process := &libcontainer.Process{
|
|
|
|
Stdin: os.Stdin,
|
|
|
|
Stdout: os.Stdout,
|
|
|
|
Stderr: os.Stderr,
|
|
|
|
}
|
2015-06-30 02:21:05 +08:00
|
|
|
tty, err := newTty(spec.Process.Terminal, process, rootuid)
|
2015-06-22 10:31:12 +08:00
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
2015-08-04 07:27:56 +08:00
|
|
|
handler := newSignalHandler(tty)
|
|
|
|
defer handler.Close()
|
2015-06-22 10:31:12 +08:00
|
|
|
if err := container.Restore(process, options); err != nil {
|
2015-08-19 17:30:57 +08:00
|
|
|
cstatus, cerr := container.Status()
|
|
|
|
if cerr != nil {
|
|
|
|
logrus.Error(cerr)
|
|
|
|
}
|
|
|
|
if cstatus == libcontainer.Destroyed {
|
|
|
|
dest := filepath.Join(context.GlobalString("root"), context.GlobalString("id"))
|
|
|
|
if errVal := os.RemoveAll(dest); errVal != nil {
|
|
|
|
logrus.Error(errVal)
|
|
|
|
}
|
|
|
|
}
|
2015-06-22 10:31:12 +08:00
|
|
|
return -1, err
|
|
|
|
}
|
2015-08-04 07:27:56 +08:00
|
|
|
return handler.forward(process)
|
2015-06-22 10:31:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func criuOptions(context *cli.Context) *libcontainer.CriuOpts {
|
|
|
|
imagePath := getCheckpointImagePath(context)
|
|
|
|
if err := os.MkdirAll(imagePath, 0655); err != nil {
|
|
|
|
fatal(err)
|
|
|
|
}
|
|
|
|
return &libcontainer.CriuOpts{
|
|
|
|
ImagesDirectory: imagePath,
|
|
|
|
WorkDirectory: context.String("work-path"),
|
|
|
|
LeaveRunning: context.Bool("leave-running"),
|
2015-08-22 06:59:43 +08:00
|
|
|
TcpEstablished: context.Bool("tcp-established"),
|
2015-06-22 10:31:12 +08:00
|
|
|
ExternalUnixConnections: context.Bool("ext-unix-sk"),
|
|
|
|
ShellJob: context.Bool("shell-job"),
|
2015-06-27 17:56:24 +08:00
|
|
|
FileLocks: context.Bool("file-locks"),
|
2015-06-22 10:31:12 +08:00
|
|
|
}
|
|
|
|
}
|