Skip to content

Commit 84aa0bf

Browse files
committed
Forward containerd debug to shim invocation
Signed-off-by: Justin Terry (VM) <[email protected]>
1 parent f88d3e5 commit 84aa0bf

File tree

4 files changed

+62
-3
lines changed

4 files changed

+62
-3
lines changed

runtime/v2/binary.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import (
3131
"github.com/containerd/containerd/runtime/v2/task"
3232
"github.com/containerd/ttrpc"
3333
"github.com/pkg/errors"
34+
"github.com/sirupsen/logrus"
3435
)
3536

3637
func shimBinary(ctx context.Context, bundle *Bundle, runtime, containerdAddress string, events *exchange.Exchange, rt *runtime.TaskList) *binary {
@@ -52,13 +53,18 @@ type binary struct {
5253
}
5354

5455
func (b *binary) Start(ctx context.Context) (_ *shim, err error) {
56+
args := []string{"-id", b.bundle.ID}
57+
if logrus.GetLevel() == logrus.DebugLevel {
58+
args = append(args, "-debug")
59+
}
60+
args = append(args, "start")
61+
5562
cmd, err := client.Command(
5663
ctx,
5764
b.runtime,
5865
b.containerdAddress,
5966
b.bundle.Path,
60-
"-id", b.bundle.ID,
61-
"start",
67+
args...,
6268
)
6369
if err != nil {
6470
return nil, err

runtime/v2/runhcs/service.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,13 @@ func (s *service) StartShim(ctx context.Context, id, containerdBinary, container
160160
"-address", containerdAddress,
161161
"-publish-binary", containerdBinary,
162162
"-socket", socketAddress,
163-
"-debug",
164163
}
164+
165+
opts, ok := ctx.Value(shim.OptsKey{}).(shim.Opts)
166+
if ok && opts.Debug {
167+
args = append(args, "-debug")
168+
}
169+
165170
cmd := exec.Command(self, args...)
166171
cmd.Dir = cwd
167172
cmd.Env = append(os.Environ(), "GOMAXPROCS=2")

runtime/v2/shim/shim.go

+9
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ type Shim interface {
5353
StartShim(ctx context.Context, id, containerdBinary, containerdAddress string) (string, error)
5454
}
5555

56+
// OptsKey is the context key for the Opts value.
57+
type OptsKey struct{}
58+
59+
// Opts are context options associated with the shim invocation.
60+
type Opts struct {
61+
Debug bool
62+
}
63+
5664
var (
5765
debugFlag bool
5866
idFlag string
@@ -133,6 +141,7 @@ func run(id string, initFunc Init) error {
133141
return fmt.Errorf("shim namespace cannot be empty")
134142
}
135143
ctx := namespaces.WithNamespace(context.Background(), namespaceFlag)
144+
ctx = context.WithValue(ctx, OptsKey{}, Opts{Debug: debugFlag})
136145
ctx = log.WithLogger(ctx, log.G(ctx).WithField("runtime", id))
137146

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

runtime/v2/shim/shim_test.go

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package shim
18+
19+
import (
20+
"context"
21+
"testing"
22+
)
23+
24+
func TestShimOptWithValue(t *testing.T) {
25+
ctx := context.TODO()
26+
ctx = context.WithValue(ctx, OptsKey{}, Opts{Debug: true})
27+
28+
o := ctx.Value(OptsKey{})
29+
if o == nil {
30+
t.Fatal("opts nil")
31+
}
32+
op, ok := o.(Opts)
33+
if !ok {
34+
t.Fatal("opts not of type Opts")
35+
}
36+
if !op.Debug {
37+
t.Fatal("opts.Debug should be true")
38+
}
39+
}

0 commit comments

Comments
 (0)