drm/rockchip: Don't change hdmi reference clock rate
[drm/drm-misc.git] / arch / arm64 / kernel / probes / kprobes.c
blobd9e462eafb95e654b06b846635cebdcde897bf54
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * arch/arm64/kernel/probes/kprobes.c
5 * Kprobes support for ARM64
7 * Copyright (C) 2013 Linaro Limited.
8 * Author: Sandeepa Prabhu <sandeepa.prabhu@linaro.org>
9 */
11 #define pr_fmt(fmt) "kprobes: " fmt
13 #include <linux/extable.h>
14 #include <linux/kasan.h>
15 #include <linux/kernel.h>
16 #include <linux/kprobes.h>
17 #include <linux/sched/debug.h>
18 #include <linux/set_memory.h>
19 #include <linux/slab.h>
20 #include <linux/stop_machine.h>
21 #include <linux/stringify.h>
22 #include <linux/uaccess.h>
23 #include <linux/vmalloc.h>
25 #include <asm/cacheflush.h>
26 #include <asm/daifflags.h>
27 #include <asm/debug-monitors.h>
28 #include <asm/insn.h>
29 #include <asm/irq.h>
30 #include <asm/text-patching.h>
31 #include <asm/ptrace.h>
32 #include <asm/sections.h>
33 #include <asm/system_misc.h>
34 #include <asm/traps.h>
36 #include "decode-insn.h"
38 DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
39 DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
41 static void __kprobes
42 post_kprobe_handler(struct kprobe *, struct kprobe_ctlblk *, struct pt_regs *);
44 static void __kprobes arch_prepare_ss_slot(struct kprobe *p)
46 kprobe_opcode_t *addr = p->ainsn.xol_insn;
49 * Prepare insn slot, Mark Rutland points out it depends on a coupe of
50 * subtleties:
52 * - That the I-cache maintenance for these instructions is complete
53 * *before* the kprobe BRK is written (and aarch64_insn_patch_text_nosync()
54 * ensures this, but just omits causing a Context-Synchronization-Event
55 * on all CPUS).
57 * - That the kprobe BRK results in an exception (and consequently a
58 * Context-Synchronoization-Event), which ensures that the CPU will
59 * fetch thesingle-step slot instructions *after* this, ensuring that
60 * the new instructions are used
62 * It supposes to place ISB after patching to guarantee I-cache maintenance
63 * is observed on all CPUS, however, single-step slot is installed in
64 * the BRK exception handler, so it is unnecessary to generate
65 * Contex-Synchronization-Event via ISB again.
67 aarch64_insn_patch_text_nosync(addr, le32_to_cpu(p->opcode));
68 aarch64_insn_patch_text_nosync(addr + 1, BRK64_OPCODE_KPROBES_SS);
71 * Needs restoring of return address after stepping xol.
73 p->ainsn.xol_restore = (unsigned long) p->addr +
74 sizeof(kprobe_opcode_t);
77 static void __kprobes arch_prepare_simulate(struct kprobe *p)
79 /* This instructions is not executed xol. No need to adjust the PC */
80 p->ainsn.xol_restore = 0;
83 static void __kprobes arch_simulate_insn(struct kprobe *p, struct pt_regs *regs)
85 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
87 if (p->ainsn.api.handler)
88 p->ainsn.api.handler(le32_to_cpu(p->opcode), (long)p->addr, regs);
90 /* single step simulated, now go for post processing */
91 post_kprobe_handler(p, kcb, regs);
94 int __kprobes arch_prepare_kprobe(struct kprobe *p)
96 unsigned long probe_addr = (unsigned long)p->addr;
98 if (probe_addr & 0x3)
99 return -EINVAL;
101 /* copy instruction */
102 p->opcode = *p->addr;
104 if (search_exception_tables(probe_addr))
105 return -EINVAL;
107 /* decode instruction */
108 switch (arm_kprobe_decode_insn(p->addr, &p->ainsn)) {
109 case INSN_REJECTED: /* insn not supported */
110 return -EINVAL;
112 case INSN_GOOD_NO_SLOT: /* insn need simulation */
113 p->ainsn.xol_insn = NULL;
114 break;
116 case INSN_GOOD: /* instruction uses slot */
117 p->ainsn.xol_insn = get_insn_slot();
118 if (!p->ainsn.xol_insn)
119 return -ENOMEM;
120 break;
123 /* prepare the instruction */
124 if (p->ainsn.xol_insn)
125 arch_prepare_ss_slot(p);
126 else
127 arch_prepare_simulate(p);
129 return 0;
132 /* arm kprobe: install breakpoint in text */
133 void __kprobes arch_arm_kprobe(struct kprobe *p)
135 void *addr = p->addr;
136 u32 insn = BRK64_OPCODE_KPROBES;
138 aarch64_insn_patch_text(&addr, &insn, 1);
141 /* disarm kprobe: remove breakpoint from text */
142 void __kprobes arch_disarm_kprobe(struct kprobe *p)
144 void *addr = p->addr;
145 u32 insn = le32_to_cpu(p->opcode);
147 aarch64_insn_patch_text(&addr, &insn, 1);
150 void __kprobes arch_remove_kprobe(struct kprobe *p)
152 if (p->ainsn.xol_insn) {
153 free_insn_slot(p->ainsn.xol_insn, 0);
154 p->ainsn.xol_insn = NULL;
158 static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
160 kcb->prev_kprobe.kp = kprobe_running();
161 kcb->prev_kprobe.status = kcb->kprobe_status;
164 static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
166 __this_cpu_write(current_kprobe, kcb->prev_kprobe.kp);
167 kcb->kprobe_status = kcb->prev_kprobe.status;
170 static void __kprobes set_current_kprobe(struct kprobe *p)
172 __this_cpu_write(current_kprobe, p);
176 * Mask all of DAIF while executing the instruction out-of-line, to keep things
177 * simple and avoid nesting exceptions. Interrupts do have to be disabled since
178 * the kprobe state is per-CPU and doesn't get migrated.
180 static void __kprobes kprobes_save_local_irqflag(struct kprobe_ctlblk *kcb,
181 struct pt_regs *regs)
183 kcb->saved_irqflag = regs->pstate & DAIF_MASK;
184 regs->pstate |= DAIF_MASK;
187 static void __kprobes kprobes_restore_local_irqflag(struct kprobe_ctlblk *kcb,
188 struct pt_regs *regs)
190 regs->pstate &= ~DAIF_MASK;
191 regs->pstate |= kcb->saved_irqflag;
194 static void __kprobes setup_singlestep(struct kprobe *p,
195 struct pt_regs *regs,
196 struct kprobe_ctlblk *kcb, int reenter)
198 unsigned long slot;
200 if (reenter) {
201 save_previous_kprobe(kcb);
202 set_current_kprobe(p);
203 kcb->kprobe_status = KPROBE_REENTER;
204 } else {
205 kcb->kprobe_status = KPROBE_HIT_SS;
209 if (p->ainsn.xol_insn) {
210 /* prepare for single stepping */
211 slot = (unsigned long)p->ainsn.xol_insn;
213 kprobes_save_local_irqflag(kcb, regs);
214 instruction_pointer_set(regs, slot);
215 } else {
216 /* insn simulation */
217 arch_simulate_insn(p, regs);
221 static int __kprobes reenter_kprobe(struct kprobe *p,
222 struct pt_regs *regs,
223 struct kprobe_ctlblk *kcb)
225 switch (kcb->kprobe_status) {
226 case KPROBE_HIT_SSDONE:
227 case KPROBE_HIT_ACTIVE:
228 kprobes_inc_nmissed_count(p);
229 setup_singlestep(p, regs, kcb, 1);
230 break;
231 case KPROBE_HIT_SS:
232 case KPROBE_REENTER:
233 pr_warn("Failed to recover from reentered kprobes.\n");
234 dump_kprobe(p);
235 BUG();
236 break;
237 default:
238 WARN_ON(1);
239 return 0;
242 return 1;
245 static void __kprobes
246 post_kprobe_handler(struct kprobe *cur, struct kprobe_ctlblk *kcb, struct pt_regs *regs)
248 /* return addr restore if non-branching insn */
249 if (cur->ainsn.xol_restore != 0)
250 instruction_pointer_set(regs, cur->ainsn.xol_restore);
252 /* restore back original saved kprobe variables and continue */
253 if (kcb->kprobe_status == KPROBE_REENTER) {
254 restore_previous_kprobe(kcb);
255 return;
257 /* call post handler */
258 kcb->kprobe_status = KPROBE_HIT_SSDONE;
259 if (cur->post_handler)
260 cur->post_handler(cur, regs, 0);
262 reset_current_kprobe();
265 int __kprobes kprobe_fault_handler(struct pt_regs *regs, unsigned int fsr)
267 struct kprobe *cur = kprobe_running();
268 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
270 switch (kcb->kprobe_status) {
271 case KPROBE_HIT_SS:
272 case KPROBE_REENTER:
274 * We are here because the instruction being single
275 * stepped caused a page fault. We reset the current
276 * kprobe and the ip points back to the probe address
277 * and allow the page fault handler to continue as a
278 * normal page fault.
280 instruction_pointer_set(regs, (unsigned long) cur->addr);
281 BUG_ON(!instruction_pointer(regs));
283 if (kcb->kprobe_status == KPROBE_REENTER) {
284 restore_previous_kprobe(kcb);
285 } else {
286 kprobes_restore_local_irqflag(kcb, regs);
287 reset_current_kprobe();
290 break;
292 return 0;
295 static int __kprobes
296 kprobe_breakpoint_handler(struct pt_regs *regs, unsigned long esr)
298 struct kprobe *p, *cur_kprobe;
299 struct kprobe_ctlblk *kcb;
300 unsigned long addr = instruction_pointer(regs);
302 kcb = get_kprobe_ctlblk();
303 cur_kprobe = kprobe_running();
305 p = get_kprobe((kprobe_opcode_t *) addr);
306 if (WARN_ON_ONCE(!p)) {
308 * Something went wrong. This BRK used an immediate reserved
309 * for kprobes, but we couldn't find any corresponding probe.
311 return DBG_HOOK_ERROR;
314 if (cur_kprobe) {
315 /* Hit a kprobe inside another kprobe */
316 if (!reenter_kprobe(p, regs, kcb))
317 return DBG_HOOK_ERROR;
318 } else {
319 /* Probe hit */
320 set_current_kprobe(p);
321 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
324 * If we have no pre-handler or it returned 0, we
325 * continue with normal processing. If we have a
326 * pre-handler and it returned non-zero, it will
327 * modify the execution path and not need to single-step
328 * Let's just reset current kprobe and exit.
330 if (!p->pre_handler || !p->pre_handler(p, regs))
331 setup_singlestep(p, regs, kcb, 0);
332 else
333 reset_current_kprobe();
336 return DBG_HOOK_HANDLED;
339 static struct break_hook kprobes_break_hook = {
340 .imm = KPROBES_BRK_IMM,
341 .fn = kprobe_breakpoint_handler,
344 static int __kprobes
345 kprobe_breakpoint_ss_handler(struct pt_regs *regs, unsigned long esr)
347 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
348 unsigned long addr = instruction_pointer(regs);
349 struct kprobe *cur = kprobe_running();
351 if (cur && (kcb->kprobe_status & (KPROBE_HIT_SS | KPROBE_REENTER)) &&
352 ((unsigned long)&cur->ainsn.xol_insn[1] == addr)) {
353 kprobes_restore_local_irqflag(kcb, regs);
354 post_kprobe_handler(cur, kcb, regs);
356 return DBG_HOOK_HANDLED;
359 /* not ours, kprobes should ignore it */
360 return DBG_HOOK_ERROR;
363 static struct break_hook kprobes_break_ss_hook = {
364 .imm = KPROBES_BRK_SS_IMM,
365 .fn = kprobe_breakpoint_ss_handler,
368 static int __kprobes
369 kretprobe_breakpoint_handler(struct pt_regs *regs, unsigned long esr)
371 if (regs->pc != (unsigned long)__kretprobe_trampoline)
372 return DBG_HOOK_ERROR;
374 regs->pc = kretprobe_trampoline_handler(regs, (void *)regs->regs[29]);
375 return DBG_HOOK_HANDLED;
378 static struct break_hook kretprobes_break_hook = {
379 .imm = KRETPROBES_BRK_IMM,
380 .fn = kretprobe_breakpoint_handler,
384 * Provide a blacklist of symbols identifying ranges which cannot be kprobed.
385 * This blacklist is exposed to userspace via debugfs (kprobes/blacklist).
387 int __init arch_populate_kprobe_blacklist(void)
389 int ret;
391 ret = kprobe_add_area_blacklist((unsigned long)__entry_text_start,
392 (unsigned long)__entry_text_end);
393 if (ret)
394 return ret;
395 ret = kprobe_add_area_blacklist((unsigned long)__irqentry_text_start,
396 (unsigned long)__irqentry_text_end);
397 if (ret)
398 return ret;
399 ret = kprobe_add_area_blacklist((unsigned long)__hyp_text_start,
400 (unsigned long)__hyp_text_end);
401 if (ret || is_kernel_in_hyp_mode())
402 return ret;
403 ret = kprobe_add_area_blacklist((unsigned long)__hyp_idmap_text_start,
404 (unsigned long)__hyp_idmap_text_end);
405 return ret;
408 void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
409 struct pt_regs *regs)
411 ri->ret_addr = (kprobe_opcode_t *)regs->regs[30];
412 ri->fp = (void *)regs->regs[29];
414 /* replace return addr (x30) with trampoline */
415 regs->regs[30] = (long)&__kretprobe_trampoline;
418 int __kprobes arch_trampoline_kprobe(struct kprobe *p)
420 return 0;
423 int __init arch_init_kprobes(void)
425 register_kernel_break_hook(&kprobes_break_hook);
426 register_kernel_break_hook(&kprobes_break_ss_hook);
427 register_kernel_break_hook(&kretprobes_break_hook);
429 return 0;