Skip to content

Commit b0a3a44

Browse files
Gabriel Schulhoftargos
Gabriel Schulhof
authored andcommittedApr 2, 2018
n-api: ensure in-module exceptions are propagated
Whenever we call into an addon, whether it is for a callback, for module init, or for async work-related reasons, we should make sure that * the last error is cleared, * the scopes before the call are the same as after, and * if an exception was thrown and captured inside the module, then it is re-thrown after the call. Therefore we should call into the module in a unified fashion. This change introduces the macro NAPI_CALL_INTO_MODULE() which should be used whenever invoking a callback provided by the module. Fixes: #19437 PR-URL: #19537 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 7555dee commit b0a3a44

File tree

3 files changed

+107
-43
lines changed

3 files changed

+107
-43
lines changed
 

‎src/node_api.cc

+41-37
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,23 @@ struct napi_env__ {
167167
(out) = v8::type::New((buffer), (byte_offset), (length)); \
168168
} while (0)
169169

170+
#define NAPI_CALL_INTO_MODULE(env, call, handle_exception) \
171+
do { \
172+
int open_handle_scopes = (env)->open_handle_scopes; \
173+
int open_callback_scopes = (env)->open_callback_scopes; \
174+
napi_clear_last_error((env)); \
175+
call; \
176+
CHECK_EQ((env)->open_handle_scopes, open_handle_scopes); \
177+
CHECK_EQ((env)->open_callback_scopes, open_callback_scopes); \
178+
if (!(env)->last_exception.IsEmpty()) { \
179+
handle_exception( \
180+
v8::Local<v8::Value>::New((env)->isolate, (env)->last_exception)); \
181+
(env)->last_exception.Reset(); \
182+
} \
183+
} while (0)
184+
185+
#define NAPI_CALL_INTO_MODULE_THROW(env, call) \
186+
NAPI_CALL_INTO_MODULE((env), call, (env)->isolate->ThrowException)
170187

