Skip to content

Commit cc7b3fb

Browse files
addaleaxgireeshpunathil
authored andcommitted
child_process: only stop readable side of stream passed to proc
Closing the underlying resource completely has the unwanted side effect that the stream can no longer be used at all, including passing it to other child processes. What we want to avoid is accidentally reading from the stream; accordingly, it should be sufficient to stop its readable side manually, and otherwise leave the underlying resource intact. Fixes: #27097 Refs: #21209 PR-URL: #27373 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 413256d commit cc7b3fb

5 files changed

+81
-9
lines changed

lib/internal/child_process.js

+17-6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ let freeParser;
6363
let HTTPParser;
6464

6565
const MAX_HANDLE_RETRANSMISSIONS = 3;
66+
const kIsUsedAsStdio = Symbol('kIsUsedAsStdio');
6667

6768
// This object contain function to convert TCP objects to native handle objects
6869
// and back again.
@@ -278,8 +279,14 @@ function flushStdio(subprocess) {
278279

279280
for (var i = 0; i < stdio.length; i++) {
280281
const stream = stdio[i];
281-
if (!stream || !stream.readable || stream._readableState.readableListening)
282+
// TODO(addaleax): This doesn't necessarily account for all the ways in
283+
// which data can be read from a stream, e.g. being consumed on the
284+
// native layer directly as a StreamBase.
285+
if (!stream || !stream.readable ||
286+
stream._readableState.readableListening ||
287+
stream[kIsUsedAsStdio]) {
282288
continue;
289+
}
283290
stream.resume();
284291
}
285292
}
@@ -384,12 +391,16 @@ ChildProcess.prototype.spawn = function(options) {
384391
continue;
385392
}
386393

387-
// The stream is already cloned and piped, thus close it.
394+
// The stream is already cloned and piped, thus stop its readable side,
395+
// otherwise we might attempt to read from the stream when at the same time
396+
// the child process does.
388397
if (stream.type === 'wrap') {
389-
stream.handle.close();
390-
if (stream._stdio && stream._stdio instanceof EventEmitter) {
391-
stream._stdio.emit('close');
392-
}
398+
stream.handle.reading = false;
399+
stream.handle.readStop();
400+
stream._stdio.pause();
401+
stream._stdio.readableFlowing = false;
402+
stream._stdio._readableState.reading = false;
403+
stream._stdio[kIsUsedAsStdio] = true;
393404
continue;
394405
}
395406

test/parallel/test-child-process-pipe-dataflow.js

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ const MB = KB * KB;
3333
grep = spawn('grep', ['x'], { stdio: [cat.stdout, 'pipe', 'pipe'] });
3434
wc = spawn('wc', ['-c'], { stdio: [grep.stdout, 'pipe', 'pipe'] });
3535

36+
// Extra checks: We never try to start reading data ourselves.
37+
cat.stdout._handle.readStart = common.mustNotCall();
38+
grep.stdout._handle.readStart = common.mustNotCall();
39+
3640
[cat, grep, wc].forEach((child, index) => {
3741
child.stderr.on('data', (d) => {
3842
// Don't want to assert here, as we might miss error code info.

test/parallel/test-child-process-server-close.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ const tmpdir = require('../common/tmpdir');
88
tmpdir.refresh();
99

1010
const server = net.createServer((conn) => {
11-
conn.on('close', common.mustCall());
12-
1311
spawn(process.execPath, ['-v'], {
1412
stdio: ['ignore', conn, 'ignore']
15-
}).on('close', common.mustCall());
13+
}).on('close', common.mustCall(() => {
14+
conn.end();
15+
}));
1616
}).listen(common.PIPE, () => {
1717
const client = net.connect(common.PIPE, common.mustCall());
1818
client.on('data', () => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
'use strict';
2+
const common = require('../common');
3+
const assert = require('assert');
4+
const { spawn } = require('child_process');
5+
6+
// Regression test for https://github.com/nodejs/node/issues/27097.
7+
// Check that (cat [p1] ; cat [p2]) | cat [p3] works.
8+
9+
const p3 = spawn('cat', { stdio: ['pipe', 'pipe', 'inherit'] });
10+
const p1 = spawn('cat', { stdio: ['pipe', p3.stdin, 'inherit'] });
11+
const p2 = spawn('cat', { stdio: ['pipe', p3.stdin, 'inherit'] });
12+
p3.stdout.setEncoding('utf8');
13+
14+
// Write three different chunks:
15+
// - 'hello' from this process to p1 to p3 back to us
16+
// - 'world' from this process to p2 to p3 back to us
17+
// - 'foobar' from this process to p3 back to us
18+
// Do so sequentially in order to avoid race conditions.
19+
p1.stdin.end('hello\n');
20+
p3.stdout.once('data', common.mustCall((chunk) => {
21+
assert.strictEqual(chunk, 'hello\n');
22+
p2.stdin.end('world\n');
23+
p3.stdout.once('data', common.mustCall((chunk) => {
24+
assert.strictEqual(chunk, 'world\n');
25+
p3.stdin.end('foobar\n');
26+
p3.stdout.once('data', common.mustCall((chunk) => {
27+
assert.strictEqual(chunk, 'foobar\n');
28+
}));
29+
}));
30+
}));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
'use strict';
2+
const common = require('../common');
3+
const assert = require('assert');
4+
const { spawn } = require('child_process');
5+
6+
// Check that, once a child process has ended, it’s safe to read from a pipe
7+
// that the child had used as input.
8+
// We simulate that using cat | (head -n1; ...)
9+
10+
const p1 = spawn('cat', { stdio: ['pipe', 'pipe', 'inherit'] });
11+
const p2 = spawn('head', ['-n1'], { stdio: [p1.stdout, 'pipe', 'inherit'] });
12+
13+
// First, write the line that gets passed through p2, making 'head' exit.
14+
p1.stdin.write('hello\n');
15+
p2.stdout.setEncoding('utf8');
16+
p2.stdout.on('data', common.mustCall((chunk) => {
17+
assert.strictEqual(chunk, 'hello\n');
18+
}));
19+
p2.on('exit', common.mustCall(() => {
20+
// We can now use cat’s output, because 'head' is no longer reading from it.
21+
p1.stdin.end('world\n');
22+
p1.stdout.setEncoding('utf8');
23+
p1.stdout.on('data', common.mustCall((chunk) => {
24+
assert.strictEqual(chunk, 'world\n');
25+
}));
26+
p1.stdout.resume();
27+
}));

0 commit comments

Comments
 (0)