@@ -52,16 +52,15 @@ type parentProcess interface {
52
52
forwardChildLogs ()
53
53
}
54
54
55
- type readWritePair struct {
56
- r * os.File
57
- w * os.File
55
+ type filePair struct {
56
+ parent * os.File
57
+ child * os.File
58
58
}
59
59
60
60
type setnsProcess struct {
61
61
cmd * exec.Cmd
62
- parentPipe * os.File
63
- childPipe * os.File
64
- logPipe readWritePair
62
+ messageSockPair filePair
63
+ logFilePair filePair
65
64
cgroupPaths map [string ]string
66
65
rootlessCgroups bool
67
66
intelRdtPath string
@@ -85,16 +84,16 @@ func (p *setnsProcess) signal(sig os.Signal) error {
85
84
}
86
85
87
86
func (p * setnsProcess ) start () (err error ) {
88
- defer p .parentPipe .Close ()
87
+ defer p .messageSockPair . parent .Close ()
89
88
err = p .cmd .Start ()
90
89
// close the write-side of the pipes (controlled by child)
91
- p .childPipe .Close ()
92
- p .logPipe . w .Close ()
90
+ p .messageSockPair . child .Close ()
91
+ p .logFilePair . child .Close ()
93
92
if err != nil {
94
93
return newSystemErrorWithCause (err , "starting setns process" )
95
94
}
96
95
if p .bootstrapData != nil {
97
- if _ , err := io .Copy (p .parentPipe , p .bootstrapData ); err != nil {
96
+ if _ , err := io .Copy (p .messageSockPair . parent , p .bootstrapData ); err != nil {
98
97
return newSystemErrorWithCause (err , "copying bootstrap data to pipe" )
99
98
}
100
99
}
@@ -120,11 +119,11 @@ func (p *setnsProcess) start() (err error) {
120
119
if err := setupRlimits (p .config .Rlimits , p .pid ()); err != nil {
121
120
return newSystemErrorWithCause (err , "setting rlimits for process" )
122
121
}
123
- if err := utils .WriteJSON (p .parentPipe , p .config ); err != nil {
122
+ if err := utils .WriteJSON (p .messageSockPair . parent , p .config ); err != nil {
124
123
return newSystemErrorWithCause (err , "writing config to pipe" )
125
124
}
126
125
127
- ierr := parseSync (p .parentPipe , func (sync * syncT ) error {
126
+ ierr := parseSync (p .messageSockPair . parent , func (sync * syncT ) error {
128
127
switch sync .Type {
129
128
case procReady :
130
129
// This shouldn't happen.
@@ -137,7 +136,7 @@ func (p *setnsProcess) start() (err error) {
137
136
}
138
137
})
139
138
140
- if err := unix .Shutdown (int (p .parentPipe .Fd ()), unix .SHUT_WR ); err != nil {
139
+ if err := unix .Shutdown (int (p .messageSockPair . parent .Fd ()), unix .SHUT_WR ); err != nil {
141
140
return newSystemErrorWithCause (err , "calling shutdown on init pipe" )
142
141
}
143
142
// Must be done after Shutdown so the child will exit and we can wait for it.
@@ -163,7 +162,7 @@ func (p *setnsProcess) execSetns() error {
163
162
return newSystemError (& exec.ExitError {ProcessState : status })
164
163
}
165
164
var pid * pid
166
- if err := json .NewDecoder (p .parentPipe ).Decode (& pid ); err != nil {
165
+ if err := json .NewDecoder (p .messageSockPair . parent ).Decode (& pid ); err != nil {
167
166
p .cmd .Wait ()
168
167
return newSystemErrorWithCause (err , "reading pid from init pipe" )
169
168
}
@@ -217,14 +216,13 @@ func (p *setnsProcess) setExternalDescriptors(newFds []string) {
217
216
}
218
217
219
218
func (p * setnsProcess ) forwardChildLogs () {
220
- go logs .ForwardLogs (p .logPipe . r )
219
+ go logs .ForwardLogs (p .logFilePair . parent )
221
220
}
222
221
223
222
type initProcess struct {
224
223
cmd * exec.Cmd
225
- parentPipe * os.File
226
- childPipe * os.File
227
- logPipe readWritePair
224
+ messageSockPair filePair
225
+ logFilePair filePair
228
226
config * initConfig
229
227
manager cgroups.Manager
230
228
intelRdtManager intelrdt.Manager
@@ -246,7 +244,7 @@ func (p *initProcess) externalDescriptors() []string {
246
244
// getChildPid receives the final child's pid over the provided pipe.
247
245
func (p * initProcess ) getChildPid () (int , error ) {
248
246
var pid pid
249
- if err := json .NewDecoder (p .parentPipe ).Decode (& pid ); err != nil {
247
+ if err := json .NewDecoder (p .messageSockPair . parent ).Decode (& pid ); err != nil {
250
248
p .cmd .Wait ()
251
249
return - 1 , err
252
250
}
@@ -282,12 +280,12 @@ func (p *initProcess) waitForChildExit(childPid int) error {
282
280
}
283
281
284
282
func (p * initProcess ) start () error {
285
- defer p .parentPipe .Close ()
283
+ defer p .messageSockPair . parent .Close ()
286
284
err := p .cmd .Start ()
287
285
p .process .ops = p
288
286
// close the write-side of the pipes (controlled by child)
289
- p .childPipe .Close ()
290
- p .logPipe . w .Close ()
287
+ p .messageSockPair . child .Close ()
288
+ p .logFilePair . child .Close ()
291
289
if err != nil {
292
290
p .process .ops = nil
293
291
return newSystemErrorWithCause (err , "starting init process command" )
@@ -313,7 +311,7 @@ func (p *initProcess) start() error {
313
311
}
314
312
}()
315
313
316
- if _ , err := io .Copy (p .parentPipe , p .bootstrapData ); err != nil {
314
+ if _ , err := io .Copy (p .messageSockPair . parent , p .bootstrapData ); err != nil {
317
315
return newSystemErrorWithCause (err , "copying bootstrap data to pipe" )
318
316
}
319
317
childPid , err := p .getChildPid ()
@@ -341,7 +339,7 @@ func (p *initProcess) start() error {
341
339
}
342
340
// Now it's time to setup cgroup namesapce
343
341
if p .config .Config .Namespaces .Contains (configs .NEWCGROUP ) && p .config .Config .Namespaces .PathOf (configs .NEWCGROUP ) == "" {
344
- if _ , err := p .parentPipe .Write ([]byte {createCgroupns }); err != nil {
342
+ if _ , err := p .messageSockPair . parent .Write ([]byte {createCgroupns }); err != nil {
345
343
return newSystemErrorWithCause (err , "sending synchronization value to init process" )
346
344
}
347
345
}
@@ -368,7 +366,7 @@ func (p *initProcess) start() error {
368
366
sentResume bool
369
367
)
370
368
371
- ierr := parseSync (p .parentPipe , func (sync * syncT ) error {
369
+ ierr := parseSync (p .messageSockPair . parent , func (sync * syncT ) error {
372
370
switch sync .Type {
373
371
case procReady :
374
372
// set rlimits, this has to be done here because we lose permissions
@@ -404,7 +402,7 @@ func (p *initProcess) start() error {
404
402
}
405
403
}
406
404
// Sync with child.
407
- if err := writeSync (p .parentPipe , procRun ); err != nil {
405
+ if err := writeSync (p .messageSockPair . parent , procRun ); err != nil {
408
406
return newSystemErrorWithCause (err , "writing syncT 'run'" )
409
407
}
410
408
sentRun = true
@@ -433,7 +431,7 @@ func (p *initProcess) start() error {
433
431
}
434
432
}
435
433
// Sync with child.
436
- if err := writeSync (p .parentPipe , procResume ); err != nil {
434
+ if err := writeSync (p .messageSockPair . parent , procResume ); err != nil {
437
435
return newSystemErrorWithCause (err , "writing syncT 'resume'" )
438
436
}
439
437
sentResume = true
@@ -450,7 +448,7 @@ func (p *initProcess) start() error {
450
448
if p .config .Config .Namespaces .Contains (configs .NEWNS ) && ! sentResume {
451
449
return newSystemError (fmt .Errorf ("could not synchronise after executing prestart hooks with container process" ))
452
450
}
453
- if err := unix .Shutdown (int (p .parentPipe .Fd ()), unix .SHUT_WR ); err != nil {
451
+ if err := unix .Shutdown (int (p .messageSockPair . parent .Fd ()), unix .SHUT_WR ); err != nil {
454
452
return newSystemErrorWithCause (err , "shutting down init pipe" )
455
453
}
456
454
@@ -494,7 +492,7 @@ func (p *initProcess) sendConfig() error {
494
492
// send the config to the container's init process, we don't use JSON Encode
495
493
// here because there might be a problem in JSON decoder in some cases, see:
496
494
// https://github.com/docker/docker/issues/14203#issuecomment-174177790
497
- return utils .WriteJSON (p .parentPipe , p .config )
495
+ return utils .WriteJSON (p .messageSockPair . parent , p .config )
498
496
}
499
497
500
498
func (p * initProcess ) createNetworkInterfaces () error {
@@ -527,7 +525,7 @@ func (p *initProcess) setExternalDescriptors(newFds []string) {
527
525
}
528
526
529
527
func (p * initProcess ) forwardChildLogs () {
530
- go logs .ForwardLogs (p .logPipe . r )
528
+ go logs .ForwardLogs (p .logFilePair . parent )
531
529
}
532
530
533
531
func getPipeFds (pid int ) ([]string , error ) {
0 commit comments