]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/s390/kernel/kprobes.c
s390: remove diag 44 calls from cpu_relax()
[mirror_ubuntu-zesty-kernel.git] / arch / s390 / kernel / kprobes.c
CommitLineData
4ba069b8
MG
1/*
2 * Kernel Probes (KProbes)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
a53c8fab 18 * Copyright IBM Corp. 2002, 2006
4ba069b8
MG
19 *
20 * s390 port, used ppc64 as template. Mike Grundy <grundym@us.ibm.com>
21 */
22
4ba069b8
MG
23#include <linux/kprobes.h>
24#include <linux/ptrace.h>
25#include <linux/preempt.h>
26#include <linux/stop_machine.h>
1eeb66a1 27#include <linux/kdebug.h>
a2b53673 28#include <linux/uaccess.h>
4ba069b8 29#include <linux/module.h>
5a0e3ad6 30#include <linux/slab.h>
adb45839 31#include <linux/hardirq.h>
c933146a 32#include <linux/ftrace.h>
a882b3b0
HC
33#include <asm/cacheflush.h>
34#include <asm/sections.h>
35#include <asm/dis.h>
4ba069b8 36
4a188635 37DEFINE_PER_CPU(struct kprobe *, current_kprobe);
4ba069b8
MG
38DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
39
4a188635 40struct kretprobe_blackpoint kretprobe_blacklist[] = { };
f438d914 41
63c40436
HC
42DEFINE_INSN_CACHE_OPS(dmainsn);
43
44static void *alloc_dmainsn_page(void)
45{
46 return (void *)__get_free_page(GFP_KERNEL | GFP_DMA);
47}
48
49static void free_dmainsn_page(void *page)
50{
51 free_page((unsigned long)page);
52}
53
54struct kprobe_insn_cache kprobe_dmainsn_slots = {
55 .mutex = __MUTEX_INITIALIZER(kprobe_dmainsn_slots.mutex),
56 .alloc = alloc_dmainsn_page,
57 .free = free_dmainsn_page,
58 .pages = LIST_HEAD_INIT(kprobe_dmainsn_slots.pages),
59 .insn_size = MAX_INSN_SIZE,
60};
61
7a5388de 62static void copy_instruction(struct kprobe *p)
63c40436 63{
c933146a 64 unsigned long ip = (unsigned long) p->addr;
63c40436
HC
65 s64 disp, new_disp;
66 u64 addr, new_addr;
67
c933146a
HC
68 if (ftrace_location(ip) == ip) {
69 /*
70 * If kprobes patches the instruction that is morphed by
71 * ftrace make sure that kprobes always sees the branch
72 * "jg .+24" that skips the mcount block
73 */
74 ftrace_generate_nop_insn((struct ftrace_insn *)p->ainsn.insn);
75 p->ainsn.is_ftrace_insn = 1;
76 } else
77 memcpy(p->ainsn.insn, p->addr, insn_length(p->opcode >> 8));
78 p->opcode = p->ainsn.insn[0];
975fab17 79 if (!probe_is_insn_relative_long(p->ainsn.insn))
63c40436
HC
80 return;
81 /*
82 * For pc-relative instructions in RIL-b or RIL-c format patch the
83 * RI2 displacement field. We have already made sure that the insn
84 * slot for the patched instruction is within the same 2GB area
85 * as the original instruction (either kernel image or module area).
86 * Therefore the new displacement will always fit.
87 */
88 disp = *(s32 *)&p->ainsn.insn[1];
89 addr = (u64)(unsigned long)p->addr;
90 new_addr = (u64)(unsigned long)p->ainsn.insn;
91 new_disp = ((addr + (disp * 2)) - new_addr) / 2;
92 *(s32 *)&p->ainsn.insn[1] = new_disp;
93}
7a5388de 94NOKPROBE_SYMBOL(copy_instruction);
63c40436
HC
95
96static inline int is_kernel_addr(void *addr)
97{
98 return addr < (void *)_end;
99}
100
7a5388de 101static int s390_get_insn_slot(struct kprobe *p)
63c40436
HC
102{
103 /*
104 * Get an insn slot that is within the same 2GB area like the original
105 * instruction. That way instructions with a 32bit signed displacement
106 * field can be patched and executed within the insn slot.
107 */
108 p->ainsn.insn = NULL;
109 if (is_kernel_addr(p->addr))
110 p->ainsn.insn = get_dmainsn_slot();
fcd05b50 111 else if (is_module_addr(p->addr))
63c40436
HC
112 p->ainsn.insn = get_insn_slot();
113 return p->ainsn.insn ? 0 : -ENOMEM;
114}
7a5388de 115NOKPROBE_SYMBOL(s390_get_insn_slot);
63c40436 116
7a5388de 117static void s390_free_insn_slot(struct kprobe *p)
63c40436
HC
118{
119 if (!p->ainsn.insn)
120 return;
121 if (is_kernel_addr(p->addr))
122 free_dmainsn_slot(p->ainsn.insn, 0);
123 else
124 free_insn_slot(p->ainsn.insn, 0);
125 p->ainsn.insn = NULL;
126}
7a5388de 127NOKPROBE_SYMBOL(s390_free_insn_slot);
63c40436 128
7a5388de 129int arch_prepare_kprobe(struct kprobe *p)
ba640a59
MS
130{
131 if ((unsigned long) p->addr & 0x01)
132 return -EINVAL;
ba640a59 133 /* Make sure the probe isn't going on a difficult instruction */
975fab17 134 if (probe_is_prohibited_opcode(p->addr))
ba640a59 135 return -EINVAL;
63c40436
HC
136 if (s390_get_insn_slot(p))
137 return -ENOMEM;
63c40436 138 copy_instruction(p);
ba640a59 139 return 0;
4ba069b8 140}
7a5388de 141NOKPROBE_SYMBOL(arch_prepare_kprobe);
4ba069b8 142
c933146a
HC
143int arch_check_ftrace_location(struct kprobe *p)
144{
145 return 0;
146}
147
148struct swap_insn_args {
149 struct kprobe *p;
150 unsigned int arm_kprobe : 1;
5a8b589f
MS
151};
152
7a5388de 153static int swap_instruction(void *data)
4ba069b8 154{
acf01800
HC
155 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
156 unsigned long status = kcb->kprobe_status;
c933146a
HC
157 struct swap_insn_args *args = data;
158 struct ftrace_insn new_insn, *insn;
159 struct kprobe *p = args->p;
160 size_t len;
161
162 new_insn.opc = args->arm_kprobe ? BREAKPOINT_INSTRUCTION : p->opcode;
163 len = sizeof(new_insn.opc);
164 if (!p->ainsn.is_ftrace_insn)
165 goto skip_ftrace;
166 len = sizeof(new_insn);
167 insn = (struct ftrace_insn *) p->addr;
168 if (args->arm_kprobe) {
169 if (is_ftrace_nop(insn))
170 new_insn.disp = KPROBE_ON_FTRACE_NOP;
171 else
172 new_insn.disp = KPROBE_ON_FTRACE_CALL;
173 } else {
174 ftrace_generate_call_insn(&new_insn, (unsigned long)p->addr);
175 if (insn->disp == KPROBE_ON_FTRACE_NOP)
176 ftrace_generate_nop_insn(&new_insn);
177 }
178skip_ftrace:
acf01800 179 kcb->kprobe_status = KPROBE_SWAP_INST;
c933146a 180 probe_kernel_write(p->addr, &new_insn, len);
acf01800 181 kcb->kprobe_status = status;
5a8b589f 182 return 0;
4ba069b8 183}
7a5388de 184NOKPROBE_SYMBOL(swap_instruction);
4ba069b8 185
7a5388de 186void arch_arm_kprobe(struct kprobe *p)
4ba069b8 187{
c933146a 188 struct swap_insn_args args = {.p = p, .arm_kprobe = 1};
4ba069b8 189
9b1a4d38 190 stop_machine(swap_instruction, &args, NULL);
4ba069b8 191}
7a5388de 192NOKPROBE_SYMBOL(arch_arm_kprobe);
4ba069b8 193
7a5388de 194void arch_disarm_kprobe(struct kprobe *p)
4ba069b8 195{
c933146a 196 struct swap_insn_args args = {.p = p, .arm_kprobe = 0};
4ba069b8 197
9b1a4d38 198 stop_machine(swap_instruction, &args, NULL);
4ba069b8 199}
7a5388de 200NOKPROBE_SYMBOL(arch_disarm_kprobe);
4ba069b8 201
7a5388de 202void arch_remove_kprobe(struct kprobe *p)
4ba069b8 203{
63c40436 204 s390_free_insn_slot(p);
4ba069b8 205}
7a5388de 206NOKPROBE_SYMBOL(arch_remove_kprobe);
4ba069b8 207
7a5388de
HC
208static void enable_singlestep(struct kprobe_ctlblk *kcb,
209 struct pt_regs *regs,
210 unsigned long ip)
4ba069b8 211{
5e9a2692 212 struct per_regs per_kprobe;
4ba069b8 213
5e9a2692
MS
214 /* Set up the PER control registers %cr9-%cr11 */
215 per_kprobe.control = PER_EVENT_IFETCH;
216 per_kprobe.start = ip;
217 per_kprobe.end = ip;
4ba069b8 218
fc0a1fea
MS
219 /* Save control regs and psw mask */
220 __ctl_store(kcb->kprobe_saved_ctl, 9, 11);
221 kcb->kprobe_saved_imask = regs->psw.mask &
222 (PSW_MASK_PER | PSW_MASK_IO | PSW_MASK_EXT);
223
224 /* Set PER control regs, turns on single step for the given address */
5e9a2692 225 __ctl_load(per_kprobe, 9, 11);
4ba069b8 226 regs->psw.mask |= PSW_MASK_PER;
adb45839 227 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
fc0a1fea 228 regs->psw.addr = ip | PSW_ADDR_AMODE;
4ba069b8 229}
7a5388de 230NOKPROBE_SYMBOL(enable_singlestep);
4ba069b8 231
7a5388de
HC
232static void disable_singlestep(struct kprobe_ctlblk *kcb,
233 struct pt_regs *regs,
234 unsigned long ip)
fc0a1fea
MS
235{
236 /* Restore control regs and psw mask, set new psw address */
237 __ctl_load(kcb->kprobe_saved_ctl, 9, 11);
238 regs->psw.mask &= ~PSW_MASK_PER;
239 regs->psw.mask |= kcb->kprobe_saved_imask;
240 regs->psw.addr = ip | PSW_ADDR_AMODE;
241}
7a5388de 242NOKPROBE_SYMBOL(disable_singlestep);
fc0a1fea 243
b9599798
MS
244/*
245 * Activate a kprobe by storing its pointer to current_kprobe. The
246 * previous kprobe is stored in kcb->prev_kprobe. A stack of up to
247 * two kprobes can be active, see KPROBE_REENTER.
248 */
7a5388de 249static void push_kprobe(struct kprobe_ctlblk *kcb, struct kprobe *p)
4ba069b8 250{
eb7e7d76 251 kcb->prev_kprobe.kp = __this_cpu_read(current_kprobe);
4ba069b8 252 kcb->prev_kprobe.status = kcb->kprobe_status;
eb7e7d76 253 __this_cpu_write(current_kprobe, p);
4ba069b8 254}
7a5388de 255NOKPROBE_SYMBOL(push_kprobe);
4ba069b8 256
b9599798
MS
257/*
258 * Deactivate a kprobe by backing up to the previous state. If the
259 * current state is KPROBE_REENTER prev_kprobe.kp will be non-NULL,
260 * for any other state prev_kprobe.kp will be NULL.
261 */
7a5388de 262static void pop_kprobe(struct kprobe_ctlblk *kcb)
4ba069b8 263{
eb7e7d76 264 __this_cpu_write(current_kprobe, kcb->prev_kprobe.kp);
4ba069b8 265 kcb->kprobe_status = kcb->prev_kprobe.status;
4ba069b8 266}
7a5388de 267NOKPROBE_SYMBOL(pop_kprobe);
4ba069b8 268
7a5388de 269void arch_prepare_kretprobe(struct kretprobe_instance *ri, struct pt_regs *regs)
4ba069b8 270{
4c4308cb 271 ri->ret_addr = (kprobe_opcode_t *) regs->gprs[14];
4ba069b8 272
4c4308cb 273 /* Replace the return addr with trampoline addr */
4a188635 274 regs->gprs[14] = (unsigned long) &kretprobe_trampoline;
4ba069b8 275}
7a5388de 276NOKPROBE_SYMBOL(arch_prepare_kretprobe);
4ba069b8 277
7a5388de 278static void kprobe_reenter_check(struct kprobe_ctlblk *kcb, struct kprobe *p)
0e917cc3
MS
279{
280 switch (kcb->kprobe_status) {
281 case KPROBE_HIT_SSDONE:
282 case KPROBE_HIT_ACTIVE:
283 kprobes_inc_nmissed_count(p);
284 break;
285 case KPROBE_HIT_SS:
286 case KPROBE_REENTER:
287 default:
288 /*
289 * A kprobe on the code path to single step an instruction
290 * is a BUG. The code path resides in the .kprobes.text
291 * section and is executed with interrupts disabled.
292 */
293 printk(KERN_EMERG "Invalid kprobe detected at %p.\n", p->addr);
294 dump_kprobe(p);
295 BUG();
296 }
297}
7a5388de 298NOKPROBE_SYMBOL(kprobe_reenter_check);
0e917cc3 299
7a5388de 300static int kprobe_handler(struct pt_regs *regs)
4ba069b8 301{
4ba069b8 302 struct kprobe_ctlblk *kcb;
0e917cc3 303 struct kprobe *p;
4ba069b8
MG
304
305 /*
0e917cc3
MS
306 * We want to disable preemption for the entire duration of kprobe
307 * processing. That includes the calls to the pre/post handlers
308 * and single stepping the kprobe instruction.
4ba069b8
MG
309 */
310 preempt_disable();
311 kcb = get_kprobe_ctlblk();
0e917cc3 312 p = get_kprobe((void *)((regs->psw.addr & PSW_ADDR_INSN) - 2));
4ba069b8 313
0e917cc3
MS
314 if (p) {
315 if (kprobe_running()) {
b9599798
MS
316 /*
317 * We have hit a kprobe while another is still
318 * active. This can happen in the pre and post
319 * handler. Single step the instruction of the
320 * new probe but do not call any handler function
321 * of this secondary kprobe.
322 * push_kprobe and pop_kprobe saves and restores
323 * the currently active kprobe.
4ba069b8 324 */
0e917cc3 325 kprobe_reenter_check(kcb, p);
b9599798 326 push_kprobe(kcb, p);
4ba069b8 327 kcb->kprobe_status = KPROBE_REENTER;
4ba069b8 328 } else {
0e917cc3
MS
329 /*
330 * If we have no pre-handler or it returned 0, we
331 * continue with single stepping. If we have a
332 * pre-handler and it returned non-zero, it prepped
333 * for calling the break_handler below on re-entry
334 * for jprobe processing, so get out doing nothing
335 * more here.
336 */
337 push_kprobe(kcb, p);
338 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
339 if (p->pre_handler && p->pre_handler(p, regs))
340 return 1;
341 kcb->kprobe_status = KPROBE_HIT_SS;
4ba069b8 342 }
0e917cc3 343 enable_singlestep(kcb, regs, (unsigned long) p->ainsn.insn);
4ba069b8 344 return 1;
0e917cc3 345 } else if (kprobe_running()) {
eb7e7d76 346 p = __this_cpu_read(current_kprobe);
0e917cc3
MS
347 if (p->break_handler && p->break_handler(p, regs)) {
348 /*
349 * Continuation after the jprobe completed and
350 * caused the jprobe_return trap. The jprobe
351 * break_handler "returns" to the original
352 * function that still has the kprobe breakpoint
353 * installed. We continue with single stepping.
354 */
355 kcb->kprobe_status = KPROBE_HIT_SS;
356 enable_singlestep(kcb, regs,
357 (unsigned long) p->ainsn.insn);
358 return 1;
359 } /* else:
360 * No kprobe at this address and the current kprobe
361 * has no break handler (no jprobe!). The kernel just
362 * exploded, let the standard trap handler pick up the
363 * pieces.
364 */
365 } /* else:
366 * No kprobe at this address and no active kprobe. The trap has
367 * not been caused by a kprobe breakpoint. The race of breakpoint
368 * vs. kprobe remove does not exist because on s390 as we use
369 * stop_machine to arm/disarm the breakpoints.
370 */
4ba069b8 371 preempt_enable_no_resched();
0e917cc3 372 return 0;
4ba069b8 373}
7a5388de 374NOKPROBE_SYMBOL(kprobe_handler);
4ba069b8
MG
375
376/*
377 * Function return probe trampoline:
378 * - init_kprobes() establishes a probepoint here
379 * - When the probed function returns, this probe
380 * causes the handlers to fire
381 */
a806170e 382static void __used kretprobe_trampoline_holder(void)
4ba069b8
MG
383{
384 asm volatile(".global kretprobe_trampoline\n"
385 "kretprobe_trampoline: bcr 0,0\n");
386}
387
388/*
389 * Called when the probe at kretprobe trampoline is hit
390 */
7a5388de 391static int trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs)
4ba069b8 392{
4a188635 393 struct kretprobe_instance *ri;
99219a3f 394 struct hlist_head *head, empty_rp;
b67bfe0d 395 struct hlist_node *tmp;
4a188635
MS
396 unsigned long flags, orig_ret_address;
397 unsigned long trampoline_address;
398 kprobe_opcode_t *correct_ret_addr;
4ba069b8 399
99219a3f 400 INIT_HLIST_HEAD(&empty_rp);
ef53d9c5 401 kretprobe_hash_lock(current, &head, &flags);
4ba069b8
MG
402
403 /*
404 * It is possible to have multiple instances associated with a given
405 * task either because an multiple functions in the call path
025dfdaf 406 * have a return probe installed on them, and/or more than one return
4ba069b8
MG
407 * return probe was registered for a target function.
408 *
409 * We can handle this because:
410 * - instances are always inserted at the head of the list
411 * - when multiple return probes are registered for the same
412 * function, the first instance's ret_addr will point to the
413 * real return address, and all the rest will point to
414 * kretprobe_trampoline
415 */
4a188635
MS
416 ri = NULL;
417 orig_ret_address = 0;
418 correct_ret_addr = NULL;
419 trampoline_address = (unsigned long) &kretprobe_trampoline;
b67bfe0d 420 hlist_for_each_entry_safe(ri, tmp, head, hlist) {
4ba069b8
MG
421 if (ri->task != current)
422 /* another task is sharing our hash bucket */
423 continue;
424
4a188635 425 orig_ret_address = (unsigned long) ri->ret_addr;
89480801
MS
426
427 if (orig_ret_address != trampoline_address)
428 /*
429 * This is the real return address. Any other
430 * instances associated with this task are for
431 * other calls deeper on the call stack
432 */
433 break;
434 }
435
436 kretprobe_assert(ri, orig_ret_address, trampoline_address);
437
438 correct_ret_addr = ri->ret_addr;
b67bfe0d 439 hlist_for_each_entry_safe(ri, tmp, head, hlist) {
89480801
MS
440 if (ri->task != current)
441 /* another task is sharing our hash bucket */
442 continue;
4ba069b8 443
4a188635 444 orig_ret_address = (unsigned long) ri->ret_addr;
89480801
MS
445
446 if (ri->rp && ri->rp->handler) {
447 ri->ret_addr = correct_ret_addr;
448 ri->rp->handler(ri, regs);
449 }
450
99219a3f 451 recycle_rp_inst(ri, &empty_rp);
4ba069b8 452
4a188635 453 if (orig_ret_address != trampoline_address)
4ba069b8
MG
454 /*
455 * This is the real return address. Any other
456 * instances associated with this task are for
457 * other calls deeper on the call stack
458 */
459 break;
4ba069b8 460 }
89480801 461
4ba069b8
MG
462 regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE;
463
b9599798 464 pop_kprobe(get_kprobe_ctlblk());
ef53d9c5 465 kretprobe_hash_unlock(current, &flags);
4ba069b8
MG
466 preempt_enable_no_resched();
467
b67bfe0d 468 hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) {
99219a3f 469 hlist_del(&ri->hlist);
470 kfree(ri);
471 }
4ba069b8
MG
472 /*
473 * By returning a non-zero value, we are telling
474 * kprobe_handler() that we don't want the post_handler
475 * to run (and have re-enabled preemption)
476 */
477 return 1;
478}
7a5388de 479NOKPROBE_SYMBOL(trampoline_probe_handler);
4ba069b8
MG
480
481/*
482 * Called after single-stepping. p->addr is the address of the
483 * instruction whose first byte has been replaced by the "breakpoint"
484 * instruction. To avoid the SMP problems that can occur when we
485 * temporarily put back the original opcode to single-step, we
486 * single-stepped a copy of the instruction. The address of this
487 * copy is p->ainsn.insn.
488 */
7a5388de 489static void resume_execution(struct kprobe *p, struct pt_regs *regs)
4ba069b8
MG
490{
491 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
fc0a1fea 492 unsigned long ip = regs->psw.addr & PSW_ADDR_INSN;
975fab17 493 int fixup = probe_get_fixup_type(p->ainsn.insn);
4ba069b8 494
c933146a
HC
495 /* Check if the kprobes location is an enabled ftrace caller */
496 if (p->ainsn.is_ftrace_insn) {
497 struct ftrace_insn *insn = (struct ftrace_insn *) p->addr;
498 struct ftrace_insn call_insn;
499
500 ftrace_generate_call_insn(&call_insn, (unsigned long) p->addr);
501 /*
502 * A kprobe on an enabled ftrace call site actually single
503 * stepped an unconditional branch (ftrace nop equivalent).
504 * Now we need to fixup things and pretend that a brasl r0,...
505 * was executed instead.
506 */
507 if (insn->disp == KPROBE_ON_FTRACE_CALL) {
508 ip += call_insn.disp * 2 - MCOUNT_INSN_SIZE;
509 regs->gprs[0] = (unsigned long)p->addr + sizeof(*insn);
510 }
511 }
512
ba640a59 513 if (fixup & FIXUP_PSW_NORMAL)
fc0a1fea 514 ip += (unsigned long) p->addr - (unsigned long) p->ainsn.insn;
4ba069b8 515
ba640a59 516 if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
a882b3b0 517 int ilen = insn_length(p->ainsn.insn[0] >> 8);
ba640a59
MS
518 if (ip - (unsigned long) p->ainsn.insn == ilen)
519 ip = (unsigned long) p->addr + ilen;
520 }
4ba069b8 521
ba640a59
MS
522 if (fixup & FIXUP_RETURN_REGISTER) {
523 int reg = (p->ainsn.insn[0] & 0xf0) >> 4;
524 regs->gprs[reg] += (unsigned long) p->addr -
525 (unsigned long) p->ainsn.insn;
526 }
4ba069b8 527
fc0a1fea 528 disable_singlestep(kcb, regs, ip);
4ba069b8 529}
7a5388de 530NOKPROBE_SYMBOL(resume_execution);
4ba069b8 531
7a5388de 532static int post_kprobe_handler(struct pt_regs *regs)
4ba069b8 533{
4ba069b8 534 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
4a188635 535 struct kprobe *p = kprobe_running();
4ba069b8 536
4a188635 537 if (!p)
4ba069b8
MG
538 return 0;
539
4a188635 540 if (kcb->kprobe_status != KPROBE_REENTER && p->post_handler) {
4ba069b8 541 kcb->kprobe_status = KPROBE_HIT_SSDONE;
4a188635 542 p->post_handler(p, regs, 0);
4ba069b8
MG
543 }
544
4a188635 545 resume_execution(p, regs);
b9599798 546 pop_kprobe(kcb);
4ba069b8
MG
547 preempt_enable_no_resched();
548
549 /*
550 * if somebody else is singlestepping across a probe point, psw mask
551 * will have PER set, in which case, continue the remaining processing
552 * of do_single_step, as if this is not a probe hit.
553 */
4a188635 554 if (regs->psw.mask & PSW_MASK_PER)
4ba069b8 555 return 0;
4ba069b8
MG
556
557 return 1;
558}
7a5388de 559NOKPROBE_SYMBOL(post_kprobe_handler);
4ba069b8 560
7a5388de 561static int kprobe_trap_handler(struct pt_regs *regs, int trapnr)
4ba069b8 562{
4ba069b8 563 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
4a188635 564 struct kprobe *p = kprobe_running();
4ba069b8
MG
565 const struct exception_table_entry *entry;
566
567 switch(kcb->kprobe_status) {
568 case KPROBE_SWAP_INST:
569 /* We are here because the instruction replacement failed */
570 return 0;
571 case KPROBE_HIT_SS:
572 case KPROBE_REENTER:
573 /*
574 * We are here because the instruction being single
575 * stepped caused a page fault. We reset the current
576 * kprobe and the nip points back to the probe address
577 * and allow the page fault handler to continue as a
578 * normal page fault.
579 */
4a188635 580 disable_singlestep(kcb, regs, (unsigned long) p->addr);
b9599798 581 pop_kprobe(kcb);
4ba069b8
MG
582 preempt_enable_no_resched();
583 break;
584 case KPROBE_HIT_ACTIVE:
585 case KPROBE_HIT_SSDONE:
586 /*
587 * We increment the nmissed count for accounting,
23d6d3db 588 * we can also use npre/npostfault count for accounting
4ba069b8
MG
589 * these specific fault cases.
590 */
4a188635 591 kprobes_inc_nmissed_count(p);
4ba069b8
MG
592
593 /*
594 * We come here because instructions in the pre/post
595 * handler caused the page_fault, this could happen
596 * if handler tries to access user space by
597 * copy_from_user(), get_user() etc. Let the
598 * user-specified handler try to fix it first.
599 */
4a188635 600 if (p->fault_handler && p->fault_handler(p, regs, trapnr))
4ba069b8
MG
601 return 1;
602
603 /*
604 * In case the user-specified fault handler returned
605 * zero, try to fix up.
606 */
607 entry = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
608 if (entry) {
eb608fb3 609 regs->psw.addr = extable_fixup(entry) | PSW_ADDR_AMODE;
4ba069b8
MG
610 return 1;
611 }
612
613 /*
614 * fixup_exception() could not handle it,
615 * Let do_page_fault() fix it.
616 */
617 break;
618 default:
619 break;
620 }
621 return 0;
622}
7a5388de 623NOKPROBE_SYMBOL(kprobe_trap_handler);
4ba069b8 624
7a5388de 625int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
adb45839
MS
626{
627 int ret;
628
629 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
630 local_irq_disable();
631 ret = kprobe_trap_handler(regs, trapnr);
632 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
633 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
634 return ret;
635}
7a5388de 636NOKPROBE_SYMBOL(kprobe_fault_handler);
adb45839 637
4ba069b8
MG
638/*
639 * Wrapper routine to for handling exceptions.
640 */
7a5388de
HC
641int kprobe_exceptions_notify(struct notifier_block *self,
642 unsigned long val, void *data)
4ba069b8 643{
4a188635 644 struct die_args *args = (struct die_args *) data;
adb45839 645 struct pt_regs *regs = args->regs;
4ba069b8
MG
646 int ret = NOTIFY_DONE;
647
adb45839
MS
648 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
649 local_irq_disable();
650
4ba069b8
MG
651 switch (val) {
652 case DIE_BPT:
4a188635 653 if (kprobe_handler(regs))
4ba069b8
MG
654 ret = NOTIFY_STOP;
655 break;
656 case DIE_SSTEP:
4a188635 657 if (post_kprobe_handler(regs))
4ba069b8
MG
658 ret = NOTIFY_STOP;
659 break;
660 case DIE_TRAP:
adb45839 661 if (!preemptible() && kprobe_running() &&
4a188635 662 kprobe_trap_handler(regs, args->trapnr))
4ba069b8 663 ret = NOTIFY_STOP;
4ba069b8
MG
664 break;
665 default:
666 break;
667 }
adb45839
MS
668
669 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
670 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
671
4ba069b8
MG
672 return ret;
673}
7a5388de 674NOKPROBE_SYMBOL(kprobe_exceptions_notify);
4ba069b8 675
7a5388de 676int setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
4ba069b8
MG
677{
678 struct jprobe *jp = container_of(p, struct jprobe, kp);
4ba069b8 679 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
92b8cbf1 680 unsigned long stack;
4ba069b8
MG
681
682 memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs));
683
684 /* setup return addr to the jprobe handler routine */
4a188635 685 regs->psw.addr = (unsigned long) jp->entry | PSW_ADDR_AMODE;
adb45839 686 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
4ba069b8 687
4ba069b8 688 /* r15 is the stack pointer */
92b8cbf1 689 stack = (unsigned long) regs->gprs[15];
4ba069b8 690
92b8cbf1 691 memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
4ba069b8
MG
692 return 1;
693}
7a5388de 694NOKPROBE_SYMBOL(setjmp_pre_handler);
4ba069b8 695
7a5388de 696void jprobe_return(void)
4ba069b8
MG
697{
698 asm volatile(".word 0x0002");
699}
7a5388de 700NOKPROBE_SYMBOL(jprobe_return);
4ba069b8 701
7a5388de 702int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
4ba069b8
MG
703{
704 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
92b8cbf1
MS
705 unsigned long stack;
706
707 stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
4ba069b8
MG
708
709 /* Put the regs back */
710 memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs));
711 /* put the stack back */
92b8cbf1 712 memcpy((void *) stack, kcb->jprobes_stack, MIN_STACK_SIZE(stack));
4ba069b8
MG
713 preempt_enable_no_resched();
714 return 1;
715}
7a5388de 716NOKPROBE_SYMBOL(longjmp_break_handler);
4ba069b8 717
4a188635
MS
718static struct kprobe trampoline = {
719 .addr = (kprobe_opcode_t *) &kretprobe_trampoline,
4ba069b8
MG
720 .pre_handler = trampoline_probe_handler
721};
722
723int __init arch_init_kprobes(void)
724{
4a188635 725 return register_kprobe(&trampoline);
4ba069b8 726}
bf8f6e5b 727
7a5388de 728int arch_trampoline_kprobe(struct kprobe *p)
bf8f6e5b 729{
4a188635 730 return p->addr == (kprobe_opcode_t *) &kretprobe_trampoline;
bf8f6e5b 731}
7a5388de 732NOKPROBE_SYMBOL(arch_trampoline_kprobe);