blob: 2a19f4154f2d14f5b3369b54903167c20cf9f49e [file] [log] [blame]
Michael Grundy4ba069b2006-09-20 15:58:39 +02001/*
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 *
18 * Copyright (C) IBM Corporation, 2002, 2006
19 *
20 * s390 port, used ppc64 as template. Mike Grundy <grundym@us.ibm.com>
21 */
22
Michael Grundy4ba069b2006-09-20 15:58:39 +020023#include <linux/kprobes.h>
24#include <linux/ptrace.h>
25#include <linux/preempt.h>
26#include <linux/stop_machine.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070027#include <linux/kdebug.h>
Heiko Carstensa2b53672009-06-12 10:26:43 +020028#include <linux/uaccess.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020029#include <asm/cacheflush.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020030#include <asm/sections.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020031#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Martin Schwidefskyadb45832010-11-10 10:05:57 +010033#include <linux/hardirq.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020034
35DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
36DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
37
Masami Hiramatsuf438d912007-10-16 01:27:49 -070038struct kretprobe_blackpoint kretprobe_blacklist[] = {{NULL, NULL}};
39
Martin Schwidefskyba640a52011-01-05 12:47:19 +010040static int __kprobes is_prohibited_opcode(kprobe_opcode_t *insn)
Michael Grundy4ba069b2006-09-20 15:58:39 +020041{
Martin Schwidefskyba640a52011-01-05 12:47:19 +010042 switch (insn[0] >> 8) {
Michael Grundy4ba069b2006-09-20 15:58:39 +020043 case 0x0c: /* bassm */
44 case 0x0b: /* bsm */
45 case 0x83: /* diag */
46 case 0x44: /* ex */
Heiko Carstensbac9f152010-05-26 23:26:20 +020047 case 0xac: /* stnsm */
48 case 0xad: /* stosm */
Michael Grundy4ba069b2006-09-20 15:58:39 +020049 return -EINVAL;
50 }
Martin Schwidefskyba640a52011-01-05 12:47:19 +010051 switch (insn[0]) {
Michael Grundy4ba069b2006-09-20 15:58:39 +020052 case 0x0101: /* pr */
53 case 0xb25a: /* bsa */
54 case 0xb240: /* bakr */
55 case 0xb258: /* bsg */
56 case 0xb218: /* pc */
57 case 0xb228: /* pt */
Heiko Carstensbac9f152010-05-26 23:26:20 +020058 case 0xb98d: /* epsw */
Michael Grundy4ba069b2006-09-20 15:58:39 +020059 return -EINVAL;
60 }
61 return 0;
62}
63
Martin Schwidefskyba640a52011-01-05 12:47:19 +010064static int __kprobes get_fixup_type(kprobe_opcode_t *insn)
Michael Grundy4ba069b2006-09-20 15:58:39 +020065{
66 /* default fixup method */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010067 int fixup = FIXUP_PSW_NORMAL;
Michael Grundy4ba069b2006-09-20 15:58:39 +020068
Martin Schwidefskyba640a52011-01-05 12:47:19 +010069 switch (insn[0] >> 8) {
Michael Grundy4ba069b2006-09-20 15:58:39 +020070 case 0x05: /* balr */
71 case 0x0d: /* basr */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010072 fixup = FIXUP_RETURN_REGISTER;
Michael Grundy4ba069b2006-09-20 15:58:39 +020073 /* if r2 = 0, no branch will be taken */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010074 if ((insn[0] & 0x0f) == 0)
75 fixup |= FIXUP_BRANCH_NOT_TAKEN;
Michael Grundy4ba069b2006-09-20 15:58:39 +020076 break;
77 case 0x06: /* bctr */
78 case 0x07: /* bcr */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010079 fixup = FIXUP_BRANCH_NOT_TAKEN;
Michael Grundy4ba069b2006-09-20 15:58:39 +020080 break;
81 case 0x45: /* bal */
82 case 0x4d: /* bas */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010083 fixup = FIXUP_RETURN_REGISTER;
Michael Grundy4ba069b2006-09-20 15:58:39 +020084 break;
85 case 0x47: /* bc */
86 case 0x46: /* bct */
87 case 0x86: /* bxh */
88 case 0x87: /* bxle */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010089 fixup = FIXUP_BRANCH_NOT_TAKEN;
Michael Grundy4ba069b2006-09-20 15:58:39 +020090 break;
91 case 0x82: /* lpsw */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010092 fixup = FIXUP_NOT_REQUIRED;
Michael Grundy4ba069b2006-09-20 15:58:39 +020093 break;
94 case 0xb2: /* lpswe */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010095 if ((insn[0] & 0xff) == 0xb2)
96 fixup = FIXUP_NOT_REQUIRED;
Michael Grundy4ba069b2006-09-20 15:58:39 +020097 break;
98 case 0xa7: /* bras */
Martin Schwidefskyba640a52011-01-05 12:47:19 +010099 if ((insn[0] & 0x0f) == 0x05)
100 fixup |= FIXUP_RETURN_REGISTER;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200101 break;
102 case 0xc0:
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100103 if ((insn[0] & 0x0f) == 0x00 || /* larl */
104 (insn[0] & 0x0f) == 0x05) /* brasl */
105 fixup |= FIXUP_RETURN_REGISTER;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200106 break;
107 case 0xeb:
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100108 if ((insn[2] & 0xff) == 0x44 || /* bxhg */
109 (insn[2] & 0xff) == 0x45) /* bxleg */
110 fixup = FIXUP_BRANCH_NOT_TAKEN;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200111 break;
112 case 0xe3: /* bctg */
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100113 if ((insn[2] & 0xff) == 0x46)
114 fixup = FIXUP_BRANCH_NOT_TAKEN;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200115 break;
116 }
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100117 return fixup;
118}
119
120int __kprobes arch_prepare_kprobe(struct kprobe *p)
121{
122 if ((unsigned long) p->addr & 0x01)
123 return -EINVAL;
124
125 /* Make sure the probe isn't going on a difficult instruction */
126 if (is_prohibited_opcode((kprobe_opcode_t *) p->addr))
127 return -EINVAL;
128
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100129 p->opcode = *p->addr;
130 memcpy(p->ainsn.insn, p->addr, ((p->opcode >> 14) + 3) & -2);
131
132 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200133}
134
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100135struct ins_replace_args {
136 kprobe_opcode_t *ptr;
137 kprobe_opcode_t opcode;
138};
139
Michael Grundy4ba069b2006-09-20 15:58:39 +0200140static int __kprobes swap_instruction(void *aref)
141{
Heiko Carstensacf01802009-06-22 12:08:23 +0200142 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
143 unsigned long status = kcb->kprobe_status;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200144 struct ins_replace_args *args = aref;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200145
Heiko Carstensacf01802009-06-22 12:08:23 +0200146 kcb->kprobe_status = KPROBE_SWAP_INST;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100147 probe_kernel_write(args->ptr, &args->opcode, sizeof(args->opcode));
Heiko Carstensacf01802009-06-22 12:08:23 +0200148 kcb->kprobe_status = status;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100149 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200150}
151
152void __kprobes arch_arm_kprobe(struct kprobe *p)
153{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200154 struct ins_replace_args args;
155
156 args.ptr = p->addr;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100157 args.opcode = BREAKPOINT_INSTRUCTION;
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500158 stop_machine(swap_instruction, &args, NULL);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200159}
160
161void __kprobes arch_disarm_kprobe(struct kprobe *p)
162{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200163 struct ins_replace_args args;
164
165 args.ptr = p->addr;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100166 args.opcode = p->opcode;
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500167 stop_machine(swap_instruction, &args, NULL);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200168}
169
170void __kprobes arch_remove_kprobe(struct kprobe *p)
171{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200172}
173
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100174static void __kprobes enable_singlestep(struct kprobe_ctlblk *kcb,
175 struct pt_regs *regs,
176 unsigned long ip)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200177{
178 per_cr_bits kprobe_per_regs[1];
179
Michael Grundy4ba069b2006-09-20 15:58:39 +0200180 /* Set up the per control reg info, will pass to lctl */
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100181 memset(kprobe_per_regs, 0, sizeof(per_cr_bits));
Michael Grundy4ba069b2006-09-20 15:58:39 +0200182 kprobe_per_regs[0].em_instruction_fetch = 1;
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100183 kprobe_per_regs[0].starting_addr = ip;
184 kprobe_per_regs[0].ending_addr = ip;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200185
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100186 /* Save control regs and psw mask */
187 __ctl_store(kcb->kprobe_saved_ctl, 9, 11);
188 kcb->kprobe_saved_imask = regs->psw.mask &
189 (PSW_MASK_PER | PSW_MASK_IO | PSW_MASK_EXT);
190
191 /* Set PER control regs, turns on single step for the given address */
Michael Grundy4ba069b2006-09-20 15:58:39 +0200192 __ctl_load(kprobe_per_regs, 9, 11);
193 regs->psw.mask |= PSW_MASK_PER;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100194 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100195 regs->psw.addr = ip | PSW_ADDR_AMODE;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200196}
197
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100198static void __kprobes disable_singlestep(struct kprobe_ctlblk *kcb,
199 struct pt_regs *regs,
200 unsigned long ip)
201{
202 /* Restore control regs and psw mask, set new psw address */
203 __ctl_load(kcb->kprobe_saved_ctl, 9, 11);
204 regs->psw.mask &= ~PSW_MASK_PER;
205 regs->psw.mask |= kcb->kprobe_saved_imask;
206 regs->psw.addr = ip | PSW_ADDR_AMODE;
207}
208
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100209/*
210 * Activate a kprobe by storing its pointer to current_kprobe. The
211 * previous kprobe is stored in kcb->prev_kprobe. A stack of up to
212 * two kprobes can be active, see KPROBE_REENTER.
213 */
214static void __kprobes push_kprobe(struct kprobe_ctlblk *kcb, struct kprobe *p)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200215{
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100216 kcb->prev_kprobe.kp = __get_cpu_var(current_kprobe);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200217 kcb->prev_kprobe.status = kcb->kprobe_status;
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100218 __get_cpu_var(current_kprobe) = p;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200219}
220
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100221/*
222 * Deactivate a kprobe by backing up to the previous state. If the
223 * current state is KPROBE_REENTER prev_kprobe.kp will be non-NULL,
224 * for any other state prev_kprobe.kp will be NULL.
225 */
226static void __kprobes pop_kprobe(struct kprobe_ctlblk *kcb)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200227{
228 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
229 kcb->kprobe_status = kcb->prev_kprobe.status;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200230}
231
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700232void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Michael Grundy4ba069b2006-09-20 15:58:39 +0200233 struct pt_regs *regs)
234{
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700235 ri->ret_addr = (kprobe_opcode_t *) regs->gprs[14];
Michael Grundy4ba069b2006-09-20 15:58:39 +0200236
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700237 /* Replace the return addr with trampoline addr */
238 regs->gprs[14] = (unsigned long)&kretprobe_trampoline;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200239}
240
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100241static void __kprobes kprobe_reenter_check(struct kprobe_ctlblk *kcb,
242 struct kprobe *p)
243{
244 switch (kcb->kprobe_status) {
245 case KPROBE_HIT_SSDONE:
246 case KPROBE_HIT_ACTIVE:
247 kprobes_inc_nmissed_count(p);
248 break;
249 case KPROBE_HIT_SS:
250 case KPROBE_REENTER:
251 default:
252 /*
253 * A kprobe on the code path to single step an instruction
254 * is a BUG. The code path resides in the .kprobes.text
255 * section and is executed with interrupts disabled.
256 */
257 printk(KERN_EMERG "Invalid kprobe detected at %p.\n", p->addr);
258 dump_kprobe(p);
259 BUG();
260 }
261}
262
Michael Grundy4ba069b2006-09-20 15:58:39 +0200263static int __kprobes kprobe_handler(struct pt_regs *regs)
264{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200265 struct kprobe_ctlblk *kcb;
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100266 struct kprobe *p;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200267
268 /*
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100269 * We want to disable preemption for the entire duration of kprobe
270 * processing. That includes the calls to the pre/post handlers
271 * and single stepping the kprobe instruction.
Michael Grundy4ba069b2006-09-20 15:58:39 +0200272 */
273 preempt_disable();
274 kcb = get_kprobe_ctlblk();
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100275 p = get_kprobe((void *)((regs->psw.addr & PSW_ADDR_INSN) - 2));
Michael Grundy4ba069b2006-09-20 15:58:39 +0200276
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100277 if (p) {
278 if (kprobe_running()) {
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100279 /*
280 * We have hit a kprobe while another is still
281 * active. This can happen in the pre and post
282 * handler. Single step the instruction of the
283 * new probe but do not call any handler function
284 * of this secondary kprobe.
285 * push_kprobe and pop_kprobe saves and restores
286 * the currently active kprobe.
Michael Grundy4ba069b2006-09-20 15:58:39 +0200287 */
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100288 kprobe_reenter_check(kcb, p);
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100289 push_kprobe(kcb, p);
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100290 kcb->kprobe_status = KPROBE_REENTER;
291 } else {
292 /*
293 * If we have no pre-handler or it returned 0, we
294 * continue with single stepping. If we have a
295 * pre-handler and it returned non-zero, it prepped
296 * for calling the break_handler below on re-entry
297 * for jprobe processing, so get out doing nothing
298 * more here.
299 */
300 push_kprobe(kcb, p);
301 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
302 if (p->pre_handler && p->pre_handler(p, regs))
303 return 1;
304 kcb->kprobe_status = KPROBE_HIT_SS;
305 }
306 enable_singlestep(kcb, regs, (unsigned long) p->ainsn.insn);
307 return 1;
308 } else if (kprobe_running()) {
309 p = __get_cpu_var(current_kprobe);
310 if (p->break_handler && p->break_handler(p, regs)) {
311 /*
312 * Continuation after the jprobe completed and
313 * caused the jprobe_return trap. The jprobe
314 * break_handler "returns" to the original
315 * function that still has the kprobe breakpoint
316 * installed. We continue with single stepping.
317 */
318 kcb->kprobe_status = KPROBE_HIT_SS;
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100319 enable_singlestep(kcb, regs,
320 (unsigned long) p->ainsn.insn);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200321 return 1;
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100322 } /* else:
323 * No kprobe at this address and the current kprobe
324 * has no break handler (no jprobe!). The kernel just
325 * exploded, let the standard trap handler pick up the
326 * pieces.
327 */
328 } /* else:
329 * No kprobe at this address and no active kprobe. The trap has
330 * not been caused by a kprobe breakpoint. The race of breakpoint
331 * vs. kprobe remove does not exist because on s390 as we use
332 * stop_machine to arm/disarm the breakpoints.
333 */
Michael Grundy4ba069b2006-09-20 15:58:39 +0200334 preempt_enable_no_resched();
Martin Schwidefsky0e917cc2011-01-05 12:47:23 +0100335 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200336}
337
338/*
339 * Function return probe trampoline:
340 * - init_kprobes() establishes a probepoint here
341 * - When the probed function returns, this probe
342 * causes the handlers to fire
343 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200344static void __used kretprobe_trampoline_holder(void)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200345{
346 asm volatile(".global kretprobe_trampoline\n"
347 "kretprobe_trampoline: bcr 0,0\n");
348}
349
350/*
351 * Called when the probe at kretprobe trampoline is hit
352 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100353static int __kprobes trampoline_probe_handler(struct kprobe *p,
354 struct pt_regs *regs)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200355{
356 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700357 struct hlist_head *head, empty_rp;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200358 struct hlist_node *node, *tmp;
359 unsigned long flags, orig_ret_address = 0;
360 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Martin Schwidefsky89480802010-11-10 10:05:58 +0100361 kprobe_opcode_t *correct_ret_addr = NULL;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200362
bibo,mao99219a32006-10-02 02:17:35 -0700363 INIT_HLIST_HEAD(&empty_rp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700364 kretprobe_hash_lock(current, &head, &flags);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200365
366 /*
367 * It is possible to have multiple instances associated with a given
368 * task either because an multiple functions in the call path
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200369 * have a return probe installed on them, and/or more than one return
Michael Grundy4ba069b2006-09-20 15:58:39 +0200370 * return probe was registered for a target function.
371 *
372 * We can handle this because:
373 * - instances are always inserted at the head of the list
374 * - when multiple return probes are registered for the same
375 * function, the first instance's ret_addr will point to the
376 * real return address, and all the rest will point to
377 * kretprobe_trampoline
378 */
379 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
380 if (ri->task != current)
381 /* another task is sharing our hash bucket */
382 continue;
383
Martin Schwidefsky89480802010-11-10 10:05:58 +0100384 orig_ret_address = (unsigned long)ri->ret_addr;
385
386 if (orig_ret_address != trampoline_address)
387 /*
388 * This is the real return address. Any other
389 * instances associated with this task are for
390 * other calls deeper on the call stack
391 */
392 break;
393 }
394
395 kretprobe_assert(ri, orig_ret_address, trampoline_address);
396
397 correct_ret_addr = ri->ret_addr;
398 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
399 if (ri->task != current)
400 /* another task is sharing our hash bucket */
401 continue;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200402
403 orig_ret_address = (unsigned long)ri->ret_addr;
Martin Schwidefsky89480802010-11-10 10:05:58 +0100404
405 if (ri->rp && ri->rp->handler) {
406 ri->ret_addr = correct_ret_addr;
407 ri->rp->handler(ri, regs);
408 }
409
bibo,mao99219a32006-10-02 02:17:35 -0700410 recycle_rp_inst(ri, &empty_rp);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200411
412 if (orig_ret_address != trampoline_address) {
413 /*
414 * This is the real return address. Any other
415 * instances associated with this task are for
416 * other calls deeper on the call stack
417 */
418 break;
419 }
420 }
Martin Schwidefsky89480802010-11-10 10:05:58 +0100421
Michael Grundy4ba069b2006-09-20 15:58:39 +0200422 regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE;
423
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100424 pop_kprobe(get_kprobe_ctlblk());
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700425 kretprobe_hash_unlock(current, &flags);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200426 preempt_enable_no_resched();
427
bibo,mao99219a32006-10-02 02:17:35 -0700428 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
429 hlist_del(&ri->hlist);
430 kfree(ri);
431 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200432 /*
433 * By returning a non-zero value, we are telling
434 * kprobe_handler() that we don't want the post_handler
435 * to run (and have re-enabled preemption)
436 */
437 return 1;
438}
439
440/*
441 * Called after single-stepping. p->addr is the address of the
442 * instruction whose first byte has been replaced by the "breakpoint"
443 * instruction. To avoid the SMP problems that can occur when we
444 * temporarily put back the original opcode to single-step, we
445 * single-stepped a copy of the instruction. The address of this
446 * copy is p->ainsn.insn.
447 */
448static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs)
449{
450 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100451 unsigned long ip = regs->psw.addr & PSW_ADDR_INSN;
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100452 int fixup = get_fixup_type(p->ainsn.insn);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200453
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100454 if (fixup & FIXUP_PSW_NORMAL)
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100455 ip += (unsigned long) p->addr - (unsigned long) p->ainsn.insn;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200456
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100457 if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
458 int ilen = ((p->ainsn.insn[0] >> 14) + 3) & -2;
459 if (ip - (unsigned long) p->ainsn.insn == ilen)
460 ip = (unsigned long) p->addr + ilen;
461 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200462
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100463 if (fixup & FIXUP_RETURN_REGISTER) {
464 int reg = (p->ainsn.insn[0] & 0xf0) >> 4;
465 regs->gprs[reg] += (unsigned long) p->addr -
466 (unsigned long) p->ainsn.insn;
467 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200468
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100469 disable_singlestep(kcb, regs, ip);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200470}
471
472static int __kprobes post_kprobe_handler(struct pt_regs *regs)
473{
474 struct kprobe *cur = kprobe_running();
475 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
476
477 if (!cur)
478 return 0;
479
480 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
481 kcb->kprobe_status = KPROBE_HIT_SSDONE;
482 cur->post_handler(cur, regs, 0);
483 }
484
485 resume_execution(cur, regs);
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100486 pop_kprobe(kcb);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200487 preempt_enable_no_resched();
488
489 /*
490 * if somebody else is singlestepping across a probe point, psw mask
491 * will have PER set, in which case, continue the remaining processing
492 * of do_single_step, as if this is not a probe hit.
493 */
494 if (regs->psw.mask & PSW_MASK_PER) {
495 return 0;
496 }
497
498 return 1;
499}
500
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100501static int __kprobes kprobe_trap_handler(struct pt_regs *regs, int trapnr)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200502{
503 struct kprobe *cur = kprobe_running();
504 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
505 const struct exception_table_entry *entry;
506
507 switch(kcb->kprobe_status) {
508 case KPROBE_SWAP_INST:
509 /* We are here because the instruction replacement failed */
510 return 0;
511 case KPROBE_HIT_SS:
512 case KPROBE_REENTER:
513 /*
514 * We are here because the instruction being single
515 * stepped caused a page fault. We reset the current
516 * kprobe and the nip points back to the probe address
517 * and allow the page fault handler to continue as a
518 * normal page fault.
519 */
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100520 disable_singlestep(kcb, regs, (unsigned long) cur->addr);
Martin Schwidefskyb9599792011-01-05 12:47:20 +0100521 pop_kprobe(kcb);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200522 preempt_enable_no_resched();
523 break;
524 case KPROBE_HIT_ACTIVE:
525 case KPROBE_HIT_SSDONE:
526 /*
527 * We increment the nmissed count for accounting,
528 * we can also use npre/npostfault count for accouting
529 * these specific fault cases.
530 */
531 kprobes_inc_nmissed_count(cur);
532
533 /*
534 * We come here because instructions in the pre/post
535 * handler caused the page_fault, this could happen
536 * if handler tries to access user space by
537 * copy_from_user(), get_user() etc. Let the
538 * user-specified handler try to fix it first.
539 */
540 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
541 return 1;
542
543 /*
544 * In case the user-specified fault handler returned
545 * zero, try to fix up.
546 */
547 entry = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
548 if (entry) {
549 regs->psw.addr = entry->fixup | PSW_ADDR_AMODE;
550 return 1;
551 }
552
553 /*
554 * fixup_exception() could not handle it,
555 * Let do_page_fault() fix it.
556 */
557 break;
558 default:
559 break;
560 }
561 return 0;
562}
563
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100564int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
565{
566 int ret;
567
568 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
569 local_irq_disable();
570 ret = kprobe_trap_handler(regs, trapnr);
571 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
572 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
573 return ret;
574}
575
Michael Grundy4ba069b2006-09-20 15:58:39 +0200576/*
577 * Wrapper routine to for handling exceptions.
578 */
579int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
580 unsigned long val, void *data)
581{
582 struct die_args *args = (struct die_args *)data;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100583 struct pt_regs *regs = args->regs;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200584 int ret = NOTIFY_DONE;
585
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100586 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
587 local_irq_disable();
588
Michael Grundy4ba069b2006-09-20 15:58:39 +0200589 switch (val) {
590 case DIE_BPT:
591 if (kprobe_handler(args->regs))
592 ret = NOTIFY_STOP;
593 break;
594 case DIE_SSTEP:
595 if (post_kprobe_handler(args->regs))
596 ret = NOTIFY_STOP;
597 break;
598 case DIE_TRAP:
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100599 if (!preemptible() && kprobe_running() &&
600 kprobe_trap_handler(args->regs, args->trapnr))
Michael Grundy4ba069b2006-09-20 15:58:39 +0200601 ret = NOTIFY_STOP;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200602 break;
603 default:
604 break;
605 }
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100606
607 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
608 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
609
Michael Grundy4ba069b2006-09-20 15:58:39 +0200610 return ret;
611}
612
613int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
614{
615 struct jprobe *jp = container_of(p, struct jprobe, kp);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200616 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Martin Schwidefsky92b8cbf2011-01-05 12:47:22 +0100617 unsigned long stack;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200618
619 memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs));
620
621 /* setup return addr to the jprobe handler routine */
622 regs->psw.addr = (unsigned long)(jp->entry) | PSW_ADDR_AMODE;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100623 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200624
Michael Grundy4ba069b2006-09-20 15:58:39 +0200625 /* r15 is the stack pointer */
Martin Schwidefsky92b8cbf2011-01-05 12:47:22 +0100626 stack = (unsigned long) regs->gprs[15];
Michael Grundy4ba069b2006-09-20 15:58:39 +0200627
Martin Schwidefsky92b8cbf2011-01-05 12:47:22 +0100628 memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
Michael Grundy4ba069b2006-09-20 15:58:39 +0200629 return 1;
630}
631
632void __kprobes jprobe_return(void)
633{
634 asm volatile(".word 0x0002");
635}
636
637void __kprobes jprobe_return_end(void)
638{
639 asm volatile("bcr 0,0");
640}
641
642int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
643{
644 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Martin Schwidefsky92b8cbf2011-01-05 12:47:22 +0100645 unsigned long stack;
646
647 stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
Michael Grundy4ba069b2006-09-20 15:58:39 +0200648
649 /* Put the regs back */
650 memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs));
651 /* put the stack back */
Martin Schwidefsky92b8cbf2011-01-05 12:47:22 +0100652 memcpy((void *) stack, kcb->jprobes_stack, MIN_STACK_SIZE(stack));
Michael Grundy4ba069b2006-09-20 15:58:39 +0200653 preempt_enable_no_resched();
654 return 1;
655}
656
657static struct kprobe trampoline_p = {
658 .addr = (kprobe_opcode_t *) & kretprobe_trampoline,
659 .pre_handler = trampoline_probe_handler
660};
661
662int __init arch_init_kprobes(void)
663{
664 return register_kprobe(&trampoline_p);
665}
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -0700666
667int __kprobes arch_trampoline_kprobe(struct kprobe *p)
668{
669 if (p->addr == (kprobe_opcode_t *) & kretprobe_trampoline)
670 return 1;
671 return 0;
672}