Skip to content

Commit b5175e8

Browse files
davedoesdevaddaleax
authored andcommitted
stream: ensure awaitDrain is increased once
Guard against the call to write() inside pipe's ondata pushing more data back onto the Readable, thus causing ondata to be called again. This is fine but results in awaitDrain being increased more than once. The problem with that is when the destination does drain, only a single 'drain' event is emitted, so awaitDrain in this case will never reach zero and we end up with a permanently paused stream. Fixes: #7278 PR-URL: #7292 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 357f904 commit b5175e8

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

lib/_stream_readable.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,11 +544,17 @@ Readable.prototype.pipe = function(dest, pipeOpts) {
544544
ondrain();
545545
}
546546

547+
// If the user pushes more data while we're writing to dest then we'll end up
548+
// in ondata again. However, we only want to increase awaitDrain once because
549+
// dest will only emit one 'drain' event for the multiple writes.
550+
// => Introduce a guard on increasing awaitDrain.
551+
var increasedAwaitDrain = false;
547552
src.on('data', ondata);
548553
function ondata(chunk) {
549554
debug('ondata');
555+
increasedAwaitDrain = false;
550556
var ret = dest.write(chunk);
551-
if (false === ret) {
557+
if (false === ret && !increasedAwaitDrain) {
552558
// If the user unpiped during `dest.write()`, it is possible
553559
// to get stuck in a permanently paused state if that write
554560
// also returned false.
@@ -558,6 +564,7 @@ Readable.prototype.pipe = function(dest, pipeOpts) {
558564
!cleanedUp) {
559565
debug('false write response, pause', src._readableState.awaitDrain);
560566
src._readableState.awaitDrain++;
567+
increasedAwaitDrain = true;
561568
}
562569
src.pause();
563570
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
'use strict';
2+
const common = require('../common');
3+
const stream = require('stream');
4+
5+
// A writable stream which pushes data onto the stream which pipes into it,
6+
// but only the first time it's written to. Since it's not paused at this time,
7+
// a second write will occur. If the pipe increases awaitDrain twice, we'll
8+
// never get subsequent chunks because 'drain' is only emitted once.
9+
const writable = new stream.Writable({
10+
write: common.mustCall((chunk, encoding, cb) => {
11+
if (chunk.length === 32 * 1024) { // first chunk
12+
readable.push(new Buffer(33 * 1024)); // above hwm
13+
}
14+
cb();
15+
}, 3)
16+
});
17+
18+
// A readable stream which produces two buffers.
19+
const bufs = [new Buffer(32 * 1024), new Buffer(33 * 1024)]; // above hwm
20+
const readable = new stream.Readable({
21+
read: function() {
22+
while (bufs.length > 0) {
23+
this.push(bufs.shift());
24+
}
25+
}
26+
});
27+
28+
readable.pipe(writable);

0 commit comments

Comments
 (0)