[IA64] fix getpid and set_tid_address fast system calls for pid namespaces
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / ia64 / kernel / kprobes.c
CommitLineData
fd7b231f
AK
1/*
2 * Kernel Probes (KProbes)
3 * arch/ia64/kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 * Copyright (C) IBM Corporation, 2002, 2004
20 * Copyright (C) Intel Corporation, 2005
21 *
22 * 2005-Apr Rusty Lynch <rusty.lynch@intel.com> and Anil S Keshavamurthy
23 * <anil.s.keshavamurthy@intel.com> adapted from i386
24 */
25
fd7b231f
AK
26#include <linux/kprobes.h>
27#include <linux/ptrace.h>
fd7b231f
AK
28#include <linux/string.h>
29#include <linux/slab.h>
30#include <linux/preempt.h>
31#include <linux/moduleloader.h>
1eeb66a1 32#include <linux/kdebug.h>
fd7b231f
AK
33
34#include <asm/pgtable.h>
c7b645f9 35#include <asm/sections.h>
c04c1c81 36#include <asm/uaccess.h>
fd7b231f 37
b2761dc2
AK
38extern void jprobe_inst_return(void);
39
8a5c4dc5
AM
40DEFINE_PER_CPU(struct kprobe *, current_kprobe) = NULL;
41DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
fd7b231f 42
f438d914
MH
43struct kretprobe_blackpoint kretprobe_blacklist[] = {{NULL, NULL}};
44
fd7b231f
AK
45enum instruction_type {A, I, M, F, B, L, X, u};
46static enum instruction_type bundle_encoding[32][3] = {
47 { M, I, I }, /* 00 */
48 { M, I, I }, /* 01 */
49 { M, I, I }, /* 02 */
50 { M, I, I }, /* 03 */
51 { M, L, X }, /* 04 */
52 { M, L, X }, /* 05 */
53 { u, u, u }, /* 06 */
54 { u, u, u }, /* 07 */
55 { M, M, I }, /* 08 */
56 { M, M, I }, /* 09 */
57 { M, M, I }, /* 0A */
58 { M, M, I }, /* 0B */
59 { M, F, I }, /* 0C */
60 { M, F, I }, /* 0D */
61 { M, M, F }, /* 0E */
62 { M, M, F }, /* 0F */
63 { M, I, B }, /* 10 */
64 { M, I, B }, /* 11 */
65 { M, B, B }, /* 12 */
66 { M, B, B }, /* 13 */
67 { u, u, u }, /* 14 */
68 { u, u, u }, /* 15 */
69 { B, B, B }, /* 16 */
70 { B, B, B }, /* 17 */
71 { M, M, B }, /* 18 */
72 { M, M, B }, /* 19 */
73 { u, u, u }, /* 1A */
74 { u, u, u }, /* 1B */
75 { M, F, B }, /* 1C */
76 { M, F, B }, /* 1D */
77 { u, u, u }, /* 1E */
78 { u, u, u }, /* 1F */
79};
80
a5403183
AK
81/*
82 * In this function we check to see if the instruction
83 * is IP relative instruction and update the kprobe
84 * inst flag accordingly
85 */
1f7ad57b
PP
86static void __kprobes update_kprobe_inst_flag(uint template, uint slot,
87 uint major_opcode,
88 unsigned long kprobe_inst,
89 struct kprobe *p)
fd7b231f 90{
8bc76772
RL
91 p->ainsn.inst_flag = 0;
92 p->ainsn.target_br_reg = 0;
08ed38b6 93 p->ainsn.slot = slot;
fd7b231f 94
deac66ae 95 /* Check for Break instruction
62c27be0 96 * Bits 37:40 Major opcode to be zero
deac66ae
KA
97 * Bits 27:32 X6 to be zero
98 * Bits 32:35 X3 to be zero
99 */
100 if ((!major_opcode) && (!((kprobe_inst >> 27) & 0x1FF)) ) {
101 /* is a break instruction */
102 p->ainsn.inst_flag |= INST_FLAG_BREAK_INST;
103 return;
104 }
105
a5403183
AK
106 if (bundle_encoding[template][slot] == B) {
107 switch (major_opcode) {
108 case INDIRECT_CALL_OPCODE:
109 p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG;
62c27be0 110 p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7);
111 break;
a5403183
AK
112 case IP_RELATIVE_PREDICT_OPCODE:
113 case IP_RELATIVE_BRANCH_OPCODE:
114 p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR;
62c27be0 115 break;
a5403183 116 case IP_RELATIVE_CALL_OPCODE:
62c27be0 117 p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR;
118 p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG;
119 p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7);
120 break;
a5403183 121 }
62c27be0 122 } else if (bundle_encoding[template][slot] == X) {
a5403183
AK
123 switch (major_opcode) {
124 case LONG_CALL_OPCODE:
125 p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG;
126 p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7);
127 break;
128 }
129 }
130 return;
131}
fd7b231f 132
1674eafc
AK
133/*
134 * In this function we check to see if the instruction
135 * (qp) cmpx.crel.ctype p1,p2=r2,r3
136 * on which we are inserting kprobe is cmp instruction
137 * with ctype as unc.
138 */
1f7ad57b
PP
139static uint __kprobes is_cmp_ctype_unc_inst(uint template, uint slot,
140 uint major_opcode,
141 unsigned long kprobe_inst)
1674eafc
AK
142{
143 cmp_inst_t cmp_inst;
144 uint ctype_unc = 0;
145
146 if (!((bundle_encoding[template][slot] == I) ||
147 (bundle_encoding[template][slot] == M)))
148 goto out;
149
150 if (!((major_opcode == 0xC) || (major_opcode == 0xD) ||
151 (major_opcode == 0xE)))
152 goto out;
153
154 cmp_inst.l = kprobe_inst;
155 if ((cmp_inst.f.x2 == 0) || (cmp_inst.f.x2 == 1)) {
72fdbdce 156 /* Integer compare - Register Register (A6 type)*/
1674eafc
AK
157 if ((cmp_inst.f.tb == 0) && (cmp_inst.f.ta == 0)
158 &&(cmp_inst.f.c == 1))
159 ctype_unc = 1;
160 } else if ((cmp_inst.f.x2 == 2)||(cmp_inst.f.x2 == 3)) {
72fdbdce 161 /* Integer compare - Immediate Register (A8 type)*/
1674eafc
AK
162 if ((cmp_inst.f.ta == 0) &&(cmp_inst.f.c == 1))
163 ctype_unc = 1;
164 }
165out:
166 return ctype_unc;
167}
168
df3e0d1c 169/*
170 * In this function we check to see if the instruction
171 * on which we are inserting kprobe is supported.
172 * Returns qp value if supported
173 * Returns -EINVAL if unsupported
174 */
175static int __kprobes unsupported_inst(uint template, uint slot,
176 uint major_opcode,
177 unsigned long kprobe_inst,
178 unsigned long addr)
179{
180 int qp;
181
182 qp = kprobe_inst & 0x3f;
183 if (is_cmp_ctype_unc_inst(template, slot, major_opcode, kprobe_inst)) {
184 if (slot == 1 && qp) {
c2eeb321
JP
185 printk(KERN_WARNING "Kprobes on cmp unc "
186 "instruction on slot 1 at <0x%lx> "
df3e0d1c 187 "is not supported\n", addr);
188 return -EINVAL;
189
190 }
191 qp = 0;
192 }
193 else if (bundle_encoding[template][slot] == I) {
194 if (major_opcode == 0) {
195 /*
196 * Check for Integer speculation instruction
197 * - Bit 33-35 to be equal to 0x1
198 */
199 if (((kprobe_inst >> 33) & 0x7) == 1) {
200 printk(KERN_WARNING
201 "Kprobes on speculation inst at <0x%lx> not supported\n",
202 addr);
203 return -EINVAL;
204 }
205 /*
206 * IP relative mov instruction
207 * - Bit 27-35 to be equal to 0x30
208 */
209 if (((kprobe_inst >> 27) & 0x1FF) == 0x30) {
210 printk(KERN_WARNING
211 "Kprobes on \"mov r1=ip\" at <0x%lx> not supported\n",
212 addr);
213 return -EINVAL;
214
215 }
216 }
217 else if ((major_opcode == 5) && !(kprobe_inst & (0xFUl << 33)) &&
218 (kprobe_inst & (0x1UL << 12))) {
219 /* test bit instructions, tbit,tnat,tf
220 * bit 33-36 to be equal to 0
221 * bit 12 to be equal to 1
222 */
223 if (slot == 1 && qp) {
c2eeb321
JP
224 printk(KERN_WARNING "Kprobes on test bit "
225 "instruction on slot at <0x%lx> "
df3e0d1c 226 "is not supported\n", addr);
227 return -EINVAL;
228 }
229 qp = 0;
230 }
231 }
232 else if (bundle_encoding[template][slot] == B) {
233 if (major_opcode == 7) {
234 /* IP-Relative Predict major code is 7 */
235 printk(KERN_WARNING "Kprobes on IP-Relative"
236 "Predict is not supported\n");
237 return -EINVAL;
238 }
239 else if (major_opcode == 2) {
240 /* Indirect Predict, major code is 2
241 * bit 27-32 to be equal to 10 or 11
242 */
243 int x6=(kprobe_inst >> 27) & 0x3F;
244 if ((x6 == 0x10) || (x6 == 0x11)) {
c2eeb321 245 printk(KERN_WARNING "Kprobes on "
df3e0d1c 246 "Indirect Predict is not supported\n");
247 return -EINVAL;
248 }
249 }
250 }
251 /* kernel does not use float instruction, here for safety kprobe
252 * will judge whether it is fcmp/flass/float approximation instruction
253 */
254 else if (unlikely(bundle_encoding[template][slot] == F)) {
255 if ((major_opcode == 4 || major_opcode == 5) &&
256 (kprobe_inst & (0x1 << 12))) {
257 /* fcmp/fclass unc instruction */
258 if (slot == 1 && qp) {
259 printk(KERN_WARNING "Kprobes on fcmp/fclass "
260 "instruction on slot at <0x%lx> "
261 "is not supported\n", addr);
262 return -EINVAL;
263
264 }
265 qp = 0;
266 }
267 if ((major_opcode == 0 || major_opcode == 1) &&
268 (kprobe_inst & (0x1UL << 33))) {
269 /* float Approximation instruction */
270 if (slot == 1 && qp) {
271 printk(KERN_WARNING "Kprobes on float Approx "
272 "instr at <0x%lx> is not supported\n",
273 addr);
274 return -EINVAL;
275 }
276 qp = 0;
277 }
278 }
279 return qp;
280}
281
a5403183
AK
282/*
283 * In this function we override the bundle with
284 * the break instruction at the given slot.
285 */
1f7ad57b
PP
286static void __kprobes prepare_break_inst(uint template, uint slot,
287 uint major_opcode,
288 unsigned long kprobe_inst,
df3e0d1c 289 struct kprobe *p,
290 int qp)
a5403183
AK
291{
292 unsigned long break_inst = BREAK_INST;
214ddde2 293 bundle_t *bundle = &p->opcode.bundle;
a5403183
AK
294
295 /*
296 * Copy the original kprobe_inst qualifying predicate(qp)
df3e0d1c 297 * to the break instruction
a5403183 298 */
df3e0d1c 299 break_inst |= qp;
a5403183
AK
300
301 switch (slot) {
302 case 0:
303 bundle->quad0.slot0 = break_inst;
304 break;
305 case 1:
306 bundle->quad0.slot1_p0 = break_inst;
307 bundle->quad1.slot1_p1 = break_inst >> (64-46);
308 break;
309 case 2:
310 bundle->quad1.slot2 = break_inst;
311 break;
8bc76772 312 }
cd2675bf 313
a5403183
AK
314 /*
315 * Update the instruction flag, so that we can
316 * emulate the instruction properly after we
317 * single step on original instruction
318 */
319 update_kprobe_inst_flag(template, slot, major_opcode, kprobe_inst, p);
320}
321
3ca269d8 322static void __kprobes get_kprobe_inst(bundle_t *bundle, uint slot,
a5403183
AK
323 unsigned long *kprobe_inst, uint *major_opcode)
324{
325 unsigned long kprobe_inst_p0, kprobe_inst_p1;
326 unsigned int template;
327
328 template = bundle->quad0.template;
fd7b231f 329
fd7b231f 330 switch (slot) {
a5403183 331 case 0:
62c27be0 332 *major_opcode = (bundle->quad0.slot0 >> SLOT0_OPCODE_SHIFT);
333 *kprobe_inst = bundle->quad0.slot0;
334 break;
a5403183 335 case 1:
62c27be0 336 *major_opcode = (bundle->quad1.slot1_p1 >> SLOT1_p1_OPCODE_SHIFT);
337 kprobe_inst_p0 = bundle->quad0.slot1_p0;
338 kprobe_inst_p1 = bundle->quad1.slot1_p1;
339 *kprobe_inst = kprobe_inst_p0 | (kprobe_inst_p1 << (64-46));
fd7b231f 340 break;
a5403183 341 case 2:
62c27be0 342 *major_opcode = (bundle->quad1.slot2 >> SLOT2_OPCODE_SHIFT);
343 *kprobe_inst = bundle->quad1.slot2;
fd7b231f
AK
344 break;
345 }
a5403183 346}
fd7b231f 347
c7b645f9 348/* Returns non-zero if the addr is in the Interrupt Vector Table */
3ca269d8 349static int __kprobes in_ivt_functions(unsigned long addr)
c7b645f9
KA
350{
351 return (addr >= (unsigned long)__start_ivt_text
352 && addr < (unsigned long)__end_ivt_text);
353}
354
1f7ad57b
PP
355static int __kprobes valid_kprobe_addr(int template, int slot,
356 unsigned long addr)
a5403183
AK
357{
358 if ((slot > 2) || ((bundle_encoding[template][1] == L) && slot > 1)) {
c7b645f9
KA
359 printk(KERN_WARNING "Attempting to insert unaligned kprobe "
360 "at 0x%lx\n", addr);
a5403183 361 return -EINVAL;
8bc76772 362 }
a528e21c 363
62c27be0 364 if (in_ivt_functions(addr)) {
365 printk(KERN_WARNING "Kprobes can't be inserted inside "
c7b645f9 366 "IVT functions at 0x%lx\n", addr);
62c27be0 367 return -EINVAL;
368 }
c7b645f9 369
a5403183
AK
370 return 0;
371}
372
3ca269d8 373static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb)
852caccc 374{
cdc7dbdf
AK
375 unsigned int i;
376 i = atomic_add_return(1, &kcb->prev_kprobe_index);
377 kcb->prev_kprobe[i-1].kp = kprobe_running();
378 kcb->prev_kprobe[i-1].status = kcb->kprobe_status;
852caccc
AK
379}
380
3ca269d8 381static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb)
852caccc 382{
cdc7dbdf 383 unsigned int i;
97075c4b
MH
384 i = atomic_read(&kcb->prev_kprobe_index);
385 __get_cpu_var(current_kprobe) = kcb->prev_kprobe[i-1].kp;
386 kcb->kprobe_status = kcb->prev_kprobe[i-1].status;
387 atomic_sub(1, &kcb->prev_kprobe_index);
852caccc
AK
388}
389
3ca269d8 390static void __kprobes set_current_kprobe(struct kprobe *p,
8a5c4dc5 391 struct kprobe_ctlblk *kcb)
852caccc 392{
8a5c4dc5 393 __get_cpu_var(current_kprobe) = p;
852caccc
AK
394}
395
9508dbfe
RL
396static void kretprobe_trampoline(void)
397{
398}
399
400/*
401 * At this point the target function has been tricked into
402 * returning into our trampoline. Lookup the associated instance
403 * and then:
404 * - call the handler function
405 * - cleanup by marking the instance as unused
406 * - long jump back to the original return address
407 */
1f7ad57b 408int __kprobes trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs)
9508dbfe
RL
409{
410 struct kretprobe_instance *ri = NULL;
99219a3f 411 struct hlist_head *head, empty_rp;
9508dbfe 412 struct hlist_node *node, *tmp;
991a51d8 413 unsigned long flags, orig_ret_address = 0;
9508dbfe
RL
414 unsigned long trampoline_address =
415 ((struct fnptr *)kretprobe_trampoline)->ip;
416
99219a3f 417 INIT_HLIST_HEAD(&empty_rp);
991a51d8 418 spin_lock_irqsave(&kretprobe_lock, flags);
9138d581 419 head = kretprobe_inst_table_head(current);
9508dbfe
RL
420
421 /*
422 * It is possible to have multiple instances associated with a given
423 * task either because an multiple functions in the call path
424 * have a return probe installed on them, and/or more then one return
425 * return probe was registered for a target function.
426 *
427 * We can handle this because:
428 * - instances are always inserted at the head of the list
429 * - when multiple return probes are registered for the same
430 * function, the first instance's ret_addr will point to the
431 * real return address, and all the rest will point to
432 * kretprobe_trampoline
433 */
3661999a
SL
434 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
435 if (ri->task != current)
436 /* another task is sharing our hash bucket */
437 continue;
438
439 orig_ret_address = (unsigned long)ri->ret_addr;
440 if (orig_ret_address != trampoline_address)
441 /*
442 * This is the real return address. Any other
443 * instances associated with this task are for
444 * other calls deeper on the call stack
445 */
446 break;
447 }
448
449 regs->cr_iip = orig_ret_address;
450
9508dbfe 451 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
9138d581 452 if (ri->task != current)
9508dbfe 453 /* another task is sharing our hash bucket */
9138d581 454 continue;
9508dbfe
RL
455
456 if (ri->rp && ri->rp->handler)
457 ri->rp->handler(ri, regs);
458
459 orig_ret_address = (unsigned long)ri->ret_addr;
99219a3f 460 recycle_rp_inst(ri, &empty_rp);
9508dbfe
RL
461
462 if (orig_ret_address != trampoline_address)
463 /*
464 * This is the real return address. Any other
465 * instances associated with this task are for
466 * other calls deeper on the call stack
467 */
468 break;
469 }
470
0f95b7fc
AM
471 kretprobe_assert(ri, orig_ret_address, trampoline_address);
472
8a5c4dc5 473 reset_current_kprobe();
991a51d8 474 spin_unlock_irqrestore(&kretprobe_lock, flags);
9508dbfe
RL
475 preempt_enable_no_resched();
476
99219a3f 477 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
478 hlist_del(&ri->hlist);
479 kfree(ri);
480 }
d217d545
AM
481 /*
482 * By returning a non-zero value, we are telling
483 * kprobe_handler() that we don't want the post_handler
484 * to run (and have re-enabled preemption)
485 */
9138d581 486 return 1;
9508dbfe
RL
487}
488
991a51d8 489/* Called with kretprobe_lock held */
4c4308cb 490void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
1f7ad57b 491 struct pt_regs *regs)
9508dbfe 492{
4c4308cb 493 ri->ret_addr = (kprobe_opcode_t *)regs->b0;
9508dbfe 494
4c4308cb
CH
495 /* Replace the return addr with trampoline addr */
496 regs->b0 = ((struct fnptr *)kretprobe_trampoline)->ip;
9508dbfe
RL
497}
498
1f7ad57b 499int __kprobes arch_prepare_kprobe(struct kprobe *p)
a5403183
AK
500{
501 unsigned long addr = (unsigned long) p->addr;
502 unsigned long *kprobe_addr = (unsigned long *)(addr & ~0xFULL);
503 unsigned long kprobe_inst=0;
504 unsigned int slot = addr & 0xf, template, major_opcode = 0;
214ddde2 505 bundle_t *bundle;
df3e0d1c 506 int qp;
a5403183 507
214ddde2 508 bundle = &((kprobe_opcode_t *)kprobe_addr)->bundle;
62c27be0 509 template = bundle->quad0.template;
a5403183
AK
510
511 if(valid_kprobe_addr(template, slot, addr))
512 return -EINVAL;
513
514 /* Move to slot 2, if bundle is MLX type and kprobe slot is 1 */
62c27be0 515 if (slot == 1 && bundle_encoding[template][1] == L)
516 slot++;
a5403183
AK
517
518 /* Get kprobe_inst and major_opcode from the bundle */
519 get_kprobe_inst(bundle, slot, &kprobe_inst, &major_opcode);
520
df3e0d1c 521 qp = unsupported_inst(template, slot, major_opcode, kprobe_inst, addr);
522 if (qp < 0)
523 return -EINVAL;
8bc76772 524
214ddde2 525 p->ainsn.insn = get_insn_slot();
526 if (!p->ainsn.insn)
527 return -ENOMEM;
528 memcpy(&p->opcode, kprobe_addr, sizeof(kprobe_opcode_t));
529 memcpy(p->ainsn.insn, kprobe_addr, sizeof(kprobe_opcode_t));
8bc76772 530
df3e0d1c 531 prepare_break_inst(template, slot, major_opcode, kprobe_inst, p, qp);
a9ad965e 532
214ddde2 533 return 0;
a9ad965e 534}
535
1f7ad57b 536void __kprobes arch_arm_kprobe(struct kprobe *p)
8bc76772 537{
08ed38b6
TL
538 unsigned long arm_addr;
539 bundle_t *src, *dest;
540
541 arm_addr = ((unsigned long)p->addr) & ~0xFUL;
542 dest = &((kprobe_opcode_t *)arm_addr)->bundle;
543 src = &p->opcode.bundle;
8bc76772 544
214ddde2 545 flush_icache_range((unsigned long)p->ainsn.insn,
546 (unsigned long)p->ainsn.insn + sizeof(kprobe_opcode_t));
08ed38b6
TL
547 switch (p->ainsn.slot) {
548 case 0:
549 dest->quad0.slot0 = src->quad0.slot0;
550 break;
551 case 1:
552 dest->quad1.slot1_p1 = src->quad1.slot1_p1;
553 break;
554 case 2:
555 dest->quad1.slot2 = src->quad1.slot2;
556 break;
557 }
214ddde2 558 flush_icache_range(arm_addr, arm_addr + sizeof(kprobe_opcode_t));
fd7b231f
AK
559}
560
1f7ad57b 561void __kprobes arch_disarm_kprobe(struct kprobe *p)
fd7b231f 562{
08ed38b6
TL
563 unsigned long arm_addr;
564 bundle_t *src, *dest;
fd7b231f 565
08ed38b6
TL
566 arm_addr = ((unsigned long)p->addr) & ~0xFUL;
567 dest = &((kprobe_opcode_t *)arm_addr)->bundle;
214ddde2 568 /* p->ainsn.insn contains the original unaltered kprobe_opcode_t */
08ed38b6
TL
569 src = &p->ainsn.insn->bundle;
570 switch (p->ainsn.slot) {
571 case 0:
572 dest->quad0.slot0 = src->quad0.slot0;
573 break;
574 case 1:
575 dest->quad1.slot1_p1 = src->quad1.slot1_p1;
576 break;
577 case 2:
578 dest->quad1.slot2 = src->quad1.slot2;
579 break;
580 }
214ddde2 581 flush_icache_range(arm_addr, arm_addr + sizeof(kprobe_opcode_t));
fd7b231f
AK
582}
583
214ddde2 584void __kprobes arch_remove_kprobe(struct kprobe *p)
585{
586 mutex_lock(&kprobe_mutex);
b4c6c34a 587 free_insn_slot(p->ainsn.insn, 0);
214ddde2 588 mutex_unlock(&kprobe_mutex);
589}
fd7b231f
AK
590/*
591 * We are resuming execution after a single step fault, so the pt_regs
592 * structure reflects the register state after we executed the instruction
593 * located in the kprobe (p->ainsn.insn.bundle). We still need to adjust
cd2675bf
AK
594 * the ip to point back to the original stack address. To set the IP address
595 * to original stack address, handle the case where we need to fixup the
596 * relative IP address and/or fixup branch register.
fd7b231f 597 */
1f7ad57b 598static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs)
fd7b231f 599{
62c27be0 600 unsigned long bundle_addr = (unsigned long) (&p->ainsn.insn->bundle);
601 unsigned long resume_addr = (unsigned long)p->addr & ~0xFULL;
602 unsigned long template;
603 int slot = ((unsigned long)p->addr & 0xf);
fd7b231f 604
214ddde2 605 template = p->ainsn.insn->bundle.quad0.template;
cd2675bf 606
62c27be0 607 if (slot == 1 && bundle_encoding[template][1] == L)
608 slot = 2;
cd2675bf
AK
609
610 if (p->ainsn.inst_flag) {
611
612 if (p->ainsn.inst_flag & INST_FLAG_FIX_RELATIVE_IP_ADDR) {
613 /* Fix relative IP address */
62c27be0 614 regs->cr_iip = (regs->cr_iip - bundle_addr) +
615 resume_addr;
cd2675bf
AK
616 }
617
618 if (p->ainsn.inst_flag & INST_FLAG_FIX_BRANCH_REG) {
619 /*
620 * Fix target branch register, software convention is
621 * to use either b0 or b6 or b7, so just checking
622 * only those registers
623 */
624 switch (p->ainsn.target_br_reg) {
625 case 0:
626 if ((regs->b0 == bundle_addr) ||
627 (regs->b0 == bundle_addr + 0x10)) {
628 regs->b0 = (regs->b0 - bundle_addr) +
629 resume_addr;
630 }
631 break;
632 case 6:
633 if ((regs->b6 == bundle_addr) ||
634 (regs->b6 == bundle_addr + 0x10)) {
635 regs->b6 = (regs->b6 - bundle_addr) +
636 resume_addr;
637 }
638 break;
639 case 7:
640 if ((regs->b7 == bundle_addr) ||
641 (regs->b7 == bundle_addr + 0x10)) {
642 regs->b7 = (regs->b7 - bundle_addr) +
643 resume_addr;
644 }
645 break;
646 } /* end switch */
647 }
648 goto turn_ss_off;
649 }
fd7b231f 650
cd2675bf 651 if (slot == 2) {
62c27be0 652 if (regs->cr_iip == bundle_addr + 0x10) {
653 regs->cr_iip = resume_addr + 0x10;
654 }
655 } else {
656 if (regs->cr_iip == bundle_addr) {
657 regs->cr_iip = resume_addr;
658 }
a5403183 659 }
fd7b231f 660
cd2675bf 661turn_ss_off:
62c27be0 662 /* Turn off Single Step bit */
663 ia64_psr(regs)->ss = 0;
fd7b231f
AK
664}
665
1f7ad57b 666static void __kprobes prepare_ss(struct kprobe *p, struct pt_regs *regs)
fd7b231f 667{
214ddde2 668 unsigned long bundle_addr = (unsigned long) &p->ainsn.insn->bundle;
fd7b231f
AK
669 unsigned long slot = (unsigned long)p->addr & 0xf;
670
deac66ae
KA
671 /* single step inline if break instruction */
672 if (p->ainsn.inst_flag == INST_FLAG_BREAK_INST)
673 regs->cr_iip = (unsigned long)p->addr & ~0xFULL;
674 else
675 regs->cr_iip = bundle_addr & ~0xFULL;
fd7b231f
AK
676
677 if (slot > 2)
678 slot = 0;
679
680 ia64_psr(regs)->ri = slot;
681
682 /* turn on single stepping */
683 ia64_psr(regs)->ss = 1;
684}
685
661e5a3d
KA
686static int __kprobes is_ia64_break_inst(struct pt_regs *regs)
687{
688 unsigned int slot = ia64_psr(regs)->ri;
689 unsigned int template, major_opcode;
690 unsigned long kprobe_inst;
691 unsigned long *kprobe_addr = (unsigned long *)regs->cr_iip;
692 bundle_t bundle;
693
694 memcpy(&bundle, kprobe_addr, sizeof(bundle_t));
695 template = bundle.quad0.template;
696
697 /* Move to slot 2, if bundle is MLX type and kprobe slot is 1 */
698 if (slot == 1 && bundle_encoding[template][1] == L)
62c27be0 699 slot++;
661e5a3d
KA
700
701 /* Get Kprobe probe instruction at given slot*/
702 get_kprobe_inst(&bundle, slot, &kprobe_inst, &major_opcode);
703
704 /* For break instruction,
705 * Bits 37:40 Major opcode to be zero
706 * Bits 27:32 X6 to be zero
707 * Bits 32:35 X3 to be zero
708 */
709 if (major_opcode || ((kprobe_inst >> 27) & 0x1FF) ) {
710 /* Not a break instruction */
711 return 0;
712 }
713
714 /* Is a break instruction */
715 return 1;
716}
717
1f7ad57b 718static int __kprobes pre_kprobes_handler(struct die_args *args)
fd7b231f
AK
719{
720 struct kprobe *p;
721 int ret = 0;
89cb14c0 722 struct pt_regs *regs = args->regs;
fd7b231f 723 kprobe_opcode_t *addr = (kprobe_opcode_t *)instruction_pointer(regs);
d217d545
AM
724 struct kprobe_ctlblk *kcb;
725
726 /*
727 * We don't want to be preempted for the entire
728 * duration of kprobe processing
729 */
730 preempt_disable();
731 kcb = get_kprobe_ctlblk();
fd7b231f 732
fd7b231f
AK
733 /* Handle recursion cases */
734 if (kprobe_running()) {
735 p = get_kprobe(addr);
736 if (p) {
8a5c4dc5 737 if ((kcb->kprobe_status == KPROBE_HIT_SS) &&
deac66ae 738 (p->ainsn.inst_flag == INST_FLAG_BREAK_INST)) {
62c27be0 739 ia64_psr(regs)->ss = 0;
fd7b231f
AK
740 goto no_kprobe;
741 }
852caccc
AK
742 /* We have reentered the pre_kprobe_handler(), since
743 * another probe was hit while within the handler.
744 * We here save the original kprobes variables and
745 * just single step on the instruction of the new probe
746 * without calling any user handlers.
747 */
8a5c4dc5
AM
748 save_previous_kprobe(kcb);
749 set_current_kprobe(p, kcb);
bf8d5c52 750 kprobes_inc_nmissed_count(p);
852caccc 751 prepare_ss(p, regs);
8a5c4dc5 752 kcb->kprobe_status = KPROBE_REENTER;
852caccc 753 return 1;
89cb14c0 754 } else if (args->err == __IA64_BREAK_JPROBE) {
fd7b231f
AK
755 /*
756 * jprobe instrumented function just completed
757 */
8a5c4dc5 758 p = __get_cpu_var(current_kprobe);
fd7b231f
AK
759 if (p->break_handler && p->break_handler(p, regs)) {
760 goto ss_probe;
761 }
eb3a7292
KA
762 } else if (!is_ia64_break_inst(regs)) {
763 /* The breakpoint instruction was removed by
764 * another cpu right after we hit, no further
765 * handling of this interrupt is appropriate
766 */
767 ret = 1;
768 goto no_kprobe;
89cb14c0
KA
769 } else {
770 /* Not our break */
771 goto no_kprobe;
fd7b231f
AK
772 }
773 }
774
fd7b231f
AK
775 p = get_kprobe(addr);
776 if (!p) {
661e5a3d
KA
777 if (!is_ia64_break_inst(regs)) {
778 /*
779 * The breakpoint instruction was removed right
780 * after we hit it. Another cpu has removed
781 * either a probepoint or a debugger breakpoint
782 * at this address. In either case, no further
783 * handling of this interrupt is appropriate.
784 */
785 ret = 1;
786
787 }
788
789 /* Not one of our break, let kernel handle it */
fd7b231f
AK
790 goto no_kprobe;
791 }
792
8a5c4dc5
AM
793 set_current_kprobe(p, kcb);
794 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
fd7b231f
AK
795
796 if (p->pre_handler && p->pre_handler(p, regs))
797 /*
798 * Our pre-handler is specifically requesting that we just
9508dbfe
RL
799 * do a return. This is used for both the jprobe pre-handler
800 * and the kretprobe trampoline
fd7b231f
AK
801 */
802 return 1;
803
804ss_probe:
805 prepare_ss(p, regs);
8a5c4dc5 806 kcb->kprobe_status = KPROBE_HIT_SS;
fd7b231f
AK
807 return 1;
808
809no_kprobe:
d217d545 810 preempt_enable_no_resched();
fd7b231f
AK
811 return ret;
812}
813
1f7ad57b 814static int __kprobes post_kprobes_handler(struct pt_regs *regs)
fd7b231f 815{
8a5c4dc5
AM
816 struct kprobe *cur = kprobe_running();
817 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
818
819 if (!cur)
fd7b231f
AK
820 return 0;
821
8a5c4dc5
AM
822 if ((kcb->kprobe_status != KPROBE_REENTER) && cur->post_handler) {
823 kcb->kprobe_status = KPROBE_HIT_SSDONE;
824 cur->post_handler(cur, regs, 0);
852caccc 825 }
fd7b231f 826
8a5c4dc5 827 resume_execution(cur, regs);
fd7b231f 828
852caccc 829 /*Restore back the original saved kprobes variables and continue. */
8a5c4dc5
AM
830 if (kcb->kprobe_status == KPROBE_REENTER) {
831 restore_previous_kprobe(kcb);
852caccc
AK
832 goto out;
833 }
8a5c4dc5 834 reset_current_kprobe();
852caccc
AK
835
836out:
fd7b231f
AK
837 preempt_enable_no_resched();
838 return 1;
839}
840
45e18c22 841int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
fd7b231f 842{
8a5c4dc5
AM
843 struct kprobe *cur = kprobe_running();
844 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
845
fd7b231f 846
c04c1c81
PP
847 switch(kcb->kprobe_status) {
848 case KPROBE_HIT_SS:
849 case KPROBE_REENTER:
850 /*
851 * We are here because the instruction being single
852 * stepped caused a page fault. We reset the current
853 * kprobe and the instruction pointer points back to
854 * the probe address and allow the page fault handler
855 * to continue as a normal page fault.
856 */
857 regs->cr_iip = ((unsigned long)cur->addr) & ~0xFULL;
858 ia64_psr(regs)->ri = ((unsigned long)cur->addr) & 0xf;
859 if (kcb->kprobe_status == KPROBE_REENTER)
860 restore_previous_kprobe(kcb);
861 else
862 reset_current_kprobe();
fd7b231f 863 preempt_enable_no_resched();
c04c1c81
PP
864 break;
865 case KPROBE_HIT_ACTIVE:
866 case KPROBE_HIT_SSDONE:
867 /*
868 * We increment the nmissed count for accounting,
869 * we can also use npre/npostfault count for accouting
870 * these specific fault cases.
871 */
872 kprobes_inc_nmissed_count(cur);
873
874 /*
875 * We come here because instructions in the pre/post
876 * handler caused the page_fault, this could happen
877 * if handler tries to access user space by
878 * copy_from_user(), get_user() etc. Let the
879 * user-specified handler try to fix it first.
880 */
881 if (cur->fault_handler && cur->fault_handler(cur, regs, trapnr))
882 return 1;
fd32cb3a
KA
883 /*
884 * In case the user-specified fault handler returned
885 * zero, try to fix up.
886 */
887 if (ia64_done_with_exception(regs))
888 return 1;
c04c1c81
PP
889
890 /*
891 * Let ia64_do_page_fault() fix it.
892 */
893 break;
894 default:
895 break;
fd7b231f
AK
896 }
897
898 return 0;
899}
900
1f7ad57b
PP
901int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
902 unsigned long val, void *data)
fd7b231f
AK
903{
904 struct die_args *args = (struct die_args *)data;
66ff2d06
AM
905 int ret = NOTIFY_DONE;
906
2326c770 907 if (args->regs && user_mode(args->regs))
908 return ret;
909
fd7b231f
AK
910 switch(val) {
911 case DIE_BREAK:
9138d581 912 /* err is break number from ia64_bad_break() */
08ed38b6
TL
913 if ((args->err >> 12) == (__IA64_BREAK_KPROBE >> 12)
914 || args->err == __IA64_BREAK_JPROBE
915 || args->err == 0)
9138d581
KO
916 if (pre_kprobes_handler(args))
917 ret = NOTIFY_STOP;
fd7b231f 918 break;
9138d581
KO
919 case DIE_FAULT:
920 /* err is vector number from ia64_fault() */
921 if (args->err == 36)
922 if (post_kprobes_handler(args->regs))
923 ret = NOTIFY_STOP;
fd7b231f 924 break;
fd7b231f
AK
925 default:
926 break;
927 }
66ff2d06 928 return ret;
fd7b231f
AK
929}
930
d3ef1f5a
ZY
931struct param_bsp_cfm {
932 unsigned long ip;
933 unsigned long *bsp;
934 unsigned long cfm;
935};
936
937static void ia64_get_bsp_cfm(struct unw_frame_info *info, void *arg)
938{
939 unsigned long ip;
940 struct param_bsp_cfm *lp = arg;
941
942 do {
943 unw_get_ip(info, &ip);
944 if (ip == 0)
945 break;
946 if (ip == lp->ip) {
947 unw_get_bsp(info, (unsigned long*)&lp->bsp);
948 unw_get_cfm(info, (unsigned long*)&lp->cfm);
949 return;
950 }
951 } while (unw_unwind(info) >= 0);
d61b49c1 952 lp->bsp = NULL;
d3ef1f5a
ZY
953 lp->cfm = 0;
954 return;
955}
956
3d7e3382
ME
957unsigned long arch_deref_entry_point(void *entry)
958{
959 return ((struct fnptr *)entry)->ip;
960}
961
1f7ad57b 962int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
fd7b231f 963{
b2761dc2 964 struct jprobe *jp = container_of(p, struct jprobe, kp);
3d7e3382 965 unsigned long addr = arch_deref_entry_point(jp->entry);
8a5c4dc5 966 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
d3ef1f5a
ZY
967 struct param_bsp_cfm pa;
968 int bytes;
969
970 /*
971 * Callee owns the argument space and could overwrite it, eg
972 * tail call optimization. So to be absolutely safe
72fdbdce 973 * we save the argument space before transferring the control
d3ef1f5a
ZY
974 * to instrumented jprobe function which runs in
975 * the process context
976 */
977 pa.ip = regs->cr_iip;
978 unw_init_running(ia64_get_bsp_cfm, &pa);
979 bytes = (char *)ia64_rse_skip_regs(pa.bsp, pa.cfm & 0x3f)
980 - (char *)pa.bsp;
981 memcpy( kcb->jprobes_saved_stacked_regs,
982 pa.bsp,
983 bytes );
984 kcb->bsp = pa.bsp;
985 kcb->cfm = pa.cfm;
fd7b231f 986
b2761dc2 987 /* save architectural state */
8a5c4dc5 988 kcb->jprobe_saved_regs = *regs;
b2761dc2
AK
989
990 /* after rfi, execute the jprobe instrumented function */
991 regs->cr_iip = addr & ~0xFULL;
992 ia64_psr(regs)->ri = addr & 0xf;
993 regs->r1 = ((struct fnptr *)(jp->entry))->gp;
994
995 /*
996 * fix the return address to our jprobe_inst_return() function
997 * in the jprobes.S file
998 */
62c27be0 999 regs->b0 = ((struct fnptr *)(jprobe_inst_return))->ip;
b2761dc2
AK
1000
1001 return 1;
fd7b231f
AK
1002}
1003
9dad6f57
AB
1004/* ia64 does not need this */
1005void __kprobes jprobe_return(void)
1006{
1007}
1008
1f7ad57b 1009int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
fd7b231f 1010{
8a5c4dc5 1011 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
d3ef1f5a 1012 int bytes;
8a5c4dc5 1013
d3ef1f5a 1014 /* restoring architectural state */
8a5c4dc5 1015 *regs = kcb->jprobe_saved_regs;
d3ef1f5a
ZY
1016
1017 /* restoring the original argument space */
1018 flush_register_stack();
1019 bytes = (char *)ia64_rse_skip_regs(kcb->bsp, kcb->cfm & 0x3f)
1020 - (char *)kcb->bsp;
1021 memcpy( kcb->bsp,
1022 kcb->jprobes_saved_stacked_regs,
1023 bytes );
1024 invalidate_stacked_regs();
1025
d217d545 1026 preempt_enable_no_resched();
b2761dc2 1027 return 1;
fd7b231f 1028}
9508dbfe
RL
1029
1030static struct kprobe trampoline_p = {
1031 .pre_handler = trampoline_probe_handler
1032};
1033
6772926b 1034int __init arch_init_kprobes(void)
9508dbfe
RL
1035{
1036 trampoline_p.addr =
1037 (kprobe_opcode_t *)((struct fnptr *)kretprobe_trampoline)->ip;
1038 return register_kprobe(&trampoline_p);
1039}
bf8f6e5b
AM
1040
1041int __kprobes arch_trampoline_kprobe(struct kprobe *p)
1042{
1043 if (p->addr ==
1044 (kprobe_opcode_t *)((struct fnptr *)kretprobe_trampoline)->ip)
1045 return 1;
1046
1047 return 0;
1048}