Skip to content

Commit ee58562

Browse files
committed
vm: allow dynamic import with a referrer realm
A referrer can be a Script Record, a Cyclic Module Record, or a Realm Record as defined in https://tc39.es/ecma262/#sec-HostLoadImportedModule. Add support for dynamic import calls with a realm as the referrer and allow specifying an `importModuleDynamically` callback in `vm.createContext`.
1 parent 0fb5123 commit ee58562

File tree

8 files changed

+148
-22
lines changed

8 files changed

+148
-22
lines changed

doc/api/vm.md

+18
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,9 @@ function with the given `params`.
10521052
<!-- YAML
10531053
added: v0.3.1
10541054
changes:
1055+
- version: REPLACEME
1056+
pr-url: https://github.com/nodejs/node/pull/50360
1057+
description: The `importModuleDynamically` option is supported now.
10551058
- version: v14.6.0
10561059
pr-url: https://github.com/nodejs/node/pull/34023
10571060
description: The `microtaskMode` option is supported now.
@@ -1084,6 +1087,21 @@ changes:
10841087
scheduled through `Promise`s and `async function`s) will be run immediately
10851088
after a script has run through [`script.runInContext()`][].
10861089
They are included in the `timeout` and `breakOnSigint` scopes in that case.
1090+
* `importModuleDynamically` {Function} Called when `import()` is called in
1091+
this context without a referrer script or module. If this option is not
1092+
specified, calls to `import()` will reject with
1093+
[`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING`][]. If
1094+
`--experimental-vm-modules` isn't set, this callback will be ignored and
1095+
calls to `import()` will reject with
1096+
[`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG`][].
1097+
* `specifier` {string} specifier passed to `import()`
1098+
* `contextObject` {Object} contextified object
1099+
* `importAttributes` {Object} The `"with"` value passed to the
1100+
[`optionsExpression`][] optional parameter, or an empty object if no value
1101+
was provided.
1102+
* Returns: {Module Namespace Object|vm.Module} Returning a `vm.Module` is
1103+
recommended in order to take advantage of error tracking, and to avoid
1104+
issues with namespaces that contain `then` function exports.
10871105
* Returns: {Object} contextified object.
10881106

