@@ -55,19 +55,12 @@ const (
55
55
)
56
56
57
57
var (
58
- empty = & ptypes.Empty {}
59
- runhcsDebug = false
58
+ empty = & ptypes.Empty {}
60
59
)
61
60
62
- func init () {
63
- if logrus .GetLevel () == logrus .DebugLevel {
64
- runhcsDebug = true
65
- }
66
- }
67
-
68
61
func newRunhcs (bundle string ) * runhcs.Runhcs {
69
62
rhs := & runhcs.Runhcs {
70
- Debug : runhcsDebug ,
63
+ Debug : logrus . GetLevel () == logrus . DebugLevel ,
71
64
LogFormat : runhcs .JSON ,
72
65
Owner : "containerd-runhcs-shim-v1" ,
73
66
}
@@ -104,16 +97,20 @@ type service struct {
104
97
105
98
// getProcess attempts to get a process by id.
106
99
// The caller MUST NOT have locked s.mu previous to calling this function.
107
- func (s * service ) getProcess (id string ) (* process , error ) {
100
+ func (s * service ) getProcess (id , execID string ) (* process , error ) {
108
101
s .mu .Lock ()
109
102
defer s .mu .Unlock ()
110
103
111
- return s .getProcessLocked (id )
104
+ return s .getProcessLocked (id , execID )
112
105
}
113
106
114
107
// getProcessLocked attempts to get a process by id.
115
108
// The caller MUST protect s.mu previous to calling this function.
116
- func (s * service ) getProcessLocked (id string ) (* process , error ) {
109
+ func (s * service ) getProcessLocked (id , execID string ) (* process , error ) {
110
+ if execID != "" {
111
+ id = execID
112
+ }
113
+
117
114
var p * process
118
115
var ok bool
119
116
if p , ok = s .processes [id ]; ! ok {
@@ -200,11 +197,11 @@ func (s *service) State(ctx context.Context, r *taskAPI.StateRequest) (*taskAPI.
200
197
201
198
var p * process
202
199
var err error
203
- if p , err = s .getProcessLocked (r .ID ); err != nil {
200
+ if p , err = s .getProcessLocked (r .ID , r . ExecID ); err != nil {
204
201
return nil , err
205
202
}
206
203
207
- cmd := exec .Command (runhcsBinary , runhcsDebugLegacy , "state" , r . ID )
204
+ cmd := exec .Command (runhcsBinary , runhcsDebugLegacy , "state" , p . id )
208
205
sout := getBuffer ()
209
206
defer putBuffer (sout )
210
207
@@ -255,7 +252,7 @@ func (s *service) State(ctx context.Context, r *taskAPI.StateRequest) (*taskAPI.
255
252
}
256
253
pe := p .stat ()
257
254
return & taskAPI.StateResponse {
258
- ID : r . ID ,
255
+ ID : p . id ,
259
256
Bundle : cs .Bundle ,
260
257
Pid : uint32 (cs .InitProcessPid ),
261
258
Status : status ,
@@ -330,6 +327,8 @@ func writeMountsToConfig(bundle string, mounts []*containerd_types.Mount) error
330
327
331
328
// Create a new initial process and container with runhcs
332
329
func (s * service ) Create (ctx context.Context , r * taskAPI.CreateTaskRequest ) (* taskAPI.CreateTaskResponse , error ) {
330
+ log .G (ctx ).Infof ("Create: %s" , r .ID )
331
+
333
332
// Hold the lock for the entire duration to avoid duplicate process creation.
334
333
s .mu .Lock ()
335
334
defer s .mu .Unlock ()
@@ -421,15 +420,7 @@ func (s *service) Start(ctx context.Context, r *taskAPI.StartRequest) (*taskAPI.
421
420
log .G (ctx ).Infof ("Start: %s: %s" , r .ID , r .ExecID )
422
421
var p * process
423
422
var err error
424
-
425
- var id string
426
- if r .ExecID != "" {
427
- id = r .ExecID
428
- } else {
429
- id = r .ID
430
- }
431
-
432
- if p , err = s .getProcess (id ); err != nil {
423
+ if p , err = s .getProcess (r .ID , r .ExecID ); err != nil {
433
424
return nil , err
434
425
}
435
426
p .Lock ()
@@ -453,6 +444,7 @@ func (s *service) Start(ctx context.Context, r *taskAPI.StartRequest) (*taskAPI.
453
444
Detach : true ,
454
445
}
455
446
447
+ // ID here is the containerID to exec the process in.
456
448
err = rhcs .Exec (ctx , r .ID , procConfig , eopts )
457
449
if err != nil {
458
450
return nil , errors .Wrapf (err , "failed to exec process: %s" , r .ExecID )
@@ -507,9 +499,11 @@ func (s *service) Start(ctx context.Context, r *taskAPI.StartRequest) (*taskAPI.
507
499
508
500
// Delete the initial process and container
509
501
func (s * service ) Delete (ctx context.Context , r * taskAPI.DeleteRequest ) (* taskAPI.DeleteResponse , error ) {
502
+ log .G (ctx ).Infof ("Delete: %s: %s" , r .ID , r .ExecID )
503
+
510
504
var p * process
511
505
var err error
512
- if p , err = s .getProcess (r .ExecID ); err != nil {
506
+ if p , err = s .getProcess (r .ID , r . ExecID ); err != nil {
513
507
return nil , err
514
508
}
515
509
@@ -532,7 +526,7 @@ func (s *service) Delete(ctx context.Context, r *taskAPI.DeleteRequest) (*taskAP
532
526
exit := p .stat ()
533
527
534
528
s .mu .Lock ()
535
- delete (s .processes , r . ID )
529
+ delete (s .processes , p . id )
536
530
s .mu .Unlock ()
537
531
return & taskAPI.DeleteResponse {
538
532
ExitedAt : exit .exitedAt ,
@@ -549,7 +543,7 @@ func (s *service) Pids(ctx context.Context, r *taskAPI.PidsRequest) (*taskAPI.Pi
549
543
// Pause the container
550
544
func (s * service ) Pause (ctx context.Context , r * taskAPI.PauseRequest ) (* ptypes.Empty , error ) {
551
545
// TODO: Validate that 'id' is actually a valid parent container ID
552
- if _ , err := s .getProcess (r .ID ); err != nil {
546
+ if _ , err := s .getProcess (r .ID , "" ); err != nil {
553
547
return nil , err
554
548
}
555
549
@@ -565,7 +559,7 @@ func (s *service) Pause(ctx context.Context, r *taskAPI.PauseRequest) (*ptypes.E
565
559
// Resume the container
566
560
func (s * service ) Resume (ctx context.Context , r * taskAPI.ResumeRequest ) (* ptypes.Empty , error ) {
567
561
// TODO: Validate that 'id' is actually a valid parent container ID
568
- if _ , err := s .getProcess (r .ID ); err != nil {
562
+ if _ , err := s .getProcess (r .ID , "" ); err != nil {
569
563
return nil , err
570
564
}
571
565
@@ -585,9 +579,11 @@ func (s *service) Checkpoint(ctx context.Context, r *taskAPI.CheckpointTaskReque
585
579
586
580
// Kill a process with the provided signal
587
581
func (s * service ) Kill (ctx context.Context , r * taskAPI.KillRequest ) (* ptypes.Empty , error ) {
582
+ log .G (ctx ).Infof ("Kill: %s: %s" , r .ID , r .ExecID )
583
+
588
584
var p * process
589
585
var err error
590
- if p , err = s .getProcess (r .ExecID ); err != nil {
586
+ if p , err = s .getProcess (r .ID , r . ExecID ); err != nil {
591
587
return nil , err
592
588
}
593
589
@@ -605,13 +601,15 @@ func (s *service) Kill(ctx context.Context, r *taskAPI.KillRequest) (*ptypes.Emp
605
601
606
602
// Exec an additional process inside the container
607
603
func (s * service ) Exec (ctx context.Context , r * taskAPI.ExecProcessRequest ) (* ptypes.Empty , error ) {
604
+ log .G (ctx ).Infof ("Exec: %s: %s" , r .ID , r .ExecID )
605
+
608
606
s .mu .Lock ()
609
607
defer s .mu .Unlock ()
610
608
611
609
var parent * process
612
610
var err error
613
611
// Get the parent container
614
- if parent , err = s .getProcessLocked (r .ID ); err != nil {
612
+ if parent , err = s .getProcessLocked (r .ID , "" ); err != nil {
615
613
return nil , err
616
614
}
617
615
@@ -688,15 +686,15 @@ func (s *service) Exec(ctx context.Context, r *taskAPI.ExecProcessRequest) (*pty
688
686
func (s * service ) ResizePty (ctx context.Context , r * taskAPI.ResizePtyRequest ) (* ptypes.Empty , error ) {
689
687
var p * process
690
688
var err error
691
- if p , err = s .getProcess (r .ExecID ); err != nil {
689
+ if p , err = s .getProcess (r .ID , r . ExecID ); err != nil {
692
690
return nil , err
693
691
}
694
692
695
693
cmd := exec .Command (
696
694
runhcsBinary ,
697
695
runhcsDebugLegacy ,
698
696
"resize-tty" ,
699
- r . ID ,
697
+ p . cid ,
700
698
"-p" ,
701
699
strconv .FormatUint (uint64 (p .pid ), 10 ),
702
700
strconv .FormatUint (uint64 (r .Width ), 10 ),
@@ -714,7 +712,7 @@ func (s *service) ResizePty(ctx context.Context, r *taskAPI.ResizePtyRequest) (*
714
712
func (s * service ) CloseIO (ctx context.Context , r * taskAPI.CloseIORequest ) (* ptypes.Empty , error ) {
715
713
var p * process
716
714
var err error
717
- if p , err = s .getProcess (r .ExecID ); err != nil {
715
+ if p , err = s .getProcess (r .ID , r . ExecID ); err != nil {
718
716
return nil , err
719
717
}
720
718
p .closeIO ()
@@ -730,7 +728,7 @@ func (s *service) Update(ctx context.Context, r *taskAPI.UpdateTaskRequest) (*pt
730
728
func (s * service ) Wait (ctx context.Context , r * taskAPI.WaitRequest ) (* taskAPI.WaitResponse , error ) {
731
729
var p * process
732
730
var err error
733
- if p , err = s .getProcess (r .ExecID ); err != nil {
731
+ if p , err = s .getProcess (r .ID , r . ExecID ); err != nil {
734
732
return nil , err
735
733
}
736
734
pe := p .wait ()
@@ -756,6 +754,8 @@ func (s *service) Connect(ctx context.Context, r *taskAPI.ConnectRequest) (*task
756
754
757
755
// Shutdown stops this instance of the runhcs shim
758
756
func (s * service ) Shutdown (ctx context.Context , r * taskAPI.ShutdownRequest ) (* ptypes.Empty , error ) {
757
+ log .G (ctx ).Infof ("Shutdown: %s" , r .ID )
758
+
759
759
os .Exit (0 )
760
760
return empty , nil
761
761
}
0 commit comments