Skip to content

Commit 965bcb8

Browse files
committed
src: avoid using v8 on Isolate termination
Fix multiple instances of those uncovered while running the tests on debug builds. Fixes: nodejs/node-v8#227
1 parent 9b36982 commit 965bcb8

File tree

3 files changed

+34
-18
lines changed

3 files changed

+34
-18
lines changed

src/env.cc

+18-8
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,17 @@ bool AsyncHooks::pop_async_context(double async_id) {
163163
}
164164

165165
void AsyncHooks::clear_async_id_stack() {
166-
Isolate* isolate = env()->isolate();
167-
HandleScope handle_scope(isolate);
168-
if (!js_execution_async_resources_.IsEmpty()) {
169-
USE(PersistentToLocal::Strong(js_execution_async_resources_)
170-
->Set(env()->context(),
171-
env()->length_string(),
172-
Integer::NewFromUnsigned(isolate, 0)));
166+
if (env()->can_call_into_js()) {
167+
Isolate* isolate = env()->isolate();
168+
HandleScope handle_scope(isolate);
169+
if (!js_execution_async_resources_.IsEmpty()) {
170+
USE(PersistentToLocal::Strong(js_execution_async_resources_)
171+
->Set(env()->context(),
172+
env()->length_string(),
173+
Integer::NewFromUnsigned(isolate, 0)));
174+
}
173175
}
176+
174177
native_execution_async_resources_.clear();
175178
native_execution_async_resources_.shrink_to_fit();
176179

@@ -1046,7 +1049,14 @@ void Environment::RunAndClearNativeImmediates(bool only_refed) {
10461049
TRACE_EVENT0(TRACING_CATEGORY_NODE1(environment),
10471050
"RunAndClearNativeImmediates");
10481051
HandleScope handle_scope(isolate_);
1049-
InternalCallbackScope cb_scope(this, Object::New(isolate_), { 0, 0 });
1052+
// In case the Isolate is no longer accessible just use an empty Local. This
1053+
// is not an issue for InternalCallbackScope as this case is already handled
1054+
// in its constructor but we avoid calls into v8 which can crash the process
1055+
// in debug builds.
1056+
Local<Object> obj = can_call_into_js() ?
1057+
Object::New(isolate_) :
1058+
Local<Object>();
1059+
InternalCallbackScope cb_scope(this, obj, { 0, 0 });
10501060

10511061
size_t ref_count = 0;
10521062

src/node_http2.cc

+14-10
Original file line numberDiff line numberDiff line change
@@ -1120,13 +1120,15 @@ int Http2Session::OnStreamClose(nghttp2_session* handle,
11201120
// It is possible for the stream close to occur before the stream is
11211121
// ever passed on to the javascript side. If that happens, the callback
11221122
// will return false.
1123-
Local<Value> arg = Integer::NewFromUnsigned(isolate, code);
1124-
MaybeLocal<Value> answer =
1125-
stream->MakeCallback(env->http2session_on_stream_close_function(),
1126-
1, &arg);
1127-
if (answer.IsEmpty() || answer.ToLocalChecked()->IsFalse()) {
1128-
// Skip to destroy
1129-
stream->Destroy();
1123+
if (env->can_call_into_js()) {
1124+
Local<Value> arg = Integer::NewFromUnsigned(isolate, code);
1125+
MaybeLocal<Value> answer =
1126+
stream->MakeCallback(env->http2session_on_stream_close_function(),
1127+
1, &arg);
1128+
if (answer.IsEmpty() || answer.ToLocalChecked()->IsFalse()) {
1129+
// Skip to destroy
1130+
stream->Destroy();
1131+
}
11301132
}
11311133
return 0;
11321134
}
@@ -1629,9 +1631,11 @@ void Http2Session::MaybeScheduleWrite() {
16291631

16301632
// Sending data may call arbitrary JS code, so keep track of
16311633
// async context.
1632-
HandleScope handle_scope(env->isolate());
1633-
InternalCallbackScope callback_scope(this);
1634-
SendPendingData();
1634+
if (env->can_call_into_js()) {
1635+
HandleScope handle_scope(env->isolate());
1636+
InternalCallbackScope callback_scope(this);
1637+
SendPendingData();
1638+
}
16351639
});
16361640
}
16371641
}

src/node_platform.cc

+2
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,8 @@ int NodePlatform::NumberOfWorkerThreads() {
406406
}
407407

408408
void PerIsolatePlatformData::RunForegroundTask(std::unique_ptr<Task> task) {
409+
if (isolate_->IsExecutionTerminating())
410+
return task->Run();
409411
DebugSealHandleScope scope(isolate_);
410412
Environment* env = Environment::GetCurrent(isolate_);
411413
if (env != nullptr) {

0 commit comments

Comments
 (0)