10891107
If given a `contextObject`, the `vm.createContext()` method will [prepare

lib/internal/modules/esm/utils.js

+16-6
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@ function getConditionsSet(conditions) {
113113
*/
114114
const moduleRegistries = new SafeWeakMap();
115115

116+
/**
117+
* @typedef {ContextifyScript|Function|ModuleWrap|ContextifiedObject} Referrer
118+
* A referrer can be a Script Record, a Cyclic Module Record, or a Realm Record
119+
* as defined in https://tc39.es/ecma262/#sec-HostLoadImportedModule.
120+
*
121+
* In Node.js, a referrer is represented by a wrapper object of these records.
122+
* A referrer object has a field |host_defined_option_symbol| initialized with
123+
* a symbol.
124+
*/
125+
116126
/**
117127
* V8 would make sure that as long as import() can still be initiated from
118128
* the referrer, the symbol referenced by |host_defined_option_symbol| should
@@ -127,7 +137,7 @@ const moduleRegistries = new SafeWeakMap();
127137
* referrer wrap is still around and can be passed into the callbacks.
128138
* 2 is only there so that we can get the id symbol to configure the
129139
* weak map.
130-
* @param {ModuleWrap|ContextifyScript|Function} referrer The referrer to
140+
* @param {Referrer} referrer The referrer to
131141
* get the id symbol from. This is different from callbackReferrer which
132142
* could be set by the caller.
133143
* @param {ModuleRegistry} registry
@@ -163,20 +173,20 @@ function initializeImportMetaObject(symbol, meta) {
163173

164174
/**
165175
* Asynchronously imports a module dynamically using a callback function. The native callback.
166-
* @param {symbol} symbol - Reference to the module.
176+
* @param {symbol} referrerSymbol - Referrer symbol of the registered script, function, module, or contextified object.
167177
* @param {string} specifier - The module specifier string.
168178
* @param {Record<string, string>} attributes - The import attributes object.
169179
* @returns {Promise<import('internal/modules/esm/loader.js').ModuleExports>} - The imported module object.
170180
* @throws {ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING} - If the callback function is missing.
171181
*/
172-
async function importModuleDynamicallyCallback(symbol, specifier, attributes) {
173-
if (moduleRegistries.has(symbol)) {
174-
const { importModuleDynamically, callbackReferrer } = moduleRegistries.get(symbol);
182+
async function importModuleDynamicallyCallback(referrerSymbol, specifier, attributes) {
183+
if (moduleRegistries.has(referrerSymbol)) {
184+
const { importModuleDynamically, callbackReferrer } = moduleRegistries.get(referrerSymbol);
175185
if (importModuleDynamically !== undefined) {
176186
return importModuleDynamically(specifier, callbackReferrer, attributes);
177187
}
178188
}
179-
if (symbol === vm_dynamic_import_missing_flag) {
189+
if (referrerSymbol === vm_dynamic_import_missing_flag) {
180190
throw new ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG();
181191
}
182192
throw new ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING();

lib/internal/vm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function isContext(object) {
3434
return _isContext(object);
3535
}
3636

37-
function getHostDefinedOptionId(importModuleDynamically, filename) {
37+
function getHostDefinedOptionId(importModuleDynamically, hint) {
3838
if (importModuleDynamically !== undefined) {
3939
// Check that it's either undefined or a function before we pass
4040
// it into the native constructor.
@@ -57,7 +57,7 @@ function getHostDefinedOptionId(importModuleDynamically, filename) {
5757
return vm_dynamic_import_missing_flag;
5858
}
5959

60-
return Symbol(filename);
60+
return Symbol(hint);
6161
}
6262

6363
function registerImportModuleDynamically(referrer, importModuleDynamically) {

lib/vm.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ function createContext(contextObject = {}, options = kEmptyObject) {
218218
origin,
219219
codeGeneration,
220220
microtaskMode,
221+
importModuleDynamically,
221222
} = options;
222223

223224
validateString(name, 'options.name');
@@ -239,7 +240,14 @@ function createContext(contextObject = {}, options = kEmptyObject) {
239240
['afterEvaluate', undefined]);
240241
const microtaskQueue = (microtaskMode === 'afterEvaluate');
241242

242-
makeContext(contextObject, name, origin, strings, wasm, microtaskQueue);
243+
const hostDefinedOptionId =
244+
getHostDefinedOptionId(importModuleDynamically, name);
245+
246+
makeContext(contextObject, name, origin, strings, wasm, microtaskQueue, hostDefinedOptionId);
247+
// Register the context scope callback after the context was initialized.
248+
if (importModuleDynamically !== undefined) {
249+
registerImportModuleDynamically(contextObject, importModuleDynamically);
250+
}
243251
return contextObject;
244252
}
245253

src/module_wrap.cc

+10-12
Original file line numberDiff line numberDiff line change
@@ -564,22 +564,20 @@ static MaybeLocal<Promise> ImportModuleDynamically(
564564

565565
Local<Function> import_callback =
566566
env->host_import_module_dynamically_callback();
567+
Local<Value> id;
567568

568569
Local<FixedArray> options = host_defined_options.As<FixedArray>();
569-
if (options->Length() != HostDefinedOptions::kLength) {
570-
Local<Promise::Resolver> resolver;
571-
if (!Promise::Resolver::New(context).ToLocal(&resolver)) return {};
572-
resolver
573-
->Reject(context,
574-
v8::Exception::TypeError(FIXED_ONE_BYTE_STRING(
575-
context->GetIsolate(), "Invalid host defined options")))
576-
.ToChecked();
577-
return handle_scope.Escape(resolver->GetPromise());
570+
// Get referrer id symbol from the host-defined options.
571+
// If the host-defined options are empty, get the referrer id symbol
572+
// from the realm global object.
573+
if (options->Length() == HostDefinedOptions::kLength) {
574+
id = options->Get(context, HostDefinedOptions::kID).As<Symbol>();
575+
} else {
576+
id = context->Global()
577+
->GetPrivate(context, env->host_defined_option_symbol())
578+
.ToLocalChecked();
578579
}
579580

580-
Local<Symbol> id =
581-
options->Get(context, HostDefinedOptions::kID).As<Symbol>();
582-
583581
Local<Object> attributes =
584582
createImportAttributesContainer(env, isolate, import_attributes);
585583

src/node_contextify.cc

+20-1
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,15 @@ BaseObjectPtr<ContextifyContext> ContextifyContext::New(
288288
.IsNothing()) {
289289
return BaseObjectPtr<ContextifyContext>();
290290
}
291+
292+
if (new_context_global
293+
->SetPrivate(v8_context,
294+
env->host_defined_option_symbol(),
295+
options->host_defined_options_id)
296+
.IsNothing()) {
297+
return BaseObjectPtr<ContextifyContext>();
298+
}
299+
291300
env->AssignToContext(v8_context, nullptr, info);
292301

293302
if (!env->contextify_wrapper_template()
@@ -308,6 +317,13 @@ BaseObjectPtr<ContextifyContext> ContextifyContext::New(
308317
.IsNothing()) {
309318
return BaseObjectPtr<ContextifyContext>();
310319
}
320+
if (sandbox_obj
321+
->SetPrivate(v8_context,
322+
env->host_defined_option_symbol(),
323+
options->host_defined_options_id)
324+
.IsNothing()) {
325+
return BaseObjectPtr<ContextifyContext>();
326+
}
311327

312328
return result;
313329
}
@@ -344,7 +360,7 @@ void ContextifyContext::RegisterExternalReferences(
344360
void ContextifyContext::MakeContext(const FunctionCallbackInfo<Value>& args) {
345361
Environment* env = Environment::GetCurrent(args);
346362

347-
CHECK_EQ(args.Length(), 6);
363+
CHECK_EQ(args.Length(), 7);
348364
CHECK(args[0]->IsObject());
349365
Local<Object> sandbox = args[0].As<Object>();
350366

@@ -375,6 +391,9 @@ void ContextifyContext::MakeContext(const FunctionCallbackInfo<Value>& args) {
375391
MicrotaskQueue::New(env->isolate(), MicrotasksPolicy::kExplicit);
376392
}
377393

394+
CHECK(args[6]->IsSymbol());
395+
options.host_defined_options_id = args[6].As<Symbol>();
396+
378397
TryCatchScope try_catch(env);
379398
BaseObjectPtr<ContextifyContext> context_ptr =
380399
ContextifyContext::New(env, sandbox, &options);

src/node_contextify.h

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ struct ContextOptions {
1818
v8::Local<v8::Boolean> allow_code_gen_strings;
1919
v8::Local<v8::Boolean> allow_code_gen_wasm;
2020
std::unique_ptr<v8::MicrotaskQueue> own_microtask_queue;
21+
v8::Local<v8::Symbol> host_defined_options_id;
2122
};
2223

2324
class ContextifyContext : public BaseObject {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// Flags: --experimental-vm-modules
2+
'use strict';
3+
const common = require('../common');
4+
5+
const assert = require('assert');
6+
const { Script, SourceTextModule, createContext } = require('vm');
7+
8+
async function test() {
9+
const foo = new SourceTextModule('export const a = 1;');
10+
await foo.link(common.mustNotCall());
11+
await foo.evaluate();
12+
13+
const ctx = createContext({}, {
14+
importModuleDynamically: common.mustCall((specifier, wrap) => {
15+
assert.strictEqual(specifier, 'foo');
16+
assert.strictEqual(wrap, ctx);
17+
return foo;
18+
}, 2),
19+
});
20+
{
21+
const s = new Script('Promise.resolve("import(\'foo\')").then(eval)', {
22+
importModuleDynamically: common.mustNotCall(),
23+
});
24+
25+
const result = s.runInContext(ctx);
26+
assert.strictEqual(foo.namespace, await result);
27+
}
28+
29+
{
30+
const m = new SourceTextModule('globalThis.fooResult = Promise.resolve("import(\'foo\')").then(eval)', {
31+
context: ctx,
32+
importModuleDynamically: common.mustNotCall(),
33+
});
34+
await m.link(common.mustNotCall());
35+
await m.evaluate();
36+
assert.strictEqual(foo.namespace, await ctx.fooResult);
37+
delete ctx.fooResult;
38+
}
39+
}
40+
41+
async function testMissing() {
42+
const ctx = createContext({});
43+
{
44+
const s = new Script('Promise.resolve("import(\'foo\')").then(eval)', {
45+
importModuleDynamically: common.mustNotCall(),
46+
});
47+
48+
const result = s.runInContext(ctx);
49+
await assert.rejects(result, {
50+
code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING',
51+
});
52+
}
53+
54+
{
55+
const m = new SourceTextModule('globalThis.fooResult = Promise.resolve("import(\'foo\')").then(eval)', {
56+
context: ctx,
57+
importModuleDynamically: common.mustNotCall(),
58+
});
59+
await m.link(common.mustNotCall());
60+
await m.evaluate();
61+
62+
await assert.rejects(ctx.fooResult, {
63+
code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING',
64+
});
65+
delete ctx.fooResult;
66+
}
67+
}
68+
69+
(async function() {
70+
await test();
71+
await testMissing();
72+
}()).then(common.mustCall());

0 commit comments

Comments
 (0)