blob: e357e3669a34e47d47d6fd015df5046e95313404 [file] [log] [blame]
Chris Smithd39f5452008-09-05 17:15:39 +09001/*
2 * Kernel probes (kprobes) for SuperH
3 *
4 * Copyright (C) 2007 Chris Smith <chris.smith@st.com>
5 * Copyright (C) 2006 Lineo Solutions, Inc.
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11#include <linux/kprobes.h>
12#include <linux/module.h>
13#include <linux/ptrace.h>
14#include <linux/preempt.h>
15#include <linux/kdebug.h>
16#include <asm/cacheflush.h>
17#include <asm/uaccess.h>
18
19DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
20DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
21
22static struct kprobe saved_current_opcode;
23static struct kprobe saved_next_opcode;
24static struct kprobe saved_next_opcode2;
25
26#define OPCODE_JMP(x) (((x) & 0xF0FF) == 0x402b)
27#define OPCODE_JSR(x) (((x) & 0xF0FF) == 0x400b)
28#define OPCODE_BRA(x) (((x) & 0xF000) == 0xa000)
29#define OPCODE_BRAF(x) (((x) & 0xF0FF) == 0x0023)
30#define OPCODE_BSR(x) (((x) & 0xF000) == 0xb000)
31#define OPCODE_BSRF(x) (((x) & 0xF0FF) == 0x0003)
32
33#define OPCODE_BF_S(x) (((x) & 0xFF00) == 0x8f00)
34#define OPCODE_BT_S(x) (((x) & 0xFF00) == 0x8d00)
35
36#define OPCODE_BF(x) (((x) & 0xFF00) == 0x8b00)
37#define OPCODE_BT(x) (((x) & 0xFF00) == 0x8900)
38
39#define OPCODE_RTS(x) (((x) & 0x000F) == 0x000b)
40#define OPCODE_RTE(x) (((x) & 0xFFFF) == 0x002b)
41
42int __kprobes arch_prepare_kprobe(struct kprobe *p)
43{
44 kprobe_opcode_t opcode = *(kprobe_opcode_t *) (p->addr);
45
46 if (OPCODE_RTE(opcode))
47 return -EFAULT; /* Bad breakpoint */
48
49 p->opcode = opcode;
50
51 return 0;
52}
53
54void __kprobes arch_copy_kprobe(struct kprobe *p)
55{
56 memcpy(p->ainsn.insn, p->addr, MAX_INSN_SIZE * sizeof(kprobe_opcode_t));
57 p->opcode = *p->addr;
58}
59
60void __kprobes arch_arm_kprobe(struct kprobe *p)
61{
62 *p->addr = BREAKPOINT_INSTRUCTION;
63 flush_icache_range((unsigned long)p->addr,
64 (unsigned long)p->addr + sizeof(kprobe_opcode_t));
65}
66
67void __kprobes arch_disarm_kprobe(struct kprobe *p)
68{
69 *p->addr = p->opcode;
70 flush_icache_range((unsigned long)p->addr,
71 (unsigned long)p->addr + sizeof(kprobe_opcode_t));
72}
73
74int __kprobes arch_trampoline_kprobe(struct kprobe *p)
75{
76 if (*p->addr == BREAKPOINT_INSTRUCTION)
77 return 1;
78
79 return 0;
80}
81
82/**
83 * If an illegal slot instruction exception occurs for an address
84 * containing a kprobe, remove the probe.
85 *
86 * Returns 0 if the exception was handled successfully, 1 otherwise.
87 */
88int __kprobes kprobe_handle_illslot(unsigned long pc)
89{
90 struct kprobe *p = get_kprobe((kprobe_opcode_t *) pc + 1);
91
92 if (p != NULL) {
93 printk("Warning: removing kprobe from delay slot: 0x%.8x\n",
94 (unsigned int)pc + 2);
95 unregister_kprobe(p);
96 return 0;
97 }
98
99 return 1;
100}
101
102void __kprobes arch_remove_kprobe(struct kprobe *p)
103{
104 if (saved_next_opcode.addr != 0x0) {
105 arch_disarm_kprobe(p);
106 arch_disarm_kprobe(&saved_next_opcode);
107 saved_next_opcode.addr = 0x0;
108 saved_next_opcode.opcode = 0x0;
109
110 if (saved_next_opcode2.addr != 0x0) {
111 arch_disarm_kprobe(&saved_next_opcode2);
112 saved_next_opcode2.addr = 0x0;
113 saved_next_opcode2.opcode = 0x0;
114 }
115 }
116}
117
Paul Mundt4eb58452008-09-08 18:22:47 +0900118static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
Chris Smithd39f5452008-09-05 17:15:39 +0900119{
120 kcb->prev_kprobe.kp = kprobe_running();
121 kcb->prev_kprobe.status = kcb->kprobe_status;
122}
123
Paul Mundt4eb58452008-09-08 18:22:47 +0900124static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
Chris Smithd39f5452008-09-05 17:15:39 +0900125{
126 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
127 kcb->kprobe_status = kcb->prev_kprobe.status;
128}
129
Paul Mundt4eb58452008-09-08 18:22:47 +0900130static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
131 struct kprobe_ctlblk *kcb)
Chris Smithd39f5452008-09-05 17:15:39 +0900132{
133 __get_cpu_var(current_kprobe) = p;
134}
135
136/*
137 * Singlestep is implemented by disabling the current kprobe and setting one
138 * on the next instruction, following branches. Two probes are set if the
139 * branch is conditional.
140 */
Paul Mundt4eb58452008-09-08 18:22:47 +0900141static void __kprobes prepare_singlestep(struct kprobe *p, struct pt_regs *regs)
Chris Smithd39f5452008-09-05 17:15:39 +0900142{
143 kprobe_opcode_t *addr = NULL;
144 saved_current_opcode.addr = (kprobe_opcode_t *) (regs->pc);
145 addr = saved_current_opcode.addr;
146
147 if (p != NULL) {
148 arch_disarm_kprobe(p);
149
150 if (OPCODE_JSR(p->opcode) || OPCODE_JMP(p->opcode)) {
151 unsigned int reg_nr = ((p->opcode >> 8) & 0x000F);
152 saved_next_opcode.addr =
153 (kprobe_opcode_t *) regs->regs[reg_nr];
154 } else if (OPCODE_BRA(p->opcode) || OPCODE_BSR(p->opcode)) {
155 unsigned long disp = (p->opcode & 0x0FFF);
156 saved_next_opcode.addr =
157 (kprobe_opcode_t *) (regs->pc + 4 + disp * 2);
158
159 } else if (OPCODE_BRAF(p->opcode) || OPCODE_BSRF(p->opcode)) {
160 unsigned int reg_nr = ((p->opcode >> 8) & 0x000F);
161 saved_next_opcode.addr =
162 (kprobe_opcode_t *) (regs->pc + 4 +
163 regs->regs[reg_nr]);
164
165 } else if (OPCODE_RTS(p->opcode)) {
166 saved_next_opcode.addr = (kprobe_opcode_t *) regs->pr;
167
168 } else if (OPCODE_BF(p->opcode) || OPCODE_BT(p->opcode)) {
169 unsigned long disp = (p->opcode & 0x00FF);
170 /* case 1 */
171 saved_next_opcode.addr = p->addr + 1;
172 /* case 2 */
173 saved_next_opcode2.addr =
174 (kprobe_opcode_t *) (regs->pc + 4 + disp * 2);
175 saved_next_opcode2.opcode = *(saved_next_opcode2.addr);
176 arch_arm_kprobe(&saved_next_opcode2);
177
178 } else if (OPCODE_BF_S(p->opcode) || OPCODE_BT_S(p->opcode)) {
179 unsigned long disp = (p->opcode & 0x00FF);
180 /* case 1 */
181 saved_next_opcode.addr = p->addr + 2;
182 /* case 2 */
183 saved_next_opcode2.addr =
184 (kprobe_opcode_t *) (regs->pc + 4 + disp * 2);
185 saved_next_opcode2.opcode = *(saved_next_opcode2.addr);
186 arch_arm_kprobe(&saved_next_opcode2);
187
188 } else {
189 saved_next_opcode.addr = p->addr + 1;
190 }
191
192 saved_next_opcode.opcode = *(saved_next_opcode.addr);
193 arch_arm_kprobe(&saved_next_opcode);
194 }
195}
196
197/* Called with kretprobe_lock held */
198void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
199 struct pt_regs *regs)
200{
201 ri->ret_addr = (kprobe_opcode_t *) regs->pr;
202
203 /* Replace the return addr with trampoline addr */
204 regs->pr = (unsigned long)kretprobe_trampoline;
205}
206
207static int __kprobes kprobe_handler(struct pt_regs *regs)
208{
209 struct kprobe *p;
210 int ret = 0;
211 kprobe_opcode_t *addr = NULL;
212 struct kprobe_ctlblk *kcb;
213
214 /*
215 * We don't want to be preempted for the entire
216 * duration of kprobe processing
217 */
218 preempt_disable();
219 kcb = get_kprobe_ctlblk();
220
221 addr = (kprobe_opcode_t *) (regs->pc);
222
223 /* Check we're not actually recursing */
224 if (kprobe_running()) {
225 p = get_kprobe(addr);
226 if (p) {
227 if (kcb->kprobe_status == KPROBE_HIT_SS &&
228 *p->ainsn.insn == BREAKPOINT_INSTRUCTION) {
229 goto no_kprobe;
230 }
231 /* We have reentered the kprobe_handler(), since
232 * another probe was hit while within the handler.
233 * We here save the original kprobes variables and
234 * just single step on the instruction of the new probe
235 * without calling any user handlers.
236 */
237 save_previous_kprobe(kcb);
238 set_current_kprobe(p, regs, kcb);
239 kprobes_inc_nmissed_count(p);
240 prepare_singlestep(p, regs);
241 kcb->kprobe_status = KPROBE_REENTER;
242 return 1;
243 } else {
244 p = __get_cpu_var(current_kprobe);
245 if (p->break_handler && p->break_handler(p, regs)) {
246 goto ss_probe;
247 }
248 }
249 goto no_kprobe;
250 }
251
252 p = get_kprobe(addr);
253 if (!p) {
254 /* Not one of ours: let kernel handle it */
Paul Mundt734db372008-09-08 18:15:55 +0900255 if (*(kprobe_opcode_t *)addr != BREAKPOINT_INSTRUCTION) {
256 /*
257 * The breakpoint instruction was removed right
258 * after we hit it. Another cpu has removed
259 * either a probepoint or a debugger breakpoint
260 * at this address. In either case, no further
261 * handling of this interrupt is appropriate.
262 */
263 ret = 1;
264 }
265
Chris Smithd39f5452008-09-05 17:15:39 +0900266 goto no_kprobe;
267 }
268
269 set_current_kprobe(p, regs, kcb);
270 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
271
272 if (p->pre_handler && p->pre_handler(p, regs))
273 /* handler has already set things up, so skip ss setup */
274 return 1;
275
Paul Mundt4eb58452008-09-08 18:22:47 +0900276ss_probe:
Chris Smithd39f5452008-09-05 17:15:39 +0900277 prepare_singlestep(p, regs);
278 kcb->kprobe_status = KPROBE_HIT_SS;
279 return 1;
280
Paul Mundt4eb58452008-09-08 18:22:47 +0900281no_kprobe:
Chris Smithd39f5452008-09-05 17:15:39 +0900282 preempt_enable_no_resched();
283 return ret;
284}
285
286/*
287 * For function-return probes, init_kprobes() establishes a probepoint
288 * here. When a retprobed function returns, this probe is hit and
289 * trampoline_probe_handler() runs, calling the kretprobe's handler.
290 */
Paul Mundte7cb0162008-09-08 12:02:17 +0900291static void __used kretprobe_trampoline_holder(void)
Chris Smithd39f5452008-09-05 17:15:39 +0900292{
293 asm volatile ("kretprobe_trampoline: \n" "nop\n");
294}
295
296/*
297 * Called when we hit the probe point at kretprobe_trampoline
298 */
299int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs)
300{
301 struct kretprobe_instance *ri = NULL;
302 struct hlist_head *head, empty_rp;
303 struct hlist_node *node, *tmp;
304 unsigned long flags, orig_ret_address = 0;
305 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
306
307 INIT_HLIST_HEAD(&empty_rp);
308 kretprobe_hash_lock(current, &head, &flags);
309
310 /*
311 * It is possible to have multiple instances associated with a given
312 * task either because an multiple functions in the call path
313 * have a return probe installed on them, and/or more then one return
314 * return probe was registered for a target function.
315 *
316 * We can handle this because:
317 * - instances are always inserted at the head of the list
318 * - when multiple return probes are registered for the same
319 * function, the first instance's ret_addr will point to the
320 * real return address, and all the rest will point to
321 * kretprobe_trampoline
322 */
323 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
324 if (ri->task != current)
325 /* another task is sharing our hash bucket */
326 continue;
327
328 if (ri->rp && ri->rp->handler) {
329 __get_cpu_var(current_kprobe) = &ri->rp->kp;
330 ri->rp->handler(ri, regs);
331 __get_cpu_var(current_kprobe) = NULL;
332 }
333
334 orig_ret_address = (unsigned long)ri->ret_addr;
335 recycle_rp_inst(ri, &empty_rp);
336
337 if (orig_ret_address != trampoline_address)
338 /*
339 * This is the real return address. Any other
340 * instances associated with this task are for
341 * other calls deeper on the call stack
342 */
343 break;
344 }
345
346 kretprobe_assert(ri, orig_ret_address, trampoline_address);
347
348 regs->pc = orig_ret_address;
349 kretprobe_hash_unlock(current, &flags);
350
351 preempt_enable_no_resched();
352
353 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
354 hlist_del(&ri->hlist);
355 kfree(ri);
356 }
357
358 return orig_ret_address;
359}
360
Paul Mundt4eb58452008-09-08 18:22:47 +0900361static int __kprobes post_kprobe_handler(struct pt_regs *regs)
Chris Smithd39f5452008-09-05 17:15:39 +0900362{
363 struct kprobe *cur = kprobe_running();
364 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
365 kprobe_opcode_t *addr = NULL;
366 struct kprobe *p = NULL;
367
368 if (!cur)
369 return 0;
370
371 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
372 kcb->kprobe_status = KPROBE_HIT_SSDONE;
373 cur->post_handler(cur, regs, 0);
374 }
375
376 if (saved_next_opcode.addr != 0x0) {
377 arch_disarm_kprobe(&saved_next_opcode);
378 saved_next_opcode.addr = 0x0;
379 saved_next_opcode.opcode = 0x0;
380
381 addr = saved_current_opcode.addr;
382 saved_current_opcode.addr = 0x0;
383
384 p = get_kprobe(addr);
385 arch_arm_kprobe(p);
386
387 if (saved_next_opcode2.addr != 0x0) {
388 arch_disarm_kprobe(&saved_next_opcode2);
389 saved_next_opcode2.addr = 0x0;
390 saved_next_opcode2.opcode = 0x0;
391 }
392 }
393
Paul Mundt4eb58452008-09-08 18:22:47 +0900394 /* Restore back the original saved kprobes variables and continue. */
Chris Smithd39f5452008-09-05 17:15:39 +0900395 if (kcb->kprobe_status == KPROBE_REENTER) {
396 restore_previous_kprobe(kcb);
397 goto out;
398 }
Paul Mundt4eb58452008-09-08 18:22:47 +0900399
Chris Smithd39f5452008-09-05 17:15:39 +0900400 reset_current_kprobe();
401
Paul Mundt4eb58452008-09-08 18:22:47 +0900402out:
Chris Smithd39f5452008-09-05 17:15:39 +0900403 preempt_enable_no_resched();
404
405 return 1;
406}
407
Paul Mundt037c10a2008-09-08 12:22:47 +0900408int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
Chris Smithd39f5452008-09-05 17:15:39 +0900409{
410 struct kprobe *cur = kprobe_running();
411 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
412 const struct exception_table_entry *entry;
413
414 switch (kcb->kprobe_status) {
415 case KPROBE_HIT_SS:
416 case KPROBE_REENTER:
417 /*
418 * We are here because the instruction being single
419 * stepped caused a page fault. We reset the current
420 * kprobe, point the pc back to the probe address
421 * and allow the page fault handler to continue as a
422 * normal page fault.
423 */
424 regs->pc = (unsigned long)cur->addr;
425 if (kcb->kprobe_status == KPROBE_REENTER)
426 restore_previous_kprobe(kcb);
427 else
428 reset_current_kprobe();
429 preempt_enable_no_resched();
430 break;
431 case KPROBE_HIT_ACTIVE:
432 case KPROBE_HIT_SSDONE:
433 /*
434 * We increment the nmissed count for accounting,
435 * we can also use npre/npostfault count for accounting
436 * these specific fault cases.
437 */
438 kprobes_inc_nmissed_count(cur);
439
440 /*
441 * We come here because instructions in the pre/post
442 * handler caused the page_fault, this could happen
443 * if handler tries to access user space by
444 * copy_from_user(), get_user() etc. Let the
445 * user-specified handler try to fix it first.
446 */
447 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
448 return 1;
449
450 /*
451 * In case the user-specified fault handler returned
452 * zero, try to fix up.
453 */
454 if ((entry = search_exception_tables(regs->pc)) != NULL) {
455 regs->pc = entry->fixup;
456 return 1;
457 }
458
459 /*
460 * fixup_exception() could not handle it,
461 * Let do_page_fault() fix it.
462 */
463 break;
464 default:
465 break;
466 }
Paul Mundt4eb58452008-09-08 18:22:47 +0900467
Chris Smithd39f5452008-09-05 17:15:39 +0900468 return 0;
469}
470
471/*
472 * Wrapper routine to for handling exceptions.
473 */
474int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
475 unsigned long val, void *data)
476{
477 struct kprobe *p = NULL;
478 struct die_args *args = (struct die_args *)data;
479 int ret = NOTIFY_DONE;
480 kprobe_opcode_t *addr = NULL;
481 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
482
483 addr = (kprobe_opcode_t *) (args->regs->pc);
484 if (val == DIE_TRAP) {
485 if (!kprobe_running()) {
486 if (kprobe_handler(args->regs)) {
487 ret = NOTIFY_STOP;
488 } else {
489 /* Not a kprobe trap */
Paul Mundtee386de2008-09-08 18:12:33 +0900490 ret = NOTIFY_DONE;
Chris Smithd39f5452008-09-05 17:15:39 +0900491 }
492 } else {
493 p = get_kprobe(addr);
494 if ((kcb->kprobe_status == KPROBE_HIT_SS) ||
495 (kcb->kprobe_status == KPROBE_REENTER)) {
496 if (post_kprobe_handler(args->regs))
497 ret = NOTIFY_STOP;
498 } else {
499 if (kprobe_handler(args->regs)) {
500 ret = NOTIFY_STOP;
501 } else {
502 p = __get_cpu_var(current_kprobe);
Paul Mundt4eb58452008-09-08 18:22:47 +0900503 if (p->break_handler &&
504 p->break_handler(p, args->regs))
Chris Smithd39f5452008-09-05 17:15:39 +0900505 ret = NOTIFY_STOP;
506 }
507 }
508 }
509 }
510
511 return ret;
512}
513
514int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
515{
516 struct jprobe *jp = container_of(p, struct jprobe, kp);
517 unsigned long addr;
518 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
519
520 kcb->jprobe_saved_regs = *regs;
521 kcb->jprobe_saved_r15 = regs->regs[15];
522 addr = kcb->jprobe_saved_r15;
523
524 /*
525 * TBD: As Linus pointed out, gcc assumes that the callee
526 * owns the argument space and could overwrite it, e.g.
527 * tailcall optimization. So, to be absolutely safe
528 * we also save and restore enough stack bytes to cover
529 * the argument area.
530 */
531 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *) addr,
532 MIN_STACK_SIZE(addr));
533
534 regs->pc = (unsigned long)(jp->entry);
535
536 return 1;
537}
538
539void __kprobes jprobe_return(void)
540{
Paul Mundt174b5c92008-09-08 18:10:10 +0900541 asm volatile ("trapa #0x3a\n\t" "jprobe_return_end:\n\t" "nop\n\t");
Chris Smithd39f5452008-09-05 17:15:39 +0900542}
543
544int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
545{
546 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Chris Smithd39f5452008-09-05 17:15:39 +0900547 unsigned long stack_addr = kcb->jprobe_saved_r15;
Paul Mundt4eb58452008-09-08 18:22:47 +0900548 u8 *addr = (u8 *)regs->pc;
Chris Smithd39f5452008-09-05 17:15:39 +0900549
Paul Mundt4eb58452008-09-08 18:22:47 +0900550 if ((addr >= (u8 *)jprobe_return) &&
551 (addr <= (u8 *)jprobe_return_end)) {
Chris Smithd39f5452008-09-05 17:15:39 +0900552 *regs = kcb->jprobe_saved_regs;
553
Paul Mundt4eb58452008-09-08 18:22:47 +0900554 memcpy((kprobe_opcode_t *)stack_addr, kcb->jprobes_stack,
Chris Smithd39f5452008-09-05 17:15:39 +0900555 MIN_STACK_SIZE(stack_addr));
556
557 kcb->kprobe_status = KPROBE_HIT_SS;
Paul Mundt247bc6d2008-09-08 18:14:50 +0900558 preempt_enable_no_resched();
Chris Smithd39f5452008-09-05 17:15:39 +0900559 return 1;
560 }
Paul Mundt4eb58452008-09-08 18:22:47 +0900561
Chris Smithd39f5452008-09-05 17:15:39 +0900562 return 0;
563}
564
565static struct kprobe trampoline_p = {
Paul Mundt4eb58452008-09-08 18:22:47 +0900566 .addr = (kprobe_opcode_t *)&kretprobe_trampoline,
Chris Smithd39f5452008-09-05 17:15:39 +0900567 .pre_handler = trampoline_probe_handler
568};
569
570int __init arch_init_kprobes(void)
571{
572 saved_next_opcode.addr = 0x0;
573 saved_next_opcode.opcode = 0x0;
574
575 saved_current_opcode.addr = 0x0;
576 saved_current_opcode.opcode = 0x0;
577
578 saved_next_opcode2.addr = 0x0;
579 saved_next_opcode2.opcode = 0x0;
580
581 return register_kprobe(&trampoline_p);
582}