Skip to content

Commit

Permalink
arm64: kprobes: Fix overflow when saving stack
Browse files Browse the repository at this point in the history
The MIN_STACK_SIZE macro tries evaluate how much stack space needs
to be saved in the jprobes_stack array, sized at 128 bytes.

When using the IRQ stack, said macro can happily return up to
IRQ_STACK_SIZE, which is 16kB. Mayhem follows.

This patch fixes things by getting rid of the crazy macro and
limiting the copy to be at most the size of the jprobes_stack
array, no matter which stack we're on.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
Marc Zyngier authored and Catalin Marinas committed Jul 20, 2016
1 parent 44bd887 commit ab4c132
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions arch/arm64/kernel/probes/kprobes.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@

#include "decode-insn.h"

#define MIN_STACK_SIZE(addr) (on_irq_stack(addr, raw_smp_processor_id()) ? \
min((unsigned long)IRQ_STACK_SIZE, \
IRQ_STACK_PTR(raw_smp_processor_id()) - (addr)) : \
min((unsigned long)MAX_STACK_SIZE, \
(unsigned long)current_thread_info() + THREAD_START_SP - (addr)))

void jprobe_return_break(void);

DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
Expand All @@ -48,6 +42,18 @@ DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
static void __kprobes
post_kprobe_handler(struct kprobe_ctlblk *, struct pt_regs *);

static inline unsigned long min_stack_size(unsigned long addr)
{
unsigned long size;

if (on_irq_stack(addr, raw_smp_processor_id()))
size = IRQ_STACK_PTR(raw_smp_processor_id()) - addr;
else
size = (unsigned long)current_thread_info() + THREAD_START_SP - addr;

return min(size, FIELD_SIZEOF(struct kprobe_ctlblk, jprobes_stack));
}

static void __kprobes arch_prepare_ss_slot(struct kprobe *p)
{
/* prepare insn slot */
Expand Down Expand Up @@ -495,7 +501,7 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
* the argument area.
*/
memcpy(kcb->jprobes_stack, (void *)stack_ptr,
MIN_STACK_SIZE(stack_ptr));
min_stack_size(stack_ptr));

instruction_pointer_set(regs, (unsigned long) jp->entry);
preempt_disable();
Expand Down Expand Up @@ -548,7 +554,7 @@ int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
unpause_graph_tracing();
*regs = kcb->jprobe_saved_regs;
memcpy((void *)stack_addr, kcb->jprobes_stack,
MIN_STACK_SIZE(stack_addr));
min_stack_size(stack_addr));
preempt_enable_no_resched();
return 1;
}
Expand Down

0 comments on commit ab4c132

Please sign in to comment.