Skip to content
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
net: use _server for internal book-keeping
The role of `this.server` is now split between `this._server` and
`this.server`. Where the first one is used for counting active
connections of `net.Server`, and the latter one is just a public API for
users' consumption.

The reasoning for this is simple, `TLSSocket` instances wrap
`net.Socket` instances, thus both refer to the `net.Server` through the
`this.server` property. However, only one of them should be used for
`net.Server` connection count book-keeping, otherwise double-decrement
will happen on socket destruction.

Fix: #5083
  • Loading branch information
indutny committed Feb 16, 2016
commit 7fc90ac91e13b3994cb9aae72f6e84817fba90d5
6 changes: 0 additions & 6 deletions lib/_tls_wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,6 @@ TLSSocket.prototype._init = function(socket, wrap) {

this.server = options.server;

// Move the server to TLSSocket, otherwise both `socket.destroy()` and
// `TLSSocket.destroy()` will decrement number of connections of the TLS
// server, leading to misfiring `server.close()` callback
if (socket && socket.server === this.server)
socket.server = null;

// For clients, we will always have either a given ca list or be using
// default one
const requestCert = !!options.requestCert || !options.isServer;
Expand Down
13 changes: 9 additions & 4 deletions lib/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ function Socket(options) {
this.read(0);
}
}

// Reserve properties
this.server = null;
this._server = null;
}
util.inherits(Socket, stream.Duplex);

Expand Down Expand Up @@ -481,12 +485,12 @@ Socket.prototype._destroy = function(exception, cb) {
this.destroyed = true;
fireErrorCallbacks();

if (this.server) {
if (this._server) {
COUNTER_NET_SERVER_CONNECTION_CLOSE(this);
debug('has server');
this.server._connections--;
if (this.server._emitCloseIfDrained) {
this.server._emitCloseIfDrained();
this._server._connections--;
if (this._server._emitCloseIfDrained) {
this._server._emitCloseIfDrained();
}
}
};
Expand Down Expand Up @@ -1427,6 +1431,7 @@ function onconnection(err, clientHandle) {

self._connections++;
socket.server = self;
socket._server = self;

DTRACE_NET_SERVER_CONNECTION(socket);
LTTNG_NET_SERVER_CONNECTION(socket);
Expand Down
1 change: 1 addition & 0 deletions test/parallel/test-net-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ var s = new net.Stream();

s.server = new net.Server();
s.server.connections = 10;
s._server = s.server;

assert.equal(10, s.server.connections);
s.destroy();
Expand Down
34 changes: 34 additions & 0 deletions test/parallel/test-tls-server-connection-server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
'use strict';
const common = require('../common');

if (!common.hasCrypto) {
console.log('1..0 # Skipped: missing crypto');
return;
}

const assert = require('assert');
const tls = require('tls');
const fs = require('fs');

const options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};

const server = tls.createServer(options, function(s) {
s.end('hello');
}).listen(common.PORT, function() {
const opts = {
port: common.PORT,
rejectUnauthorized: false
};

server.on('connection', common.mustCall(function(socket) {
assert(socket.server === server);
server.close();
}));

const client = tls.connect(opts, function() {
client.end();
});
});