]>
Commit | Line | Data |
---|---|---|
014c257c AS |
1 | /* |
2 | * Dynamic function tracing support. | |
3 | * | |
4 | * Copyright (C) 2008 Abhishek Sagar <[email protected]> | |
3b6c223b | 5 | * Copyright (C) 2010 Rabin Vincent <[email protected]> |
014c257c AS |
6 | * |
7 | * For licencing details, see COPYING. | |
8 | * | |
9 | * Defines low-level handling of mcount calls when the kernel | |
10 | * is compiled with the -pg flag. When using dynamic ftrace, the | |
3b6c223b RV |
11 | * mcount call-sites get patched with NOP till they are enabled. |
12 | * All code mutation routines here are called under stop_machine(). | |
014c257c AS |
13 | */ |
14 | ||
15 | #include <linux/ftrace.h> | |
3b6c223b | 16 | #include <linux/uaccess.h> |
a672917a | 17 | #include <linux/module.h> |
80d6b0c2 | 18 | #include <linux/stop_machine.h> |
395a59d0 | 19 | |
014c257c | 20 | #include <asm/cacheflush.h> |
4394e282 | 21 | #include <asm/opcodes.h> |
395a59d0 | 22 | #include <asm/ftrace.h> |
0dc016db | 23 | #include <asm/insn.h> |
74d86a70 | 24 | #include <asm/set_memory.h> |
d82227cf | 25 | |
72dc43a9 | 26 | #ifdef CONFIG_THUMB2_KERNEL |
4394e282 | 27 | #define NOP 0xf85deb04 /* pop.w {lr} */ |
72dc43a9 | 28 | #else |
3b6c223b | 29 | #define NOP 0xe8bd4000 /* pop {lr} */ |
72dc43a9 | 30 | #endif |
014c257c | 31 | |
376cfa87 | 32 | #ifdef CONFIG_DYNAMIC_FTRACE |
3b6c223b | 33 | |
80d6b0c2 KC |
34 | static int __ftrace_modify_code(void *data) |
35 | { | |
36 | int *command = data; | |
37 | ||
38 | set_kernel_text_rw(); | |
39 | ftrace_modify_all_code(*command); | |
40 | set_kernel_text_ro(); | |
41 | ||
42 | return 0; | |
43 | } | |
44 | ||
45 | void arch_ftrace_update_code(int command) | |
46 | { | |
47 | stop_machine(__ftrace_modify_code, &command, NULL); | |
48 | } | |
49 | ||
3b6c223b RV |
50 | static unsigned long ftrace_nop_replace(struct dyn_ftrace *rec) |
51 | { | |
52 | return NOP; | |
53 | } | |
54 | ||
55 | static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr) | |
014c257c | 56 | { |
3b6c223b | 57 | return addr; |
014c257c AS |
58 | } |
59 | ||
a672917a RV |
60 | int ftrace_arch_code_modify_prepare(void) |
61 | { | |
62 | set_all_modules_text_rw(); | |
63 | return 0; | |
64 | } | |
65 | ||
66 | int ftrace_arch_code_modify_post_process(void) | |
67 | { | |
68 | set_all_modules_text_ro(); | |
80d6b0c2 KC |
69 | /* Make sure any TLB misses during machine stop are cleared. */ |
70 | flush_tlb_all(); | |
a672917a RV |
71 | return 0; |
72 | } | |
73 | ||
dd686eb1 RV |
74 | static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) |
75 | { | |
d82227cf | 76 | return arm_gen_branch_link(pc, addr); |
dd686eb1 RV |
77 | } |
78 | ||
3b6c223b | 79 | static int ftrace_modify_code(unsigned long pc, unsigned long old, |
dc283d70 | 80 | unsigned long new, bool validate) |
3b6c223b RV |
81 | { |
82 | unsigned long replaced; | |
014c257c | 83 | |
4394e282 RV |
84 | if (IS_ENABLED(CONFIG_THUMB2_KERNEL)) { |
85 | old = __opcode_to_mem_thumb32(old); | |
86 | new = __opcode_to_mem_thumb32(new); | |
87 | } else { | |
88 | old = __opcode_to_mem_arm(old); | |
89 | new = __opcode_to_mem_arm(new); | |
90 | } | |
91 | ||
dc283d70 RV |
92 | if (validate) { |
93 | if (probe_kernel_read(&replaced, (void *)pc, MCOUNT_INSN_SIZE)) | |
94 | return -EFAULT; | |
014c257c | 95 | |
dc283d70 RV |
96 | if (replaced != old) |
97 | return -EINVAL; | |
98 | } | |
014c257c | 99 | |
3b6c223b RV |
100 | if (probe_kernel_write((void *)pc, &new, MCOUNT_INSN_SIZE)) |
101 | return -EPERM; | |
014c257c | 102 | |
3b6c223b | 103 | flush_icache_range(pc, pc + MCOUNT_INSN_SIZE); |
014c257c | 104 | |
3b6c223b | 105 | return 0; |
014c257c AS |
106 | } |
107 | ||
108 | int ftrace_update_ftrace_func(ftrace_func_t func) | |
109 | { | |
dc283d70 | 110 | unsigned long pc; |
3b6c223b RV |
111 | unsigned long new; |
112 | int ret; | |
014c257c AS |
113 | |
114 | pc = (unsigned long)&ftrace_call; | |
014c257c | 115 | new = ftrace_call_replace(pc, (unsigned long)func); |
3b6c223b | 116 | |
dc283d70 | 117 | ret = ftrace_modify_code(pc, 0, new, false); |
3b6c223b | 118 | |
620176f3 AV |
119 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
120 | if (!ret) { | |
121 | pc = (unsigned long)&ftrace_regs_call; | |
122 | new = ftrace_call_replace(pc, (unsigned long)func); | |
123 | ||
124 | ret = ftrace_modify_code(pc, 0, new, false); | |
125 | } | |
126 | #endif | |
127 | ||
3b6c223b RV |
128 | return ret; |
129 | } | |
130 | ||
131 | int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) | |
132 | { | |
133 | unsigned long new, old; | |
134 | unsigned long ip = rec->ip; | |
135 | ||
136 | old = ftrace_nop_replace(rec); | |
620176f3 AV |
137 | |
138 | new = ftrace_call_replace(ip, adjust_address(rec, addr)); | |
139 | ||
140 | return ftrace_modify_code(rec->ip, old, new, true); | |
141 | } | |
142 | ||
143 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS | |
144 | ||
145 | int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr, | |
146 | unsigned long addr) | |
147 | { | |
148 | unsigned long new, old; | |
149 | unsigned long ip = rec->ip; | |
150 | ||
151 | old = ftrace_call_replace(ip, adjust_address(rec, old_addr)); | |
152 | ||
3b6c223b RV |
153 | new = ftrace_call_replace(ip, adjust_address(rec, addr)); |
154 | ||
dc283d70 | 155 | return ftrace_modify_code(rec->ip, old, new, true); |
3b6c223b RV |
156 | } |
157 | ||
620176f3 AV |
158 | #endif |
159 | ||
3b6c223b RV |
160 | int ftrace_make_nop(struct module *mod, |
161 | struct dyn_ftrace *rec, unsigned long addr) | |
162 | { | |
163 | unsigned long ip = rec->ip; | |
164 | unsigned long old; | |
165 | unsigned long new; | |
166 | int ret; | |
167 | ||
168 | old = ftrace_call_replace(ip, adjust_address(rec, addr)); | |
169 | new = ftrace_nop_replace(rec); | |
dc283d70 | 170 | ret = ftrace_modify_code(ip, old, new, true); |
3b6c223b | 171 | |
014c257c AS |
172 | return ret; |
173 | } | |
174 | ||
3a36cb11 | 175 | int __init ftrace_dyn_arch_init(void) |
014c257c | 176 | { |
014c257c AS |
177 | return 0; |
178 | } | |
376cfa87 TB |
179 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
180 | ||
181 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | |
182 | void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr, | |
183 | unsigned long frame_pointer) | |
184 | { | |
185 | unsigned long return_hooker = (unsigned long) &return_to_handler; | |
376cfa87 | 186 | unsigned long old; |
376cfa87 TB |
187 | |
188 | if (unlikely(atomic_read(¤t->tracing_graph_pause))) | |
189 | return; | |
190 | ||
191 | old = *parent; | |
192 | *parent = return_hooker; | |
193 | ||
f1f5b14a | 194 | if (function_graph_enter(old, self_addr, frame_pointer, NULL)) |
376cfa87 | 195 | *parent = old; |
376cfa87 | 196 | } |
dd686eb1 RV |
197 | |
198 | #ifdef CONFIG_DYNAMIC_FTRACE | |
199 | extern unsigned long ftrace_graph_call; | |
200 | extern unsigned long ftrace_graph_call_old; | |
201 | extern void ftrace_graph_caller_old(void); | |
620176f3 AV |
202 | extern unsigned long ftrace_graph_regs_call; |
203 | extern void ftrace_graph_regs_caller(void); | |
dd686eb1 RV |
204 | |
205 | static int __ftrace_modify_caller(unsigned long *callsite, | |
206 | void (*func) (void), bool enable) | |
207 | { | |
208 | unsigned long caller_fn = (unsigned long) func; | |
209 | unsigned long pc = (unsigned long) callsite; | |
d82227cf | 210 | unsigned long branch = arm_gen_branch(pc, caller_fn); |
dd686eb1 RV |
211 | unsigned long nop = 0xe1a00000; /* mov r0, r0 */ |
212 | unsigned long old = enable ? nop : branch; | |
213 | unsigned long new = enable ? branch : nop; | |
214 | ||
dc283d70 | 215 | return ftrace_modify_code(pc, old, new, true); |
dd686eb1 RV |
216 | } |
217 | ||
218 | static int ftrace_modify_graph_caller(bool enable) | |
219 | { | |
220 | int ret; | |
221 | ||
222 | ret = __ftrace_modify_caller(&ftrace_graph_call, | |
223 | ftrace_graph_caller, | |
224 | enable); | |
225 | ||
620176f3 AV |
226 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
227 | if (!ret) | |
228 | ret = __ftrace_modify_caller(&ftrace_graph_regs_call, | |
229 | ftrace_graph_regs_caller, | |
230 | enable); | |
231 | #endif | |
232 | ||
233 | ||
dd686eb1 RV |
234 | return ret; |
235 | } | |
236 | ||
237 | int ftrace_enable_ftrace_graph_caller(void) | |
238 | { | |
239 | return ftrace_modify_graph_caller(true); | |
240 | } | |
241 | ||
242 | int ftrace_disable_ftrace_graph_caller(void) | |
243 | { | |
244 | return ftrace_modify_graph_caller(false); | |
245 | } | |
246 | #endif /* CONFIG_DYNAMIC_FTRACE */ | |
376cfa87 | 247 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |