Skip to content

Commit 03211c9

Browse files
gbaraldivtjnash
authored andcommitted
Check if ct is not null before doing is_addr_on_stack in the macos signal handler. (#55603)
Before the check we used to segfault while segfaulting and hang --------- Co-authored-by: Jameson Nash <[email protected]>
1 parent b86e7ce commit 03211c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/signals-mach.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ static void segv_handler(int sig, siginfo_t *info, void *context)
297297
return;
298298
}
299299
jl_task_t *ct = jl_get_current_task();
300-
if ((sig != SIGBUS || info->si_code == BUS_ADRERR) && is_addr_on_stack(ct, info->si_addr)) { // stack overflow and not a BUS_ADRALN (alignment error)
300+
if ((sig != SIGBUS || info->si_code == BUS_ADRERR) &&
301+
!(ct == NULL || ct->ptls == NULL || jl_atomic_load_relaxed(&ct->ptls->gc_state) == JL_GC_STATE_WAITING || ct->eh == NULL)
302+
&& is_addr_on_stack(ct, info->si_addr)) { // stack overflow and not a BUS_ADRALN (alignment error)
301303
stack_overflow_warning();
302304
}
303305
sigdie_handler(sig, info, context);

0 commit comments

Comments
 (0)