mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 09:34:12 +08:00
33e53ae1ce
This patch enable kprobes, kretprobes, ftrace interface. It utilized software breakpoint and single step debug exceptions, instructions simulation on csky. We use USR_BKPT replace origin instruction, and the kprobe handler prepares an excutable memory slot for out-of-line execution with a copy of the original instruction being probed. Most of instructions could be executed by single-step, but some instructions need origin pc value to execute and we need software simulate these instructions. Signed-off-by: Guo Ren <guoren@linux.alibaba.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Steven Rostedt (VMware) <rostedt@goodmis.org>
21 lines
456 B
C
21 lines
456 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef __CSKY_KERNEL_KPROBES_DECODE_INSN_H
|
|
#define __CSKY_KERNEL_KPROBES_DECODE_INSN_H
|
|
|
|
#include <asm/sections.h>
|
|
#include <asm/kprobes.h>
|
|
|
|
enum probe_insn {
|
|
INSN_REJECTED,
|
|
INSN_GOOD_NO_SLOT,
|
|
INSN_GOOD,
|
|
};
|
|
|
|
#define is_insn32(insn) ((insn & 0xc000) == 0xc000)
|
|
|
|
enum probe_insn __kprobes
|
|
csky_probe_decode_insn(probe_opcode_t *addr, struct arch_probe_insn *asi);
|
|
|
|
#endif /* __CSKY_KERNEL_KPROBES_DECODE_INSN_H */
|