Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

child_process: fix setSimultaneousAccepts #43951

Closed
wants to merge 1 commit into from
Closed
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
14 changes: 9 additions & 5 deletions lib/internal/child_process.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,9 +691,10 @@ function setupChannel(target, channel, serializationMode) {

const obj = handleConversion[message.type];

// Update simultaneous accepts on Windows
if (process.platform === 'win32') {
handle.setSimultaneousAccepts(false);
// Call setSimultaneousAccepts if it is a function
// currently, it is only defined in tcp_wrap.cc and on win32
if (obj.simultaneousAccepts && typeof handle.setSimultaneousAccepts === 'function') {
handle.setSimultaneousAccepts(true);
}

// Convert handle object
Expand Down Expand Up @@ -816,8 +817,11 @@ function setupChannel(target, channel, serializationMode) {
if (!handle)
message = message.msg;

// Update simultaneous accepts on Windows
if (obj.simultaneousAccepts && process.platform === 'win32') {
// Call setSimultaneousAccepts if it is a function
// currently, it is only defined in tcp_wrap.cc and on win32
if (handle &&
obj.simultaneousAccepts &&
typeof handle.setSimultaneousAccepts === 'function') {
handle.setSimultaneousAccepts(true);
}
} else if (this._handleQueue &&
Expand Down
3 changes: 2 additions & 1 deletion lib/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -1890,7 +1890,8 @@ if (isWindows) {
process.env.NODE_MANY_ACCEPTS !== '0');
}

if (handle._simultaneousAccepts !== simultaneousAccepts) {
if (handle._simultaneousAccepts !== simultaneousAccepts &&
typeof handle.setSimultaneousAccepts === 'function') {
handle.setSimultaneousAccepts(!!simultaneousAccepts);
handle._simultaneousAccepts = simultaneousAccepts;
}
Expand Down
3 changes: 3 additions & 0 deletions src/tcp_wrap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ void TCPWrap::SetSimultaneousAccepts(const FunctionCallbackInfo<Value>& args) {
ASSIGN_OR_RETURN_UNWRAP(&wrap,
args.Holder(),
args.GetReturnValue().Set(UV_EBADF));
if (wrap->provider_type() != ProviderType::PROVIDER_TCPSERVERWRAP) {
return;
}
bool enable = args[0]->IsTrue();
int err = uv_tcp_simultaneous_accepts(&wrap->handle_, enable);
args.GetReturnValue().Set(err);
Expand Down
54 changes: 54 additions & 0 deletions test/parallel/test-setsimultaneousaccepts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const net = require('net');
const child_process = require('child_process');

const CODE = `
const net = require('net');
process.on('message', (message, handle) => {
// net.Socket or net.Server
handle instanceof net.Socket ? handle.destroy() : handle.close();
process.send('accepted');
})
`;

const child = child_process.fork(process.execPath, { execArgv: ['-e', CODE ] });

let tcpServer;
const sockets = [];
let accepted = 0;

child.on('message', (message) => {
assert.strictEqual(message, 'accepted');
if (++accepted === 2) {
child.kill();
tcpServer.close();
sockets.forEach((socket) => {
socket.destroy();
});
}
});

tcpServer = net.createServer(common.mustCall((socket) => {
const setSimultaneousAccepts = socket._handle.setSimultaneousAccepts;
if (typeof setSimultaneousAccepts === 'function') {
socket._handle.setSimultaneousAccepts = common.mustCall((...args) => {
const ret = setSimultaneousAccepts.call(socket._handle, ...args);
assert.strictEqual(ret, undefined);
});
}
child.send(null, socket._handle);
sockets.push(socket);
}));
tcpServer.listen(0, common.mustCall(() => {
net.connect(tcpServer.address().port);
const setSimultaneousAccepts = tcpServer._handle.setSimultaneousAccepts;
if (typeof setSimultaneousAccepts === 'function') {
tcpServer._handle.setSimultaneousAccepts = common.mustCall((...args) => {
const ret = setSimultaneousAccepts.call(tcpServer._handle, ...args);
assert.strictEqual(ret, 0);
});
}
child.send(null, tcpServer);
}));