Skip to content

Commit 7f7a899

Browse files
authored
net,tls: pass a valid socket on tlsClientError
On the 'tlsClientError' event, the `tlsSocket` instance is passed as `closed` status. Thus, users can't get information such as `remote address`, `remoteFamily`, and so on. This adds a flag to close a socket after emitting an `error` event. Signed-off-by: Daeyeon Jeong [email protected] PR-URL: #44021 Fixes: #43963 Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 07d7e1b commit 7f7a899

File tree

3 files changed

+61
-7
lines changed

3 files changed

+61
-7
lines changed

lib/_tls_wrap.js

+4
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,10 @@ function onerror(err) {
423423
if (!owner._secureEstablished) {
424424
// When handshake fails control is not yet released,
425425
// so self._tlsError will return null instead of actual error
426+
427+
// Set closing the socket after emitting an event since the socket needs to
428+
// be accessible when the `tlsClientError` event is emmited.
429+
owner._closeAfterHandlingError = true;
426430
owner.destroy(err);
427431
} else if (owner._tlsOptions?.isServer &&
428432
owner._rejectUnauthorized &&

lib/net.js

+26-7
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ const {
102102
uvExceptionWithHostPort,
103103
} = require('internal/errors');
104104
const { isUint8Array } = require('internal/util/types');
105+
const { queueMicrotask } = require('internal/process/task_queues');
105106
const {
106107
validateAbortSignal,
107108
validateFunction,
@@ -289,6 +290,19 @@ function initSocketHandle(self) {
289290
}
290291
}
291292

293+
function closeSocketHandle(self, isException, isCleanupPending = false) {
294+
if (self._handle) {
295+
self._handle.close(() => {
296+
debug('emit close');
297+
self.emit('close', isException);
298+
if (isCleanupPending) {
299+
self._handle.onread = noop;
300+
self._handle = null;
301+
self._sockname = null;
302+
}
303+
});
304+
}
305+
}
292306

293307
const kBytesRead = Symbol('kBytesRead');
294308
const kBytesWritten = Symbol('kBytesWritten');
@@ -337,6 +351,7 @@ function Socket(options) {
337351
this[kBuffer] = null;
338352
this[kBufferCb] = null;
339353
this[kBufferGen] = null;
354+
this._closeAfterHandlingError = false;
340355

341356
if (typeof options === 'number')
342357
options = { fd: options }; // Legacy interface.
@@ -755,15 +770,19 @@ Socket.prototype._destroy = function(exception, cb) {
755770
});
756771
if (err)
757772
this.emit('error', errnoException(err, 'reset'));
773+
} else if (this._closeAfterHandlingError) {
774+
// Enqueue closing the socket as a microtask, so that the socket can be
775+
// accessible when an `error` event is handled in the `next tick queue`.
776+
queueMicrotask(() => closeSocketHandle(this, isException, true));
758777
} else {
759-
this._handle.close(() => {
760-
debug('emit close');
761-
this.emit('close', isException);
762-
});
778+
closeSocketHandle(this, isException);
779+
}
780+
781+
if (!this._closeAfterHandlingError) {
782+
this._handle.onread = noop;
783+
this._handle = null;
784+
this._sockname = null;
763785
}
764-
this._handle.onread = noop;
765-
this._handle = null;
766-
this._sockname = null;
767786
cb(exception);
768787
} else {
769788
cb(exception);
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
'use strict';
2+
const common = require('../common');
3+
const https = require('node:https');
4+
const assert = require('node:assert');
5+
6+
const server = https.createServer();
7+
8+
server.on(
9+
'tlsClientError',
10+
common.mustCall((exception, tlsSocket) => {
11+
assert.strictEqual(exception !== undefined, true);
12+
assert.strictEqual(Object.keys(tlsSocket.address()).length !== 0, true);
13+
assert.strictEqual(tlsSocket.localAddress !== undefined, true);
14+
assert.strictEqual(tlsSocket.localPort !== undefined, true);
15+
assert.strictEqual(tlsSocket.remoteAddress !== undefined, true);
16+
assert.strictEqual(tlsSocket.remoteFamily !== undefined, true);
17+
assert.strictEqual(tlsSocket.remotePort !== undefined, true);
18+
}),
19+
);
20+
21+
server.listen(0, () => {
22+
const req = https.request({
23+
hostname: '127.0.0.1',
24+
port: server.address().port,
25+
});
26+
req.on(
27+
'error',
28+
common.mustCall(() => server.close()),
29+
);
30+
req.end();
31+
});

0 commit comments

Comments
 (0)