Merge pull request #1319 from mlaventure/handle-sigkilled-shim

Handle sigkilled shim
This commit is contained in:
Michael Crosby 2017-08-29 14:06:17 -04:00 committed by GitHub
commit c3711c3866
18 changed files with 481 additions and 147 deletions

View File

@ -91,7 +91,7 @@ checkprotos: protos ## check if protobufs needs to be generated again
# Depends on binaries because vet will silently fail if it can't load compiled # Depends on binaries because vet will silently fail if it can't load compiled
# imports # imports
vet: binaries ## run go vet vet: ## run go vet
@echo "$(WHALE) $@" @echo "$(WHALE) $@"
@test -z "$$(go vet ${PACKAGES} 2>&1 | grep -v 'constant [0-9]* not a string in call to Errorf' | grep -v 'unrecognized printf verb 'r'' | egrep -v '(timestamp_test.go|duration_test.go|fetch.go|exit status 1)' | tee /dev/stderr)" @test -z "$$(go vet ${PACKAGES} 2>&1 | grep -v 'constant [0-9]* not a string in call to Errorf' | grep -v 'unrecognized printf verb 'r'' | egrep -v '(timestamp_test.go|duration_test.go|fetch.go|exit status 1)' | tee /dev/stderr)"

View File

@ -66,6 +66,7 @@ func TestMain(m *testing.M) {
err := ctrd.start("containerd", address, []string{ err := ctrd.start("containerd", address, []string{
"--root", defaultRoot, "--root", defaultRoot,
"--state", defaultState,
"--log-level", "debug", "--log-level", "debug",
}, buf, buf) }, buf, buf)
if err != nil { if err != nil {

View File

@ -8,6 +8,7 @@ import (
const ( const (
defaultRoot = "/var/lib/containerd-test" defaultRoot = "/var/lib/containerd-test"
defaultState = "/run/containerd-test"
defaultAddress = "/run/containerd-test/containerd.sock" defaultAddress = "/run/containerd-test/containerd.sock"
) )

View File

@ -18,6 +18,7 @@ var (
dockerLayerFolders []string dockerLayerFolders []string
defaultRoot = filepath.Join(os.Getenv("programfiles"), "containerd", "root-test") defaultRoot = filepath.Join(os.Getenv("programfiles"), "containerd", "root-test")
defaultState = filepath.Join(os.Getenv("programfiles"), "containerd", "state-test")
) )
func platformTestSetup(client *Client) error { func platformTestSetup(client *Client) error {

View File

@ -9,6 +9,8 @@ import (
"os" "os"
"runtime" "runtime"
"strings" "strings"
"sync"
"syscall"
"time" "time"
"github.com/containerd/containerd" "github.com/containerd/containerd"
@ -20,6 +22,7 @@ import (
"github.com/containerd/containerd/reaper" "github.com/containerd/containerd/reaper"
"github.com/containerd/containerd/typeurl" "github.com/containerd/containerd/typeurl"
"github.com/containerd/containerd/version" "github.com/containerd/containerd/version"
google_protobuf "github.com/golang/protobuf/ptypes/empty"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"github.com/urfave/cli" "github.com/urfave/cli"
@ -101,7 +104,12 @@ func main() {
if err := serve(server, socket); err != nil { if err := serve(server, socket); err != nil {
return err return err
} }
return handleSignals(signals, server) logger := logrus.WithFields(logrus.Fields{
"pid": os.Getpid(),
"path": path,
"namespace": context.GlobalString("namespace"),
})
return handleSignals(logger, signals, server, sv)
} }
if err := app.Run(os.Args); err != nil { if err := app.Run(os.Args); err != nil {
fmt.Fprintf(os.Stderr, "containerd-shim: %s\n", err) fmt.Fprintf(os.Stderr, "containerd-shim: %s\n", err)
@ -136,27 +144,41 @@ func serve(server *grpc.Server, path string) error {
return nil return nil
} }
func handleSignals(signals chan os.Signal, server *grpc.Server) error { func handleSignals(logger *logrus.Entry, signals chan os.Signal, server *grpc.Server, sv *shim.Service) error {
for s := range signals { var (
logrus.WithField("signal", s).Debug("received signal") termOnce sync.Once
done = make(chan struct{})
)
for {
select {
case <-done:
return nil
case s := <-signals:
switch s { switch s {
case unix.SIGCHLD: case unix.SIGCHLD:
if err := reaper.Reap(); err != nil { if err := reaper.Reap(); err != nil {
logrus.WithError(err).Error("reap exit status") logger.WithError(err).Error("reap exit status")
} }
case unix.SIGTERM, unix.SIGINT: case unix.SIGTERM, unix.SIGINT:
// TODO: should we forward signals to the processes if they are still running? go termOnce.Do(func() {
// i.e. machine reboot
server.Stop() server.Stop()
return nil // Ensure our child is dead if any
sv.Kill(context.Background(), &shimapi.KillRequest{
Signal: uint32(syscall.SIGKILL),
All: true,
})
sv.Delete(context.Background(), &google_protobuf.Empty{})
close(done)
})
case unix.SIGUSR1: case unix.SIGUSR1:
dumpStacks() dumpStacks(logger)
}
} }
} }
return nil
} }
func dumpStacks() { func dumpStacks(logger *logrus.Entry) {
var ( var (
buf []byte buf []byte
stackSize int stackSize int
@ -168,7 +190,7 @@ func dumpStacks() {
bufferLen *= 2 bufferLen *= 2
} }
buf = buf[:stackSize] buf = buf[:stackSize]
logrus.Infof("=== BEGIN goroutine stack dump ===\n%s\n=== END goroutine stack dump ===", buf) logger.Infof("=== BEGIN goroutine stack dump ===\n%s\n=== END goroutine stack dump ===", buf)
} }
func connectEvents(address string) (eventsapi.EventsClient, error) { func connectEvents(address string) (eventsapi.EventsClient, error) {

View File

@ -66,6 +66,10 @@ func main() {
Name: "root", Name: "root",
Usage: "containerd root directory", Usage: "containerd root directory",
}, },
cli.StringFlag{
Name: "state",
Usage: "containerd state directory",
},
} }
app.Commands = []cli.Command{ app.Commands = []cli.Command{
configCommand, configCommand,
@ -156,6 +160,10 @@ func applyFlags(context *cli.Context, config *server.Config) error {
name: "root", name: "root",
d: &config.Root, d: &config.Root,
}, },
{
name: "state",
d: &config.State,
},
{ {
name: "address", name: "address",
d: &config.GRPC.Address, d: &config.GRPC.Address,

View File

@ -7,6 +7,7 @@ import (
"context" "context"
"fmt" "fmt"
"io" "io"
"os/exec"
"runtime" "runtime"
"strings" "strings"
"sync" "sync"
@ -222,13 +223,14 @@ func TestDaemonRestart(t *testing.T) {
return return
} }
if err := ctrd.Restart(); err != nil { var exitStatus ExitStatus
if err := ctrd.Restart(func() {
exitStatus = <-statusC
}); err != nil {
t.Fatal(err) t.Fatal(err)
} }
status := <-statusC if exitStatus.Error() == nil {
_, _, err = status.Result()
if err == nil {
t.Errorf(`first task.Wait() should have failed with "transport is closing"`) t.Errorf(`first task.Wait() should have failed with "transport is closing"`)
} }
@ -712,3 +714,140 @@ func TestContainerKillAll(t *testing.T) {
return return
} }
} }
func TestShimSigkilled(t *testing.T) {
client, err := newClient(t, address)
if err != nil {
t.Fatal(err)
}
defer client.Close()
var (
image Image
ctx, cancel = testContext()
id = t.Name()
)
defer cancel()
// redis unset its PDeathSignal making it a good candidate
image, err = client.Pull(ctx, "docker.io/library/redis:alpine", WithPullUnpack)
if err != nil {
t.Fatal(err)
}
container, err := client.NewContainer(ctx, id, WithNewSpec(WithImageConfig(image)), withNewSnapshot(id, image))
if err != nil {
t.Fatal(err)
}
defer container.Delete(ctx, WithSnapshotCleanup)
task, err := container.NewTask(ctx, empty())
if err != nil {
t.Fatal(err)
}
defer task.Delete(ctx)
statusC, err := task.Wait(ctx)
if err != nil {
t.Error(err)
}
pid := task.Pid()
if pid <= 0 {
t.Fatalf("invalid task pid %d", pid)
}
if err := task.Start(ctx); err != nil {
t.Fatal(err)
}
// SIGKILL the shim
if err := exec.Command("pkill", "-KILL", "containerd-s").Run(); err != nil {
t.Fatalf("failed to kill shim: %v", err)
}
<-statusC
if err := unix.Kill(int(pid), 0); err != unix.ESRCH {
t.Errorf("pid %d still exists", pid)
}
}
func TestDaemonRestartWithRunningShim(t *testing.T) {
client, err := newClient(t, address)
if err != nil {
t.Fatal(err)
}
defer client.Close()
var (
image Image
ctx, cancel = testContext()
id = t.Name()
)
defer cancel()
image, err = client.GetImage(ctx, testImage)
if err != nil {
t.Error(err)
return
}
container, err := client.NewContainer(ctx, id, WithNewSpec(WithImageConfig(image), WithProcessArgs("sleep", "100")), withNewSnapshot(id, image))
if err != nil {
t.Fatal(err)
}
defer container.Delete(ctx, WithSnapshotCleanup)
task, err := container.NewTask(ctx, empty())
if err != nil {
t.Fatal(err)
}
defer task.Delete(ctx)
statusC, err := task.Wait(ctx)
if err != nil {
t.Error(err)
}
pid := task.Pid()
if pid <= 0 {
t.Fatalf("invalid task pid %d", pid)
}
if err := task.Start(ctx); err != nil {
t.Fatal(err)
}
var exitStatus ExitStatus
if err := ctrd.Restart(func() {
exitStatus = <-statusC
}); err != nil {
t.Fatal(err)
}
if exitStatus.Error() == nil {
t.Errorf(`first task.Wait() should have failed with "transport is closing"`)
}
waitCtx, cancel := context.WithTimeout(ctx, 1*time.Second)
c, err := ctrd.waitForStart(waitCtx)
cancel()
if err != nil {
t.Fatal(err)
}
c.Close()
statusC, err = task.Wait(ctx)
if err != nil {
t.Error(err)
}
if err := task.Kill(ctx, syscall.SIGKILL); err != nil {
t.Fatal(err)
}
<-statusC
if err := unix.Kill(int(pid), 0); err != unix.ESRCH {
t.Errorf("pid %d still exists", pid)
}
}

View File

@ -6,7 +6,6 @@ import (
"os/exec" "os/exec"
"sync" "sync"
"syscall" "syscall"
"time"
"github.com/pkg/errors" "github.com/pkg/errors"
) )
@ -82,10 +81,12 @@ func (d *daemon) Wait() error {
if d.cmd == nil { if d.cmd == nil {
return errors.New("daemon is not running") return errors.New("daemon is not running")
} }
return d.cmd.Wait() err := d.cmd.Wait()
d.cmd = nil
return err
} }
func (d *daemon) Restart() error { func (d *daemon) Restart(stopCb func()) error {
d.Lock() d.Lock()
defer d.Unlock() defer d.Unlock()
if d.cmd == nil { if d.cmd == nil {
@ -99,7 +100,9 @@ func (d *daemon) Restart() error {
d.cmd.Wait() d.cmd.Wait()
<-time.After(1 * time.Second) if stopCb != nil {
stopCb()
}
cmd := exec.Command(d.cmd.Path, d.cmd.Args[1:]...) cmd := exec.Command(d.cmd.Path, d.cmd.Args[1:]...)
cmd.Stdout = d.cmd.Stdout cmd.Stdout = d.cmd.Stdout

View File

@ -185,11 +185,11 @@ func validateTopic(topic string) error {
} }
if topic[0] != '/' { if topic[0] != '/' {
return errors.Wrapf(errdefs.ErrInvalidArgument, "must start with '/'", topic) return errors.Wrapf(errdefs.ErrInvalidArgument, "must start with '/'")
} }
if len(topic) == 1 { if len(topic) == 1 {
return errors.Wrapf(errdefs.ErrInvalidArgument, "must have at least one component", topic) return errors.Wrapf(errdefs.ErrInvalidArgument, "must have at least one component")
} }
components := strings.Split(topic[1:], "/") components := strings.Split(topic[1:], "/")

View File

@ -28,7 +28,7 @@ func loadBundle(path, workdir, namespace, id string, events *events.Exchange) *b
} }
// newBundle creates a new bundle on disk at the provided path for the given id // newBundle creates a new bundle on disk at the provided path for the given id
func newBundle(path, namespace, workDir, id string, spec []byte, events *events.Exchange) (b *bundle, err error) { func newBundle(namespace, id, path, workDir string, spec []byte, events *events.Exchange) (b *bundle, err error) {
if err := os.MkdirAll(path, 0711); err != nil { if err := os.MkdirAll(path, 0711); err != nil {
return nil, err return nil, err
} }
@ -78,8 +78,8 @@ type bundle struct {
} }
// NewShim connects to the shim managing the bundle and tasks // NewShim connects to the shim managing the bundle and tasks
func (b *bundle) NewShim(ctx context.Context, binary, grpcAddress string, remote, debug bool, createOpts runtime.CreateOpts) (*client.Client, error) { func (b *bundle) NewShim(ctx context.Context, binary, grpcAddress string, remote, debug bool, createOpts runtime.CreateOpts, exitHandler func()) (*client.Client, error) {
opt := client.WithStart(binary, grpcAddress, debug) opt := client.WithStart(binary, grpcAddress, debug, exitHandler)
if !remote { if !remote {
opt = client.WithLocal(b.events) opt = client.WithLocal(b.events)
} }

View File

@ -8,8 +8,10 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"path/filepath" "path/filepath"
"time"
"github.com/boltdb/bolt" "github.com/boltdb/bolt"
eventsapi "github.com/containerd/containerd/api/services/events/v1"
"github.com/containerd/containerd/api/types" "github.com/containerd/containerd/api/types"
"github.com/containerd/containerd/errdefs" "github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/events" "github.com/containerd/containerd/events"
@ -20,10 +22,13 @@ import (
"github.com/containerd/containerd/metadata" "github.com/containerd/containerd/metadata"
"github.com/containerd/containerd/namespaces" "github.com/containerd/containerd/namespaces"
"github.com/containerd/containerd/plugin" "github.com/containerd/containerd/plugin"
"github.com/containerd/containerd/reaper"
"github.com/containerd/containerd/runtime" "github.com/containerd/containerd/runtime"
"github.com/containerd/containerd/sys"
runc "github.com/containerd/go-runc" runc "github.com/containerd/go-runc"
google_protobuf "github.com/golang/protobuf/ptypes/empty" google_protobuf "github.com/golang/protobuf/ptypes/empty"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )
@ -101,6 +106,7 @@ func New(ic *plugin.InitContext) (interface{}, error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
// TODO: need to add the tasks to the monitor
for _, t := range tasks { for _, t := range tasks {
if err := r.tasks.AddWithNamespace(t.namespace, t); err != nil { if err := r.tasks.AddWithNamespace(t.namespace, t); err != nil {
return nil, err return nil, err
@ -138,7 +144,11 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
return nil, errors.Wrapf(err, "invalid task id") return nil, errors.Wrapf(err, "invalid task id")
} }
bundle, err := newBundle(filepath.Join(r.state, namespace), namespace, filepath.Join(r.root, namespace), id, opts.Spec.Value, r.events) bundle, err := newBundle(
namespace, id,
filepath.Join(r.state, namespace),
filepath.Join(r.root, namespace),
opts.Spec.Value, r.events)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -147,7 +157,36 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
bundle.Delete() bundle.Delete()
} }
}() }()
s, err := bundle.NewShim(ctx, r.shim, r.address, r.remote, r.shimDebug, opts) s, err := bundle.NewShim(ctx, r.shim, r.address, r.remote, r.shimDebug, opts, func() {
t, err := r.tasks.Get(ctx, id)
if err != nil {
// Task was never started or was already sucessfully deleted
return
}
lc := t.(*Task)
// Stop the monitor
if err := r.monitor.Stop(lc); err != nil {
log.G(ctx).WithError(err).WithFields(logrus.Fields{
"id": id,
"namespace": namespace,
}).Warn("failed to stop monitor")
}
log.G(ctx).WithFields(logrus.Fields{
"id": id,
"namespace": namespace,
}).Warn("cleaning up after killed shim")
err = r.cleanupAfterDeadShim(context.Background(), bundle, namespace, id, lc.pid, true)
if err == nil {
r.tasks.Delete(ctx, lc)
} else {
log.G(ctx).WithError(err).WithFields(logrus.Fields{
"id": id,
"namespace": namespace,
}).Warn("failed to clen up after killed shim")
}
})
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -176,15 +215,17 @@ func (r *Runtime) Create(ctx context.Context, id string, opts runtime.CreateOpts
Options: m.Options, Options: m.Options,
}) })
} }
if _, err = s.Create(ctx, sopts); err != nil { cr, err := s.Create(ctx, sopts)
if err != nil {
return nil, errdefs.FromGRPC(err) return nil, errdefs.FromGRPC(err)
} }
t := newTask(id, namespace, s) t := newTask(id, namespace, int(cr.Pid), s)
if err := r.tasks.Add(ctx, t); err != nil { if err := r.tasks.Add(ctx, t); err != nil {
return nil, err return nil, err
} }
// after the task is created, add it to the monitor // after the task is created, add it to the monitor
if err = r.monitor.Monitor(t); err != nil { if err = r.monitor.Monitor(t); err != nil {
r.tasks.Delete(ctx, t)
return nil, err return nil, err
} }
return t, nil return t, nil
@ -206,10 +247,10 @@ func (r *Runtime) Delete(ctx context.Context, c runtime.Task) (*runtime.Exit, er
if err != nil { if err != nil {
return nil, errdefs.FromGRPC(err) return nil, errdefs.FromGRPC(err)
} }
r.tasks.Delete(ctx, lc)
if err := lc.shim.KillShim(ctx); err != nil { if err := lc.shim.KillShim(ctx); err != nil {
log.G(ctx).WithError(err).Error("failed to kill shim") log.G(ctx).WithError(err).Error("failed to kill shim")
} }
r.tasks.Delete(ctx, lc)
bundle := loadBundle( bundle := loadBundle(
filepath.Join(r.state, namespace, lc.id), filepath.Join(r.state, namespace, lc.id),
@ -268,18 +309,21 @@ func (r *Runtime) loadTasks(ctx context.Context, ns string) ([]*Task, error) {
continue continue
} }
id := path.Name() id := path.Name()
bundle := loadBundle(filepath.Join(r.state, ns, id), bundle := loadBundle(
filepath.Join(r.root, ns, id), ns, id, r.events) filepath.Join(r.state, ns, id),
filepath.Join(r.root, ns, id),
ns, id, r.events)
s, err := bundle.Connect(ctx, r.remote) s, err := bundle.Connect(ctx, r.remote)
if err != nil { if err != nil {
log.G(ctx).WithError(err).Error("connecting to shim") log.G(ctx).WithError(err).WithFields(logrus.Fields{
if err := r.terminate(ctx, bundle, ns, id); err != nil { "id": id,
log.G(ctx).WithError(err).WithField("bundle", bundle.path).Error("failed to terminate task, leaving bundle for debugging") "namespace": ns,
continue }).Error("connecting to shim")
} pid, _ := runc.ReadPidFile(filepath.Join(bundle.path, client.InitPidFile))
if err := bundle.Delete(); err != nil { err := r.cleanupAfterDeadShim(ctx, bundle, ns, id, pid, false)
log.G(ctx).WithError(err).Error("delete bundle") if err != nil {
log.G(ctx).WithError(err).WithField("bundle", bundle.path).
Error("cleaning up after dead shim")
} }
continue continue
} }
@ -292,6 +336,45 @@ func (r *Runtime) loadTasks(ctx context.Context, ns string) ([]*Task, error) {
return o, nil return o, nil
} }
func (r *Runtime) cleanupAfterDeadShim(ctx context.Context, bundle *bundle, ns, id string, pid int, reap bool) error {
ctx = namespaces.WithNamespace(ctx, ns)
if err := r.terminate(ctx, bundle, ns, id); err != nil {
return errors.New("failed to terminate task, leaving bundle for debugging")
}
if reap {
// if sub-reaper is set, reap our new child
if v, err := sys.GetSubreaper(); err == nil && v == 1 {
reaper.Default.Register(pid, &reaper.Cmd{ExitCh: make(chan struct{})})
reaper.Default.WaitPid(pid)
reaper.Default.Delete(pid)
}
}
// Notify Client
exitedAt := time.Now().UTC()
r.events.Publish(ctx, runtime.TaskExitEventTopic, &eventsapi.TaskExit{
ContainerID: id,
ID: id,
Pid: uint32(pid),
ExitStatus: 128 + uint32(unix.SIGKILL),
ExitedAt: exitedAt,
})
if err := bundle.Delete(); err != nil {
log.G(ctx).WithError(err).Error("delete bundle")
}
r.events.Publish(ctx, runtime.TaskDeleteEventTopic, &eventsapi.TaskDelete{
ContainerID: id,
Pid: uint32(pid),
ExitStatus: 128 + uint32(unix.SIGKILL),
ExitedAt: exitedAt,
})
return nil
}
func (r *Runtime) terminate(ctx context.Context, bundle *bundle, ns, id string) error { func (r *Runtime) terminate(ctx context.Context, bundle *bundle, ns, id string) error {
ctx = namespaces.WithNamespace(ctx, ns) ctx = namespaces.WithNamespace(ctx, ns)
rt, err := r.getRuntime(ctx, ns, id) rt, err := r.getRuntime(ctx, ns, id)
@ -304,7 +387,10 @@ func (r *Runtime) terminate(ctx context.Context, bundle *bundle, ns, id string)
log.G(ctx).WithError(err).Warnf("delete runtime state %s", id) log.G(ctx).WithError(err).Warnf("delete runtime state %s", id)
} }
if err := unix.Unmount(filepath.Join(bundle.path, "rootfs"), 0); err != nil { if err := unix.Unmount(filepath.Join(bundle.path, "rootfs"), 0); err != nil {
log.G(ctx).WithError(err).Warnf("unmount task rootfs %s", id) log.G(ctx).WithError(err).WithFields(logrus.Fields{
"path": bundle.path,
"id": id,
}).Warnf("unmount task rootfs")
} }
return nil return nil
} }
@ -319,9 +405,7 @@ func (r *Runtime) getRuntime(ctx context.Context, ns, id string) (*runc.Runc, er
return nil, err return nil, err
} }
return &runc.Runc{ return &runc.Runc{
// TODO: until we have a way to store/retrieve the original command Command: r.runtime,
// we can only rely on runc from the default $PATH
Command: runc.DefaultCommand,
LogFormat: runc.JSON, LogFormat: runc.JSON,
PdeathSignal: unix.SIGKILL, PdeathSignal: unix.SIGKILL,
Root: filepath.Join(client.RuncRoot, ns), Root: filepath.Join(client.RuncRoot, ns),

View File

@ -10,6 +10,8 @@ import (
"os" "os"
"os/exec" "os/exec"
"strings" "strings"
"sync"
"syscall"
"time" "time"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
@ -28,7 +30,7 @@ import (
type ClientOpt func(context.Context, Config) (shim.ShimClient, io.Closer, error) type ClientOpt func(context.Context, Config) (shim.ShimClient, io.Closer, error)
// WithStart executes a new shim process // WithStart executes a new shim process
func WithStart(binary, address string, debug bool) ClientOpt { func WithStart(binary, address string, debug bool, exitHandler func()) ClientOpt {
return func(ctx context.Context, config Config) (_ shim.ShimClient, _ io.Closer, err error) { return func(ctx context.Context, config Config) (_ shim.ShimClient, _ io.Closer, err error) {
socket, err := newSocket(config) socket, err := newSocket(config)
if err != nil { if err != nil {
@ -47,9 +49,14 @@ func WithStart(binary, address string, debug bool) ClientOpt {
} }
defer func() { defer func() {
if err != nil { if err != nil {
terminate(cmd) cmd.Process.Kill()
} }
}() }()
go func() {
reaper.Default.Wait(cmd)
reaper.Default.Delete(cmd.Process.Pid)
exitHandler()
}()
log.G(ctx).WithFields(logrus.Fields{ log.G(ctx).WithFields(logrus.Fields{
"pid": cmd.Process.Pid, "pid": cmd.Process.Pid,
"address": config.Address, "address": config.Address,
@ -72,11 +79,6 @@ func WithStart(binary, address string, debug bool) ClientOpt {
} }
} }
func terminate(cmd *exec.Cmd) {
cmd.Process.Kill()
reaper.Default.Wait(cmd)
}
func newCommand(binary, address string, debug bool, config Config, socket *os.File) *exec.Cmd { func newCommand(binary, address string, debug bool, config Config, socket *os.File) *exec.Cmd {
args := []string{ args := []string{
"--namespace", config.Namespace, "--namespace", config.Namespace,
@ -178,6 +180,7 @@ func New(ctx context.Context, config Config, opt ClientOpt) (*Client, error) {
return &Client{ return &Client{
ShimClient: s, ShimClient: s,
c: c, c: c,
exitCh: make(chan struct{}),
}, nil }, nil
} }
@ -185,8 +188,12 @@ type Client struct {
shim.ShimClient shim.ShimClient
c io.Closer c io.Closer
exitCh chan struct{}
exitOnce sync.Once
} }
// IsAlive returns true if the shim can be contacted.
// NOTE: a negative answer doesn't mean that the process is gone.
func (c *Client) IsAlive(ctx context.Context) (bool, error) { func (c *Client) IsAlive(ctx context.Context) (bool, error) {
_, err := c.ShimInfo(ctx, empty) _, err := c.ShimInfo(ctx, empty)
if err != nil { if err != nil {
@ -198,8 +205,24 @@ func (c *Client) IsAlive(ctx context.Context) (bool, error) {
return true, nil return true, nil
} }
// KillShim kills the shim forcefully // StopShim signals the shim to exit and wait for the process to disappear
func (c *Client) StopShim(ctx context.Context) error {
return c.signalShim(ctx, unix.SIGTERM)
}
// KillShim kills the shim forcefully and wait for the process to disappear
func (c *Client) KillShim(ctx context.Context) error { func (c *Client) KillShim(ctx context.Context) error {
return c.signalShim(ctx, unix.SIGKILL)
}
func (c *Client) Close() error {
if c.c == nil {
return nil
}
return c.c.Close()
}
func (c *Client) signalShim(ctx context.Context, sig syscall.Signal) error {
info, err := c.ShimInfo(ctx, empty) info, err := c.ShimInfo(ctx, empty)
if err != nil { if err != nil {
return err return err
@ -209,23 +232,29 @@ func (c *Client) KillShim(ctx context.Context) error {
if os.Getpid() == pid { if os.Getpid() == pid {
return nil return nil
} }
if err := unix.Kill(pid, unix.SIGKILL); err != nil { if err := unix.Kill(pid, sig); err != nil && err != unix.ESRCH {
return err return err
} }
// wait for shim to die after being SIGKILL'd // wait for shim to die after being signaled
for { select {
// use kill(pid, 0) here because the shim could have been reparented case <-ctx.Done():
// and we are no longer able to waitpid(pid, ...) on the shim return ctx.Err()
if err := unix.Kill(pid, 0); err != nil && err == unix.ESRCH { case <-c.waitForExit(pid):
return nil return nil
} }
time.Sleep(10 * time.Millisecond)
}
} }
func (c *Client) Close() error { func (c *Client) waitForExit(pid int) <-chan struct{} {
if c.c == nil { c.exitOnce.Do(func() {
return nil for {
// use kill(pid, 0) here because the shim could have been reparented
// and we are no longer able to waitpid(pid, ...) on the shim
if err := unix.Kill(pid, 0); err == unix.ESRCH {
close(c.exitCh)
return
} }
return c.c.Close() time.Sleep(10 * time.Millisecond)
}
})
return c.exitCh
} }

View File

@ -27,6 +27,8 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
) )
const InitPidFile = "init.pid"
type initProcess struct { type initProcess struct {
sync.WaitGroup sync.WaitGroup
initState initState
@ -131,7 +133,7 @@ func newInitProcess(context context.Context, plat platform, path, namespace, wor
return nil, errors.Wrap(err, "failed to create OCI runtime io pipes") return nil, errors.Wrap(err, "failed to create OCI runtime io pipes")
} }
} }
pidFile := filepath.Join(path, "init.pid") pidFile := filepath.Join(path, InitPidFile)
if r.Checkpoint != "" { if r.Checkpoint != "" {
opts := &runc.RestoreOpts{ opts := &runc.RestoreOpts{
CheckpointOpts: runc.CheckpointOpts{ CheckpointOpts: runc.CheckpointOpts{

View File

@ -22,6 +22,7 @@ import (
"github.com/containerd/containerd/runtime" "github.com/containerd/containerd/runtime"
google_protobuf "github.com/golang/protobuf/ptypes/empty" google_protobuf "github.com/golang/protobuf/ptypes/empty"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/sirupsen/logrus"
"golang.org/x/net/context" "golang.org/x/net/context"
) )
@ -35,6 +36,11 @@ func NewService(path, namespace, workDir string, publisher events.Publisher) (*S
return nil, fmt.Errorf("shim namespace cannot be empty") return nil, fmt.Errorf("shim namespace cannot be empty")
} }
context := namespaces.WithNamespace(context.Background(), namespace) context := namespaces.WithNamespace(context.Background(), namespace)
context = log.WithLogger(context, logrus.WithFields(logrus.Fields{
"namespace": namespace,
"pid": os.Getpid(),
"path": path,
}))
s := &Service{ s := &Service{
path: path, path: path,
processes: make(map[string]process), processes: make(map[string]process),
@ -58,7 +64,6 @@ type platform interface {
} }
type Service struct { type Service struct {
initProcess *initProcess
path string path string
id string id string
bundle string bundle string
@ -83,12 +88,11 @@ func (s *Service) Create(ctx context.Context, r *shimapi.CreateTaskRequest) (*sh
// save the main task id and bundle to the shim for additional requests // save the main task id and bundle to the shim for additional requests
s.id = r.ID s.id = r.ID
s.bundle = r.Bundle s.bundle = r.Bundle
s.initProcess = process
pid := process.Pid() pid := process.Pid()
s.processes[r.ID] = process s.processes[r.ID] = process
s.mu.Unlock() s.mu.Unlock()
cmd := &reaper.Cmd{ cmd := &reaper.Cmd{
ExitCh: make(chan int, 1), ExitCh: make(chan struct{}),
} }
reaper.Default.Register(pid, cmd) reaper.Default.Register(pid, cmd)
s.events <- &eventsapi.TaskCreate{ s.events <- &eventsapi.TaskCreate{
@ -111,8 +115,8 @@ func (s *Service) Create(ctx context.Context, r *shimapi.CreateTaskRequest) (*sh
} }
func (s *Service) Start(ctx context.Context, r *shimapi.StartRequest) (*shimapi.StartResponse, error) { func (s *Service) Start(ctx context.Context, r *shimapi.StartRequest) (*shimapi.StartResponse, error) {
p, ok := s.processes[r.ID] p := s.getProcess(r.ID)
if !ok { if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process %s not found", r.ID) return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process %s not found", r.ID)
} }
if err := p.Start(ctx); err != nil { if err := p.Start(ctx); err != nil {
@ -121,12 +125,12 @@ func (s *Service) Start(ctx context.Context, r *shimapi.StartRequest) (*shimapi.
if r.ID == s.id { if r.ID == s.id {
s.events <- &eventsapi.TaskStart{ s.events <- &eventsapi.TaskStart{
ContainerID: s.id, ContainerID: s.id,
Pid: uint32(s.initProcess.Pid()), Pid: uint32(p.Pid()),
} }
} else { } else {
pid := p.Pid() pid := p.Pid()
cmd := &reaper.Cmd{ cmd := &reaper.Cmd{
ExitCh: make(chan int, 1), ExitCh: make(chan struct{}),
} }
reaper.Default.Register(pid, cmd) reaper.Default.Register(pid, cmd)
go s.waitExit(p, pid, cmd) go s.waitExit(p, pid, cmd)
@ -143,16 +147,15 @@ func (s *Service) Start(ctx context.Context, r *shimapi.StartRequest) (*shimapi.
} }
func (s *Service) Delete(ctx context.Context, r *google_protobuf.Empty) (*shimapi.DeleteResponse, error) { func (s *Service) Delete(ctx context.Context, r *google_protobuf.Empty) (*shimapi.DeleteResponse, error) {
if s.initProcess == nil { p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
p := s.initProcess
if err := p.Delete(ctx); err != nil { if err := p.Delete(ctx); err != nil {
return nil, err return nil, err
} }
s.mu.Lock() s.deleteProcess(p.ID())
delete(s.processes, p.ID())
s.mu.Unlock()
s.events <- &eventsapi.TaskDelete{ s.events <- &eventsapi.TaskDelete{
ContainerID: s.id, ContainerID: s.id,
ExitStatus: uint32(p.ExitStatus()), ExitStatus: uint32(p.ExitStatus()),
@ -167,24 +170,17 @@ func (s *Service) Delete(ctx context.Context, r *google_protobuf.Empty) (*shimap
} }
func (s *Service) DeleteProcess(ctx context.Context, r *shimapi.DeleteProcessRequest) (*shimapi.DeleteResponse, error) { func (s *Service) DeleteProcess(ctx context.Context, r *shimapi.DeleteProcessRequest) (*shimapi.DeleteResponse, error) {
if s.initProcess == nil { if r.ID == s.id {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
}
if r.ID == s.initProcess.id {
return nil, grpc.Errorf(codes.InvalidArgument, "cannot delete init process with DeleteProcess") return nil, grpc.Errorf(codes.InvalidArgument, "cannot delete init process with DeleteProcess")
} }
s.mu.Lock() p := s.getProcess(r.ID)
p, ok := s.processes[r.ID] if p == nil {
s.mu.Unlock() return nil, errors.Wrapf(errdefs.ErrNotFound, "process %s", r.ID)
if !ok {
return nil, errors.Wrapf(errdefs.ErrNotFound, "process %s not found", r.ID)
} }
if err := p.Delete(ctx); err != nil { if err := p.Delete(ctx); err != nil {
return nil, err return nil, err
} }
s.mu.Lock() s.deleteProcess(r.ID)
delete(s.processes, p.ID())
s.mu.Unlock()
return &shimapi.DeleteResponse{ return &shimapi.DeleteResponse{
ExitStatus: uint32(p.ExitStatus()), ExitStatus: uint32(p.ExitStatus()),
ExitedAt: p.ExitedAt(), ExitedAt: p.ExitedAt(),
@ -193,13 +189,19 @@ func (s *Service) DeleteProcess(ctx context.Context, r *shimapi.DeleteProcessReq
} }
func (s *Service) Exec(ctx context.Context, r *shimapi.ExecProcessRequest) (*google_protobuf.Empty, error) { func (s *Service) Exec(ctx context.Context, r *shimapi.ExecProcessRequest) (*google_protobuf.Empty, error) {
if s.initProcess == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
}
s.mu.Lock() s.mu.Lock()
defer s.mu.Unlock() defer s.mu.Unlock()
process, err := newExecProcess(ctx, s.path, r, s.initProcess, r.ID) if p := s.processes[r.ID]; p != nil {
return nil, errdefs.ToGRPCf(errdefs.ErrAlreadyExists, "id %s", r.ID)
}
p := s.processes[s.id]
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
}
process, err := newExecProcess(ctx, s.path, r, p.(*initProcess), r.ID)
if err != nil { if err != nil {
return nil, errdefs.ToGRPC(err) return nil, errdefs.ToGRPC(err)
} }
@ -220,10 +222,8 @@ func (s *Service) ResizePty(ctx context.Context, r *shimapi.ResizePtyRequest) (*
Width: uint16(r.Width), Width: uint16(r.Width),
Height: uint16(r.Height), Height: uint16(r.Height),
} }
s.mu.Lock() p := s.getProcess(r.ID)
p, ok := s.processes[r.ID] if p == nil {
s.mu.Unlock()
if !ok {
return nil, errors.Errorf("process does not exist %s", r.ID) return nil, errors.Errorf("process does not exist %s", r.ID)
} }
if err := p.Resize(ws); err != nil { if err := p.Resize(ws); err != nil {
@ -233,8 +233,8 @@ func (s *Service) ResizePty(ctx context.Context, r *shimapi.ResizePtyRequest) (*
} }
func (s *Service) State(ctx context.Context, r *shimapi.StateRequest) (*shimapi.StateResponse, error) { func (s *Service) State(ctx context.Context, r *shimapi.StateRequest) (*shimapi.StateResponse, error) {
p, ok := s.processes[r.ID] p := s.getProcess(r.ID)
if !ok { if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process id %s not found", r.ID) return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process id %s not found", r.ID)
} }
st, err := p.Status(ctx) st, err := p.Status(ctx)
@ -270,10 +270,11 @@ func (s *Service) State(ctx context.Context, r *shimapi.StateRequest) (*shimapi.
} }
func (s *Service) Pause(ctx context.Context, r *google_protobuf.Empty) (*google_protobuf.Empty, error) { func (s *Service) Pause(ctx context.Context, r *google_protobuf.Empty) (*google_protobuf.Empty, error) {
if s.initProcess == nil { p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
if err := s.initProcess.Pause(ctx); err != nil { if err := p.(*initProcess).Pause(ctx); err != nil {
return nil, err return nil, err
} }
s.events <- &eventsapi.TaskPaused{ s.events <- &eventsapi.TaskPaused{
@ -283,10 +284,11 @@ func (s *Service) Pause(ctx context.Context, r *google_protobuf.Empty) (*google_
} }
func (s *Service) Resume(ctx context.Context, r *google_protobuf.Empty) (*google_protobuf.Empty, error) { func (s *Service) Resume(ctx context.Context, r *google_protobuf.Empty) (*google_protobuf.Empty, error) {
if s.initProcess == nil { p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
if err := s.initProcess.Resume(ctx); err != nil { if err := p.(*initProcess).Resume(ctx); err != nil {
return nil, err return nil, err
} }
s.events <- &eventsapi.TaskResumed{ s.events <- &eventsapi.TaskResumed{
@ -296,17 +298,19 @@ func (s *Service) Resume(ctx context.Context, r *google_protobuf.Empty) (*google
} }
func (s *Service) Kill(ctx context.Context, r *shimapi.KillRequest) (*google_protobuf.Empty, error) { func (s *Service) Kill(ctx context.Context, r *shimapi.KillRequest) (*google_protobuf.Empty, error) {
if s.initProcess == nil { if r.ID == "" {
p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
if r.ID == "" { if err := p.Kill(ctx, r.Signal, r.All); err != nil {
if err := s.initProcess.Kill(ctx, r.Signal, r.All); err != nil {
return nil, errdefs.ToGRPC(err) return nil, errdefs.ToGRPC(err)
} }
return empty, nil return empty, nil
} }
p, ok := s.processes[r.ID]
if !ok { p := s.getProcess(r.ID)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process id %s not found", r.ID) return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process id %s not found", r.ID)
} }
if err := p.Kill(ctx, r.Signal, r.All); err != nil { if err := p.Kill(ctx, r.Signal, r.All); err != nil {
@ -326,8 +330,8 @@ func (s *Service) ListPids(ctx context.Context, r *shimapi.ListPidsRequest) (*sh
} }
func (s *Service) CloseIO(ctx context.Context, r *shimapi.CloseIORequest) (*google_protobuf.Empty, error) { func (s *Service) CloseIO(ctx context.Context, r *shimapi.CloseIORequest) (*google_protobuf.Empty, error) {
p, ok := s.processes[r.ID] p := s.getProcess(r.ID)
if !ok { if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process does not exist %s", r.ID) return nil, errdefs.ToGRPCf(errdefs.ErrNotFound, "process does not exist %s", r.ID)
} }
if stdin := p.Stdin(); stdin != nil { if stdin := p.Stdin(); stdin != nil {
@ -339,10 +343,11 @@ func (s *Service) CloseIO(ctx context.Context, r *shimapi.CloseIORequest) (*goog
} }
func (s *Service) Checkpoint(ctx context.Context, r *shimapi.CheckpointTaskRequest) (*google_protobuf.Empty, error) { func (s *Service) Checkpoint(ctx context.Context, r *shimapi.CheckpointTaskRequest) (*google_protobuf.Empty, error) {
if s.initProcess == nil { p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
if err := s.initProcess.Checkpoint(ctx, r); err != nil { if err := p.(*initProcess).Checkpoint(ctx, r); err != nil {
return nil, errdefs.ToGRPC(err) return nil, errdefs.ToGRPC(err)
} }
s.events <- &eventsapi.TaskCheckpointed{ s.events <- &eventsapi.TaskCheckpointed{
@ -358,17 +363,37 @@ func (s *Service) ShimInfo(ctx context.Context, r *google_protobuf.Empty) (*shim
} }
func (s *Service) Update(ctx context.Context, r *shimapi.UpdateTaskRequest) (*google_protobuf.Empty, error) { func (s *Service) Update(ctx context.Context, r *shimapi.UpdateTaskRequest) (*google_protobuf.Empty, error) {
if s.initProcess == nil { p := s.getProcess(s.id)
if p == nil {
return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created") return nil, errdefs.ToGRPCf(errdefs.ErrFailedPrecondition, "container must be created")
} }
if err := s.initProcess.Update(ctx, r); err != nil { if err := p.(*initProcess).Update(ctx, r); err != nil {
return nil, errdefs.ToGRPC(err) return nil, errdefs.ToGRPC(err)
} }
return empty, nil return empty, nil
} }
func (s *Service) addProcess(id string, p process) {
s.mu.Lock()
s.processes[id] = p
s.mu.Unlock()
}
func (s *Service) getProcess(id string) process {
s.mu.Lock()
p := s.processes[id]
s.mu.Unlock()
return p
}
func (s *Service) deleteProcess(id string) {
s.mu.Lock()
delete(s.processes, id)
s.mu.Unlock()
}
func (s *Service) waitExit(p process, pid int, cmd *reaper.Cmd) { func (s *Service) waitExit(p process, pid int, cmd *reaper.Cmd) {
status := <-cmd.ExitCh status, _ := reaper.Default.WaitPid(pid)
p.SetExited(status) p.SetExited(status)
reaper.Default.Delete(pid) reaper.Default.Delete(pid)
@ -382,12 +407,17 @@ func (s *Service) waitExit(p process, pid int, cmd *reaper.Cmd) {
} }
func (s *Service) getContainerPids(ctx context.Context, id string) ([]uint32, error) { func (s *Service) getContainerPids(ctx context.Context, id string) ([]uint32, error) {
p, err := s.initProcess.runtime.Ps(ctx, id) p := s.getProcess(s.id)
if p == nil {
return nil, errors.Wrapf(errdefs.ErrFailedPrecondition, "container must be created")
}
ps, err := p.(*initProcess).runtime.Ps(ctx, id)
if err != nil { if err != nil {
return nil, err return nil, err
} }
pids := make([]uint32, 0, len(p)) pids := make([]uint32, 0, len(ps))
for _, pid := range p { for _, pid := range ps {
pids = append(pids, uint32(pid)) pids = append(pids, uint32(pid))
} }
return pids, nil return pids, nil
@ -395,13 +425,13 @@ func (s *Service) getContainerPids(ctx context.Context, id string) ([]uint32, er
func (s *Service) forward(publisher events.Publisher) { func (s *Service) forward(publisher events.Publisher) {
for e := range s.events { for e := range s.events {
if err := publisher.Publish(s.context, getTopic(e), e); err != nil { if err := publisher.Publish(s.context, getTopic(s.context, e), e); err != nil {
log.G(s.context).WithError(err).Error("post event") log.G(s.context).WithError(err).Error("post event")
} }
} }
} }
func getTopic(e interface{}) string { func getTopic(ctx context.Context, e interface{}) string {
switch e.(type) { switch e.(type) {
case *eventsapi.TaskCreate: case *eventsapi.TaskCreate:
return runtime.TaskCreateEventTopic return runtime.TaskCreateEventTopic
@ -415,12 +445,16 @@ func getTopic(e interface{}) string {
return runtime.TaskDeleteEventTopic return runtime.TaskDeleteEventTopic
case *eventsapi.TaskExecAdded: case *eventsapi.TaskExecAdded:
return runtime.TaskExecAddedEventTopic return runtime.TaskExecAddedEventTopic
case *eventsapi.TaskExecStarted:
return runtime.TaskExecStartedEventTopic
case *eventsapi.TaskPaused: case *eventsapi.TaskPaused:
return runtime.TaskPausedEventTopic return runtime.TaskPausedEventTopic
case *eventsapi.TaskResumed: case *eventsapi.TaskResumed:
return runtime.TaskResumedEventTopic return runtime.TaskResumedEventTopic
case *eventsapi.TaskCheckpointed: case *eventsapi.TaskCheckpointed:
return runtime.TaskCheckpointedEventTopic return runtime.TaskCheckpointedEventTopic
default:
log.G(ctx).Warnf("no topic for type %#v", e)
} }
return "?" return runtime.TaskUnknownTopic
} }

View File

@ -15,13 +15,15 @@ import (
type Task struct { type Task struct {
id string id string
pid int
shim *client.Client shim *client.Client
namespace string namespace string
} }
func newTask(id, namespace string, shim *client.Client) *Task { func newTask(id, namespace string, pid int, shim *client.Client) *Task {
return &Task{ return &Task{
id: id, id: id,
pid: pid,
shim: shim, shim: shim,
namespace: namespace, namespace: namespace,
} }

View File

@ -4,7 +4,6 @@ package reaper
import ( import (
"bytes" "bytes"
"fmt"
"os/exec" "os/exec"
"sync" "sync"
@ -12,6 +11,10 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
) )
var (
ErrNoSuchProcess = errors.New("no such process")
)
// Reap should be called when the process receives an SIGCHLD. Reap will reap // Reap should be called when the process receives an SIGCHLD. Reap will reap
// all exited processes and close their wait channels // all exited processes and close their wait channels
func Reap() error { func Reap() error {
@ -30,7 +33,8 @@ func Reap() error {
// pipes are closed and finalizers are run on the process // pipes are closed and finalizers are run on the process
c.c.Wait() c.c.Wait()
} }
c.ExitCh <- e.Status c.exitStatus = e.Status
close(c.ExitCh)
} }
return err return err
} }
@ -68,7 +72,7 @@ func (m *Monitor) CombinedOutput(c *exec.Cmd) ([]byte, error) {
func (m *Monitor) Start(c *exec.Cmd) error { func (m *Monitor) Start(c *exec.Cmd) error {
rc := &Cmd{ rc := &Cmd{
c: c, c: c,
ExitCh: make(chan int, 1), ExitCh: make(chan struct{}),
} }
// start the process // start the process
m.Lock() m.Lock()
@ -105,7 +109,8 @@ func (m *Monitor) RegisterNL(pid int, c *Cmd) {
if status, ok := m.unknown[pid]; ok { if status, ok := m.unknown[pid]; ok {
delete(m.unknown, pid) delete(m.unknown, pid)
m.cmds[pid] = c m.cmds[pid] = c
c.ExitCh <- status c.exitStatus = status
close(c.ExitCh)
return return
} }
m.cmds[pid] = c m.cmds[pid] = c
@ -116,13 +121,13 @@ func (m *Monitor) WaitPid(pid int) (int, error) {
rc, ok := m.cmds[pid] rc, ok := m.cmds[pid]
m.Unlock() m.Unlock()
if !ok { if !ok {
return 255, fmt.Errorf("process does not exist") return 255, errors.Wrapf(ErrNoSuchProcess, "pid %d", pid)
} }
ec := <-rc.ExitCh <-rc.ExitCh
if ec != 0 { if rc.exitStatus != 0 {
return ec, errors.Errorf("exit status %d", ec) return rc.exitStatus, errors.Errorf("exit status %d", rc.exitStatus)
} }
return ec, nil return rc.exitStatus, nil
} }
// Command returns the registered pid for the command created // Command returns the registered pid for the command created
@ -140,5 +145,6 @@ func (m *Monitor) Delete(pid int) {
type Cmd struct { type Cmd struct {
c *exec.Cmd c *exec.Cmd
ExitCh chan int ExitCh chan struct{}
exitStatus int
} }

View File

@ -7,7 +7,9 @@ const (
TaskExitEventTopic = "/tasks/exit" TaskExitEventTopic = "/tasks/exit"
TaskDeleteEventTopic = "/tasks/delete" TaskDeleteEventTopic = "/tasks/delete"
TaskExecAddedEventTopic = "/tasks/exec-added" TaskExecAddedEventTopic = "/tasks/exec-added"
TaskExecStartedEventTopic = "/tasks/exec-started"
TaskPausedEventTopic = "/tasks/paused" TaskPausedEventTopic = "/tasks/paused"
TaskResumedEventTopic = "/tasks/resumed" TaskResumedEventTopic = "/tasks/resumed"
TaskCheckpointedEventTopic = "/tasks/checkpointed" TaskCheckpointedEventTopic = "/tasks/checkpointed"
TaskUnknownTopic = "/tasks/?"
) )

View File

@ -2,10 +2,10 @@ package runtime
import ( import (
"context" "context"
"errors"
"sync" "sync"
"github.com/containerd/containerd/namespaces" "github.com/containerd/containerd/namespaces"
"github.com/pkg/errors"
) )
var ( var (
@ -75,7 +75,7 @@ func (l *TaskList) AddWithNamespace(namespace string, t Task) error {
l.tasks[namespace] = make(map[string]Task) l.tasks[namespace] = make(map[string]Task)
} }
if _, ok := l.tasks[namespace][id]; ok { if _, ok := l.tasks[namespace][id]; ok {
return ErrTaskAlreadyExists return errors.Wrap(ErrTaskAlreadyExists, id)
} }
l.tasks[namespace][id] = t l.tasks[namespace][id] = t
return nil return nil