blob: 535c7b35cb59902e3341989afac750eb497cdd2d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* arch/sparc64/kernel/kprobes.c
3 *
4 * Copyright (C) 2004 David S. Miller <davem@davemloft.net>
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/kernel.h>
8#include <linux/kprobes.h>
Paul Gortmakercdd4f4c2016-09-19 17:36:29 -04009#include <linux/extable.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070010#include <linux/kdebug.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Kirill Tkhai812cb832013-09-14 16:02:11 +040012#include <linux/context_tracking.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/signal.h>
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070014#include <asm/cacheflush.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080015#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/* We do not have hardware single-stepping on sparc64.
18 * So we implement software single-stepping with breakpoint
19 * traps. The top-level scheme is similar to that used
20 * in the x86 kprobes implementation.
21 *
22 * In the kprobe->ainsn.insn[] array we store the original
23 * instruction at index zero and a break instruction at
24 * index one.
25 *
26 * When we hit a kprobe we:
27 * - Run the pre-handler
28 * - Remember "regs->tnpc" and interrupt level stored in
29 * "regs->tstate" so we can restore them later
30 * - Disable PIL interrupts
31 * - Set regs->tpc to point to kprobe->ainsn.insn[0]
32 * - Set regs->tnpc to point to kprobe->ainsn.insn[1]
33 * - Mark that we are actively in a kprobe
34 *
35 * At this point we wait for the second breakpoint at
36 * kprobe->ainsn.insn[1] to hit. When it does we:
37 * - Run the post-handler
38 * - Set regs->tpc to "remembered" regs->tnpc stored above,
39 * restore the PIL interrupt level in "regs->tstate" as well
40 * - Make any adjustments necessary to regs->tnpc in order
41 * to handle relative branches correctly. See below.
42 * - Mark that we are no longer actively in a kprobe.
43 */
44
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080045DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
46DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
47
Masami Hiramatsuf438d912007-10-16 01:27:49 -070048struct kretprobe_blackpoint kretprobe_blacklist[] = {{NULL, NULL}};
49
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070050int __kprobes arch_prepare_kprobe(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
David S. Miller936cf252009-12-09 23:57:24 -080052 if ((unsigned long) p->addr & 0x3UL)
53 return -EILSEQ;
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 p->ainsn.insn[0] = *p->addr;
David S. Millerf0882582006-12-10 02:42:03 -080056 flushi(&p->ainsn.insn[0]);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 p->ainsn.insn[1] = BREAKPOINT_INSTRUCTION_2;
David S. Millerf0882582006-12-10 02:42:03 -080059 flushi(&p->ainsn.insn[1]);
60
Rusty Lynch7e1048b2005-06-23 00:09:25 -070061 p->opcode = *p->addr;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -080062 return 0;
Rusty Lynch7e1048b2005-06-23 00:09:25 -070063}
64
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070065void __kprobes arch_arm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -070066{
67 *p->addr = BREAKPOINT_INSTRUCTION;
68 flushi(p->addr);
69}
70
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -070071void __kprobes arch_disarm_kprobe(struct kprobe *p)
Rusty Lynch7e1048b2005-06-23 00:09:25 -070072{
73 *p->addr = p->opcode;
74 flushi(p->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Prasanna S Panchamukhi07fab8d2006-04-18 22:22:03 -070077static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -070078{
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080079 kcb->prev_kprobe.kp = kprobe_running();
80 kcb->prev_kprobe.status = kcb->kprobe_status;
81 kcb->prev_kprobe.orig_tnpc = kcb->kprobe_orig_tnpc;
82 kcb->prev_kprobe.orig_tstate_pil = kcb->kprobe_orig_tstate_pil;
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -070083}
84
Prasanna S Panchamukhi07fab8d2006-04-18 22:22:03 -070085static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -070086{
Christoph Lameter494fc422014-08-17 12:30:54 -050087 __this_cpu_write(current_kprobe, kcb->prev_kprobe.kp);
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080088 kcb->kprobe_status = kcb->prev_kprobe.status;
89 kcb->kprobe_orig_tnpc = kcb->prev_kprobe.orig_tnpc;
90 kcb->kprobe_orig_tstate_pil = kcb->prev_kprobe.orig_tstate_pil;
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -070091}
92
Prasanna S Panchamukhi07fab8d2006-04-18 22:22:03 -070093static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080094 struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Christoph Lameter494fc422014-08-17 12:30:54 -050096 __this_cpu_write(current_kprobe, p);
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -080097 kcb->kprobe_orig_tnpc = regs->tnpc;
98 kcb->kprobe_orig_tstate_pil = (regs->tstate & TSTATE_PIL);
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -070099}
100
Prasanna S Panchamukhi07fab8d2006-04-18 22:22:03 -0700101static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs,
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800102 struct kprobe_ctlblk *kcb)
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 regs->tstate |= TSTATE_PIL;
105
106 /*single step inline, if it a breakpoint instruction*/
107 if (p->opcode == BREAKPOINT_INSTRUCTION) {
108 regs->tpc = (unsigned long) p->addr;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800109 regs->tnpc = kcb->kprobe_orig_tnpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 } else {
111 regs->tpc = (unsigned long) &p->ainsn.insn[0];
112 regs->tnpc = (unsigned long) &p->ainsn.insn[1];
113 }
114}
115
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700116static int __kprobes kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct kprobe *p;
119 void *addr = (void *) regs->tpc;
120 int ret = 0;
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800121 struct kprobe_ctlblk *kcb;
122
123 /*
124 * We don't want to be preempted for the entire
125 * duration of kprobe processing
126 */
127 preempt_disable();
128 kcb = get_kprobe_ctlblk();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (kprobe_running()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 p = get_kprobe(addr);
132 if (p) {
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800133 if (kcb->kprobe_status == KPROBE_HIT_SS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 regs->tstate = ((regs->tstate & ~TSTATE_PIL) |
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800135 kcb->kprobe_orig_tstate_pil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto no_kprobe;
137 }
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700138 /* We have reentered the kprobe_handler(), since
139 * another probe was hit while within the handler.
140 * We here save the original kprobes variables and
141 * just single step on the instruction of the new probe
142 * without calling any user handlers.
143 */
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800144 save_previous_kprobe(kcb);
145 set_current_kprobe(p, regs, kcb);
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -0800146 kprobes_inc_nmissed_count(p);
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800147 kcb->kprobe_status = KPROBE_REENTER;
148 prepare_singlestep(p, regs, kcb);
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700149 return 1;
Masami Hiramatsud5ad85b2018-06-20 01:15:17 +0900150 } else if (*(u32 *)addr != BREAKPOINT_INSTRUCTION) {
Keshavamurthy Anil Seb3a7292006-01-11 12:17:42 -0800151 /* The breakpoint instruction was removed by
152 * another cpu right after we hit, no further
153 * handling of this interrupt is appropriate
154 */
Masami Hiramatsud5ad85b2018-06-20 01:15:17 +0900155 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto no_kprobe;
158 }
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 p = get_kprobe(addr);
161 if (!p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (*(u32 *)addr != BREAKPOINT_INSTRUCTION) {
163 /*
164 * The breakpoint instruction was removed right
165 * after we hit it. Another cpu has removed
166 * either a probepoint or a debugger breakpoint
167 * at this address. In either case, no further
168 * handling of this interrupt is appropriate.
169 */
170 ret = 1;
171 }
172 /* Not one of ours: let kernel handle it */
173 goto no_kprobe;
174 }
175
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800176 set_current_kprobe(p, regs, kcb);
177 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
Masami Hiramatsucce188b2018-06-20 01:15:45 +0900178 if (p->pre_handler && p->pre_handler(p, regs)) {
179 reset_current_kprobe();
180 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 1;
Masami Hiramatsucce188b2018-06-20 01:15:45 +0900182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800184 prepare_singlestep(p, regs, kcb);
185 kcb->kprobe_status = KPROBE_HIT_SS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return 1;
187
188no_kprobe:
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800189 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return ret;
191}
192
193/* If INSN is a relative control transfer instruction,
194 * return the corrected branch destination value.
195 *
David S. Millerf0882582006-12-10 02:42:03 -0800196 * regs->tpc and regs->tnpc still hold the values of the
197 * program counters at the time of trap due to the execution
198 * of the BREAKPOINT_INSTRUCTION_2 at p->ainsn.insn[1]
199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
David S. Millerf0882582006-12-10 02:42:03 -0800201static unsigned long __kprobes relbranch_fixup(u32 insn, struct kprobe *p,
202 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
David S. Millerf0882582006-12-10 02:42:03 -0800204 unsigned long real_pc = (unsigned long) p->addr;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /* Branch not taken, no mods necessary. */
David S. Millerf0882582006-12-10 02:42:03 -0800207 if (regs->tnpc == regs->tpc + 0x4UL)
208 return real_pc + 0x8UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* The three cases are call, branch w/prediction,
211 * and traditional branch.
212 */
213 if ((insn & 0xc0000000) == 0x40000000 ||
214 (insn & 0xc1c00000) == 0x00400000 ||
215 (insn & 0xc1c00000) == 0x00800000) {
David S. Millerf0882582006-12-10 02:42:03 -0800216 unsigned long ainsn_addr;
217
218 ainsn_addr = (unsigned long) &p->ainsn.insn[0];
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /* The instruction did all the work for us
221 * already, just apply the offset to the correct
222 * instruction location.
223 */
David S. Millerf0882582006-12-10 02:42:03 -0800224 return (real_pc + (regs->tnpc - ainsn_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
David S. Millerf0882582006-12-10 02:42:03 -0800227 /* It is jmpl or some other absolute PC modification instruction,
228 * leave NPC as-is.
229 */
230 return regs->tnpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
233/* If INSN is an instruction which writes it's PC location
234 * into a destination register, fix that up.
235 */
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700236static void __kprobes retpc_fixup(struct pt_regs *regs, u32 insn,
237 unsigned long real_pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 unsigned long *slot = NULL;
240
David S. Millerf0882582006-12-10 02:42:03 -0800241 /* Simplest case is 'call', which always uses %o7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if ((insn & 0xc0000000) == 0x40000000) {
243 slot = &regs->u_regs[UREG_I7];
244 }
245
David S. Millerf0882582006-12-10 02:42:03 -0800246 /* 'jmpl' encodes the register inside of the opcode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if ((insn & 0xc1f80000) == 0x81c00000) {
248 unsigned long rd = ((insn >> 25) & 0x1f);
249
250 if (rd <= 15) {
251 slot = &regs->u_regs[rd];
252 } else {
253 /* Hard case, it goes onto the stack. */
254 flushw_all();
255
256 rd -= 16;
257 slot = (unsigned long *)
258 (regs->u_regs[UREG_FP] + STACK_BIAS);
259 slot += rd;
260 }
261 }
262 if (slot != NULL)
263 *slot = real_pc;
264}
265
266/*
267 * Called after single-stepping. p->addr is the address of the
David S. Millerf0882582006-12-10 02:42:03 -0800268 * instruction which has been replaced by the breakpoint
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * instruction. To avoid the SMP problems that can occur when we
270 * temporarily put back the original opcode to single-step, we
271 * single-stepped a copy of the instruction. The address of this
David S. Millerf0882582006-12-10 02:42:03 -0800272 * copy is &p->ainsn.insn[0].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
274 * This function prepares to return from the post-single-step
275 * breakpoint trap.
276 */
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800277static void __kprobes resume_execution(struct kprobe *p,
278 struct pt_regs *regs, struct kprobe_ctlblk *kcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 u32 insn = p->ainsn.insn[0];
281
David S. Millerf0882582006-12-10 02:42:03 -0800282 regs->tnpc = relbranch_fixup(insn, p, regs);
283
284 /* This assignment must occur after relbranch_fixup() */
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800285 regs->tpc = kcb->kprobe_orig_tnpc;
David S. Millerf0882582006-12-10 02:42:03 -0800286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 retpc_fixup(regs, insn, (unsigned long) p->addr);
288
289 regs->tstate = ((regs->tstate & ~TSTATE_PIL) |
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800290 kcb->kprobe_orig_tstate_pil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Prasanna S Panchamukhi07fab8d2006-04-18 22:22:03 -0700293static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800295 struct kprobe *cur = kprobe_running();
296 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
297
298 if (!cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800301 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
302 kcb->kprobe_status = KPROBE_HIT_SSDONE;
303 cur->post_handler(cur, regs, 0);
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800306 resume_execution(cur, regs, kcb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700308 /*Restore back the original saved kprobes variables and continue. */
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800309 if (kcb->kprobe_status == KPROBE_REENTER) {
310 restore_previous_kprobe(kcb);
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700311 goto out;
312 }
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800313 reset_current_kprobe();
Prasanna S Panchamukhie539c232005-06-23 00:09:39 -0700314out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 preempt_enable_no_resched();
316
317 return 1;
318}
319
David S. Miller127cda12007-05-08 18:25:14 -0700320int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800322 struct kprobe *cur = kprobe_running();
323 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Prasanna S Panchamukhib6700092006-03-26 01:38:26 -0800324 const struct exception_table_entry *entry;
Ananth N Mavinakayanahallif215d982005-11-07 01:00:11 -0800325
Prasanna S Panchamukhib6700092006-03-26 01:38:26 -0800326 switch(kcb->kprobe_status) {
327 case KPROBE_HIT_SS:
328 case KPROBE_REENTER:
329 /*
330 * We are here because the instruction being single
331 * stepped caused a page fault. We reset the current
332 * kprobe and the tpc points back to the probe address
333 * and allow the page fault handler to continue as a
334 * normal page fault.
335 */
336 regs->tpc = (unsigned long)cur->addr;
337 regs->tnpc = kcb->kprobe_orig_tnpc;
338 regs->tstate = ((regs->tstate & ~TSTATE_PIL) |
339 kcb->kprobe_orig_tstate_pil);
340 if (kcb->kprobe_status == KPROBE_REENTER)
341 restore_previous_kprobe(kcb);
342 else
343 reset_current_kprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 preempt_enable_no_resched();
Prasanna S Panchamukhib6700092006-03-26 01:38:26 -0800345 break;
346 case KPROBE_HIT_ACTIVE:
347 case KPROBE_HIT_SSDONE:
348 /*
Prasanna S Panchamukhib6700092006-03-26 01:38:26 -0800349 * In case the user-specified fault handler returned
350 * zero, try to fix up.
351 */
352
353 entry = search_exception_tables(regs->tpc);
354 if (entry) {
355 regs->tpc = entry->fixup;
356 regs->tnpc = regs->tpc + 4;
357 return 1;
358 }
359
360 /*
361 * fixup_exception() could not handle it,
362 * Let do_page_fault() fix it.
363 */
364 break;
365 default:
366 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Prasanna S Panchamukhib6700092006-03-26 01:38:26 -0800368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370}
371
372/*
373 * Wrapper routine to for handling exceptions.
374 */
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700375int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
376 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct die_args *args = (struct die_args *)data;
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800379 int ret = NOTIFY_DONE;
380
bibo,mao2326c772006-03-26 01:38:21 -0800381 if (args->regs && user_mode(args->regs))
382 return ret;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 switch (val) {
385 case DIE_DEBUG:
386 if (kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800387 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 break;
389 case DIE_DEBUG_2:
390 if (post_kprobe_handler(args->regs))
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800391 ret = NOTIFY_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 default:
394 break;
395 }
Ananth N Mavinakayanahalli66ff2d02005-11-07 01:00:07 -0800396 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700399asmlinkage void __kprobes kprobe_trap(unsigned long trap_level,
400 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Kirill Tkhai812cb832013-09-14 16:02:11 +0400402 enum ctx_state prev_state = exception_enter();
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 BUG_ON(trap_level != 0x170 && trap_level != 0x171);
405
406 if (user_mode(regs)) {
407 local_irq_enable();
408 bad_trap(regs, trap_level);
Kirill Tkhai812cb832013-09-14 16:02:11 +0400409 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
412 /* trap_level == 0x170 --> ta 0x70
413 * trap_level == 0x171 --> ta 0x71
414 */
415 if (notify_die((trap_level == 0x170) ? DIE_DEBUG : DIE_DEBUG_2,
416 (trap_level == 0x170) ? "debug" : "debug_2",
417 regs, 0, trap_level, SIGTRAP) != NOTIFY_STOP)
418 bad_trap(regs, trap_level);
Kirill Tkhai812cb832013-09-14 16:02:11 +0400419out:
420 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700423/* The value stored in the return address register is actually 2
424 * instructions before where the callee will return to.
425 * Sequences usually look something like this
David S. Millerd38f1222008-02-09 03:40:55 -0800426 *
427 * call some_function <--- return register points here
428 * nop <--- call delay slot
429 * whatever <--- where callee returns to
430 *
431 * To keep trampoline_probe_handler logic simpler, we normalize the
432 * value kept in ri->ret_addr so we don't need to keep adjusting it
433 * back and forth.
434 */
435void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
436 struct pt_regs *regs)
Rusty Lynch67729262005-07-05 18:54:50 -0700437{
David S. Millerd38f1222008-02-09 03:40:55 -0800438 ri->ret_addr = (kprobe_opcode_t *)(regs->u_regs[UREG_RETPC] + 8);
Masami Hiramatsu5e96ce82020-08-29 22:02:25 +0900439 ri->fp = NULL;
David S. Millerd38f1222008-02-09 03:40:55 -0800440
441 /* Replace the return addr with trampoline addr */
442 regs->u_regs[UREG_RETPC] =
Masami Hiramatsuadf8a612021-09-14 23:40:54 +0900443 ((unsigned long)__kretprobe_trampoline) - 8;
David S. Millerd38f1222008-02-09 03:40:55 -0800444}
445
446/*
447 * Called when the probe at kretprobe trampoline is hit
448 */
Sam Ravnborg2f827ea2014-05-16 23:26:03 +0200449static int __kprobes trampoline_probe_handler(struct kprobe *p,
450 struct pt_regs *regs)
David S. Millerd38f1222008-02-09 03:40:55 -0800451{
Masami Hiramatsu5e96ce82020-08-29 22:02:25 +0900452 unsigned long orig_ret_address = 0;
David S. Millerd38f1222008-02-09 03:40:55 -0800453
Masami Hiramatsu96fed8a2021-09-14 23:40:45 +0900454 orig_ret_address = __kretprobe_trampoline_handler(regs, NULL);
David S. Millerd38f1222008-02-09 03:40:55 -0800455 regs->tpc = orig_ret_address;
456 regs->tnpc = orig_ret_address + 4;
457
David S. Millerd38f1222008-02-09 03:40:55 -0800458 /*
459 * By returning a non-zero value, we are telling
460 * kprobe_handler() that we don't want the post_handler
461 * to run (and have re-enabled preemption)
462 */
463 return 1;
464}
465
Sam Ravnborg2f827ea2014-05-16 23:26:03 +0200466static void __used kretprobe_trampoline_holder(void)
David S. Millerd38f1222008-02-09 03:40:55 -0800467{
Masami Hiramatsuadf8a612021-09-14 23:40:54 +0900468 asm volatile(".global __kretprobe_trampoline\n"
469 "__kretprobe_trampoline:\n"
David S. Millerd38f1222008-02-09 03:40:55 -0800470 "\tnop\n"
471 "\tnop\n");
472}
473static struct kprobe trampoline_p = {
Masami Hiramatsuadf8a612021-09-14 23:40:54 +0900474 .addr = (kprobe_opcode_t *) &__kretprobe_trampoline,
David S. Millerd38f1222008-02-09 03:40:55 -0800475 .pre_handler = trampoline_probe_handler
476};
477
478int __init arch_init_kprobes(void)
479{
480 return register_kprobe(&trampoline_p);
481}
482
483int __kprobes arch_trampoline_kprobe(struct kprobe *p)
484{
Masami Hiramatsuadf8a612021-09-14 23:40:54 +0900485 if (p->addr == (kprobe_opcode_t *)&__kretprobe_trampoline)
David S. Millerd38f1222008-02-09 03:40:55 -0800486 return 1;
487
Rusty Lynch67729262005-07-05 18:54:50 -0700488 return 0;
489}