277cc920a4
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
107 lines
2.9 KiB
Go
107 lines
2.9 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/containerd/util"
|
|
)
|
|
|
|
var (
|
|
fexec bool
|
|
fcheckpoint string
|
|
)
|
|
|
|
func init() {
|
|
flag.BoolVar(&fexec, "exec", false, "exec a process instead of starting the init")
|
|
flag.StringVar(&fcheckpoint, "checkpoint", "", "start container from an existing checkpoint")
|
|
flag.Parse()
|
|
}
|
|
|
|
func setupLogger() {
|
|
f, err := os.OpenFile("/tmp/shim.log", os.O_CREATE|os.O_RDWR|os.O_APPEND, 0755)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
logrus.SetOutput(f)
|
|
}
|
|
|
|
// containerd-shim is a small shim that sits in front of a runc implementation
|
|
// that allows it to be repartented to init and handle reattach from the caller.
|
|
//
|
|
// the cwd of the shim should be the bundle for the container. Arg1 should be the path
|
|
// to the state directory where the shim can locate fifos and other information.
|
|
func main() {
|
|
// start handling signals as soon as possible so that things are properly reaped
|
|
// or if runc exits before we hit the handler
|
|
signals := make(chan os.Signal, 2048)
|
|
signal.Notify(signals)
|
|
// set the shim as the subreaper for all orphaned processes created by the container
|
|
if err := util.SetSubreaper(1); err != nil {
|
|
logrus.WithField("error", err).Fatal("shim: set as subreaper")
|
|
}
|
|
// open the exit pipe
|
|
f, err := os.OpenFile("exit", syscall.O_WRONLY, 0)
|
|
if err != nil {
|
|
logrus.WithField("error", err).Fatal("shim: open exit pipe")
|
|
}
|
|
defer f.Close()
|
|
p, err := newProcess(flag.Arg(0), flag.Arg(1), fexec, fcheckpoint)
|
|
if err != nil {
|
|
logrus.WithField("error", err).Fatal("shim: create new process")
|
|
}
|
|
if err := p.start(); err != nil {
|
|
logrus.WithField("error", err).Fatal("shim: start process")
|
|
}
|
|
var exitShim bool
|
|
for s := range signals {
|
|
logrus.WithField("signal", s).Debug("shim: received signal")
|
|
switch s {
|
|
case syscall.SIGCHLD:
|
|
exits, err := util.Reap()
|
|
if err != nil {
|
|
logrus.WithField("error", err).Error("shim: reaping child processes")
|
|
}
|
|
for _, e := range exits {
|
|
// check to see if runc is one of the processes that has exited
|
|
if e.Pid == p.pid() {
|
|
exitShim = true
|
|
logrus.WithFields(logrus.Fields{
|
|
"pid": e.Pid,
|
|
"status": e.Status,
|
|
}).Info("shim: runc exited")
|
|
if err := writeInt("exitStatus", e.Status); err != nil {
|
|
logrus.WithFields(logrus.Fields{
|
|
"error": err,
|
|
"status": e.Status,
|
|
}).Error("shim: write exit status")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// runc has exited so the shim can also exit
|
|
if exitShim {
|
|
if err := p.Close(); err != nil {
|
|
logrus.WithField("error", err).Error("shim: close stdio")
|
|
}
|
|
if err := p.delete(); err != nil {
|
|
logrus.WithField("error", err).Error("shim: delete runc state")
|
|
}
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func writeInt(path string, i int) error {
|
|
f, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
_, err = fmt.Fprintf(f, "%d", i)
|
|
return err
|
|
}
|