a0ae4d4c65b9596a9ab2b46897694c4743d3afcb
[kernel/swap-modules.git] / uprobe / arch / asm-x86 / swap_uprobes.h
1 /*
2  *  Dynamic Binary Instrumentation Module based on KProbes
3  *  modules/uprobe/arch/asm-x86/swap_uprobes.h
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) Samsung Electronics, 2006-2010
20  *
21  * 2008-2009    Alexey Gerenkov <a.gerenkov@samsung.com> User-Space
22  *              Probes initial implementation; Support x86/ARM/MIPS for both user and kernel spaces.
23  * 2010         Ekaterina Gorelkina <e.gorelkina@samsung.com>: redesign module for separating core and arch parts
24  *
25  */
26
27 #ifndef _X86_SWAP_UPROBES_H
28 #define _X86_SWAP_UPROBES_H
29
30
31 struct uprobe;
32 struct uretprobe;
33 struct uretprobe_instance;
34
35
36 struct arch_specific_tramp {
37         u8 tramp[UPROBES_TRAMP_LEN + BP_INSN_SIZE];     /* BP for uretprobe */
38 };
39
40
41 static inline u32 swap_get_urp_float(struct pt_regs *regs)
42 {
43         u32 st0;
44
45         asm volatile ("fstps    %0" : "=m" (st0));
46
47         return st0;
48 }
49
50 static inline u64 swap_get_urp_double(struct pt_regs *regs)
51 {
52         u64 st1;
53
54         asm volatile ("fstpl    %0" : "=m" (st1));
55
56         return st1;
57 }
58
59 static inline void arch_ujprobe_return(void)
60 {
61 }
62
63 int arch_prepare_uprobe(struct uprobe *up);
64 int setjmp_upre_handler(struct kprobe *p, struct pt_regs *regs);
65 static inline int longjmp_break_uhandler(struct kprobe *p, struct pt_regs *regs)
66 {
67         return 0;
68 }
69
70 static inline int arch_opcode_analysis_uretprobe(struct uretprobe *rp)
71 {
72         return 0;
73 }
74
75 void arch_prepare_uretprobe(struct uretprobe_instance *ri, struct pt_regs *regs);
76 int arch_disarm_urp_inst(struct uretprobe_instance *ri,
77                          struct task_struct *task);
78 unsigned long arch_get_trampoline_addr(struct kprobe *p, struct pt_regs *regs);
79 void arch_set_orig_ret_addr(unsigned long orig_ret_addr, struct pt_regs *regs);
80 void arch_remove_uprobe(struct uprobe *up);
81
82 static inline unsigned long swap_get_uarg(struct pt_regs *regs, unsigned long n)
83 {
84         u32 *ptr, addr = 0;
85
86         /* 1 - return address saved on top of the stack */
87         ptr = (u32 *)regs->sp + n + 1;
88         if (get_user(addr, ptr))
89                 printk("failed to dereference a pointer, ptr=%p\n", ptr);
90
91         return addr;
92 }
93
94 int swap_arch_init_uprobes(void);
95 void swap_arch_exit_uprobes(void);
96
97 #endif /* _X86_SWAP_UPROBES_H */