1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"context"
"os"
"os/signal"
"strconv"
"strings"
"sync"
"time"
"github.com/google/subcommands"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/pkg/sentry/control"
"gvisor.dev/gvisor/runsc/config"
"gvisor.dev/gvisor/runsc/container"
"gvisor.dev/gvisor/runsc/flag"
)
// Debug implements subcommands.Command for the "debug" command.
type Debug struct {
pid int
stacks bool
signal int
profileBlock string
profileCPU string
profileHeap string
profileMutex string
trace string
strace string
logLevel string
logPackets string
delay time.Duration
duration time.Duration
ps bool
cat stringSlice
}
// Name implements subcommands.Command.
func (*Debug) Name() string {
return "debug"
}
// Synopsis implements subcommands.Command.
func (*Debug) Synopsis() string {
return "shows a variety of debug information"
}
// Usage implements subcommands.Command.
func (*Debug) Usage() string {
return `debug [flags] <container id>`
}
// SetFlags implements subcommands.Command.
func (d *Debug) SetFlags(f *flag.FlagSet) {
f.IntVar(&d.pid, "pid", 0, "sandbox process ID. Container ID is not necessary if this is set")
f.BoolVar(&d.stacks, "stacks", false, "if true, dumps all sandbox stacks to the log")
f.StringVar(&d.profileBlock, "profile-block", "", "writes block profile to the given file.")
f.StringVar(&d.profileCPU, "profile-cpu", "", "writes CPU profile to the given file.")
f.StringVar(&d.profileHeap, "profile-heap", "", "writes heap profile to the given file.")
f.StringVar(&d.profileMutex, "profile-mutex", "", "writes mutex profile to the given file.")
f.DurationVar(&d.delay, "delay", time.Hour, "amount of time to delay for collecting heap and goroutine profiles.")
f.DurationVar(&d.duration, "duration", time.Hour, "amount of time to wait for CPU and trace profiles.")
f.StringVar(&d.trace, "trace", "", "writes an execution trace to the given file.")
f.IntVar(&d.signal, "signal", -1, "sends signal to the sandbox")
f.StringVar(&d.strace, "strace", "", `A comma separated list of syscalls to trace. "all" enables all traces, "off" disables all.`)
f.StringVar(&d.logLevel, "log-level", "", "The log level to set: warning (0), info (1), or debug (2).")
f.StringVar(&d.logPackets, "log-packets", "", "A boolean value to enable or disable packet logging: true or false.")
f.BoolVar(&d.ps, "ps", false, "lists processes")
f.Var(&d.cat, "cat", "reads files and print to standard output")
}
// Execute implements subcommands.Command.Execute.
func (d *Debug) Execute(_ context.Context, f *flag.FlagSet, args ...interface{}) subcommands.ExitStatus {
var c *container.Container
conf := args[0].(*config.Config)
if d.pid == 0 {
// No pid, container ID must have been provided.
if f.NArg() != 1 {
f.Usage()
return subcommands.ExitUsageError
}
id := f.Arg(0)
var err error
c, err = container.Load(conf.RootDir, container.FullID{ContainerID: id}, container.LoadOpts{})
if err != nil {
return Errorf("loading container %q: %v", f.Arg(0), err)
}
} else {
if f.NArg() != 0 {
f.Usage()
return subcommands.ExitUsageError
}
// Go over all sandboxes and find the one that matches PID.
ids, err := container.List(conf.RootDir)
if err != nil {
return Errorf("listing containers: %v", err)
}
for _, id := range ids {
candidate, err := container.Load(conf.RootDir, id, container.LoadOpts{Exact: true, SkipCheck: true})
if err != nil {
log.Warningf("Skipping container %q: %v", id, err)
continue
}
if candidate.SandboxPid() == d.pid {
c = candidate
break
}
}
if c == nil {
return Errorf("container with PID %d not found", d.pid)
}
}
if !c.IsSandboxRunning() {
return Errorf("container sandbox is not running")
}
log.Infof("Found sandbox %q, PID: %d", c.Sandbox.ID, c.Sandbox.Pid)
// Perform synchronous actions.
if d.signal > 0 {
log.Infof("Sending signal %d to process: %d", d.signal, c.Sandbox.Pid)
if err := unix.Kill(c.Sandbox.Pid, unix.Signal(d.signal)); err != nil {
return Errorf("failed to send signal %d to processs %d", d.signal, c.Sandbox.Pid)
}
}
if d.stacks {
log.Infof("Retrieving sandbox stacks")
stacks, err := c.Sandbox.Stacks()
if err != nil {
return Errorf("retrieving stacks: %v", err)
}
log.Infof(" *** Stack dump ***\n%s", stacks)
}
if d.strace != "" || len(d.logLevel) != 0 || len(d.logPackets) != 0 {
args := control.LoggingArgs{}
switch strings.ToLower(d.strace) {
case "":
// strace not set, nothing to do here.
case "off":
log.Infof("Disabling strace")
args.SetStrace = true
case "all":
log.Infof("Enabling all straces")
args.SetStrace = true
args.EnableStrace = true
default:
log.Infof("Enabling strace for syscalls: %s", d.strace)
args.SetStrace = true
args.EnableStrace = true
args.StraceAllowlist = strings.Split(d.strace, ",")
}
if len(d.logLevel) != 0 {
args.SetLevel = true
switch strings.ToLower(d.logLevel) {
case "warning", "0":
args.Level = log.Warning
case "info", "1":
args.Level = log.Info
case "debug", "2":
args.Level = log.Debug
default:
return Errorf("invalid log level %q", d.logLevel)
}
log.Infof("Setting log level %v", args.Level)
}
if len(d.logPackets) != 0 {
args.SetLogPackets = true
lp, err := strconv.ParseBool(d.logPackets)
if err != nil {
return Errorf("invalid value for log_packets %q", d.logPackets)
}
args.LogPackets = lp
if args.LogPackets {
log.Infof("Enabling packet logging")
} else {
log.Infof("Disabling packet logging")
}
}
if err := c.Sandbox.ChangeLogging(args); err != nil {
return Errorf(err.Error())
}
log.Infof("Logging options changed")
}
if d.ps {
pList, err := c.Processes()
if err != nil {
Fatalf("getting processes for container: %v", err)
}
o, err := control.ProcessListToJSON(pList)
if err != nil {
Fatalf("generating JSON: %v", err)
}
log.Infof(o)
}
// Open profiling files.
var (
blockFile *os.File
cpuFile *os.File
heapFile *os.File
mutexFile *os.File
traceFile *os.File
)
if d.profileBlock != "" {
f, err := os.OpenFile(d.profileBlock, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return Errorf("error opening blocking profile output: %v", err)
}
defer f.Close()
blockFile = f
}
if d.profileCPU != "" {
f, err := os.OpenFile(d.profileCPU, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return Errorf("error opening cpu profile output: %v", err)
}
defer f.Close()
cpuFile = f
}
if d.profileHeap != "" {
f, err := os.OpenFile(d.profileHeap, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return Errorf("error opening heap profile output: %v", err)
}
defer f.Close()
heapFile = f
}
if d.profileMutex != "" {
f, err := os.OpenFile(d.profileMutex, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return Errorf("error opening mutex profile output: %v", err)
}
defer f.Close()
mutexFile = f
}
if d.trace != "" {
f, err := os.OpenFile(d.trace, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return Errorf("error opening trace profile output: %v", err)
}
traceFile = f
}
// Collect profiles.
var (
wg sync.WaitGroup
blockErr error
cpuErr error
heapErr error
mutexErr error
traceErr error
)
if blockFile != nil {
wg.Add(1)
go func() {
defer wg.Done()
blockErr = c.Sandbox.BlockProfile(blockFile, d.duration)
}()
}
if cpuFile != nil {
wg.Add(1)
go func() {
defer wg.Done()
cpuErr = c.Sandbox.CPUProfile(cpuFile, d.duration)
}()
}
if heapFile != nil {
wg.Add(1)
go func() {
defer wg.Done()
heapErr = c.Sandbox.HeapProfile(heapFile, d.delay)
}()
}
if mutexFile != nil {
wg.Add(1)
go func() {
defer wg.Done()
mutexErr = c.Sandbox.MutexProfile(mutexFile, d.duration)
}()
}
if traceFile != nil {
wg.Add(1)
go func() {
defer wg.Done()
traceErr = c.Sandbox.Trace(traceFile, d.duration)
}()
}
// Before sleeping, allow us to catch signals and try to exit
// gracefully before just exiting. If we can't wait for wg, then
// we will not be able to read the errors below safely.
readyChan := make(chan struct{})
go func() {
defer close(readyChan)
wg.Wait()
}()
signals := make(chan os.Signal, 1)
signal.Notify(signals, unix.SIGTERM, unix.SIGINT)
select {
case <-readyChan:
break // Safe to proceed.
case <-signals:
log.Infof("caught signal, waiting at most one more second.")
select {
case <-signals:
log.Infof("caught second signal, exiting immediately.")
os.Exit(1) // Not finished.
case <-time.After(time.Second):
log.Infof("timeout, exiting.")
os.Exit(1) // Not finished.
case <-readyChan:
break // Safe to proceed.
}
}
// Collect all errors.
errorCount := 0
if blockErr != nil {
errorCount++
log.Infof("error collecting block profile: %v", blockErr)
os.Remove(blockFile.Name())
}
if cpuErr != nil {
errorCount++
log.Infof("error collecting cpu profile: %v", cpuErr)
os.Remove(cpuFile.Name())
}
if heapErr != nil {
errorCount++
log.Infof("error collecting heap profile: %v", heapErr)
os.Remove(heapFile.Name())
}
if mutexErr != nil {
errorCount++
log.Infof("error collecting mutex profile: %v", mutexErr)
os.Remove(mutexFile.Name())
}
if traceErr != nil {
errorCount++
log.Infof("error collecting trace profile: %v", traceErr)
os.Remove(traceFile.Name())
}
if errorCount > 0 {
return subcommands.ExitFailure
}
if d.cat != nil {
if err := c.Cat(d.cat, os.Stdout); err != nil {
return Errorf("Cat failed: %v", err)
}
}
return subcommands.ExitSuccess
}
|