GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: api/environment.cc Lines: 341 391 87.2 %
Date: 2022-08-17 04:19:55 Branches: 111 192 57.8 %

Line Branch Exec Source
1
#include "node.h"
2
#include "node_builtins.h"
3
#include "node_context_data.h"
4
#include "node_errors.h"
5
#include "node_internals.h"
6
#include "node_options-inl.h"
7
#include "node_platform.h"
8
#include "node_shadow_realm.h"
9
#include "node_v8_platform-inl.h"
10
#include "node_wasm_web_api.h"
11
#include "uv.h"
12
13
#if HAVE_INSPECTOR
14
#include "inspector/worker_inspector.h"  // ParentInspectorHandle
15
#endif
16
17
namespace node {
18
using errors::TryCatchScope;
19
using v8::Array;
20
using v8::Context;
21
using v8::EscapableHandleScope;
22
using v8::Function;
23
using v8::FunctionCallbackInfo;
24
using v8::HandleScope;
25
using v8::Isolate;
26
using v8::Just;
27
using v8::Local;
28
using v8::Maybe;
29
using v8::MaybeLocal;
30
using v8::Nothing;
31
using v8::Null;
32
using v8::Object;
33
using v8::ObjectTemplate;
34
using v8::Private;
35
using v8::PropertyDescriptor;
36
using v8::SealHandleScope;
37
using v8::String;
38
using v8::Value;
39
40
377
bool AllowWasmCodeGenerationCallback(Local<Context> context,
41
                                     Local<String>) {
42
  Local<Value> wasm_code_gen =
43
754
      context->GetEmbedderData(ContextEmbedderIndex::kAllowWasmCodeGeneration);
44

1131
  return wasm_code_gen->IsUndefined() || wasm_code_gen->IsTrue();
45
}
46
47
33
bool ShouldAbortOnUncaughtException(Isolate* isolate) {
48
33
  DebugSealHandleScope scope(isolate);
49
33
  Environment* env = Environment::GetCurrent(isolate);
50
33
  return env != nullptr &&
51

68
         (env->is_main_thread() || !env->is_stopping()) &&
52
63
         env->abort_on_uncaught_exception() &&
53
96
         env->should_abort_on_uncaught_toggle()[0] &&
54
34
         !env->inside_should_not_abort_on_uncaught_scope();
55
}
56
57
67545
MaybeLocal<Value> PrepareStackTraceCallback(Local<Context> context,
58
                                            Local<Value> exception,
59
                                            Local<Array> trace) {
60
67545
  Environment* env = Environment::GetCurrent(context);
61
67545
  if (env == nullptr) {
62
    return exception->ToString(context).FromMaybe(Local<Value>());
63
  }
64
67545
  Local<Function> prepare = env->prepare_stack_trace_callback();
65
67545
  if (prepare.IsEmpty()) {
66
    return exception->ToString(context).FromMaybe(Local<Value>());
67
  }
68
  Local<Value> args[] = {
69
      context->Global(),
70
      exception,
71
      trace,
72
135090
  };
73
  // This TryCatch + Rethrow is required by V8 due to details around exception
74
  // handling there. For C++ callbacks, V8 expects a scheduled exception (which
75
  // is what ReThrow gives us). Just returning the empty MaybeLocal would leave
76
  // us with a pending exception.
77
67545
  TryCatchScope try_catch(env);
78
  MaybeLocal<Value> result = prepare->Call(
79
135090
      context, Undefined(env->isolate()), arraysize(args), args);
80

67545
  if (try_catch.HasCaught() && !try_catch.HasTerminated()) {
81
2
    try_catch.ReThrow();
82
  }
83
67545
  return result;
84
}
85
86
370799
void* NodeArrayBufferAllocator::Allocate(size_t size) {
87
  void* ret;
88

370799
  if (zero_fill_field_ || per_process::cli_options->zero_fill_all_buffers)
89
61009
    ret = allocator_->Allocate(size);
90
  else
91
309790
    ret = allocator_->AllocateUninitialized(size);
92
370799
  if (LIKELY(ret != nullptr))
93
370799
    total_mem_usage_.fetch_add(size, std::memory_order_relaxed);
94
370799
  return ret;
95
}
96
97
165997
void* NodeArrayBufferAllocator::AllocateUninitialized(size_t size) {
98
165997
  void* ret = allocator_->AllocateUninitialized(size);
99
165997
  if (LIKELY(ret != nullptr))
100
165997
    total_mem_usage_.fetch_add(size, std::memory_order_relaxed);
101
165997
  return ret;
102
}
103
104
62761
void* NodeArrayBufferAllocator::Reallocate(
105
    void* data, size_t old_size, size_t size) {
106
62761
  void* ret = allocator_->Reallocate(data, old_size, size);
107

62761
  if (LIKELY(ret != nullptr) || UNLIKELY(size == 0))
108
62761
    total_mem_usage_.fetch_add(size - old_size, std::memory_order_relaxed);
109
62761
  return ret;
110
}
111
112
517422
void NodeArrayBufferAllocator::Free(void* data, size_t size) {
113
517422
  total_mem_usage_.fetch_sub(size, std::memory_order_relaxed);
114
517422
  allocator_->Free(data, size);
115
517422
}
116
117
12
DebuggingArrayBufferAllocator::~DebuggingArrayBufferAllocator() {
118
6
  CHECK(allocations_.empty());
119
12
}
120
121
80
void* DebuggingArrayBufferAllocator::Allocate(size_t size) {
122
80
  Mutex::ScopedLock lock(mutex_);
123
80
  void* data = NodeArrayBufferAllocator::Allocate(size);
124
80
  RegisterPointerInternal(data, size);
125
80
  return data;
126
}
127
128
42
void* DebuggingArrayBufferAllocator::AllocateUninitialized(size_t size) {
129
42
  Mutex::ScopedLock lock(mutex_);
130
42
  void* data = NodeArrayBufferAllocator::AllocateUninitialized(size);
131
42
  RegisterPointerInternal(data, size);
132
42
  return data;
133
}
134
135
122
void DebuggingArrayBufferAllocator::Free(void* data, size_t size) {
136
244
  Mutex::ScopedLock lock(mutex_);
137
122
  UnregisterPointerInternal(data, size);
138
122
  NodeArrayBufferAllocator::Free(data, size);
139
122
}
140
141
void* DebuggingArrayBufferAllocator::Reallocate(void* data,
142
                                                size_t old_size,
143
                                                size_t size) {
144
  Mutex::ScopedLock lock(mutex_);
145
  void* ret = NodeArrayBufferAllocator::Reallocate(data, old_size, size);
146
  if (ret == nullptr) {
147
    if (size == 0) {  // i.e. equivalent to free().
148
      // suppress coverity warning as data is used as key versus as pointer
149
      // in UnregisterPointerInternal
150
      // coverity[pass_freed_arg]
151
      UnregisterPointerInternal(data, old_size);
152
    }
153
    return nullptr;
154
  }
155
156
  if (data != nullptr) {
157
    auto it = allocations_.find(data);
158
    CHECK_NE(it, allocations_.end());
159
    allocations_.erase(it);
160
  }
161
162
  RegisterPointerInternal(ret, size);
163
  return ret;
164
}
165
166
void DebuggingArrayBufferAllocator::RegisterPointer(void* data, size_t size) {
167
  Mutex::ScopedLock lock(mutex_);
168
  NodeArrayBufferAllocator::RegisterPointer(data, size);
169
  RegisterPointerInternal(data, size);
170
}
171
172
void DebuggingArrayBufferAllocator::UnregisterPointer(void* data, size_t size) {
173
  Mutex::ScopedLock lock(mutex_);
174
  NodeArrayBufferAllocator::UnregisterPointer(data, size);
175
  UnregisterPointerInternal(data, size);
176
}
177
178
122
void DebuggingArrayBufferAllocator::UnregisterPointerInternal(void* data,
179
                                                              size_t size) {
180
122
  if (data == nullptr) return;
181
122
  auto it = allocations_.find(data);
182
122
  CHECK_NE(it, allocations_.end());
183
122
  if (size > 0) {
184
    // We allow allocations with size 1 for 0-length buffers to avoid having
185
    // to deal with nullptr values.
186
122
    CHECK_EQ(it->second, size);
187
  }
188
122
  allocations_.erase(it);
189
}
190
191
122
void DebuggingArrayBufferAllocator::RegisterPointerInternal(void* data,
192
                                                            size_t size) {
193
122
  if (data == nullptr) return;
194
122
  CHECK_EQ(allocations_.count(data), 0);
195
122
  allocations_[data] = size;
196
}
197
198
6130
std::unique_ptr<ArrayBufferAllocator> ArrayBufferAllocator::Create(bool debug) {
199

6130
  if (debug || per_process::cli_options->debug_arraybuffer_allocations)
200
3
    return std::make_unique<DebuggingArrayBufferAllocator>();
201
  else
202
6127
    return std::make_unique<NodeArrayBufferAllocator>();
203
}
204
205
57
ArrayBufferAllocator* CreateArrayBufferAllocator() {
206
57
  return ArrayBufferAllocator::Create().release();
207
}
208
209
57
void FreeArrayBufferAllocator(ArrayBufferAllocator* allocator) {
210
57
  delete allocator;
211
57
}
212
213
6128
void SetIsolateCreateParamsForNode(Isolate::CreateParams* params) {
214
6128
  const uint64_t constrained_memory = uv_get_constrained_memory();
215
12254
  const uint64_t total_memory = constrained_memory > 0 ?
216
6126
      std::min(uv_get_total_memory(), constrained_memory) :
217
2
      uv_get_total_memory();
218
6128
  if (total_memory > 0) {
219
    // V8 defaults to 700MB or 1.4GB on 32 and 64 bit platforms respectively.
220
    // This default is based on browser use-cases. Tell V8 to configure the
221
    // heap based on the actual physical memory.
222
6128
    params->constraints.ConfigureDefaults(total_memory, 0);
223
  }
224
6128
  params->embedder_wrapper_object_index = BaseObject::InternalFields::kSlot;
225
6128
  params->embedder_wrapper_type_index = std::numeric_limits<int>::max();
226
6128
}
227
228
6128
void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) {
229
6128
  if (s.flags & MESSAGE_LISTENER_WITH_ERROR_LEVEL)
230
6128
    isolate->AddMessageListenerWithErrorLevel(
231
            errors::PerIsolateMessageListener,
232
            Isolate::MessageErrorLevel::kMessageError |
233
                Isolate::MessageErrorLevel::kMessageWarning);
234
235
6128
  auto* abort_callback = s.should_abort_on_uncaught_exception_callback ?
236
      s.should_abort_on_uncaught_exception_callback :
237
      ShouldAbortOnUncaughtException;
238
6128
  isolate->SetAbortOnUncaughtExceptionCallback(abort_callback);
239
240
6128
  auto* fatal_error_cb = s.fatal_error_callback ?
241
      s.fatal_error_callback : OnFatalError;
242
6128
  isolate->SetFatalErrorHandler(fatal_error_cb);
243
244
6128
  if ((s.flags & SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK) == 0) {
245
6128
    auto* prepare_stack_trace_cb = s.prepare_stack_trace_callback ?
246
        s.prepare_stack_trace_callback : PrepareStackTraceCallback;
247
6128
    isolate->SetPrepareStackTraceCallback(prepare_stack_trace_cb);
248
  }
249
6128
}
250
251
6135
void SetIsolateMiscHandlers(v8::Isolate* isolate, const IsolateSettings& s) {
252
6135
  isolate->SetMicrotasksPolicy(s.policy);
253
254
6135
  auto* allow_wasm_codegen_cb = s.allow_wasm_code_generation_callback ?
255
    s.allow_wasm_code_generation_callback : AllowWasmCodeGenerationCallback;
256
6135
  isolate->SetAllowWasmCodeGenerationCallback(allow_wasm_codegen_cb);
257
6135
  isolate->SetModifyCodeGenerationFromStringsCallback(
258
      ModifyCodeGenerationFromStrings);
259
260
12270
  Mutex::ScopedLock lock(node::per_process::cli_options_mutex);
261
6135
  if (per_process::cli_options->get_per_isolate_options()
262
6135
          ->get_per_env_options()
263
6135
          ->experimental_fetch) {
264
6134
    isolate->SetWasmStreamingCallback(wasm_web_api::StartStreamingCompilation);
265
  }
266
267
6135
  if (per_process::cli_options->get_per_isolate_options()
268
6135
          ->experimental_shadow_realm) {
269
1
    isolate->SetHostCreateShadowRealmContextCallback(
270
        shadow_realm::HostCreateShadowRealmContextCallback);
271
  }
272
273
6135
  if ((s.flags & SHOULD_NOT_SET_PROMISE_REJECTION_CALLBACK) == 0) {
274
6135
    auto* promise_reject_cb = s.promise_reject_callback ?
275
      s.promise_reject_callback : PromiseRejectCallback;
276
6135
    isolate->SetPromiseRejectCallback(promise_reject_cb);
277
  }
278
279
6135
  if (s.flags & DETAILED_SOURCE_POSITIONS_FOR_PROFILING)
280
6135
    v8::CpuProfiler::UseDetailedSourcePositionsForProfiling(isolate);
281
6135
}
282
283
788
void SetIsolateUpForNode(v8::Isolate* isolate,
284
                         const IsolateSettings& settings) {
285
788
  SetIsolateErrorHandlers(isolate, settings);
286
788
  SetIsolateMiscHandlers(isolate, settings);
287
788
}
288
289
788
void SetIsolateUpForNode(v8::Isolate* isolate) {
290
788
  IsolateSettings settings;
291
788
  SetIsolateUpForNode(isolate, settings);
292
788
}
293
294
// TODO(joyeecheung): we may want to expose this, but then we need to be
295
// careful about what we override in the params.
296
63
Isolate* NewIsolate(Isolate::CreateParams* params,
297
                    uv_loop_t* event_loop,
298
                    MultiIsolatePlatform* platform) {
299
63
  Isolate* isolate = Isolate::Allocate();
300
63
  if (isolate == nullptr) return nullptr;
301
302
  // Register the isolate on the platform before the isolate gets initialized,
303
  // so that the isolate can access the platform during initialization.
304
63
  platform->RegisterIsolate(isolate, event_loop);
305
306
63
  SetIsolateCreateParamsForNode(params);
307
63
  Isolate::Initialize(isolate, *params);
308
63
  SetIsolateUpForNode(isolate);
309
310
63
  return isolate;
311
}
312
313
55
Isolate* NewIsolate(ArrayBufferAllocator* allocator,
314
                    uv_loop_t* event_loop,
315
                    MultiIsolatePlatform* platform) {
316
110
  Isolate::CreateParams params;
317
55
  if (allocator != nullptr) params.array_buffer_allocator = allocator;
318
55
  return NewIsolate(&params, event_loop, platform);
319
}
320
321
8
Isolate* NewIsolate(std::shared_ptr<ArrayBufferAllocator> allocator,
322
                    uv_loop_t* event_loop,
323
                    MultiIsolatePlatform* platform) {
324
16
  Isolate::CreateParams params;
325
8
  if (allocator) params.array_buffer_allocator_shared = allocator;
326
8
  return NewIsolate(&params, event_loop, platform);
327
}
328
329
773
IsolateData* CreateIsolateData(Isolate* isolate,
330
                               uv_loop_t* loop,
331
                               MultiIsolatePlatform* platform,
332
                               ArrayBufferAllocator* allocator) {
333
773
  return new IsolateData(isolate, loop, platform, allocator);
334
}
335
336
771
void FreeIsolateData(IsolateData* isolate_data) {
337
771
  delete isolate_data;
338
771
}
339
340
1914
InspectorParentHandle::~InspectorParentHandle() {}
341
342
// Hide the internal handle class from the public API.
343
#if HAVE_INSPECTOR
344
struct InspectorParentHandleImpl : public InspectorParentHandle {
345
  std::unique_ptr<inspector::ParentInspectorHandle> impl;
346
347
957
  explicit InspectorParentHandleImpl(
348
      std::unique_ptr<inspector::ParentInspectorHandle>&& impl)
349
957
    : impl(std::move(impl)) {}
350
};
351
#endif
352
353
763
Environment* CreateEnvironment(
354
    IsolateData* isolate_data,
355
    Local<Context> context,
356
    const std::vector<std::string>& args,
357
    const std::vector<std::string>& exec_args,
358
    EnvironmentFlags::Flags flags,
359
    ThreadId thread_id,
360
    std::unique_ptr<InspectorParentHandle> inspector_parent_handle) {
361
763
  Isolate* isolate = context->GetIsolate();
362
1526
  HandleScope handle_scope(isolate);
363
763
  Context::Scope context_scope(context);
364
  // TODO(addaleax): This is a much better place for parsing per-Environment
365
  // options than the global parse call.
366
  Environment* env = new Environment(
367
763
      isolate_data, context, args, exec_args, nullptr, flags, thread_id);
368
#if HAVE_INSPECTOR
369
763
  if (env->should_create_inspector()) {
370
763
    if (inspector_parent_handle) {
371
716
      env->InitializeInspector(
372
          std::move(static_cast<InspectorParentHandleImpl*>(
373
716
              inspector_parent_handle.get())->impl));
374
    } else {
375
47
      env->InitializeInspector({});
376
    }
377
  }
378
#endif
379
380
1526
  if (env->RunBootstrapping().IsEmpty()) {
381
    FreeEnvironment(env);
382
    return nullptr;
383
  }
384
385
763
  return env;
386
}
387
388
5568
void FreeEnvironment(Environment* env) {
389
5568
  Isolate* isolate = env->isolate();
390
  Isolate::DisallowJavascriptExecutionScope disallow_js(isolate,
391
11136
      Isolate::DisallowJavascriptExecutionScope::THROW_ON_FAILURE);
392
  {
393
11136
    HandleScope handle_scope(isolate);  // For env->context().
394
5568
    Context::Scope context_scope(env->context());
395
11136
    SealHandleScope seal_handle_scope(isolate);
396
397
5568
    env->set_stopping(true);
398
5568
    env->stop_sub_worker_contexts();
399
5568
    env->RunCleanup();
400
5568
    RunAtExit(env);
401
  }
402
403
  // This call needs to be made while the `Environment` is still alive
404
  // because we assume that it is available for async tracking in the
405
  // NodePlatform implementation.
406
5568
  MultiIsolatePlatform* platform = env->isolate_data()->platform();
407
5568
  if (platform != nullptr)
408
5568
    platform->DrainTasks(isolate);
409
410
5568
  delete env;
411
5568
}
412
413
957
NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
414
    Environment* env,
