Skip to content

Commit cce7364

Browse files
author
Ubuntu user
committed
mangle SP on ARM before storing into jmpbuf
1 parent 56554a5 commit cce7364

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sched.c

+11
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,11 @@ void st_thread_interrupt(_st_thread_t *thread)
536536
}
537537

538538

539+
extern unsigned long __pointer_chk_guard;
540+
# define PTR_MANGLE(var) \
541+
(var) = (__typeof (var)) ((unsigned long) (var) ^ __pointer_chk_guard)
542+
# define PTR_DEMANGLE(var) PTR_MANGLE (var)
543+
539544
_st_thread_t *st_thread_create(void *(*start)(void *arg), void *arg,
540545
int joinable, int stk_size)
541546
{
@@ -607,7 +612,13 @@ _st_thread_t *st_thread_create(void *(*start)(void *arg), void *arg,
607612
thread->arg = arg;
608613

609614
#ifndef __ia64__
615+
#if defined(__arm__)
616+
volatile void * l = PTR_MANGLE(stack->sp);
617+
{ if (_setjmp ((thread)->context)) _st_thread_main();
618+
(thread)->context[0].__jmpbuf[8] = (long) (l); };
619+
#else
610620
_ST_INIT_CONTEXT(thread, stack->sp, _st_thread_main);
621+
#endif
611622
#else
612623
_ST_INIT_CONTEXT(thread, stack->sp, stack->bsp, _st_thread_main);
613624
#endif

0 commit comments

Comments
 (0)