[S390] kprobes: coding style
[pandora-kernel.git] / arch / s390 / kernel / kprobes.c
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  *
18  * Copyright (C) IBM Corporation, 2002, 2006
19  *
20  * s390 port, used ppc64 as template. Mike Grundy <grundym@us.ibm.com>
21  */
22
23 #include <linux/kprobes.h>
24 #include <linux/ptrace.h>
25 #include <linux/preempt.h>
26 #include <linux/stop_machine.h>
27 #include <linux/kdebug.h>
28 #include <linux/uaccess.h>
29 #include <asm/cacheflush.h>
30 #include <asm/sections.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/hardirq.h>
34
35 DEFINE_PER_CPU(struct kprobe *, current_kprobe);
36 DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
37
38 struct kretprobe_blackpoint kretprobe_blacklist[] = { };
39
40 static int __kprobes is_prohibited_opcode(kprobe_opcode_t *insn)
41 {
42         switch (insn[0] >> 8) {
43         case 0x0c:      /* bassm */
44         case 0x0b:      /* bsm   */
45         case 0x83:      /* diag  */
46         case 0x44:      /* ex    */
47         case 0xac:      /* stnsm */
48         case 0xad:      /* stosm */
49                 return -EINVAL;
50         }
51         switch (insn[0]) {
52         case 0x0101:    /* pr    */
53         case 0xb25a:    /* bsa   */
54         case 0xb240:    /* bakr  */
55         case 0xb258:    /* bsg   */
56         case 0xb218:    /* pc    */
57         case 0xb228:    /* pt    */
58         case 0xb98d:    /* epsw  */
59                 return -EINVAL;
60         }
61         return 0;
62 }
63
64 static int __kprobes get_fixup_type(kprobe_opcode_t *insn)
65 {
66         /* default fixup method */
67         int fixup = FIXUP_PSW_NORMAL;
68
69         switch (insn[0] >> 8) {
70         case 0x05:      /* balr */
71         case 0x0d:      /* basr */
72                 fixup = FIXUP_RETURN_REGISTER;
73                 /* if r2 = 0, no branch will be taken */
74                 if ((insn[0] & 0x0f) == 0)
75                         fixup |= FIXUP_BRANCH_NOT_TAKEN;
76                 break;
77         case 0x06:      /* bctr */
78         case 0x07:      /* bcr  */
79                 fixup = FIXUP_BRANCH_NOT_TAKEN;
80                 break;
81         case 0x45:      /* bal  */
82         case 0x4d:      /* bas  */
83                 fixup = FIXUP_RETURN_REGISTER;
84                 break;
85         case 0x47:      /* bc   */
86         case 0x46:      /* bct  */
87         case 0x86:      /* bxh  */
88         case 0x87:      /* bxle */
89                 fixup = FIXUP_BRANCH_NOT_TAKEN;
90                 break;
91         case 0x82:      /* lpsw */
92                 fixup = FIXUP_NOT_REQUIRED;
93                 break;
94         case 0xb2:      /* lpswe */
95                 if ((insn[0] & 0xff) == 0xb2)
96                         fixup = FIXUP_NOT_REQUIRED;
97                 break;
98         case 0xa7:      /* bras */
99                 if ((insn[0] & 0x0f) == 0x05)
100                         fixup |= FIXUP_RETURN_REGISTER;
101                 break;
102         case 0xc0:
103                 if ((insn[0] & 0x0f) == 0x00 || /* larl  */
104                     (insn[0] & 0x0f) == 0x05)   /* brasl */
105                 fixup |= FIXUP_RETURN_REGISTER;
106                 break;
107         case 0xeb:
108                 if ((insn[2] & 0xff) == 0x44 || /* bxhg  */
109                     (insn[2] & 0xff) == 0x45)   /* bxleg */
110                         fixup = FIXUP_BRANCH_NOT_TAKEN;
111                 break;
112         case 0xe3:      /* bctg */
113                 if ((insn[2] & 0xff) == 0x46)
114                         fixup = FIXUP_BRANCH_NOT_TAKEN;
115                 break;
116         }
117         return fixup;
118 }
119
120 int __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(p->addr))
127                 return -EINVAL;
128
129         p->opcode = *p->addr;
130         memcpy(p->ainsn.insn, p->addr, ((p->opcode >> 14) + 3) & -2);
131
132         return 0;
133 }
134
135 struct ins_replace_args {
136         kprobe_opcode_t *ptr;
137         kprobe_opcode_t opcode;
138 };
139
140 static int __kprobes swap_instruction(void *aref)
141 {
142         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
143         unsigned long status = kcb->kprobe_status;
144         struct ins_replace_args *args = aref;
145
146         kcb->kprobe_status = KPROBE_SWAP_INST;
147         probe_kernel_write(args->ptr, &args->opcode, sizeof(args->opcode));
148         kcb->kprobe_status = status;
149         return 0;
150 }
151
152 void __kprobes arch_arm_kprobe(struct kprobe *p)
153 {
154         struct ins_replace_args args;
155
156         args.ptr = p->addr;
157         args.opcode = BREAKPOINT_INSTRUCTION;
158         stop_machine(swap_instruction, &args, NULL);
159 }
160
161 void __kprobes arch_disarm_kprobe(struct kprobe *p)
162 {
163         struct ins_replace_args args;
164
165         args.ptr = p->addr;
166         args.opcode = p->opcode;
167         stop_machine(swap_instruction, &args, NULL);
168 }
169
170 void __kprobes arch_remove_kprobe(struct kprobe *p)
171 {
172 }
173
174 static void __kprobes enable_singlestep(struct kprobe_ctlblk *kcb,
175                                         struct pt_regs *regs,
176                                         unsigned long ip)
177 {
178         per_cr_bits kprobe_per_regs[1];
179
180         /* Set up the per control reg info, will pass to lctl */
181         memset(kprobe_per_regs, 0, sizeof(per_cr_bits));
182         kprobe_per_regs[0].em_instruction_fetch = 1;
183         kprobe_per_regs[0].starting_addr = ip;
184         kprobe_per_regs[0].ending_addr = ip;
185
186         /* 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 */
192         __ctl_load(kprobe_per_regs, 9, 11);
193         regs->psw.mask |= PSW_MASK_PER;
194         regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
195         regs->psw.addr = ip | PSW_ADDR_AMODE;
196 }
197
198 static 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
209 /*
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  */
214 static void __kprobes push_kprobe(struct kprobe_ctlblk *kcb, struct kprobe *p)
215 {
216         kcb->prev_kprobe.kp = __get_cpu_var(current_kprobe);
217         kcb->prev_kprobe.status = kcb->kprobe_status;
218         __get_cpu_var(current_kprobe) = p;
219 }
220
221 /*
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  */
226 static void __kprobes pop_kprobe(struct kprobe_ctlblk *kcb)
227 {
228         __get_cpu_var(current_kprobe) = kcb->prev_kprobe.kp;
229         kcb->kprobe_status = kcb->prev_kprobe.status;
230 }
231
232 void __kprobes arch_prepare_kretprobe(struct kretprobe_instance *ri,
233                                         struct pt_regs *regs)
234 {
235         ri->ret_addr = (kprobe_opcode_t *) regs->gprs[14];
236
237         /* Replace the return addr with trampoline addr */
238         regs->gprs[14] = (unsigned long) &kretprobe_trampoline;
239 }
240
241 static 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
263 static int __kprobes kprobe_handler(struct pt_regs *regs)
264 {
265         struct kprobe_ctlblk *kcb;
266         struct kprobe *p;
267
268         /*
269          * 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.
272          */
273         preempt_disable();
274         kcb = get_kprobe_ctlblk();
275         p = get_kprobe((void *)((regs->psw.addr & PSW_ADDR_INSN) - 2));
276
277         if (p) {
278                 if (kprobe_running()) {
279                         /*
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.
287                          */
288                         kprobe_reenter_check(kcb, p);
289                         push_kprobe(kcb, p);
290                         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;
319                         enable_singlestep(kcb, regs,
320                                           (unsigned long) p->ainsn.insn);
321                         return 1;
322                 } /* 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            */
334         preempt_enable_no_resched();
335         return 0;
336 }
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  */
344 static void __used kretprobe_trampoline_holder(void)
345 {
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  */
353 static int __kprobes trampoline_probe_handler(struct kprobe *p,
354                                               struct pt_regs *regs)
355 {
356         struct kretprobe_instance *ri;
357         struct hlist_head *head, empty_rp;
358         struct hlist_node *node, *tmp;
359         unsigned long flags, orig_ret_address;
360         unsigned long trampoline_address;
361         kprobe_opcode_t *correct_ret_addr;
362
363         INIT_HLIST_HEAD(&empty_rp);
364         kretprobe_hash_lock(current, &head, &flags);
365
366         /*
367          * It is possible to have multiple instances associated with a given
368          * task either because an multiple functions in the call path
369          * have a return probe installed on them, and/or more than one return
370          * 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         ri = NULL;
380         orig_ret_address = 0;
381         correct_ret_addr = NULL;
382         trampoline_address = (unsigned long) &kretprobe_trampoline;
383         hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
384                 if (ri->task != current)
385                         /* another task is sharing our hash bucket */
386                         continue;
387
388                 orig_ret_address = (unsigned long) ri->ret_addr;
389
390                 if (orig_ret_address != trampoline_address)
391                         /*
392                          * This is the real return address. Any other
393                          * instances associated with this task are for
394                          * other calls deeper on the call stack
395                          */
396                         break;
397         }
398
399         kretprobe_assert(ri, orig_ret_address, trampoline_address);
400
401         correct_ret_addr = ri->ret_addr;
402         hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
403                 if (ri->task != current)
404                         /* another task is sharing our hash bucket */
405                         continue;
406
407                 orig_ret_address = (unsigned long) ri->ret_addr;
408
409                 if (ri->rp && ri->rp->handler) {
410                         ri->ret_addr = correct_ret_addr;
411                         ri->rp->handler(ri, regs);
412                 }
413
414                 recycle_rp_inst(ri, &empty_rp);
415
416                 if (orig_ret_address != trampoline_address)
417                         /*
418                          * This is the real return address. Any other
419                          * instances associated with this task are for
420                          * other calls deeper on the call stack
421                          */
422                         break;
423         }
424
425         regs->psw.addr = orig_ret_address | PSW_ADDR_AMODE;
426
427         pop_kprobe(get_kprobe_ctlblk());
428         kretprobe_hash_unlock(current, &flags);
429         preempt_enable_no_resched();
430
431         hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
432                 hlist_del(&ri->hlist);
433                 kfree(ri);
434         }
435         /*
436          * By returning a non-zero value, we are telling
437          * kprobe_handler() that we don't want the post_handler
438          * to run (and have re-enabled preemption)
439          */
440         return 1;
441 }
442
443 /*
444  * Called after single-stepping.  p->addr is the address of the
445  * instruction whose first byte has been replaced by the "breakpoint"
446  * instruction.  To avoid the SMP problems that can occur when we
447  * temporarily put back the original opcode to single-step, we
448  * single-stepped a copy of the instruction.  The address of this
449  * copy is p->ainsn.insn.
450  */
451 static void __kprobes resume_execution(struct kprobe *p, struct pt_regs *regs)
452 {
453         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
454         unsigned long ip = regs->psw.addr & PSW_ADDR_INSN;
455         int fixup = get_fixup_type(p->ainsn.insn);
456
457         if (fixup & FIXUP_PSW_NORMAL)
458                 ip += (unsigned long) p->addr - (unsigned long) p->ainsn.insn;
459
460         if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
461                 int ilen = ((p->ainsn.insn[0] >> 14) + 3) & -2;
462                 if (ip - (unsigned long) p->ainsn.insn == ilen)
463                         ip = (unsigned long) p->addr + ilen;
464         }
465
466         if (fixup & FIXUP_RETURN_REGISTER) {
467                 int reg = (p->ainsn.insn[0] & 0xf0) >> 4;
468                 regs->gprs[reg] += (unsigned long) p->addr -
469                                    (unsigned long) p->ainsn.insn;
470         }
471
472         disable_singlestep(kcb, regs, ip);
473 }
474
475 static int __kprobes post_kprobe_handler(struct pt_regs *regs)
476 {
477         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
478         struct kprobe *p = kprobe_running();
479
480         if (!p)
481                 return 0;
482
483         if (kcb->kprobe_status != KPROBE_REENTER && p->post_handler) {
484                 kcb->kprobe_status = KPROBE_HIT_SSDONE;
485                 p->post_handler(p, regs, 0);
486         }
487
488         resume_execution(p, regs);
489         pop_kprobe(kcb);
490         preempt_enable_no_resched();
491
492         /*
493          * if somebody else is singlestepping across a probe point, psw mask
494          * will have PER set, in which case, continue the remaining processing
495          * of do_single_step, as if this is not a probe hit.
496          */
497         if (regs->psw.mask & PSW_MASK_PER)
498                 return 0;
499
500         return 1;
501 }
502
503 static int __kprobes kprobe_trap_handler(struct pt_regs *regs, int trapnr)
504 {
505         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
506         struct kprobe *p = kprobe_running();
507         const struct exception_table_entry *entry;
508
509         switch(kcb->kprobe_status) {
510         case KPROBE_SWAP_INST:
511                 /* We are here because the instruction replacement failed */
512                 return 0;
513         case KPROBE_HIT_SS:
514         case KPROBE_REENTER:
515                 /*
516                  * We are here because the instruction being single
517                  * stepped caused a page fault. We reset the current
518                  * kprobe and the nip points back to the probe address
519                  * and allow the page fault handler to continue as a
520                  * normal page fault.
521                  */
522                 disable_singlestep(kcb, regs, (unsigned long) p->addr);
523                 pop_kprobe(kcb);
524                 preempt_enable_no_resched();
525                 break;
526         case KPROBE_HIT_ACTIVE:
527         case KPROBE_HIT_SSDONE:
528                 /*
529                  * We increment the nmissed count for accounting,
530                  * we can also use npre/npostfault count for accouting
531                  * these specific fault cases.
532                  */
533                 kprobes_inc_nmissed_count(p);
534
535                 /*
536                  * We come here because instructions in the pre/post
537                  * handler caused the page_fault, this could happen
538                  * if handler tries to access user space by
539                  * copy_from_user(), get_user() etc. Let the
540                  * user-specified handler try to fix it first.
541                  */
542                 if (p->fault_handler && p->fault_handler(p, regs, trapnr))
543                         return 1;
544
545                 /*
546                  * In case the user-specified fault handler returned
547                  * zero, try to fix up.
548                  */
549                 entry = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
550                 if (entry) {
551                         regs->psw.addr = entry->fixup | PSW_ADDR_AMODE;
552                         return 1;
553                 }
554
555                 /*
556                  * fixup_exception() could not handle it,
557                  * Let do_page_fault() fix it.
558                  */
559                 break;
560         default:
561                 break;
562         }
563         return 0;
564 }
565
566 int __kprobes kprobe_fault_handler(struct pt_regs *regs, int trapnr)
567 {
568         int ret;
569
570         if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
571                 local_irq_disable();
572         ret = kprobe_trap_handler(regs, trapnr);
573         if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
574                 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
575         return ret;
576 }
577
578 /*
579  * Wrapper routine to for handling exceptions.
580  */
581 int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
582                                        unsigned long val, void *data)
583 {
584         struct die_args *args = (struct die_args *) data;
585         struct pt_regs *regs = args->regs;
586         int ret = NOTIFY_DONE;
587
588         if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
589                 local_irq_disable();
590
591         switch (val) {
592         case DIE_BPT:
593                 if (kprobe_handler(regs))
594                         ret = NOTIFY_STOP;
595                 break;
596         case DIE_SSTEP:
597                 if (post_kprobe_handler(regs))
598                         ret = NOTIFY_STOP;
599                 break;
600         case DIE_TRAP:
601                 if (!preemptible() && kprobe_running() &&
602                     kprobe_trap_handler(regs, args->trapnr))
603                         ret = NOTIFY_STOP;
604                 break;
605         default:
606                 break;
607         }
608
609         if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
610                 local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
611
612         return ret;
613 }
614
615 int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
616 {
617         struct jprobe *jp = container_of(p, struct jprobe, kp);
618         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
619         unsigned long stack;
620
621         memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs));
622
623         /* setup return addr to the jprobe handler routine */
624         regs->psw.addr = (unsigned long) jp->entry | PSW_ADDR_AMODE;
625         regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
626
627         /* r15 is the stack pointer */
628         stack = (unsigned long) regs->gprs[15];
629
630         memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
631         return 1;
632 }
633
634 void __kprobes jprobe_return(void)
635 {
636         asm volatile(".word 0x0002");
637 }
638
639 void __kprobes jprobe_return_end(void)
640 {
641         asm volatile("bcr 0,0");
642 }
643
644 int __kprobes longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
645 {
646         struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
647         unsigned long stack;
648
649         stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
650
651         /* Put the regs back */
652         memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs));
653         /* put the stack back */
654         memcpy((void *) stack, kcb->jprobes_stack, MIN_STACK_SIZE(stack));
655         preempt_enable_no_resched();
656         return 1;
657 }
658
659 static struct kprobe trampoline = {
660         .addr = (kprobe_opcode_t *) &kretprobe_trampoline,
661         .pre_handler = trampoline_probe_handler
662 };
663
664 int __init arch_init_kprobes(void)
665 {
666         return register_kprobe(&trampoline);
667 }
668
669 int __kprobes arch_trampoline_kprobe(struct kprobe *p)
670 {
671         return p->addr == (kprobe_opcode_t *) &kretprobe_trampoline;
672 }