Skip to content

Commit 9de6aa6

Browse files
committed
esm: improve error when calling import.meta.resolve from data: URL
1 parent d4c5fe4 commit 9de6aa6

File tree

4 files changed

+66
-10
lines changed

4 files changed

+66
-10
lines changed

doc/api/errors.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2978,6 +2978,17 @@ import 'package-name'; // supported
29782978

29792979
`import` with URL schemes other than `file` and `data` is unsupported.
29802980

2981+
<a id="ERR_UNSUPPORTED_RESOLVE_REQUEST"></a>
2982+
2983+
### `ERR_UNSUPPORTED_RESOLVE_REQUEST`
2984+
2985+
An attempt was made to resolve an invalid module referrer. This can happen when
2986+
calling `import()` or `import.meta.resolve()` with either:
2987+
2988+
* a bare specifier that is not a builtin module from a module whose URL scheme
2989+
is not `file`.
2990+
* a [relative URL][] from a module whose URL scheme is not a [special scheme][].
2991+
29812992
<a id="ERR_USE_AFTER_CLOSE"></a>
29822993

29832994
### `ERR_USE_AFTER_CLOSE`
@@ -3648,7 +3659,9 @@ The native call from `process.cpuUsage` could not be processed.
36483659
[event emitter-based]: events.md#class-eventemitter
36493660
[file descriptors]: https://en.wikipedia.org/wiki/File_descriptor
36503661
[policy]: permissions.md#policies
3662+
[relative URL]: https://url.spec.whatwg.org/#relative-url-string
36513663
[self-reference a package using its name]: packages.md#self-referencing-a-package-using-its-name
3664+
[special scheme]: https://url.spec.whatwg.org/#special-scheme
36523665
[stream-based]: stream.md
36533666
[syscall]: https://man7.org/linux/man-pages/man2/syscalls.2.html
36543667
[try-catch]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch

lib/internal/errors.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1809,6 +1809,9 @@ E('ERR_UNSUPPORTED_ESM_URL_SCHEME', (url, supported) => {
18091809
msg += `. Received protocol '${url.protocol}'`;
18101810
return msg;
18111811
}, Error);
1812+
E('ERR_UNSUPPORTED_RESOLVE_REQUEST',
1813+
'Failed to resolve module specifier "%s" from "%s": Invalid relative url or base scheme is not hierarchical.',
1814+
TypeError);
18121815
E('ERR_USE_AFTER_CLOSE', '%s was closed', Error);
18131816

18141817
// This should probably be a `TypeError`.

lib/internal/modules/esm/resolve.js

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const {
5151
ERR_PACKAGE_IMPORT_NOT_DEFINED,
5252
ERR_PACKAGE_PATH_NOT_EXPORTED,
5353
ERR_UNSUPPORTED_DIR_IMPORT,
54+
ERR_UNSUPPORTED_RESOLVE_REQUEST,
5455
ERR_NETWORK_IMPORT_DISALLOWED,
5556
} = require('internal/errors').codes;
5657