415
    ThreadId thread_id,
416
    const char* url) {
417
957
  CHECK_NOT_NULL(env);
418
957
  CHECK_NE(thread_id.id, static_cast<uint64_t>(-1));
419
#if HAVE_INSPECTOR
420
1914
  return std::make_unique<InspectorParentHandleImpl>(
421
2871
      env->inspector_agent()->GetParentHandle(thread_id.id, url));
422
#else
423
  return {};
424
#endif
425
}
426
427
6076
MaybeLocal<Value> LoadEnvironment(
428
    Environment* env,
429
    StartExecutionCallback cb) {
430
6076
  env->InitializeLibuv();
431
6076
  env->InitializeDiagnostics();
432
433
6076
  return StartExecution(env, cb);
434
}
435
436
17
MaybeLocal<Value> LoadEnvironment(
437
    Environment* env,
438
    const char* main_script_source_utf8) {
439
17
  CHECK_NOT_NULL(main_script_source_utf8);
440
17
  Isolate* isolate = env->isolate();
441
  return LoadEnvironment(
442
      env,
443
17
      [&](const StartExecutionCallbackInfo& info) -> MaybeLocal<Value> {
444
        // This is a slightly hacky way to convert UTF-8 to UTF-16.
445
        Local<String> str =
446
34
            String::NewFromUtf8(isolate,
447
17
                                main_script_source_utf8).ToLocalChecked();
448
32
        auto main_utf16 = std::make_unique<String::Value>(isolate, str);
449
450
        // TODO(addaleax): Avoid having a global table for all scripts.
451
32
        std::string name = "embedder_main_" + std::to_string(env->thread_id());
452
17
        builtins::BuiltinLoader::Add(
453
17
            name.c_str(), UnionBytes(**main_utf16, main_utf16->length()));
454
17
        env->set_main_utf16(std::move(main_utf16));
455
        // Arguments must match the parameters specified in
456
        // BuiltinLoader::LookupAndCompile().
457
        std::vector<Local<Value>> args = {env->process_object(),
458
66
                                          env->builtin_module_require()};
459
17
        return ExecuteBootstrapper(env, name.c_str(), &args);
460
17
      });
461
}
462
463
5
Environment* GetCurrentEnvironment(Local<Context> context) {
464
5
  return Environment::GetCurrent(context);
465
}
466
467
1
IsolateData* GetEnvironmentIsolateData(Environment* env) {
468
1
  return env->isolate_data();
469
}
470
471
1
ArrayBufferAllocator* GetArrayBufferAllocator(IsolateData* isolate_data) {
472
1
  return isolate_data->node_allocator();
473
}
474
475
5756
MultiIsolatePlatform* GetMultiIsolatePlatform(Environment* env) {
476
5756
  return GetMultiIsolatePlatform(env->isolate_data());
477
}
478
479
5756
MultiIsolatePlatform* GetMultiIsolatePlatform(IsolateData* env) {
480
5756
  return env->platform();
481
}
482
483
MultiIsolatePlatform* CreatePlatform(
484
    int thread_pool_size,
485
    node::tracing::TracingController* tracing_controller) {
486
  return CreatePlatform(
487
      thread_pool_size,
488
      static_cast<v8::TracingController*>(tracing_controller));
489
}
490
491
MultiIsolatePlatform* CreatePlatform(
492
    int thread_pool_size,
493
    v8::TracingController* tracing_controller) {
494
  return MultiIsolatePlatform::Create(thread_pool_size,
495
                                      tracing_controller)
496
      .release();
497
}
498
499
void FreePlatform(MultiIsolatePlatform* platform) {
500
  delete platform;
501
}
502
503
7
std::unique_ptr<MultiIsolatePlatform> MultiIsolatePlatform::Create(
504
    int thread_pool_size,
505
    v8::TracingController* tracing_controller,
506
    v8::PageAllocator* page_allocator) {
507
14
  return std::make_unique<NodePlatform>(thread_pool_size,
508
                                        tracing_controller,
509
7
                                        page_allocator);
510
}
511
512
36376
MaybeLocal<Object> GetPerContextExports(Local<Context> context) {
513
36376
  Isolate* isolate = context->GetIsolate();
514
36376
  EscapableHandleScope handle_scope(isolate);
515
516
36376
  Local<Object> global = context->Global();
517
  Local<Private> key = Private::ForApi(isolate,
518
36376
      FIXED_ONE_BYTE_STRING(isolate, "node:per_context_binding_exports"));
519
520
  Local<Value> existing_value;
521
72752
  if (!global->GetPrivate(context, key).ToLocal(&existing_value))
522
    return MaybeLocal<Object>();
523
36376
  if (existing_value->IsObject())
524
36306
    return handle_scope.Escape(existing_value.As<Object>());
525
526
70
  Local<Object> exports = Object::New(isolate);
527
280
  if (context->Global()->SetPrivate(context, key, exports).IsNothing() ||
528

210
      InitializePrimordials(context).IsNothing())
529
    return MaybeLocal<Object>();
530
70
  return handle_scope.Escape(exports);
531
}
532
533
// Any initialization logic should be performed in
534
// InitializeContext, because embedders don't necessarily
535
// call NewContext and so they will experience breakages.
536
64
Local<Context> NewContext(Isolate* isolate,
537
                          Local<ObjectTemplate> object_template) {
538
128
  auto context = Context::New(isolate, nullptr, object_template);
539
64
  if (context.IsEmpty()) return context;
540
541
128
  if (InitializeContext(context).IsNothing()) {
542
    return Local<Context>();
543
  }
544
545
64
  return context;
546
}
547
548
8
void ProtoThrower(const FunctionCallbackInfo<Value>& info) {
549
8
  THROW_ERR_PROTO_ACCESS(info.GetIsolate());
550
8
}
551
552
// This runs at runtime, regardless of whether the context
553
// is created from a snapshot.
554
6736
Maybe<bool> InitializeContextRuntime(Local<Context> context) {
555
6736
  Isolate* isolate = context->GetIsolate();
556
13472
  HandleScope handle_scope(isolate);
557
558
  // Delete `Intl.v8BreakIterator`
559
  // https://github.com/nodejs/node/issues/14909
560
  {
561
    Local<String> intl_string =
562
6736
      FIXED_ONE_BYTE_STRING(isolate, "Intl");
563
    Local<String> break_iter_string =
564
6736
      FIXED_ONE_BYTE_STRING(isolate, "v8BreakIterator");
565
566
    Local<Value> intl_v;
567
6736
    if (!context->Global()
568
6736
        ->Get(context, intl_string)
569
6736
        .ToLocal(&intl_v)) {
570
      return Nothing<bool>();
571
    }
572
573
13472
    if (intl_v->IsObject() &&
574
6736
        intl_v.As<Object>()
575
13472
          ->Delete(context, break_iter_string)
576
6736
          .IsNothing()) {
577
      return Nothing<bool>();
578
    }
579
  }
580
581
  // Delete `Atomics.wake`
582
  // https://github.com/nodejs/node/issues/21219
583
  {
584
    Local<String> atomics_string =
585
6736
      FIXED_ONE_BYTE_STRING(isolate, "Atomics");
586
    Local<String> wake_string =
587
6736
      FIXED_ONE_BYTE_STRING(isolate, "wake");
588
589
    Local<Value> atomics_v;
590
6736
    if (!context->Global()
591
6736
        ->Get(context, atomics_string)
592
6736
        .ToLocal(&atomics_v)) {
593
      return Nothing<bool>();
594
    }
595
596
13458
    if (atomics_v->IsObject() &&
597
6722
        atomics_v.As<Object>()
598
13458
          ->Delete(context, wake_string)
599
6722
          .IsNothing()) {
600
      return Nothing<bool>();
601
    }
602
  }
603
604
  // Remove __proto__
605
  // https://github.com/nodejs/node/issues/31951
606
  Local<Object> prototype;
607
  {
608
    Local<String> object_string =
609
6736
      FIXED_ONE_BYTE_STRING(isolate, "Object");
610
    Local<String> prototype_string =
611
6736
      FIXED_ONE_BYTE_STRING(isolate, "prototype");
612
613
    Local<Value> object_v;
614
6736
    if (!context->Global()
615
6736
        ->Get(context, object_string)
616
6736
        .ToLocal(&object_v)) {
617
      return Nothing<bool>();
618
    }
619
620
    Local<Value> prototype_v;
621
6736
    if (!object_v.As<Object>()
622
6736
        ->Get(context, prototype_string)
623
6736
        .ToLocal(&prototype_v)) {
624
      return Nothing<bool>();
625
    }
626
627
6736
    prototype = prototype_v.As<Object>();
628
  }
629
630
  Local<String> proto_string =
631
6736
    FIXED_ONE_BYTE_STRING(isolate, "__proto__");
632
633
6736
  if (per_process::cli_options->disable_proto == "delete") {
634
4
    if (prototype
635
4
        ->Delete(context, proto_string)
636
4
        .IsNothing()) {
637
      return Nothing<bool>();
638
    }
639
6732
  } else if (per_process::cli_options->disable_proto == "throw") {
640
    Local<Value> thrower;
641
4
    if (!Function::New(context, ProtoThrower)
642
4
        .ToLocal(&thrower)) {
643
      return Nothing<bool>();
644
    }
645
646
4
    PropertyDescriptor descriptor(thrower, thrower);
647
4
    descriptor.set_enumerable(false);
648
4
    descriptor.set_configurable(true);
649
4
    if (prototype
650
4
        ->DefineProperty(context, proto_string, descriptor)
651
4
        .IsNothing()) {
652
      return Nothing<bool>();
653
    }
654
6728
  } else if (per_process::cli_options->disable_proto != "") {
655
    // Validated in ProcessGlobalArgs
656
    FatalError("InitializeContextRuntime()",
657
               "invalid --disable-proto mode");
658
  }
659
660
6736
  return Just(true);
661
}
662
663
65
Maybe<bool> InitializeContextForSnapshot(Local<Context> context) {
664
65
  Isolate* isolate = context->GetIsolate();
665
130
  HandleScope handle_scope(isolate);
666
667
65
  context->AllowCodeGenerationFromStrings(false);
668
130
  context->SetEmbedderData(
669
      ContextEmbedderIndex::kAllowCodeGenerationFromStrings, True(isolate));
670
130
  context->SetEmbedderData(ContextEmbedderIndex::kAllowWasmCodeGeneration,
671
                           True(isolate));
672
673
65
  return InitializePrimordials(context);
674
}
675
676
135
Maybe<bool> InitializePrimordials(Local<Context> context) {
677
  // Run per-context JS files.
678
135
  Isolate* isolate = context->GetIsolate();
679
135
  Context::Scope context_scope(context);
680
  Local<Object> exports;
681
682
  Local<String> primordials_string =
683
135
      FIXED_ONE_BYTE_STRING(isolate, "primordials");
684
685
  // Create primordials first and make it available to per-context scripts.
686
135
  Local<Object> primordials = Object::New(isolate);
687
270
  if (primordials->SetPrototype(context, Null(isolate)).IsNothing() ||
688

405
      !GetPerContextExports(context).ToLocal(&exports) ||
689

405
      exports->Set(context, primordials_string, primordials).IsNothing()) {
690
    return Nothing<bool>();
691
  }
692
693
  static const char* context_files[] = {"internal/per_context/primordials",
694
                                        "internal/per_context/domexception",
695
                                        "internal/per_context/messageport",
696
                                        nullptr};
697
698
540
  for (const char** module = context_files; *module != nullptr; module++) {
699
    // Arguments must match the parameters specified in
700
    // BuiltinLoader::LookupAndCompile().
701
810
    Local<Value> arguments[] = {context->Global(), exports, primordials};
702
    MaybeLocal<Function> maybe_fn =
703
405
        builtins::BuiltinLoader::LookupAndCompile(context, *module, nullptr);
704
    Local<Function> fn;
705
405
    if (!maybe_fn.ToLocal(&fn)) {
706
      return Nothing<bool>();
707
    }
708
    MaybeLocal<Value> result =
709
810
        fn->Call(context, Undefined(isolate), arraysize(arguments), arguments);
710
    // Execution failed during context creation.
711
405
    if (result.IsEmpty()) {
712
      return Nothing<bool>();
713
    }
714
  }
715
716
135
  return Just(true);
717
}
718
719
65
Maybe<bool> InitializeContext(Local<Context> context) {
720
130
  if (InitializeContextForSnapshot(context).IsNothing()) {
721
    return Nothing<bool>();
722
  }
723
724
65
  return InitializeContextRuntime(context);
725
}
726
727
10
uv_loop_t* GetCurrentEventLoop(Isolate* isolate) {
728
20
  HandleScope handle_scope(isolate);
729
10
  Local<Context> context = isolate->GetCurrentContext();
730
10
  if (context.IsEmpty()) return nullptr;
731
10
  Environment* env = Environment::GetCurrent(context);
732
10
  if (env == nullptr) return nullptr;
733
10
  return env->event_loop();
734
}
735
736
9
void AddLinkedBinding(Environment* env, const node_module& mod) {
737
9
  CHECK_NOT_NULL(env);
738
18
  Mutex::ScopedLock lock(env->extra_linked_bindings_mutex());
739
740
9
  node_module* prev_tail = env->extra_linked_bindings_tail();
741
9
  env->extra_linked_bindings()->push_back(mod);
742
9
  if (prev_tail != nullptr)
743
5
    prev_tail->nm_link = &env->extra_linked_bindings()->back();
744
9
}
745
746
3
void AddLinkedBinding(Environment* env, const napi_module& mod) {
747
3
  AddLinkedBinding(env, napi_module_to_node_module(&mod));
748
3
}
749
750
6
void AddLinkedBinding(Environment* env,
751
                      const char* name,
752
                      addon_context_register_func fn,
753
                      void* priv) {
754
6
  node_module mod = {
755
    NODE_MODULE_VERSION,
756
    NM_F_LINKED,
757
    nullptr,  // nm_dso_handle
758
    nullptr,  // nm_filename
759
    nullptr,  // nm_register_func
760
    fn,
761
    name,
762
    priv,
763
    nullptr   // nm_link
764
6
  };
765
6
  AddLinkedBinding(env, mod);
766
6
}
767
768
static std::atomic<uint64_t> next_thread_id{0};
769
770
6351
ThreadId AllocateEnvironmentThreadId() {
771
6351
  return ThreadId { next_thread_id++ };
772
}
773
774
537
void DefaultProcessExitHandler(Environment* env, int exit_code) {
775
537
  env->set_can_call_into_js(false);
776
537
  env->stop_sub_worker_contexts();
777
537
  DisposePlatform();
778
537
  uv_library_shutdown();
779
537
  exit(exit_code);
780
}
781
782
783
716
void SetProcessExitHandler(Environment* env,
784
                           std::function<void(Environment*, int)>&& handler) {
785
716
  env->set_process_exit_handler(std::move(handler));
786
716
}
787
788
}  // namespace node