Skip to content

Commit ce1161f

Browse files
authored
Merge pull request #2551 from crosbymichael/stdin-block
Don't block on STDIN open
2 parents 68979c9 + bc1ff51 commit ce1161f

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

runtime/v1/linux/proc/exec.go

+2-8
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,7 @@ func (e *execProcess) start(ctx context.Context) (err error) {
164164
return e.parent.runtimeError(err, "OCI runtime exec failed")
165165
}
166166
if e.stdio.Stdin != "" {
167-
fifoCtx, cancel := context.WithTimeout(ctx, 15*time.Second)
168-
defer cancel()
169-
170-
sc, err := fifo.OpenFifo(fifoCtx, e.stdio.Stdin, syscall.O_WRONLY|syscall.O_NONBLOCK, 0)
167+
sc, err := fifo.OpenFifo(ctx, e.stdio.Stdin, syscall.O_WRONLY|syscall.O_NONBLOCK, 0)
171168
if err != nil {
172169
return errors.Wrapf(err, "failed to open stdin fifo %s", e.stdio.Stdin)
173170
}
@@ -184,10 +181,7 @@ func (e *execProcess) start(ctx context.Context) (err error) {
184181
return errors.Wrap(err, "failed to start console copy")
185182
}
186183
} else if !e.stdio.IsNull() {
187-
fifoCtx, cancel := context.WithTimeout(ctx, 15*time.Second)
188-
defer cancel()
189-
190-
if err := copyPipes(fifoCtx, e.io, e.stdio.Stdin, e.stdio.Stdout, e.stdio.Stderr, &e.wg, &copyWaitGroup); err != nil {
184+
if err := copyPipes(ctx, e.io, e.stdio.Stdin, e.stdio.Stdout, e.stdio.Stderr, &e.wg, &copyWaitGroup); err != nil {
191185
return errors.Wrap(err, "failed to start io pipe copy")
192186
}
193187
}

runtime/v1/linux/proc/io.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func copyPipes(ctx context.Context, rio runc.IO, stdin, stdout, stderr string, w
112112
rio.Stdin().Close()
113113
return nil
114114
}
115-
f, err := fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY, 0)
115+
f, err := fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY|syscall.O_NONBLOCK, 0)
116116
if err != nil {
117117
return fmt.Errorf("containerd-shim: opening %s failed: %s", stdin, err)
118118
}

runtime/v2/runc/service.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ type service struct {
9898
ec chan runcC.Exit
9999
ep *epoller
100100

101-
id string
102-
// Filled by Create()
101+
id string
103102
bundle string
104103
cg cgroups.Cgroup
105104
}

runtime/v2/runc/service_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (p *linuxPlatform) CopyConsole(ctx context.Context, console console.Console
4242
}
4343

4444
if stdin != "" {
45-
in, err := fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY, 0)
45+
in, err := fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY|syscall.O_NONBLOCK, 0)
4646
if err != nil {
4747
return nil, err
4848
}

0 commit comments

Comments
 (0)