171188
namespace {
172189
namespace v8impl {
@@ -346,10 +363,11 @@ class Finalizer {
346363
static void FinalizeBufferCallback(char* data, void* hint) {
347364
Finalizer* finalizer = static_cast<Finalizer*>(hint);
348365
if (finalizer->_finalize_callback != nullptr) {
349-
finalizer->_finalize_callback(
350-
finalizer->_env,
351-
data,
352-
finalizer->_finalize_hint);
366+
NAPI_CALL_INTO_MODULE_THROW(finalizer->_env,
367+
finalizer->_finalize_callback(
368+
finalizer->_env,
369+
data,
370+
finalizer->_finalize_hint));
353371
}
354372

355373
Delete(finalizer);
@@ -451,10 +469,11 @@ class Reference : private Finalizer {
451469
bool delete_self = reference->_delete_self;
452470

453471
if (reference->_finalize_callback != nullptr) {
454-
reference->_finalize_callback(
455-
reference->_env,
456-
reference->_finalize_data,
457-
reference->_finalize_hint);
472+
NAPI_CALL_INTO_MODULE_THROW(reference->_env,
473+
reference->_finalize_callback(
474+
reference->_env,
475+
reference->_finalize_data,
476+
reference->_finalize_hint));
458477
}
459478

460479
if (delete_self) {
@@ -539,32 +558,17 @@ class CallbackWrapperBase : public CallbackWrapper {
539558
napi_callback cb = reinterpret_cast<napi_callback>(
540559
v8::Local<v8::External>::Cast(
541560
_cbdata->GetInternalField(kInternalFieldIndex))->Value());
542-
v8::Isolate* isolate = _cbinfo.GetIsolate();
543561

544562
napi_env env = static_cast<napi_env>(
545563
v8::Local<v8::External>::Cast(
546564
_cbdata->GetInternalField(kEnvIndex))->Value());
547565

548-
// Make sure any errors encountered last time we were in N-API are gone.
549-
napi_clear_last_error(env);
550-
551-
int open_handle_scopes = env->open_handle_scopes;
552-
int open_callback_scopes = env->open_callback_scopes;
553-
554-
napi_value result = cb(env, cbinfo_wrapper);
566+
napi_value result;
567+
NAPI_CALL_INTO_MODULE_THROW(env, result = cb(env, cbinfo_wrapper));
555568

556569
if (result != nullptr) {
557570
this->SetReturnValue(result);
558571
}
559-
560-
CHECK_EQ(env->open_handle_scopes, open_handle_scopes);
561-
CHECK_EQ(env->open_callback_scopes, open_callback_scopes);
562-
563-
if (!env->last_exception.IsEmpty()) {
564-
isolate->ThrowException(
565-
v8::Local<v8::Value>::New(isolate, env->last_exception));
566-
env->last_exception.Reset();
567-
}
568572
}
569573

570574
const Info& _cbinfo;
@@ -871,8 +875,10 @@ void napi_module_register_cb(v8::Local<v8::Object> exports,
871875
// one is found.
872876
napi_env env = v8impl::GetEnv(context);
873877

874-
napi_value _exports =
875-
mod->nm_register_func(env, v8impl::JsValueFromV8LocalValue(exports));
878+
napi_value _exports;
879+
NAPI_CALL_INTO_MODULE_THROW(env,
880+
_exports = mod->nm_register_func(env,
881+
v8impl::JsValueFromV8LocalValue(exports)));
876882

877883
// If register function returned a non-null exports object different from
878884
// the exports object we passed it, set that as the "exports" property of
@@ -3367,19 +3373,17 @@ class Work : public node::AsyncResource {
33673373
v8::HandleScope scope(env->isolate);
33683374
CallbackScope callback_scope(work);
33693375

3370-
work->_complete(env, ConvertUVErrorCode(status), work->_data);
3376+
NAPI_CALL_INTO_MODULE(env,
3377+
work->_complete(env, ConvertUVErrorCode(status), work->_data),
3378+
[env] (v8::Local<v8::Value> local_err) {
3379+
// If there was an unhandled exception in the complete callback,
3380+
// report it as a fatal exception. (There is no JavaScript on the
3381+
// callstack that can possibly handle it.)
3382+
v8impl::trigger_fatal_exception(env, local_err);
3383+
});
33713384

33723385
// Note: Don't access `work` after this point because it was
33733386
// likely deleted by the complete callback.
3374-
3375-
// If there was an unhandled exception in the complete callback,
3376-
// report it as a fatal exception. (There is no JavaScript on the
3377-
// callstack that can possibly handle it.)
3378-
if (!env->last_exception.IsEmpty()) {
3379-
v8::Local<v8::Value> local_err = v8::Local<v8::Value>::New(
3380-
env->isolate, env->last_exception);
3381-
v8impl::trigger_fatal_exception(env, local_err);
3382-
}
33833387
}
33843388
}
33853389

‎test/addons-napi/test_exception/test.js

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
'use strict';
2+
// Flags: --expose-gc
23

34
const common = require('../../common');
4-
const test_exception = require(`./build/${common.buildType}/test_exception`);
55
const assert = require('assert');
66
const theError = new Error('Some error');
77

8+
// The test module throws an error during Init, but in order for its exports to
9+
// not be lost, it attaches them to the error's "bindings" property. This way,
10+
// we can make sure that exceptions thrown during the module initialization
11+
// phase are propagated through require() into JavaScript.
12+
// https://github.com/nodejs/node/issues/19437
13+
const test_exception = (function() {
14+
let resultingException;
15+
try {
16+
require(`./build/${common.buildType}/test_exception`);
17+
} catch (anException) {
18+
resultingException = anException;
19+
}
20+
assert.strictEqual(resultingException.message, 'Error during Init');
21+
return resultingException.binding;
22+
})();
23+
824
{
925
const throwTheError = () => { throw theError; };
1026

@@ -50,3 +66,15 @@ const theError = new Error('Some error');
5066
'Exception state did not remain clear as expected,' +
5167
` .wasPending() returned ${exception_pending}`);
5268
}
69+
70+
// Make sure that exceptions that occur during finalization are propagated.
71+
function testFinalize(binding) {
72+
let x = test_exception[binding]();
73+
x = null;
74+
assert.throws(() => { global.gc(); }, /Error during Finalize/);
75+
76+
// To assuage the linter's concerns.
77+
(function() {})(x);
78+
}
79+
testFinalize('createExternal');
80+
testFinalize('createExternalBuffer');

‎test/addons-napi/test_exception/test_exception.c

+37-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
static bool exceptionWasPending = false;
55

6-
napi_value returnException(napi_env env, napi_callback_info info) {
6+
static napi_value returnException(napi_env env, napi_callback_info info) {
77
size_t argc = 1;
88
napi_value args[1];
99
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
@@ -22,7 +22,7 @@ napi_value returnException(napi_env env, napi_callback_info info) {
2222
return NULL;
2323
}
2424

25-
napi_value allowException(napi_env env, napi_callback_info info) {
25+
static napi_value allowException(napi_env env, napi_callback_info info) {
2626
size_t argc = 1;
2727
napi_value args[1];
2828
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
@@ -38,23 +38,55 @@ napi_value allowException(napi_env env, napi_callback_info info) {
3838
return NULL;
3939
}
4040

41-
napi_value wasPending(napi_env env, napi_callback_info info) {
41+
static napi_value wasPending(napi_env env, napi_callback_info info) {
4242
napi_value result;
4343
NAPI_CALL(env, napi_get_boolean(env, exceptionWasPending, &result));
4444

4545
return result;
4646
}
4747

48-
napi_value Init(napi_env env, napi_value exports) {
48+
static void finalizer(napi_env env, void *data, void *hint) {
49+
NAPI_CALL_RETURN_VOID(env,
50+
napi_throw_error(env, NULL, "Error during Finalize"));
51+
}
52+
53+
static napi_value createExternal(napi_env env, napi_callback_info info) {
54+
napi_value external;
55+
56+
NAPI_CALL(env,
57+
napi_create_external(env, NULL, finalizer, NULL, &external));
58+
59+
return external;
60+
}
61+
62+
static char buffer_data[12];
63+
64+
static napi_value createExternalBuffer(napi_env env, napi_callback_info info) {
65+
napi_value buffer;
66+
NAPI_CALL(env, napi_create_external_buffer(env, sizeof(buffer_data),
67+
buffer_data, finalizer, NULL, &buffer));
68+
return buffer;
69+
}
70+
71+
static napi_value Init(napi_env env, napi_value exports) {
4972
napi_property_descriptor descriptors[] = {
5073
DECLARE_NAPI_PROPERTY("returnException", returnException),
5174
DECLARE_NAPI_PROPERTY("allowException", allowException),
5275
DECLARE_NAPI_PROPERTY("wasPending", wasPending),
76+
DECLARE_NAPI_PROPERTY("createExternal", createExternal),
77+
DECLARE_NAPI_PROPERTY("createExternalBuffer", createExternalBuffer),
5378
};
54-
5579
NAPI_CALL(env, napi_define_properties(
5680
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors));
5781

82+
napi_value error, code, message;
83+
NAPI_CALL(env, napi_create_string_utf8(env, "Error during Init",
84+
NAPI_AUTO_LENGTH, &message));
85+
NAPI_CALL(env, napi_create_string_utf8(env, "", NAPI_AUTO_LENGTH, &code));
86+
NAPI_CALL(env, napi_create_error(env, code, message, &error));
87+
NAPI_CALL(env, napi_set_named_property(env, error, "binding", exports));
88+
NAPI_CALL(env, napi_throw(env, error));
89+
5890
return exports;
5991
}
6092

0 commit comments

Comments
 (0)
Please sign in to comment.