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
9 changes: 8 additions & 1 deletion lib/_http_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,14 @@ function parserOnIncomingClient(res, shouldKeepAlive) {
// We already have a response object, this means the server
// sent a double response.
socket.destroy();
return 0; // No special treatment.
if (socket.parser) {
// https://github.com/nodejs/node/issues/60025
// Now, parser.incoming is pointed to the new IncomingMessage,
// we need to rewrite it to the first one and skip all the pending IncomingMessage
socket.parser.incoming = req.res;
socket.parser.incoming.skipPendingData = true;
Copy link
Member

Choose a reason for hiding this comment

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

I think this should probably be a kSkipPendingData symbol, just to make sure this doesn't accidentally become a public API at some point.

}
return 0;
}
req.res = res;

Expand Down
4 changes: 2 additions & 2 deletions lib/_http_common.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function parserOnBody(b) {
const stream = this.incoming;

// If the stream has already been removed, then drop it.
if (stream === null)
if (stream === null || stream.skipPendingData)
return;

// Pretend this was the result of a stream._read call.
Expand All @@ -141,7 +141,7 @@ function parserOnMessageComplete() {
const parser = this;
const stream = parser.incoming;

if (stream !== null) {
if (stream !== null && !stream.skipPendingData) {
stream.complete = true;
// Emit any trailing headers.
const headers = parser._headers;
Expand Down
45 changes: 45 additions & 0 deletions test/parallel/test-http-client-leaky-with-double-response.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
'use strict';
// Flags: --expose-gc
const common = require('../common');
const http = require('http');
const assert = require('assert');
const { onGC } = require('../common/gc');

function createServer() {
const server = http.createServer(common.mustCall((req, res) => {
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify({ hello: 'world' }));
req.socket.write('HTTP/1.1 400 Bad Request\r\n\r\n');
}));

return new Promise((resolve) => {
server.listen(0, common.mustCall(() => {
resolve(server);
}));
});
}

async function main() {
const server = await createServer();
const req = http.get({
host: '127.0.0.1',
port: server.address().port,
}, common.mustCall((res) => {
const chunks = [];
res.on('data', (c) => chunks.push(c));
res.on('end', common.mustCall(() => {
const body = Buffer.concat(chunks).toString('utf8');
const data = JSON.parse(body);
assert.strictEqual(data.hello, 'world');
}));
}));
const timer = setInterval(global.gc, 500);
onGC(req, {
ongc: common.mustCall(() => {
clearInterval(timer);
server.close();
})
});
}

main();
Loading