zephyr/subsys/debug
Carlo Caione 256ca55476 arm64: Rework stack usage
The ARM64 port is currently using SP_EL0 for everything: kernel threads,
user threads and exceptions. In addition when taking an exception the
exception code is still using the thread SP without relying on any
interrupt stack.

If from one hand this makes the context switch really quick because the
thread context is already on the thread stack so we have only to save
one register (SP) for the whole context, on the other hand the major
limitation introduced by this choice is that if for some reason the
thread SP is corrupted or pointing to some unaccessible location (for
example in case of stack overflow), the exception code is unable to
recover or even deal with it.

The usual way of dealing with this kind of problems is to use a
dedicated interrupt stack on SP_EL1 when servicing the exceptions. The
real drawback of this is that, in case of context switch, all the
context must be copied from the shared interrupt stack into a
thread-specific stack or structure, so it is really slow.

We use here an hybrid approach, sacrificing a bit of stack space for a
quicker context switch. While nothing really changes for kernel threads,
for user threads we now use the privileged stack (already present to
service syscalls) as interrupt stack.

When an exception arrives the code now switches to use SP_EL1 that for
user threads is always pointing inside the privileged portion of the
stack of the current running thread. This achieves two things: (1)
isolate exceptions and syscall code to use a stack that is isolated,
privileged and not accessible to user threads and (2) the thread SP is
not touched at all during exceptions, so it can be invalid or corrupted
without any direct consequence.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
2021-04-23 06:32:20 -04:00
..
coredump debug: coredump: improve delayed logging 2021-03-09 07:04:56 -05:00
gdbstub debug: x86: Add gdbstub for X86 2020-09-02 20:54:57 -04:00
CMakeLists.txt debug: Move away from openocd and make it generic 2021-03-17 14:43:01 -05:00
Kconfig debug: Move away from openocd and make it generic 2021-03-17 14:43:01 -05:00
asan_hacks.c
gdbstub.c debug: gdbstub: Send an error code when accessing invalid memory 2020-09-02 20:54:57 -04:00
gdbstub_backend.h debug: x86: Add gdbstub for X86 2020-09-02 20:54:57 -04:00
thread_analyzer.c coccinelle: Remove extra semicolon 2021-03-25 11:35:30 -05:00
thread_info.c arm64: Rework stack usage 2021-04-23 06:32:20 -04:00