blob: fcbc2583687902dfd2736ab510613774ca2d3478 [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
129 /* Use the get_insn_slot() facility for correctness */
130 if (!(p->ainsn.insn = get_insn_slot()))
131 return -ENOMEM;
132
133 p->opcode = *p->addr;
134 memcpy(p->ainsn.insn, p->addr, ((p->opcode >> 14) + 3) & -2);
135
136 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200137}
138
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100139struct ins_replace_args {
140 kprobe_opcode_t *ptr;
141 kprobe_opcode_t opcode;
142};
143
Michael Grundy4ba069b2006-09-20 15:58:39 +0200144static int __kprobes swap_instruction(void *aref)
145{
Heiko Carstensacf01802009-06-22 12:08:23 +0200146 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
147 unsigned long status = kcb->kprobe_status;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200148 struct ins_replace_args *args = aref;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200149
Heiko Carstensacf01802009-06-22 12:08:23 +0200150 kcb->kprobe_status = KPROBE_SWAP_INST;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100151 probe_kernel_write(args->ptr, &args->opcode, sizeof(args->opcode));
Heiko Carstensacf01802009-06-22 12:08:23 +0200152 kcb->kprobe_status = status;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100153 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200154}
155
156void __kprobes arch_arm_kprobe(struct kprobe *p)
157{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200158 struct ins_replace_args args;
159
160 args.ptr = p->addr;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100161 args.opcode = BREAKPOINT_INSTRUCTION;
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500162 stop_machine(swap_instruction, &args, NULL);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200163}
164
165void __kprobes arch_disarm_kprobe(struct kprobe *p)
166{
Michael Grundy4ba069b2006-09-20 15:58:39 +0200167 struct ins_replace_args args;
168
169 args.ptr = p->addr;
Martin Schwidefsky5a8b5892011-01-05 12:47:18 +0100170 args.opcode = p->opcode;
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500171 stop_machine(swap_instruction, &args, NULL);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200172}
173
174void __kprobes arch_remove_kprobe(struct kprobe *p)
175{
Masami Hiramatsu12941562009-01-06 14:41:50 -0800176 if (p->ainsn.insn) {
177 free_insn_slot(p->ainsn.insn, 0);
178 p->ainsn.insn = NULL;
179 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200180}
181
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100182static void __kprobes enable_singlestep(struct kprobe_ctlblk *kcb,
183 struct pt_regs *regs,
184 unsigned long ip)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200185{
186 per_cr_bits kprobe_per_regs[1];
187
Michael Grundy4ba069b2006-09-20 15:58:39 +0200188 /* Set up the per control reg info, will pass to lctl */
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100189 memset(kprobe_per_regs, 0, sizeof(per_cr_bits));
Michael Grundy4ba069b2006-09-20 15:58:39 +0200190 kprobe_per_regs[0].em_instruction_fetch = 1;
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100191 kprobe_per_regs[0].starting_addr = ip;
192 kprobe_per_regs[0].ending_addr = ip;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200193
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100194 /* Save control regs and psw mask */
195 __ctl_store(kcb->kprobe_saved_ctl, 9, 11);
196 kcb->kprobe_saved_imask = regs->psw.mask &
197 (PSW_MASK_PER | PSW_MASK_IO | PSW_MASK_EXT);
198
199 /* Set PER control regs, turns on single step for the given address */
Michael Grundy4ba069b2006-09-20 15:58:39 +0200200 __ctl_load(kprobe_per_regs, 9, 11);
201 regs->psw.mask |= PSW_MASK_PER;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100202 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100203 regs->psw.addr = ip | PSW_ADDR_AMODE;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200204}
205
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100206static void __kprobes disable_singlestep(struct kprobe_ctlblk *kcb,
207 struct pt_regs *regs,
208 unsigned long ip)
209{
210 /* Restore control regs and psw mask, set new psw address */
211 __ctl_load(kcb->kprobe_saved_ctl, 9, 11);
212 regs->psw.mask &= ~PSW_MASK_PER;
213 regs->psw.mask |= kcb->kprobe_saved_imask;
214 regs->psw.addr = ip | PSW_ADDR_AMODE;
215}
216
217
Michael Grundy4ba069b2006-09-20 15:58:39 +0200218static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
219{
220 kcb->prev_kprobe.kp = kprobe_running();
221 kcb->prev_kprobe.status = kcb->kprobe_status;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200222}
223
224static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
225{
226 __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
227 kcb->kprobe_status = kcb->prev_kprobe.status;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200228}
229
230static void __kprobes set_current_kprobe(struct kprobe *p, struct pt_regs *regs,
231 struct kprobe_ctlblk *kcb)
232{
233 __get_cpu_var(current_kprobe) = p;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200234}
235
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700236void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
Michael Grundy4ba069b2006-09-20 15:58:39 +0200237 struct pt_regs *regs)
238{
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700239 ri->ret_addr = (kprobe_opcode_t *) regs->gprs[14];
Michael Grundy4ba069b2006-09-20 15:58:39 +0200240
Christoph Hellwig4c4308c2007-05-08 00:34:14 -0700241 /* Replace the return addr with trampoline addr */
242 regs->gprs[14] = (unsigned long)&kretprobe_trampoline;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200243}
244
245static int __kprobes kprobe_handler(struct pt_regs *regs)
246{
247 struct kprobe *p;
248 int ret = 0;
249 unsigned long *addr = (unsigned long *)
250 ((regs->psw.addr & PSW_ADDR_INSN) - 2);
251 struct kprobe_ctlblk *kcb;
252
253 /*
254 * We don't want to be preempted for the entire
255 * duration of kprobe processing
256 */
257 preempt_disable();
258 kcb = get_kprobe_ctlblk();
259
260 /* Check we're not actually recursing */
261 if (kprobe_running()) {
262 p = get_kprobe(addr);
263 if (p) {
Michael Grundy4ba069b2006-09-20 15:58:39 +0200264 /* We have reentered the kprobe_handler(), since
265 * another probe was hit while within the handler.
266 * We here save the original kprobes variables and
267 * just single step on the instruction of the new probe
268 * without calling any user handlers.
269 */
270 save_previous_kprobe(kcb);
271 set_current_kprobe(p, regs, kcb);
272 kprobes_inc_nmissed_count(p);
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100273 enable_singlestep(kcb, regs,
274 (unsigned long) p->ainsn.insn);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200275 kcb->kprobe_status = KPROBE_REENTER;
276 return 1;
277 } else {
278 p = __get_cpu_var(current_kprobe);
279 if (p->break_handler && p->break_handler(p, regs)) {
280 goto ss_probe;
281 }
282 }
283 goto no_kprobe;
284 }
285
286 p = get_kprobe(addr);
Martin Schwidefskyf794c822007-03-05 23:35:38 +0100287 if (!p)
288 /*
289 * No kprobe at this address. The fault has not been
290 * caused by a kprobe breakpoint. The race of breakpoint
291 * vs. kprobe remove does not exist because on s390 we
Rusty Russell9b1a4d32008-07-28 12:16:30 -0500292 * use stop_machine to arm/disarm the breakpoints.
Martin Schwidefskyf794c822007-03-05 23:35:38 +0100293 */
Michael Grundy4ba069b2006-09-20 15:58:39 +0200294 goto no_kprobe;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200295
296 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
297 set_current_kprobe(p, regs, kcb);
298 if (p->pre_handler && p->pre_handler(p, regs))
299 /* handler has already set things up, so skip ss setup */
300 return 1;
301
302ss_probe:
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100303 enable_singlestep(kcb, regs, (unsigned long) p->ainsn.insn);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200304 kcb->kprobe_status = KPROBE_HIT_SS;
305 return 1;
306
307no_kprobe:
308 preempt_enable_no_resched();
309 return ret;
310}
311
312/*
313 * Function return probe trampoline:
314 * - init_kprobes() establishes a probepoint here
315 * - When the probed function returns, this probe
316 * causes the handlers to fire
317 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200318static void __used kretprobe_trampoline_holder(void)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200319{
320 asm volatile(".global kretprobe_trampoline\n"
321 "kretprobe_trampoline: bcr 0,0\n");
322}
323
324/*
325 * Called when the probe at kretprobe trampoline is hit
326 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100327static int __kprobes trampoline_probe_handler(struct kprobe *p,
328 struct pt_regs *regs)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200329{
330 struct kretprobe_instance *ri = NULL;
bibo,mao99219a32006-10-02 02:17:35 -0700331 struct hlist_head *head, empty_rp;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200332 struct hlist_node *node, *tmp;
333 unsigned long flags, orig_ret_address = 0;
334 unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline;
Martin Schwidefsky89480802010-11-10 10:05:58 +0100335 kprobe_opcode_t *correct_ret_addr = NULL;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200336
bibo,mao99219a32006-10-02 02:17:35 -0700337 INIT_HLIST_HEAD(&empty_rp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700338 kretprobe_hash_lock(current, &head, &flags);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200339
340 /*
341 * It is possible to have multiple instances associated with a given
342 * task either because an multiple functions in the call path
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200343 * have a return probe installed on them, and/or more than one return
Michael Grundy4ba069b2006-09-20 15:58:39 +0200344 * return probe was registered for a target function.
345 *
346 * We can handle this because:
347 * - instances are always inserted at the head of the list
348 * - when multiple return probes are registered for the same
349 * function, the first instance's ret_addr will point to the
350 * real return address, and all the rest will point to
351 * kretprobe_trampoline
352 */
353 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
354 if (ri->task != current)
355 /* another task is sharing our hash bucket */
356 continue;
357
Martin Schwidefsky89480802010-11-10 10:05:58 +0100358 orig_ret_address = (unsigned long)ri->ret_addr;
359
360 if (orig_ret_address != trampoline_address)
361 /*
362 * This is the real return address. Any other
363 * instances associated with this task are for
364 * other calls deeper on the call stack
365 */
366 break;
367 }
368
369 kretprobe_assert(ri, orig_ret_address, trampoline_address);
370
371 correct_ret_addr = ri->ret_addr;
372 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
373 if (ri->task != current)
374 /* another task is sharing our hash bucket */
375 continue;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200376
377 orig_ret_address = (unsigned long)ri->ret_addr;
Martin Schwidefsky89480802010-11-10 10:05:58 +0100378
379 if (ri->rp && ri->rp->handler) {
380 ri->ret_addr = correct_ret_addr;
381 ri->rp->handler(ri, regs);
382 }
383
bibo,mao99219a32006-10-02 02:17:35 -0700384 recycle_rp_inst(ri, &empty_rp);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200385
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 }
Martin Schwidefsky89480802010-11-10 10:05:58 +0100395
Michael Grundy4ba069b2006-09-20 15:58:39 +0200396 regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE;
397
398 reset_current_kprobe();
Srinivasa D Sef53d9c2008-07-25 01:46:04 -0700399 kretprobe_hash_unlock(current, &flags);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200400 preempt_enable_no_resched();
401
bibo,mao99219a32006-10-02 02:17:35 -0700402 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
403 hlist_del(&ri->hlist);
404 kfree(ri);
405 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200406 /*
407 * By returning a non-zero value, we are telling
408 * kprobe_handler() that we don't want the post_handler
409 * to run (and have re-enabled preemption)
410 */
411 return 1;
412}
413
414/*
415 * Called after single-stepping. p->addr is the address of the
416 * instruction whose first byte has been replaced by the "breakpoint"
417 * instruction. To avoid the SMP problems that can occur when we
418 * temporarily put back the original opcode to single-step, we
419 * single-stepped a copy of the instruction. The address of this
420 * copy is p->ainsn.insn.
421 */
422static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs)
423{
424 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100425 unsigned long ip = regs->psw.addr & PSW_ADDR_INSN;
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100426 int fixup = get_fixup_type(p->ainsn.insn);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200427
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100428 if (fixup & FIXUP_PSW_NORMAL)
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100429 ip += (unsigned long) p->addr - (unsigned long) p->ainsn.insn;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200430
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100431 if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
432 int ilen = ((p->ainsn.insn[0] >> 14) + 3) & -2;
433 if (ip - (unsigned long) p->ainsn.insn == ilen)
434 ip = (unsigned long) p->addr + ilen;
435 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200436
Martin Schwidefskyba640a52011-01-05 12:47:19 +0100437 if (fixup & FIXUP_RETURN_REGISTER) {
438 int reg = (p->ainsn.insn[0] & 0xf0) >> 4;
439 regs->gprs[reg] += (unsigned long) p->addr -
440 (unsigned long) p->ainsn.insn;
441 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200442
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100443 disable_singlestep(kcb, regs, ip);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200444}
445
446static int __kprobes post_kprobe_handler(struct pt_regs *regs)
447{
448 struct kprobe *cur = kprobe_running();
449 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
450
451 if (!cur)
452 return 0;
453
454 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
455 kcb->kprobe_status = KPROBE_HIT_SSDONE;
456 cur->post_handler(cur, regs, 0);
457 }
458
459 resume_execution(cur, regs);
460
461 /*Restore back the original saved kprobes variables and continue. */
462 if (kcb->kprobe_status == KPROBE_REENTER) {
463 restore_previous_kprobe(kcb);
464 goto out;
465 }
466 reset_current_kprobe();
467out:
468 preempt_enable_no_resched();
469
470 /*
471 * if somebody else is singlestepping across a probe point, psw mask
472 * will have PER set, in which case, continue the remaining processing
473 * of do_single_step, as if this is not a probe hit.
474 */
475 if (regs->psw.mask & PSW_MASK_PER) {
476 return 0;
477 }
478
479 return 1;
480}
481
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100482static int __kprobes kprobe_trap_handler(struct pt_regs *regs, int trapnr)
Michael Grundy4ba069b2006-09-20 15:58:39 +0200483{
484 struct kprobe *cur = kprobe_running();
485 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
486 const struct exception_table_entry *entry;
487
488 switch(kcb->kprobe_status) {
489 case KPROBE_SWAP_INST:
490 /* We are here because the instruction replacement failed */
491 return 0;
492 case KPROBE_HIT_SS:
493 case KPROBE_REENTER:
494 /*
495 * We are here because the instruction being single
496 * stepped caused a page fault. We reset the current
497 * kprobe and the nip points back to the probe address
498 * and allow the page fault handler to continue as a
499 * normal page fault.
500 */
Martin Schwidefskyfc0a1fe2011-01-05 12:47:17 +0100501 disable_singlestep(kcb, regs, (unsigned long) cur->addr);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200502 if (kcb->kprobe_status == KPROBE_REENTER)
503 restore_previous_kprobe(kcb);
Martin Schwidefsky9ec27082010-10-29 16:50:45 +0200504 else {
Michael Grundy4ba069b2006-09-20 15:58:39 +0200505 reset_current_kprobe();
Martin Schwidefsky9ec27082010-10-29 16:50:45 +0200506 }
Michael Grundy4ba069b2006-09-20 15:58:39 +0200507 preempt_enable_no_resched();
508 break;
509 case KPROBE_HIT_ACTIVE:
510 case KPROBE_HIT_SSDONE:
511 /*
512 * We increment the nmissed count for accounting,
513 * we can also use npre/npostfault count for accouting
514 * these specific fault cases.
515 */
516 kprobes_inc_nmissed_count(cur);
517
518 /*
519 * We come here because instructions in the pre/post
520 * handler caused the page_fault, this could happen
521 * if handler tries to access user space by
522 * copy_from_user(), get_user() etc. Let the
523 * user-specified handler try to fix it first.
524 */
525 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
526 return 1;
527
528 /*
529 * In case the user-specified fault handler returned
530 * zero, try to fix up.
531 */
532 entry = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
533 if (entry) {
534 regs->psw.addr = entry->fixup | PSW_ADDR_AMODE;
535 return 1;
536 }
537
538 /*
539 * fixup_exception() could not handle it,
540 * Let do_page_fault() fix it.
541 */
542 break;
543 default:
544 break;
545 }
546 return 0;
547}
548
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100549int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
550{
551 int ret;
552
553 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
554 local_irq_disable();
555 ret = kprobe_trap_handler(regs, trapnr);
556 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
557 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
558 return ret;
559}
560
Michael Grundy4ba069b2006-09-20 15:58:39 +0200561/*
562 * Wrapper routine to for handling exceptions.
563 */
564int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
565 unsigned long val, void *data)
566{
567 struct die_args *args = (struct die_args *)data;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100568 struct pt_regs *regs = args->regs;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200569 int ret = NOTIFY_DONE;
570
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100571 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
572 local_irq_disable();
573
Michael Grundy4ba069b2006-09-20 15:58:39 +0200574 switch (val) {
575 case DIE_BPT:
576 if (kprobe_handler(args->regs))
577 ret = NOTIFY_STOP;
578 break;
579 case DIE_SSTEP:
580 if (post_kprobe_handler(args->regs))
581 ret = NOTIFY_STOP;
582 break;
583 case DIE_TRAP:
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100584 if (!preemptible() && kprobe_running() &&
585 kprobe_trap_handler(args->regs, args->trapnr))
Michael Grundy4ba069b2006-09-20 15:58:39 +0200586 ret = NOTIFY_STOP;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200587 break;
588 default:
589 break;
590 }
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100591
592 if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
593 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
594
Michael Grundy4ba069b2006-09-20 15:58:39 +0200595 return ret;
596}
597
598int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
599{
600 struct jprobe *jp = container_of(p, struct jprobe, kp);
601 unsigned long addr;
602 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
603
604 memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs));
605
606 /* setup return addr to the jprobe handler routine */
607 regs->psw.addr = (unsigned long)(jp->entry) | PSW_ADDR_AMODE;
Martin Schwidefskyadb45832010-11-10 10:05:57 +0100608 regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
Michael Grundy4ba069b2006-09-20 15:58:39 +0200609
610 /* r14 is the function return address */
611 kcb->jprobe_saved_r14 = (unsigned long)regs->gprs[14];
612 /* r15 is the stack pointer */
613 kcb->jprobe_saved_r15 = (unsigned long)regs->gprs[15];
614 addr = (unsigned long)kcb->jprobe_saved_r15;
615
616 memcpy(kcb->jprobes_stack, (kprobe_opcode_t *) addr,
617 MIN_STACK_SIZE(addr));
618 return 1;
619}
620
621void __kprobes jprobe_return(void)
622{
623 asm volatile(".word 0x0002");
624}
625
626void __kprobes jprobe_return_end(void)
627{
628 asm volatile("bcr 0,0");
629}
630
631int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
632{
633 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
634 unsigned long stack_addr = (unsigned long)(kcb->jprobe_saved_r15);
635
636 /* Put the regs back */
637 memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs));
638 /* put the stack back */
639 memcpy((kprobe_opcode_t *) stack_addr, kcb->jprobes_stack,
640 MIN_STACK_SIZE(stack_addr));
641 preempt_enable_no_resched();
642 return 1;
643}
644
645static struct kprobe trampoline_p = {
646 .addr = (kprobe_opcode_t *) & kretprobe_trampoline,
647 .pre_handler = trampoline_probe_handler
648};
649
650int __init arch_init_kprobes(void)
651{
652 return register_kprobe(&trampoline_p);
653}
Ananth N Mavinakayanahallibf8f6e52007-05-08 00:34:16 -0700654
655int __kprobes arch_trampoline_kprobe(struct kprobe *p)
656{
657 if (p->addr == (kprobe_opcode_t *) & kretprobe_trampoline)
658 return 1;
659 return 0;
660}