Skip to content

Commit 9570832

Browse files
targosverwaestdeepak1556
committed
src: add missing TryCatch
Otherwise re-entering V8 doesn't work as expected after exceptions were thrown. Refs: https://chromium-review.googlesource.com/c/v8/v8/+/5050065 Co-Authored-By: Toon Verwaest <[email protected]> Co-Authored-By: deepak1556 <[email protected]>
1 parent d1ccf72 commit 9570832

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

src/js_stream.cc

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ using v8::Int32;
2020
using v8::Isolate;
2121
using v8::Local;
2222
using v8::Object;
23+
using v8::TryCatch;
2324
using v8::Value;
2425

2526

@@ -169,6 +170,8 @@ void JSStream::ReadBuffer(const FunctionCallbackInfo<Value>& args) {
169170
const char* data = buffer.data();
170171
int len = buffer.length();
171172

173+
TryCatch try_catch(args.GetIsolate());
174+
172175
// Repeatedly ask the stream's owner for memory, copy the data that we
173176
// just read from JS into those buffers and emit them as reads.
174177
while (len != 0) {
@@ -182,6 +185,10 @@ void JSStream::ReadBuffer(const FunctionCallbackInfo<Value>& args) {
182185
len -= static_cast<int>(avail);
183186
wrap->EmitRead(avail, buf);
184187
}
188+
189+
if (try_catch.HasCaught()) {
190+
try_catch.ReThrow();
191+
}
185192
}
186193

187194

src/node_contextify.cc

+6
Original file line numberDiff line numberDiff line change
@@ -475,13 +475,16 @@ bool ContextifyContext::IsStillInitializing(const ContextifyContext* ctx) {
475475
void ContextifyContext::PropertyGetterCallback(
476476
Local<Name> property,
477477
const PropertyCallbackInfo<Value>& args) {
478+
Environment* env = Environment::GetCurrent(args);
478479
ContextifyContext* ctx = ContextifyContext::Get(args);
479480

480481
// Still initializing
481482
if (IsStillInitializing(ctx)) return;
482483

483484
Local<Context> context = ctx->context();
484485
Local<Object> sandbox = ctx->sandbox();
486+
487+
TryCatchScope try_catch(env);
485488
MaybeLocal<Value> maybe_rv =
486489
sandbox->GetRealNamedProperty(context, property);
487490
if (maybe_rv.IsEmpty()) {
@@ -491,6 +494,9 @@ void ContextifyContext::PropertyGetterCallback(
491494

492495
Local<Value> rv;
493496
if (maybe_rv.ToLocal(&rv)) {
497+
if (try_catch.HasCaught() && !try_catch.HasTerminated()) {
498+
try_catch.ReThrow();
499+
}
494500
if (rv == sandbox)
495501
rv = ctx->global_proxy();
496502

src/node_messaging.cc

+4
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,7 @@ Maybe<bool> MessagePort::PostMessage(Environment* env,
916916
const TransferList& transfer_v) {
917917
Isolate* isolate = env->isolate();
918918
Local<Object> obj = object(isolate);
919+
TryCatchScope try_catch(env);
919920

920921
std::shared_ptr<Message> msg = std::make_shared<Message>();
921922

@@ -924,6 +925,9 @@ Maybe<bool> MessagePort::PostMessage(Environment* env,
924925

925926
Maybe<bool> serialization_maybe =
926927
msg->Serialize(env, context, message_v, transfer_v, obj);
928+
if (try_catch.HasCaught() && !try_catch.HasTerminated()) {
929+
try_catch.ReThrow();
930+
}
927931
if (data_ == nullptr) {
928932
return serialization_maybe;
929933
}

test/addons/make-callback-recurse/binding.cc

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ using v8::FunctionCallbackInfo;
88
using v8::Isolate;
99
using v8::Local;
1010
using v8::Object;
11+
using v8::TryCatch;
1112
using v8::Value;
1213

1314
namespace {
@@ -19,8 +20,12 @@ void MakeCallback(const FunctionCallbackInfo<Value>& args) {
1920
Local<Object> recv = args[0].As<Object>();
2021
Local<Function> method = args[1].As<Function>();
2122

23+
TryCatch try_catch(isolate);
2224
node::MakeCallback(isolate, recv, method, 0, nullptr,
2325
node::async_context{0, 0});
26+
if (try_catch.HasCaught()) {
27+
try_catch.ReThrow();
28+
}
2429
}
2530

2631
void Initialize(Local<Object> exports) {

0 commit comments

Comments
 (0)