@@ -884,22 +885,37 @@ function shouldBeTreatedAsRelativeOrAbsolutePath(specifier) {
884885
* @param {boolean} preserveSymlinks - Whether to preserve symlinks in the resolved URL.
885886
*/
886887
function moduleResolve(specifier, base, conditions, preserveSymlinks) {
887-
const isRemote = base.protocol === 'http:' ||
888-
base.protocol === 'https:';
888+
const protocol = typeof base === 'string' ?
889+
StringPrototypeSlice(base, 0, StringPrototypeIndexOf(base, ':') + 1) :
890+
base.protocol;
891+
const isData = protocol === 'data:';
892+
const isRemote =
893+
isData ||
894+
protocol === 'http:' ||
895+
protocol === 'https:';
889896
// Order swapped from spec for minor perf gain.
890897
// Ok since relative URLs cannot parse as URLs.
891898
let resolved;
892899
if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) {
893-
resolved = new URL(specifier, base);
894-
} else if (!isRemote && specifier[0] === '#') {
900+
try {
901+
resolved = new URL(specifier, base);
902+
} catch (cause) {
903+
const error = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base);
904+
setOwnProperty(error, 'cause', cause);
905+
throw error;
906+
}
907+
} else if (protocol === 'file:' && specifier[0] === '#') {
895908
resolved = packageImportsResolve(specifier, base, conditions);
896909
} else {
897910
try {
898911
resolved = new URL(specifier);
899-
} catch {
900-
if (!isRemote) {
901-
resolved = packageResolve(specifier, base, conditions);
912+
} catch (cause) {
913+
if (isRemote && !BuiltinModule.canBeRequiredWithoutScheme(specifier)) {
914+
const error = new ERR_UNSUPPORTED_RESOLVE_REQUEST(specifier, base);
915+
setOwnProperty(error, 'cause', cause);
916+
throw error;
902917
}
918+
resolved = packageResolve(specifier, base, conditions);
903919
}
904920
}
905921
if (resolved.protocol !== 'file:') {
@@ -1063,7 +1079,7 @@ function defaultResolve(specifier, context = {}) {
10631079
}
10641080
}
10651081

1066-
let parsed;
1082+
let parsed, protocol;
10671083
try {
10681084
if (shouldBeTreatedAsRelativeOrAbsolutePath(specifier)) {
10691085
parsed = new URL(specifier, parsedParentURL);
@@ -1072,7 +1088,7 @@ function defaultResolve(specifier, context = {}) {
10721088
}
10731089

10741090
// Avoid accessing the `protocol` property due to the lazy getters.
1075-
const protocol = parsed.protocol;
1091+
protocol = parsed.protocol;
10761092
if (protocol === 'data:' ||
10771093
(experimentalNetworkImports &&
10781094
(
@@ -1099,7 +1115,8 @@ function defaultResolve(specifier, context = {}) {
10991115
if (maybeReturn) { return maybeReturn; }
11001116

11011117
// This must come after checkIfDisallowedImport
1102-
if (parsed && parsed.protocol === 'node:') { return { __proto__: null, url: specifier }; }
1118+
protocol ??= parsed?.protocol;
1119+
if (protocol === 'node:') { return { __proto__: null, url: specifier }; }
11031120

11041121

11051122
const isMain = parentURL === undefined;
@@ -1182,6 +1199,7 @@ module.exports = {
11821199
const {
11831200
defaultGetFormatWithoutErrors,
11841201
} = require('internal/modules/esm/get_format');
1202+
const { setOwnProperty } = require('internal/util');
11851203

11861204
if (policy) {
11871205
const $defaultResolve = defaultResolve;

test/es-module/test-esm-import-meta-resolve.mjs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,28 @@ assert.strictEqual(import.meta.resolve('http://some-absolute/url'), 'http://some
3636
assert.strictEqual(import.meta.resolve('some://weird/protocol'), 'some://weird/protocol');
3737
assert.strictEqual(import.meta.resolve('baz/', fixtures),
3838
fixtures + 'node_modules/baz/');
39+
assert.deepStrictEqual(
40+
{ ...await import('data:text/javascript,export default import.meta.resolve("http://some-absolute/url")') },
41+
{ default: 'http://some-absolute/url' },
42+
);
43+
assert.deepStrictEqual(
44+
{ ...await import('data:text/javascript,export default import.meta.resolve("some://weird/protocol")') },
45+
{ default: 'some://weird/protocol' },
46+
);
47+
assert.deepStrictEqual(
48+
{ ...await import(`data:text/javascript,export default import.meta.resolve("baz/", ${JSON.stringify(fixtures)})`) },
49+
{ default: fixtures + 'node_modules/baz/' },
50+
);
51+
assert.deepStrictEqual(
52+
{ ...await import('data:text/javascript,export default import.meta.resolve("fs")') },
53+
{ default: 'node:fs' },
54+
);
55+
await assert.rejects(import('data:text/javascript,export default import.meta.resolve("does-not-exist")'), {
56+
code: 'ERR_UNSUPPORTED_RESOLVE_REQUEST',
57+
});
58+
await assert.rejects(import('data:text/javascript,export default import.meta.resolve("./relative")'), {
59+
code: 'ERR_UNSUPPORTED_RESOLVE_REQUEST',
60+
});
3961

4062
{
4163
const cp = spawn(execPath, [

0 commit comments

Comments
 (0)