1
0
Fork 0
alistair23-linux/arch/arm/probes
Jon Medhurst 974310d047 arm: kprobes: Align stack to 8-bytes in test code
kprobes test cases need to have a stack that is aligned to an 8-byte
boundary because they call other functions (and the ARM ABI mandates
that alignment) and because test cases include 64-bit accesses to the
stack. Unfortunately, GCC doesn't ensure this alignment for inline
assembler and for the code in question seems to always misalign it by
pushing just the LR register onto the stack. We therefore need to
explicitly perform stack alignment at the start of each test case.

Without this fix, some test cases will generate alignment faults on
systems where alignment is enforced. Even if the kernel is configured to
handle these faults in software, triggering them is ugly. It also
exposes limitations in the fault handling code which doesn't cope with
writes to the stack. E.g. when handling this instruction

   strd r6, [sp, #-64]!

the fault handling code will write to a stack location below the SP
value at the point the fault occurred, which coincides with where the
exception handler has pushed the saved register context. This results in
corruption of those registers.

Signed-off-by: Jon Medhurst <tixy@linaro.org>
2017-03-21 16:24:19 +00:00
..
kprobes arm: kprobes: Align stack to 8-bytes in test code 2017-03-21 16:24:19 +00:00
uprobes ARM: kprobes: introduces checker 2015-01-09 09:36:51 +00:00
Makefile
decode-arm.c ARM: kprobes: introduces checker 2015-01-09 09:36:51 +00:00
decode-arm.h ARM: kprobes: introduces checker 2015-01-09 09:36:51 +00:00
decode-thumb.c ARM: kprobes: introduces checker 2015-01-09 09:36:51 +00:00
decode-thumb.h ARM: kprobes: introduces checker 2015-01-09 09:36:51 +00:00
decode.c ARM: kprobes: check register usage for probed instruction. 2015-01-13 16:10:48 +00:00
decode.h kprobes: move kprobe declarations to asm-generic/kprobes.h 2017-02-27 18:43:45 -08:00