Skip to content

Commit 2ddbb2d

Browse files
committed
Handle shim delete workdir on Windows
Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent b8945d3 commit 2ddbb2d

File tree

3 files changed

+37
-8
lines changed

3 files changed

+37
-8
lines changed

runtime/v2/binary.go

+18-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"context"
2222
"io"
2323
"os"
24+
gruntime "runtime"
2425
"strings"
2526

2627
eventstypes "github.com/containerd/containerd/api/events"
@@ -109,7 +110,23 @@ func (b *binary) Start(ctx context.Context) (_ *shim, err error) {
109110

110111
func (b *binary) Delete(ctx context.Context) (*runtime.Exit, error) {
111112
log.G(ctx).Info("cleaning up dead shim")
112-
cmd, err := client.Command(ctx, b.runtime, b.containerdAddress, b.bundle.Path, "-id", b.bundle.ID, "delete")
113+
var bundlePath string
114+
if gruntime.GOOS == "windows" {
115+
// Windows cannot delete the current working directory while an
116+
// executable is in use with it. For the cleanup case we invoke with the
117+
// deafult work dir and forward the bundle path on the cmdline.
118+
bundlePath = ""
119+
} else {
120+
bundlePath = b.bundle.Path
121+
}
122+
123+
cmd, err := client.Command(ctx,
124+
b.runtime,
125+
b.containerdAddress,
126+
bundlePath,
127+
"-id", b.bundle.ID,
128+
"-bundle", b.bundle.Path,
129+
"delete")
113130
if err != nil {
114131
return nil, err
115132
}

runtime/v2/runhcs/service.go

+14-5
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,22 @@ func (s *service) Cleanup(ctx context.Context) (*taskAPI.DeleteResponse, error)
195195
if err != nil {
196196
return nil, err
197197
}
198-
path, err := os.Getwd()
199-
if err != nil {
200-
return nil, err
198+
// Forcibly shut down any container in this bundle
199+
rhcs := newRunhcs("")
200+
dopts := &runhcs.DeleteOpts{
201+
Force: true,
201202
}
202-
if err := os.RemoveAll(path); err != nil {
203-
return nil, err
203+
if err := rhcs.Delete(ctx, s.id, dopts); err != nil {
204+
log.G(ctx).WithError(err).Debugf("failed to delete container")
204205
}
206+
207+
opts, ok := ctx.Value(shim.OptsKey{}).(shim.Opts)
208+
if ok && opts.BundlePath != "" {
209+
if err := os.RemoveAll(opts.BundlePath); err != nil {
210+
return nil, err
211+
}
212+
}
213+
205214
return &taskAPI.DeleteResponse{
206215
ExitedAt: time.Now(),
207216
ExitStatus: 255,

runtime/v2/shim/shim.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,16 @@ type OptsKey struct{}
5858

5959
// Opts are context options associated with the shim invocation.
6060
type Opts struct {
61-
Debug bool
61+
BundlePath string
62+
Debug bool
6263
}
6364

6465
var (
6566
debugFlag bool
6667
idFlag string
6768
namespaceFlag string
6869
socketFlag string
70+
bundlePath string
6971
addressFlag string
7072
containerdBinaryFlag string
7173
action string
@@ -76,6 +78,7 @@ func parseFlags() {
7678
flag.StringVar(&namespaceFlag, "namespace", "", "namespace that owns the shim")
7779
flag.StringVar(&idFlag, "id", "", "id of the task")
7880
flag.StringVar(&socketFlag, "socket", "", "abstract socket path to serve")
81+
flag.StringVar(&bundlePath, "bundle", "", "path to the bundle if not workdir")
7982

8083
flag.StringVar(&addressFlag, "address", "", "grpc address back to main containerd")
8184
flag.StringVar(&containerdBinaryFlag, "publish-binary", "containerd", "path to publish binary (used for publishing events)")
@@ -141,7 +144,7 @@ func run(id string, initFunc Init) error {
141144
return fmt.Errorf("shim namespace cannot be empty")
142145
}
143146
ctx := namespaces.WithNamespace(context.Background(), namespaceFlag)
144-
ctx = context.WithValue(ctx, OptsKey{}, Opts{Debug: debugFlag})
147+
ctx = context.WithValue(ctx, OptsKey{}, Opts{BundlePath: bundlePath, Debug: debugFlag})
145148
ctx = log.WithLogger(ctx, log.G(ctx).WithField("runtime", id))
146149

147150
service, err := initFunc(ctx, idFlag, publisher)

0 commit comments

Comments
 (0)