Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit adbd194

Browse files
committedOct 18, 2023
errors: print more information in C++ assertions
This patch: - Indent the assertion message so that is separated from the native stack trace for redability - Print the JS stack trace when it's available Previoiusly the abort message looks like this: ``` out/Release/node[24458]: ../../src/node_file.cc:2008:void node::fs::Ope n(const FunctionCallbackInfo<v8::Value> &): Assertion `(argc) >= (3)' f ailed. 1: 0x1043fb9a4 node::Abort() [node] 2: 0x1043fb6e4 node::PrintCaughtException(v8::Isolate*, v8::Local<v8:: Context>, v8::TryCatch const&) [node] 3: 0x104407708 node::fs::Open(v8::FunctionCallbackInfo<v8::Value> cons t&) [node] 4: 0x104611e74 v8::internal::MaybeHandle<v8::internal::Object> v8::int ernal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal:: Isolate*, v8::internal::Handle<v8::internal::HeapObject >, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::intern al::Handle<v8::internal::Object>, unsigned long*, int) [node ] 5: 0x1046116c8 v8::internal::Builtin_HandleApiCall(int, unsigned long* , v8::internal::Isolate*) [node] 6: 0x104e9cb24 Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit [node] 7: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 8: 0x104e1250c Builtins_JSEntryTrampoline [node] 9: 0x104e121f4 Builtins_JSEntry [node] 10: 0x1046ed54c v8::internal::(anonymous namespace)::Invoke(v8::interna l::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) [node] 11: 0x1046edb60 v8::internal::Execution::CallScript(v8::internal::Isola te*, v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Hand le<v8::internal::Object>, v8::internal::Handle<v8::in ternal::Object>) [node] 12: 0x1045a9fa0 v8::Script::Run(v8::Local<v8::Context>, v8::Local<v8::D ata>) [node] 13: 0x1043efb68 node::contextify::ContextifyScript::EvalMachine(v8::Loc al<v8::Context>, node::Environment*, long long, bool, bool, bool, v8::M icrotaskQueue*, v8::FunctionCallbackInfo<v8::Value> const&) [node ] 14: 0x1043ef3e0 node::contextify::ContextifyScript::RunInContext(v8::Fu nctionCallbackInfo<v8::Value> const&) [node] 15: 0x104611e74 v8::internal::MaybeHandle<v8::internal::Object> v8::int ernal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal:: Isolate*, v8::internal::Handle<v8::internal::HeapObject> , v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::interna l::Handle<v8::internal::Object>, unsigned long*, int) [node ] 16: 0x1046116c8 v8::internal::Builtin_HandleApiCall(int, unsigned long* , v8::internal::Isolate*) [node] 17: 0x104e9cb24 Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit [node] 18: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 19: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 20: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 21: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 22: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 23: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 24: 0x104e143e4 Builtins_InterpreterEntryTrampoline [node] 25: 0x104e1250c Builtins_JSEntryTrampoline [node] 26: 0x104e121f4 Builtins_JSEntry [node] 27: 0x1046ed54c v8::internal::(anonymous namespace)::Invoke(v8::interna l::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) [node] 28: 0x1046ecdc8 v8::internal::Execution::Call(v8::internal::Isolate*, v 8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::int ernal::Object>, int, v8::internal::Handle<v 8::internal::Object>*) [node] 29: 0x1045be23c v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8 ::Value>, int, v8::Local<v8::Value>*) [node] 30: 0x1043df704 node::builtins::BuiltinLoader::CompileAndCall(v8::Local <v8::Context>, char const*, node::Realm*) [node] 31: 0x10446f2d4 node::Realm::ExecuteBootstrapper(char const*) [node] 32: 0x1043c3378 node::StartExecution(node::Environment*, std::__1::func tion<v8::MaybeLocal<v8::Value> (node::StartExecutionCallbackInfo const& )>) [node] 33: 0x10432dc28 node::LoadEnvironment(node::Environment*, std::__1::fun ction<v8::MaybeLocal<v8::Value> (node::StartExecutionCallbackInfo const &)>) [node] 34: 0x10443d1f4 node::NodeMainInstance::Run(node::ExitCode*, node::Envi ronment*) [node] 35: 0x10443cfd0 node::NodeMainInstance::Run() [node] 36: 0x1043c5d18 node::Start(int, char**) [node] 37: 0x19a027f28 start [/usr/lib/dyld] [1] 24458 abort out/Release/node -p "process.binding('fs').open ()" ``` Now it looks like this: ``` # out/Release/node[24856]: void node::fs::Open(const FunctionCallbac kInfo<v8::Value> &) at ../../src/node_file.cc:2008 # Assertion failed: (argc) >= (3) ----- Native stack trace ----- 1: 0x1001efe64 node::Abort() [node] 2: 0x1001efba4 node::PrintCaughtException(v8::Isolate*, v8::Local<v8:: Context>, v8::TryCatch const&) [node] 3: 0x1001fb868 node::fs::Open(v8::FunctionCallbackInfo<v8::Value> cons t&) [node] 4: 0x100405fd4 v8::internal::MaybeHandle<v8::internal::Object> v8::int ernal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal:: Isolate*, v8::internal::Handle<v8::internal::HeapObject >, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::intern al::Handle<v8::internal::Object>, unsigned long*, int) [node ] 5: 0x100405828 v8::internal::Builtin_HandleApiCall(int, unsigned long* , v8::internal::Isolate*) [node] 6: 0x100c90b24 Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit [node] 7: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 8: 0x100c0650c Builtins_JSEntryTrampoline [node] 9: 0x100c061f4 Builtins_JSEntry [node] 10: 0x1004e16ac v8::internal::(anonymous namespace)::Invoke(v8::interna l::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) [node] 11: 0x1004e1cc0 v8::internal::Execution::CallScript(v8::internal::Isola te*, v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Hand le<v8::internal::Object>, v8::internal::Handle<v8::in ternal::Object>) [node] 12: 0x10039e100 v8::Script::Run(v8::Local<v8::Context>, v8::Local<v8::D ata>) [node] 13: 0x1001e4028 node::contextify::ContextifyScript::EvalMachine(v8::Loc al<v8::Context>, node::Environment*, long long, bool, bool, bool, v8::M icrotaskQueue*, v8::FunctionCallbackInfo<v8::Value> const&) [node ] 14: 0x1001e38a0 node::contextify::ContextifyScript::RunInContext(v8::Fu nctionCallbackInfo<v8::Value> const&) [node] 15: 0x100405fd4 v8::internal::MaybeHandle<v8::internal::Object> v8::int ernal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal:: Isolate*, v8::internal::Handle<v8::internal::HeapObject> , v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::interna l::Handle<v8::internal::Object>, unsigned long*, int) [node ] 16: 0x100405828 v8::internal::Builtin_HandleApiCall(int, unsigned long* , v8::internal::Isolate*) [node] 17: 0x100c90b24 Builtins_CEntry_Return1_ArgvOnStack_BuiltinExit [node] 18: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 19: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 20: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 21: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 22: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 23: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 24: 0x100c083e4 Builtins_InterpreterEntryTrampoline [node] 25: 0x100c0650c Builtins_JSEntryTrampoline [node] 26: 0x100c061f4 Builtins_JSEntry [node] 27: 0x1004e16ac v8::internal::(anonymous namespace)::Invoke(v8::interna l::Isolate*, v8::internal::(anonymous namespace)::InvokeParams const&) [node] 28: 0x1004e0f28 v8::internal::Execution::Call(v8::internal::Isolate*, v 8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::int ernal::Object>, int, v8::internal::Handle<v 8::internal::Object>*) [node] 29: 0x1003b239c v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8 ::Value>, int, v8::Local<v8::Value>*) [node] 30: 0x1001d3bc4 node::builtins::BuiltinLoader::CompileAndCall(v8::Local <v8::Context>, char const*, node::Realm*) [node] 31: 0x100263434 node::Realm::ExecuteBootstrapper(char const*) [node] 32: 0x1001b7838 node::StartExecution(node::Environment*, std::__1::func tion<v8::MaybeLocal<v8::Value> (node::StartExecutionCallbackInfo const& )>) [node] 33: 0x100121c28 node::LoadEnvironment(node::Environment*, std::__1::fun ction<v8::MaybeLocal<v8::Value> (node::StartExecutionCallbackInfo const &)>) [node] 34: 0x100231354 node::NodeMainInstance::Run(node::ExitCode*, node::Envi ronment*) [node] 35: 0x100231130 node::NodeMainInstance::Run() [node] 36: 0x1001ba1d8 node::Start(int, char**) [node] 37: 0x19a027f28 start [/usr/lib/dyld] ----- JavaScript stack trace ----- [eval]:1:23 Script.runInThisContext (node:vm:127:12) Object.runInThisContext (node:vm:301:38) node:internal/process/execution:83:21 [eval]-wrapper:6:24 runScript (node:internal/process/execution:82:62) evalScript (node:internal/process/execution:104:10) node:internal/main/eval_string:51:3 [1] 24856 abort out/Release/node -p "process.binding('fs').open ()" ```
1 parent f971106 commit adbd194

