1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

signal.c: fatal stack

* signal.c (check_stack_overflow): raise fatal when the last tag
  is in danger zone.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-08-22 02:46:16 +00:00
parent 2f3eef8ee0
commit 066e9a8b4a
3 changed files with 9 additions and 7 deletions

View file

@ -763,7 +763,7 @@ static const char *received_signal;
#endif
#if defined(USE_SIGALTSTACK) || defined(_WIN32)
NORETURN(void rb_threadptr_stack_overflow(rb_thread_t *th));
NORETURN(void rb_threadptr_stack_overflow(rb_thread_t *th, int crit));
# if defined __HAIKU__
# define USE_UCONTEXT_REG 1
# elif !(defined(HAVE_UCONTEXT_H) && (defined __i386__ || defined __x86_64__ || defined __amd64__))
@ -843,14 +843,16 @@ check_stack_overflow(int sig, const uintptr_t addr, const ucontext_t *ctx)
if (sp_page == fault_page || sp_page == fault_page + 1 ||
sp_page <= fault_page && fault_page <= bp_page) {
rb_thread_t *th = ruby_current_thread;
int crit = FALSE;
if ((uintptr_t)th->ec.tag->buf / pagesize <= fault_page + 1) {
/* drop the last tag if it is close to the fault,
* otherwise it can cause stack overflow again at the same
* place. */
th->ec.tag = th->ec.tag->prev;
crit = TRUE;
}
reset_sigmask(sig);
rb_threadptr_stack_overflow(th);
rb_threadptr_stack_overflow(th, crit);
}
}
# else
@ -861,7 +863,7 @@ check_stack_overflow(int sig, const void *addr)
rb_thread_t *th = ruby_current_thread;
if (ruby_stack_overflowed_p(th, addr)) {
reset_sigmask(sig);
rb_threadptr_stack_overflow(th);
rb_threadptr_stack_overflow(th, FALSE);
}
}
# endif

View file

@ -258,7 +258,7 @@ stack_check(rb_thread_t *th)
if (!rb_thread_raised_p(th, RAISED_STACKOVERFLOW) &&
rb_threadptr_stack_check(th)) {
rb_thread_raised_set(th, RAISED_STACKOVERFLOW);
rb_threadptr_stack_overflow(th);
rb_threadptr_stack_overflow(th, FALSE);
}
}

View file

@ -52,11 +52,11 @@ vm_stackoverflow(void)
threadptr_stack_overflow(GET_THREAD(), TRUE);
}
NORETURN(void rb_threadptr_stack_overflow(rb_thread_t *th));
NORETURN(void rb_threadptr_stack_overflow(rb_thread_t *th, int crit));
void
rb_threadptr_stack_overflow(rb_thread_t *th)
rb_threadptr_stack_overflow(rb_thread_t *th, int crit)
{
if (rb_during_gc()) {
if (crit || rb_during_gc()) {
th->ec.raised_flag = RAISED_STACKOVERFLOW;
th->ec.errinfo = th->vm->special_exceptions[ruby_error_stackfatal];
TH_JUMP_TAG(th, TAG_RAISE);