mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
f399b01dc4
Before this commit, Node.js left it up to the system resolver or c-ares. Leaving it to the system resolver introduces platform differences because: * some support IDNA 2008 * some only IDNA 2003 (glibc until 2.28), and * some don't support IDNA at all (musl libc) c-ares doesn't support IDNA either although curl does, by virtue of linking against libidn2. Upgrading from libidn1 to libidn2 in order to get proper IDNA 2008 support was the fix for curl's CVE-2016-8625. libidn2 is not an option (incompatible license) but ICU has an IDNA API and we already use that in one place. For non-ICU builds, we fall back to the bundled punycode.js that also supports IDNA 2008. Fixes: https://github.com/nodejs-private/security/issues/97 Fixes: https://github.com/nodejs/node/issues/25558 PR-URL: https://github.com/nodejs/node/pull/25679 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
331 lines
9.3 KiB
JavaScript
331 lines
9.3 KiB
JavaScript
// Copyright Joyent, Inc. and other Node contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
// following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
'use strict';
|
|
|
|
const cares = internalBinding('cares_wrap');
|
|
const { toASCII } = require('internal/idna');
|
|
const { isIP, isIPv4, isLegalPort } = require('internal/net');
|
|
const { customPromisifyArgs } = require('internal/util');
|
|
const errors = require('internal/errors');
|
|
const {
|
|
bindDefaultResolver,
|
|
getDefaultResolver,
|
|
setDefaultResolver,
|
|
Resolver,
|
|
validateHints,
|
|
emitInvalidHostnameWarning,
|
|
} = require('internal/dns/utils');
|
|
const {
|
|
ERR_INVALID_ARG_TYPE,
|
|
ERR_INVALID_CALLBACK,
|
|
ERR_INVALID_OPT_VALUE,
|
|
ERR_MISSING_ARGS,
|
|
ERR_SOCKET_BAD_PORT
|
|
} = errors.codes;
|
|
const { validateString } = require('internal/validators');
|
|
|
|
const {
|
|
GetAddrInfoReqWrap,
|
|
GetNameInfoReqWrap,
|
|
QueryReqWrap,
|
|
} = cares;
|
|
|
|
const dnsException = errors.dnsException;
|
|
|
|
let promises = null; // Lazy loaded
|
|
|
|
function onlookup(err, addresses) {
|
|
if (err) {
|
|
return this.callback(dnsException(err, 'getaddrinfo', this.hostname));
|
|
}
|
|
if (this.family) {
|
|
this.callback(null, addresses[0], this.family);
|
|
} else {
|
|
this.callback(null, addresses[0], isIPv4(addresses[0]) ? 4 : 6);
|
|
}
|
|
}
|
|
|
|
|
|
function onlookupall(err, addresses) {
|
|
if (err) {
|
|
return this.callback(dnsException(err, 'getaddrinfo', this.hostname));
|
|
}
|
|
|
|
var family = this.family;
|
|
for (var i = 0; i < addresses.length; i++) {
|
|
const addr = addresses[i];
|
|
addresses[i] = {
|
|
address: addr,
|
|
family: family || (isIPv4(addr) ? 4 : 6)
|
|
};
|
|
}
|
|
|
|
this.callback(null, addresses);
|
|
}
|
|
|
|
|
|
// Easy DNS A/AAAA look up
|
|
// lookup(hostname, [options,] callback)
|
|
function lookup(hostname, options, callback) {
|
|
var hints = 0;
|
|
var family = -1;
|
|
var all = false;
|
|
var verbatim = false;
|
|
|
|
// Parse arguments
|
|
if (hostname && typeof hostname !== 'string') {
|
|
throw new ERR_INVALID_ARG_TYPE('hostname', 'string', hostname);
|
|
} else if (typeof options === 'function') {
|
|
callback = options;
|
|
family = 0;
|
|
} else if (typeof callback !== 'function') {
|
|
throw new ERR_INVALID_CALLBACK();
|
|
} else if (options !== null && typeof options === 'object') {
|
|
hints = options.hints >>> 0;
|
|
family = options.family >>> 0;
|
|
all = options.all === true;
|
|
verbatim = options.verbatim === true;
|
|
|
|
validateHints(hints);
|
|
} else {
|
|
family = options >>> 0;
|
|
}
|
|
|
|
if (family !== 0 && family !== 4 && family !== 6)
|
|
throw new ERR_INVALID_OPT_VALUE('family', family);
|
|
|
|
if (!hostname) {
|
|
emitInvalidHostnameWarning(hostname);
|
|
if (all) {
|
|
process.nextTick(callback, null, []);
|
|
} else {
|
|
process.nextTick(callback, null, null, family === 6 ? 6 : 4);
|
|
}
|
|
return {};
|
|
}
|
|
|
|
var matchedFamily = isIP(hostname);
|
|
if (matchedFamily) {
|
|
if (all) {
|
|
process.nextTick(
|
|
callback, null, [{ address: hostname, family: matchedFamily }]);
|
|
} else {
|
|
process.nextTick(callback, null, hostname, matchedFamily);
|
|
}
|
|
return {};
|
|
}
|
|
|
|
var req = new GetAddrInfoReqWrap();
|
|
req.callback = callback;
|
|
req.family = family;
|
|
req.hostname = hostname;
|
|
req.oncomplete = all ? onlookupall : onlookup;
|
|
|
|
var err = cares.getaddrinfo(req, toASCII(hostname), family, hints, verbatim);
|
|
if (err) {
|
|
process.nextTick(callback, dnsException(err, 'getaddrinfo', hostname));
|
|
return {};
|
|
}
|
|
return req;
|
|
}
|
|
|
|
Object.defineProperty(lookup, customPromisifyArgs,
|
|
{ value: ['address', 'family'], enumerable: false });
|
|
|
|
|
|
function onlookupservice(err, hostname, service) {
|
|
if (err)
|
|
return this.callback(dnsException(err, 'getnameinfo', this.hostname));
|
|
|
|
this.callback(null, hostname, service);
|
|
}
|
|
|
|
|
|
// lookupService(address, port, callback)
|
|
function lookupService(hostname, port, callback) {
|
|
if (arguments.length !== 3)
|
|
throw new ERR_MISSING_ARGS('hostname', 'port', 'callback');
|
|
|
|
if (isIP(hostname) === 0)
|
|
throw new ERR_INVALID_OPT_VALUE('hostname', hostname);
|
|
|
|
if (!isLegalPort(port))
|
|
throw new ERR_SOCKET_BAD_PORT(port);
|
|
|
|
if (typeof callback !== 'function')
|
|
throw new ERR_INVALID_CALLBACK();
|
|
|
|
port = +port;
|
|
|
|
var req = new GetNameInfoReqWrap();
|
|
req.callback = callback;
|
|
req.hostname = hostname;
|
|
req.port = port;
|
|
req.oncomplete = onlookupservice;
|
|
|
|
var err = cares.getnameinfo(req, hostname, port);
|
|
if (err) throw dnsException(err, 'getnameinfo', hostname);
|
|
return req;
|
|
}
|
|
|
|
Object.defineProperty(lookupService, customPromisifyArgs,
|
|
{ value: ['hostname', 'service'], enumerable: false });
|
|
|
|
|
|
function onresolve(err, result, ttls) {
|
|
if (ttls && this.ttl)
|
|
result = result.map((address, index) => ({ address, ttl: ttls[index] }));
|
|
|
|
if (err)
|
|
this.callback(dnsException(err, this.bindingName, this.hostname));
|
|
else
|
|
this.callback(null, result);
|
|
}
|
|
|
|
function resolver(bindingName) {
|
|
function query(name, /* options, */ callback) {
|
|
var options;
|
|
if (arguments.length > 2) {
|
|
options = callback;
|
|
callback = arguments[2];
|
|
}
|
|
|
|
validateString(name, 'name');
|
|
if (typeof callback !== 'function') {
|
|
throw new ERR_INVALID_CALLBACK();
|
|
}
|
|
|
|
var req = new QueryReqWrap();
|
|
req.bindingName = bindingName;
|
|
req.callback = callback;
|
|
req.hostname = name;
|
|
req.oncomplete = onresolve;
|
|
req.ttl = !!(options && options.ttl);
|
|
var err = this._handle[bindingName](req, toASCII(name));
|
|
if (err) throw dnsException(err, bindingName, name);
|
|
return req;
|
|
}
|
|
Object.defineProperty(query, 'name', { value: bindingName });
|
|
return query;
|
|
}
|
|
|
|
var resolveMap = Object.create(null);
|
|
Resolver.prototype.resolveAny = resolveMap.ANY = resolver('queryAny');
|
|
Resolver.prototype.resolve4 = resolveMap.A = resolver('queryA');
|
|
Resolver.prototype.resolve6 = resolveMap.AAAA = resolver('queryAaaa');
|
|
Resolver.prototype.resolveCname = resolveMap.CNAME = resolver('queryCname');
|
|
Resolver.prototype.resolveMx = resolveMap.MX = resolver('queryMx');
|
|
Resolver.prototype.resolveNs = resolveMap.NS = resolver('queryNs');
|
|
Resolver.prototype.resolveTxt = resolveMap.TXT = resolver('queryTxt');
|
|
Resolver.prototype.resolveSrv = resolveMap.SRV = resolver('querySrv');
|
|
Resolver.prototype.resolvePtr = resolveMap.PTR = resolver('queryPtr');
|
|
Resolver.prototype.resolveNaptr = resolveMap.NAPTR = resolver('queryNaptr');
|
|
Resolver.prototype.resolveSoa = resolveMap.SOA = resolver('querySoa');
|
|
Resolver.prototype.reverse = resolver('getHostByAddr');
|
|
|
|
Resolver.prototype.resolve = resolve;
|
|
|
|
function resolve(hostname, rrtype, callback) {
|
|
var resolver;
|
|
if (typeof rrtype === 'string') {
|
|
resolver = resolveMap[rrtype];
|
|
} else if (typeof rrtype === 'function') {
|
|
resolver = resolveMap.A;
|
|
callback = rrtype;
|
|
} else {
|
|
throw new ERR_INVALID_ARG_TYPE('rrtype', 'string', rrtype);
|
|
}
|
|
|
|
if (typeof resolver === 'function') {
|
|
return resolver.call(this, hostname, callback);
|
|
} else {
|
|
throw new ERR_INVALID_OPT_VALUE('rrtype', rrtype);
|
|
}
|
|
}
|
|
|
|
function defaultResolverSetServers(servers) {
|
|
const resolver = new Resolver();
|
|
|
|
resolver.setServers(servers);
|
|
setDefaultResolver(resolver);
|
|
bindDefaultResolver(module.exports, Resolver.prototype);
|
|
|
|
if (promises !== null)
|
|
bindDefaultResolver(promises, promises.Resolver.prototype);
|
|
}
|
|
|
|
module.exports = {
|
|
lookup,
|
|
lookupService,
|
|
|
|
Resolver,
|
|
setServers: defaultResolverSetServers,
|
|
|
|
// uv_getaddrinfo flags
|
|
ADDRCONFIG: cares.AI_ADDRCONFIG,
|
|
V4MAPPED: cares.AI_V4MAPPED,
|
|
|
|
// ERROR CODES
|
|
NODATA: 'ENODATA',
|
|
FORMERR: 'EFORMERR',
|
|
SERVFAIL: 'ESERVFAIL',
|
|
NOTFOUND: 'ENOTFOUND',
|
|
NOTIMP: 'ENOTIMP',
|
|
REFUSED: 'EREFUSED',
|
|
BADQUERY: 'EBADQUERY',
|
|
BADNAME: 'EBADNAME',
|
|
BADFAMILY: 'EBADFAMILY',
|
|
BADRESP: 'EBADRESP',
|
|
CONNREFUSED: 'ECONNREFUSED',
|
|
TIMEOUT: 'ETIMEOUT',
|
|
EOF: 'EOF',
|
|
FILE: 'EFILE',
|
|
NOMEM: 'ENOMEM',
|
|
DESTRUCTION: 'EDESTRUCTION',
|
|
BADSTR: 'EBADSTR',
|
|
BADFLAGS: 'EBADFLAGS',
|
|
NONAME: 'ENONAME',
|
|
BADHINTS: 'EBADHINTS',
|
|
NOTINITIALIZED: 'ENOTINITIALIZED',
|
|
LOADIPHLPAPI: 'ELOADIPHLPAPI',
|
|
ADDRGETNETWORKPARAMS: 'EADDRGETNETWORKPARAMS',
|
|
CANCELLED: 'ECANCELLED'
|
|
};
|
|
|
|
bindDefaultResolver(module.exports, getDefaultResolver());
|
|
|
|
Object.defineProperties(module.exports, {
|
|
promises: {
|
|
configurable: true,
|
|
enumerable: false,
|
|
get() {
|
|
if (promises === null) {
|
|
promises = require('internal/dns/promises');
|
|
promises.setServers = defaultResolverSetServers;
|
|
process.emitWarning('The dns.promises API is experimental',
|
|
'ExperimentalWarning');
|
|
}
|
|
return promises;
|
|
}
|
|
}
|
|
});
|