9 files changed

+77
-20
lines changed
 

‎src/debug_utils.cc

+29-2
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ std::string NativeSymbolDebuggingContext::SymbolInfo::Display() const {
303303
return oss.str();
304304
}
305305

306-
void DumpBacktrace(FILE* fp) {
306+
void DumpNativeBacktrace(FILE* fp) {
307+
fprintf(fp, "----- Native stack trace -----\n\n");
307308
auto sym_ctx = NativeSymbolDebuggingContext::New();
308309
void* frames[256];
309310
const int size = sym_ctx->GetStackTrace(frames, arraysize(frames));
@@ -314,6 +315,31 @@ void DumpBacktrace(FILE* fp) {
314315
}
315316
}
316317

318+
static std::atomic<bool> is_dumping_js_stacktrace { false };
319+
void DumpJavaScriptBacktrace(FILE* fp) {
320+
// Printing JavaScript stack trace can result in V8 fatal error,
321+
// which can re-enter this function.
322+
if (is_dumping_js_stacktrace.load()) {
323+
return;
324+
}
325+
326+
v8::Isolate* isolate = v8::Isolate::GetCurrent();
327+
if (isolate == nullptr) {
328+
return;
329+
}
330+
331+
std::string js_stack;
332+
std::stringstream ss;
333+
is_dumping_js_stacktrace.store(true);
334+
v8::Message::PrintCurrentStackTrace(isolate, ss);
335+
js_stack = ss.str();
336+
fprintf(fp,
337+
"\n----- JavaScript stack trace -----\n\n"
338+
"%s\n\n",
339+
js_stack.c_str());
340+
is_dumping_js_stacktrace.store(false);
341+
}
342+
317343
void CheckedUvLoopClose(uv_loop_t* loop) {
318344
if (uv_loop_close(loop) == 0) return;
319345

@@ -514,5 +540,6 @@ void FWrite(FILE* file, const std::string& str) {
514540
} // namespace node
515541

516542
extern "C" void __DumpBacktrace(FILE* fp) {
517-
node::DumpBacktrace(fp);
543+
node::DumpNativeBacktrace(fp);
544+
node::DumpJavaScriptBacktrace(fp);
518545
}

‎src/env.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,8 @@ void AsyncHooks::FailWithCorruptedAsyncStack(double expected_async_id) {
16621662
"actual: %.f, expected: %.f)\n",
16631663
async_id_fields_.GetValue(kExecutionAsyncId),
16641664
expected_async_id);
1665-
DumpBacktrace(stderr);
1665+
DumpNativeBacktrace(stderr);
1666+
DumpJavaScriptBacktrace(stderr);
16661667
fflush(stderr);
16671668
// TODO(joyeecheung): should this exit code be more specific?
16681669
if (!env()->abort_on_uncaught_exception()) Exit(ExitCode::kGenericUserError);

‎src/node_errors.cc

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <cerrno>
22
#include <cstdarg>
3+
#include <sstream>
34

45
#include "debug_utils-inl.h"
56
#include "node_errors.h"
@@ -329,7 +330,8 @@ void AppendExceptionLine(Environment* env,
329330
}
330331

331332
[[noreturn]] void Abort() {
332-
DumpBacktrace(stderr);
333+
DumpNativeBacktrace(stderr);
334+
DumpJavaScriptBacktrace(stderr);
333335
fflush(stderr);
334336
ABORT_NO_BACKTRACE();
335337
}
@@ -338,14 +340,15 @@ void AppendExceptionLine(Environment* env,
338340
std::string name = GetHumanReadableProcessName();
339341

340342
fprintf(stderr,
341-
"%s: %s:%s%s Assertion `%s' failed.\n",
343+
"\n"
344+
" # %s: %s at %s\n"
345+
" # Assertion failed: %s\n\n",
342346
name.c_str(),
343-
info.file_line,
344-
info.function,
345-
*info.function ? ":" : "",
347+
info.function ? info.function : "(unknown function)",
348+
info.file_line ? info.file_line : "(unknown source location)",
346349
info.message);
347-
fflush(stderr);
348350

351+
fflush(stderr);
349352
Abort();
350353
}
351354

‎src/node_platform.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ v8::TracingController* NodePlatform::GetTracingController() {
560560
Platform::StackTracePrinter NodePlatform::GetStackTracePrinter() {
561561
return []() {
562562
fprintf(stderr, "\n");
563-
DumpBacktrace(stderr);
563+
DumpNativeBacktrace(stderr);
564564
fflush(stderr);
565565
};
566566
}

‎src/util.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ struct AssertionInfo {
115115
};
116116
[[noreturn]] void NODE_EXTERN_PRIVATE Assert(const AssertionInfo& info);
117117
[[noreturn]] void NODE_EXTERN_PRIVATE Abort();
118-
void DumpBacktrace(FILE* fp);
118+
void DumpNativeBacktrace(FILE* fp);
119+
void DumpJavaScriptBacktrace(FILE* fp);
119120

120121
// Windows 8+ does not like abort() in Release mode
121122
#ifdef _WIN32

‎test/abort/test-abort-backtrace.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (process.argv[2] === 'child') {
1212
assert.strictEqual(child.stdout.toString(), '');
1313
// Stderr will be empty for systems that don't support backtraces.
1414
if (stderr !== '') {
15-
const frames = stderr.trimRight().split('\n').map((s) => s.trim());
15+
const frames = common.getNativeStackTrace(stderr);
1616

1717
if (!frames.every((frame, index) => frame.startsWith(`${index + 1}:`))) {
1818
assert.fail(`Each frame should start with a frame number:\n${stderr}`);

‎test/abort/test-abort-fatal-error.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,5 @@ exec(cmdline, function(err, stdout, stderr) {
3838
assert(false, 'this test should fail');
3939
}
4040

41-
if (err.code !== 134 && err.signal !== 'SIGABRT') {
42-
console.log(stdout);
43-
console.log(stderr);
44-
console.log(err);
45-
assert(false, err);
46-
}
41+
common.nodeProcessAborted(err.code, err.signal);
4742
});

‎test/abort/test-addon-uv-handle-leak.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ if (process.argv[2] === 'child') {
8888

8989
while (lines.length > 0) {
9090
const line = lines.shift().trim();
91+
if (line.length === 0) {
92+
continue; // Skip empty lines.
93+
}
9194

9295
switch (state) {
9396
case 'initial':
@@ -96,7 +99,7 @@ if (process.argv[2] === 'child') {
9699
break;
97100
case 'handle-start':
98101
if (/^uv loop at \[.+\] has \d+ open handles in total$/.test(line)) {
99-
state = 'assertion-failure';
102+
state = 'source-line';
100103
break;
101104
}
102105
assert.match(line, /^\[.+\] timer( \(active\))?$/);
@@ -116,8 +119,12 @@ if (process.argv[2] === 'child') {
116119
}
117120
state = 'handle-start';
118121
break;
122+
case 'source-line':
123+
assert.match(line, /CheckedUvLoopClose/);
124+
state = 'assertion-failure';
125+
break;
119126
case 'assertion-failure':
120-
assert.match(line, /Assertion .+ failed/);
127+
assert.match(line, /Assertion failed:/);
121128
state = 'done';
122129
break;
123130
case 'done':

‎test/common/index.js

+23
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,28 @@ function spawnPromisified(...args) {
906906
});
907907
}
908908

909+
function getNativeStackTrace(stderr) {
910+
const lines = stderr.split('\n');
911+
const result = [];
912+
let shouldRecord = false;
913+
for (const line of lines) {
914+
if (line.includes('Native stack trace')) {
915+
shouldRecord = true;
916+
continue;
917+
} else if (line.includes('JavaScript stack trace')) {
918+
shouldRecord = false;
919+
break;
920+
}
921+
if (shouldRecord) {
922+
const trimmed = line.trim();
923+
if (trimmed.length > 0) {
924+
result.push(trimmed);
925+
}
926+
}
927+
}
928+
return result;
929+
}
930+
909931
const common = {
910932
allowGlobals,
911933
buildType,
@@ -919,6 +941,7 @@ const common = {
919941
getArrayBufferViews,
920942
getBufferSources,
921943
getCallSite,
944+
getNativeStackTrace,
922945
getTTYfd,
923946
hasIntl,
924947
hasCrypto,

0 commit comments

Comments
 (0)
Please sign in to comment.