Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 53 additions & 12 deletions lib/_http_outgoing.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const {
ERR_STREAM_DESTROYED,
ERR_STREAM_NULL_VALUES,
ERR_STREAM_WRITE_AFTER_END,
ERR_UNKNOWN_ENCODING,
},
hideStackFrames,
} = require('internal/errors');
Expand Down Expand Up @@ -228,7 +229,11 @@ ObjectDefineProperty(OutgoingMessage.prototype, 'writableObjectMode', {
ObjectDefineProperty(OutgoingMessage.prototype, 'writableLength', {
__proto__: null,
get() {
return this.outputSize + this[kChunkedLength] + (this[kSocket] ? this[kSocket].writableLength : 0);
let bufferedLength = this[kChunkedLength];
if (bufferedLength !== 0) {
bufferedLength += bufferedLength.toString(16).length + 4 + (!this._headerSent && this._header !== null ? this._header.length : 0);
}
return this.outputSize + bufferedLength + (this[kSocket] ? this[kSocket].writableLength : 0);
},
});

Expand Down Expand Up @@ -299,17 +304,26 @@ OutgoingMessage.prototype.cork = function cork() {

OutgoingMessage.prototype.uncork = function uncork() {
this[kCorked]--;
if (this[kSocket]) {
Comment on lines 302 to -304

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will break the cork count? We always call socket.cork on cork, we need to do the same for uncork?

this[kSocket].uncork();
}

const socket = this[kSocket];
if (this[kCorked] || this[kChunkedBuffer].length === 0) {
socket?.uncork();
return;
}

const len = this[kChunkedLength];
const buf = this[kChunkedBuffer];

if (this.destroyed || socket?.destroyed) {
const error = this[kErrored] || socket?._writableState?.errored || new ERR_STREAM_DESTROYED('write');
for (let n = 2; n < buf.length; n += 3) {
if (buf[n] !== nop) {
process.nextTick(buf[n], error);
}
}
buf.length = 0;
this[kChunkedLength] = 0;
socket?.uncork();
return;
}
Comment on lines +315 to +326

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems unrelated?

assert(this.chunkedEncoding);

let callbacks;
Expand All @@ -330,6 +344,7 @@ OutgoingMessage.prototype.uncork = function uncork() {

this[kChunkedBuffer].length = 0;
this[kChunkedLength] = 0;
socket?.uncork();

// If we had a pending drain and flushed all data, emit the drain event.
if (this[kNeedDrain] && this.writableLength === 0) {
Expand Down Expand Up @@ -365,6 +380,10 @@ OutgoingMessage.prototype.destroy = function destroy(error) {
this.destroyed = true;

this[kErrored] = error;
if (this[kChunkedBuffer].length !== 0) {
this[kCorked] = 1;
this.uncork();
}

if (this[kSocket]) {
this[kSocket].destroy(error);
Expand Down Expand Up @@ -1004,24 +1023,34 @@ function write_(msg, chunk, encoding, callback, fromEnd) {
}
}

if (msg.chunkedEncoding && typeof chunk === 'string' && encoding && !Buffer.isEncoding(encoding)) {
throw new ERR_UNKNOWN_ENCODING(encoding);
}

if (!fromEnd && msg.socket && !msg.socket.writableCorked) {
msg.socket.cork();
process.nextTick(connectionCorkNT, msg.socket);
msg.cork();
process.nextTick(connectionCorkNT, msg, msg.socket);
}

let ret;
if (msg.chunkedEncoding && chunk.length !== 0) {
len ??= typeof chunk === 'string' ? Buffer.byteLength(chunk, encoding) : chunk.byteLength;
if (msg[kCorked] && msg._headerSent) {
if (msg[kCorked]) {
if (typeof chunk !== 'string' && !(chunk instanceof Buffer)) {
chunk = Stream._uint8ArrayToBuffer(chunk);
}
msg[kChunkedBuffer].push(chunk, encoding, callback);
msg[kChunkedLength] += len;
ret = msg[kChunkedLength] < msg[kHighWaterMark];
ret = msg.writableLength < msg.writableHighWaterMark;
} else {
msg._send(len.toString(16), 'latin1', null);
msg._send(crlf_buf, null, null);
msg._send(chunk, encoding, null, len);
ret = msg._send(crlf_buf, null, callback);
}
} else if (msg.chunkedEncoding && msg[kCorked] && msg[kChunkedBuffer].length !== 0) {
msg[kChunkedBuffer].push(chunk, encoding, callback);
ret = msg.writableLength < msg.writableHighWaterMark;
} else {
ret = msg._send(chunk, encoding, callback, len);
}
Expand All @@ -1031,8 +1060,13 @@ function write_(msg, chunk, encoding, callback, fromEnd) {
}


function connectionCorkNT(conn) {
conn.uncork();
function connectionCorkNT(msg, conn) {
if (msg[kCorked]) {
msg.uncork();
}
if (msg[kSocket] !== conn) {
conn.uncork();
}
}

OutgoingMessage.prototype.addTrailers = function addTrailers(headers) {
Expand Down Expand Up @@ -1138,6 +1172,13 @@ OutgoingMessage.prototype.end = function end(chunk, encoding, callback) {
throw new ERR_HTTP_CONTENT_LENGTH_MISMATCH(this[kBytesWritten], this._contentLength);
}

// Flush buffered chunks before terminating the response.
if (this[kChunkedBuffer].length !== 0) {
this[kSocket]?.cork();
this[kCorked] = 1;
this.uncork();
}

const finish = onFinish.bind(undefined, this);

if (this._hasBody && this.chunkedEncoding) {
Expand Down
15 changes: 9 additions & 6 deletions test/parallel/test-http-1.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,12 @@ function test(handler, request_generator, response_validator) {
assert.strictEqual(req.httpVersionMinor, 1);
res.sendDate = false;
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('Hello, '); res._send('');
assert.throws(() => res.write('ignored', 'invalid'), {
code: 'ERR_UNKNOWN_ENCODING',
});
res.write('Hello, ', common.mustCall()); res._send('');
res.write('world!'); res._send('');
res.end();
process.nextTick(() => res.end('X'));
}

function request_generator() {
Expand All @@ -148,10 +151,10 @@ function test(handler, request_generator, response_validator) {
'Connection: close\r\n' +
'Transfer-Encoding: chunked\r\n' +
'\r\n' +
'7\r\n' +
'Hello, \r\n' +
'6\r\n' +
'world!\r\n' +
'd\r\n' +
'Hello, world!\r\n' +
'1\r\n' +
'X\r\n' +
'0\r\n' +
'\r\n';

Expand Down
3 changes: 3 additions & 0 deletions test/parallel/test-http-outgoing-destroyed.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ const { OutgoingMessage } = require('http');
});
}));
const err = new Error('Destroy test');
res.write('x', common.mustCall((writeErr) => {
assert.strictEqual(writeErr, err);
}));
res.destroy(err);
assert.strictEqual(res.errored, err);
})).listen(0, common.mustCall(() => {
Expand Down