2 * Dynamic function tracing support.
7 * For licencing details, see COPYING.
9 * Defines low-level handling of mcount calls when the kernel
10 * is compiled with the -pg flag. When using dynamic ftrace, the
11 * mcount call-sites get patched with NOP till they are enabled.
12 * All code mutation routines here are called under stop_machine().
15 #include <linux/ftrace.h>
16 #include <linux/uaccess.h>
17 #include <linux/module.h>
18 #include <linux/stop_machine.h>
20 #include <asm/cacheflush.h>
21 #include <asm/opcodes.h>
22 #include <asm/ftrace.h>
24 #include <asm/set_memory.h>
25 #include <asm/stacktrace.h>
26 #include <asm/patch.h>
29 * The compiler emitted profiling hook consists of
34 * To turn this combined sequence into a NOP, we need to restore the value of
35 * SP before the PUSH. Let's use an ADD rather than a POP into LR, as LR is not
36 * modified anyway, and reloading LR from memory is highly likely to be less
39 #ifdef CONFIG_THUMB2_KERNEL
40 #define NOP 0xf10d0d04 /* add.w sp, sp, #4 */
42 #define NOP 0xe28dd004 /* add sp, sp, #4 */
45 #ifdef CONFIG_DYNAMIC_FTRACE
47 static int __ftrace_modify_code(void *data)
51 ftrace_modify_all_code(*command);
56 void arch_ftrace_update_code(int command)
58 stop_machine(__ftrace_modify_code, &command, NULL);
61 static unsigned long ftrace_nop_replace(struct dyn_ftrace *rec)
66 void ftrace_caller_from_init(void);
67 void ftrace_regs_caller_from_init(void);
69 static unsigned long __ref adjust_address(struct dyn_ftrace *rec,
72 if (!IS_ENABLED(CONFIG_DYNAMIC_FTRACE) ||
73 system_state >= SYSTEM_FREEING_INITMEM ||
74 likely(!is_kernel_inittext(rec->ip)))
76 if (!IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_REGS) ||
77 addr == (unsigned long)&ftrace_caller)
78 return (unsigned long)&ftrace_caller_from_init;
79 return (unsigned long)&ftrace_regs_caller_from_init;
82 void ftrace_arch_code_modify_prepare(void)
86 void ftrace_arch_code_modify_post_process(void)
88 /* Make sure any TLB misses during machine stop are cleared. */
92 static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr,
95 return arm_gen_branch_link(pc, addr, warn);
98 static int ftrace_modify_code(unsigned long pc, unsigned long old,
99 unsigned long new, bool validate)
101 unsigned long replaced;
103 if (IS_ENABLED(CONFIG_THUMB2_KERNEL))
104 old = __opcode_to_mem_thumb32(old);
106 old = __opcode_to_mem_arm(old);
109 if (copy_from_kernel_nofault(&replaced, (void *)pc,
117 __patch_text((void *)pc, new);
122 int ftrace_update_ftrace_func(ftrace_func_t func)
128 pc = (unsigned long)&ftrace_call;
129 new = ftrace_call_replace(pc, (unsigned long)func, true);
131 ret = ftrace_modify_code(pc, 0, new, false);
133 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
135 pc = (unsigned long)&ftrace_regs_call;
136 new = ftrace_call_replace(pc, (unsigned long)func, true);
138 ret = ftrace_modify_code(pc, 0, new, false);
145 int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
147 unsigned long new, old;
148 unsigned long ip = rec->ip;
149 unsigned long aaddr = adjust_address(rec, addr);
150 struct module *mod = NULL;
152 #ifdef CONFIG_ARM_MODULE_PLTS
156 old = ftrace_nop_replace(rec);
158 new = ftrace_call_replace(ip, aaddr, !mod);
159 #ifdef CONFIG_ARM_MODULE_PLTS
161 aaddr = get_module_plt(mod, ip, aaddr);
162 new = ftrace_call_replace(ip, aaddr, true);
166 return ftrace_modify_code(rec->ip, old, new, true);
169 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
171 int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
174 unsigned long new, old;
175 unsigned long ip = rec->ip;
177 old = ftrace_call_replace(ip, adjust_address(rec, old_addr), true);
179 new = ftrace_call_replace(ip, adjust_address(rec, addr), true);
181 return ftrace_modify_code(rec->ip, old, new, true);
186 int ftrace_make_nop(struct module *mod,
187 struct dyn_ftrace *rec, unsigned long addr)
189 unsigned long aaddr = adjust_address(rec, addr);
190 unsigned long ip = rec->ip;
195 #ifdef CONFIG_ARM_MODULE_PLTS
196 /* mod is only supplied during module loading */
203 old = ftrace_call_replace(ip, aaddr,
204 !IS_ENABLED(CONFIG_ARM_MODULE_PLTS) || !mod);
205 #ifdef CONFIG_ARM_MODULE_PLTS
207 aaddr = get_module_plt(mod, ip, aaddr);
208 old = ftrace_call_replace(ip, aaddr, true);
212 new = ftrace_nop_replace(rec);
214 * Locations in .init.text may call __gnu_mcount_mc via a linker
215 * emitted veneer if they are too far away from its implementation, and
216 * so validation may fail spuriously in such cases. Let's work around
217 * this by omitting those from validation.
219 ret = ftrace_modify_code(ip, old, new, !is_kernel_inittext(ip));
223 #endif /* CONFIG_DYNAMIC_FTRACE */
225 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
227 void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
228 unsigned long frame_pointer,
229 unsigned long stack_pointer)
231 unsigned long return_hooker = (unsigned long) &return_to_handler;
234 if (unlikely(atomic_read(¤t->tracing_graph_pause)))
237 if (IS_ENABLED(CONFIG_UNWINDER_FRAME_POINTER)) {
238 /* FP points one word below parent's top of stack */
241 struct stackframe frame = {
247 if (unwind_frame(&frame) < 0)
249 if (frame.lr != self_addr)
250 parent = frame.lr_addr;
251 frame_pointer = frame.sp;
255 *parent = return_hooker;
257 if (function_graph_enter(old, self_addr, frame_pointer, NULL))
261 #ifdef CONFIG_DYNAMIC_FTRACE
262 extern unsigned long ftrace_graph_call;
263 extern unsigned long ftrace_graph_call_old;
264 extern void ftrace_graph_caller_old(void);
265 extern unsigned long ftrace_graph_regs_call;
266 extern void ftrace_graph_regs_caller(void);
268 static int __ftrace_modify_caller(unsigned long *callsite,
269 void (*func) (void), bool enable)
271 unsigned long caller_fn = (unsigned long) func;
272 unsigned long pc = (unsigned long) callsite;
273 unsigned long branch = arm_gen_branch(pc, caller_fn);
274 unsigned long nop = arm_gen_nop();
275 unsigned long old = enable ? nop : branch;
276 unsigned long new = enable ? branch : nop;
278 return ftrace_modify_code(pc, old, new, true);
281 static int ftrace_modify_graph_caller(bool enable)
285 ret = __ftrace_modify_caller(&ftrace_graph_call,
289 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
291 ret = __ftrace_modify_caller(&ftrace_graph_regs_call,
292 ftrace_graph_regs_caller,
300 int ftrace_enable_ftrace_graph_caller(void)
302 return ftrace_modify_graph_caller(true);
305 int ftrace_disable_ftrace_graph_caller(void)
307 return ftrace_modify_graph_caller(false);
309 #endif /* CONFIG_DYNAMIC_FTRACE */
310 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */