Skip to content

Commit 7c73cd4

Browse files
committed
net: emit error on invalid address family
This commit adds proper error handling to net.connect() when a custom lookup() function returns an invalid address family. PR-URL: nodejs#19415 Fixes: nodejs#19407 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Khaidi Chu <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 0fb017d commit 7c73cd4

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

doc/api/errors.md

+5
Original file line numberDiff line numberDiff line change
@@ -1042,6 +1042,11 @@ The `inspector` module is not available for use.
10421042
While using the `inspector` module, an attempt was made to use the inspector
10431043
before it was connected.
10441044

1045+
<a id="ERR_INVALID_ADDRESS_FAMILY"></a>
1046+
### ERR_INVALID_ADDRESS_FAMILY
1047+
1048+
The provided address family is not understood by the Node.js API.
1049+
10451050
<a id="ERR_INVALID_ARG_TYPE"></a>
10461051
### ERR_INVALID_ARG_TYPE
10471052

lib/internal/errors.js

+1
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ E('ERR_INSPECTOR_ALREADY_CONNECTED',
737737
E('ERR_INSPECTOR_CLOSED', 'Session was closed', Error);
738738
E('ERR_INSPECTOR_NOT_AVAILABLE', 'Inspector is not available', Error);
739739
E('ERR_INSPECTOR_NOT_CONNECTED', 'Session is not connected', Error);
740+
E('ERR_INVALID_ADDRESS_FAMILY', 'Invalid address family: %s', RangeError);
740741
E('ERR_INVALID_ARG_TYPE', invalidArgType, TypeError);
741742
E('ERR_INVALID_ARG_VALUE', (name, value, reason = 'is invalid') => {
742743
const util = lazyUtil();

lib/net.js

+7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const {
5454
} = require('internal/async_hooks');
5555
const errors = require('internal/errors');
5656
const {
57+
ERR_INVALID_ADDRESS_FAMILY,
5758
ERR_INVALID_ARG_TYPE,
5859
ERR_INVALID_FD_TYPE,
5960
ERR_INVALID_IP_ADDRESS,
@@ -1117,6 +1118,12 @@ function lookupAndConnect(self, options) {
11171118
err.port = options.port;
11181119
err.message = err.message + ' ' + options.host + ':' + options.port;
11191120
process.nextTick(connectErrorNT, self, err);
1121+
} else if (addressType !== 4 && addressType !== 6) {
1122+
err = new ERR_INVALID_ADDRESS_FAMILY(addressType);
1123+
err.host = options.host;
1124+
err.port = options.port;
1125+
err.message = err.message + ' ' + options.host + ':' + options.port;
1126+
process.nextTick(connectErrorNT, self, err);
11201127
} else {
11211128
self._unrefTimer();
11221129
defaultTriggerAsyncIdScope(

test/parallel/test-net-options-lookup.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,14 @@ function connectDoesNotThrow(input) {
2929
lookup: input
3030
};
3131

32-
net.connect(opts);
32+
return net.connect(opts);
33+
}
34+
35+
{
36+
// Verify that an error is emitted when an invalid address family is returned.
37+
const s = connectDoesNotThrow((host, options, cb) => {
38+
cb(null, '127.0.0.1', 100);
39+
});
40+
41+
s.on('error', common.expectsError({ code: 'ERR_INVALID_ADDRESS_FAMILY' }));
3342
}

0 commit comments

Comments
 (0)