2 * Dynamic function tracing support.
4 * Copyright (C) 2008 Abhishek Sagar <sagar.abhishek@gmail.com>
5 * Copyright (C) 2010 Rabin Vincent <rabin@rab.in>
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/patch.h>
27 #ifdef CONFIG_THUMB2_KERNEL
28 #define NOP 0xf85deb04 /* pop.w {lr} */
30 #define NOP 0xe8bd4000 /* pop {lr} */
33 #ifdef CONFIG_DYNAMIC_FTRACE
35 static int __ftrace_modify_code(void *data
)
39 ftrace_modify_all_code(*command
);
44 void arch_ftrace_update_code(int command
)
46 stop_machine(__ftrace_modify_code
, &command
, NULL
);
49 static unsigned long ftrace_nop_replace(struct dyn_ftrace
*rec
)
54 static unsigned long adjust_address(struct dyn_ftrace
*rec
, unsigned long addr
)
59 int ftrace_arch_code_modify_prepare(void)
64 int ftrace_arch_code_modify_post_process(void)
66 /* Make sure any TLB misses during machine stop are cleared. */
71 static unsigned long ftrace_call_replace(unsigned long pc
, unsigned long addr
)
73 return arm_gen_branch_link(pc
, addr
);
76 static int ftrace_modify_code(unsigned long pc
, unsigned long old
,
77 unsigned long new, bool validate
)
79 unsigned long replaced
;
81 if (IS_ENABLED(CONFIG_THUMB2_KERNEL
))
82 old
= __opcode_to_mem_thumb32(old
);
84 old
= __opcode_to_mem_arm(old
);
87 if (probe_kernel_read(&replaced
, (void *)pc
, MCOUNT_INSN_SIZE
))
94 __patch_text((void *)pc
, new);
99 int ftrace_update_ftrace_func(ftrace_func_t func
)
105 pc
= (unsigned long)&ftrace_call
;
106 new = ftrace_call_replace(pc
, (unsigned long)func
);
108 ret
= ftrace_modify_code(pc
, 0, new, false);
110 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
112 pc
= (unsigned long)&ftrace_regs_call
;
113 new = ftrace_call_replace(pc
, (unsigned long)func
);
115 ret
= ftrace_modify_code(pc
, 0, new, false);
122 int ftrace_make_call(struct dyn_ftrace
*rec
, unsigned long addr
)
124 unsigned long new, old
;
125 unsigned long ip
= rec
->ip
;
127 old
= ftrace_nop_replace(rec
);
129 new = ftrace_call_replace(ip
, adjust_address(rec
, addr
));
131 return ftrace_modify_code(rec
->ip
, old
, new, true);
134 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
136 int ftrace_modify_call(struct dyn_ftrace
*rec
, unsigned long old_addr
,
139 unsigned long new, old
;
140 unsigned long ip
= rec
->ip
;
142 old
= ftrace_call_replace(ip
, adjust_address(rec
, old_addr
));
144 new = ftrace_call_replace(ip
, adjust_address(rec
, addr
));
146 return ftrace_modify_code(rec
->ip
, old
, new, true);
151 int ftrace_make_nop(struct module
*mod
,
152 struct dyn_ftrace
*rec
, unsigned long addr
)
154 unsigned long ip
= rec
->ip
;
159 old
= ftrace_call_replace(ip
, adjust_address(rec
, addr
));
160 new = ftrace_nop_replace(rec
);
161 ret
= ftrace_modify_code(ip
, old
, new, true);
166 int __init
ftrace_dyn_arch_init(void)
170 #endif /* CONFIG_DYNAMIC_FTRACE */
172 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
173 void prepare_ftrace_return(unsigned long *parent
, unsigned long self_addr
,
174 unsigned long frame_pointer
)
176 unsigned long return_hooker
= (unsigned long) &return_to_handler
;
179 if (unlikely(atomic_read(¤t
->tracing_graph_pause
)))
183 *parent
= return_hooker
;
185 if (function_graph_enter(old
, self_addr
, frame_pointer
, NULL
))
189 #ifdef CONFIG_DYNAMIC_FTRACE
190 extern unsigned long ftrace_graph_call
;
191 extern unsigned long ftrace_graph_call_old
;
192 extern void ftrace_graph_caller_old(void);
193 extern unsigned long ftrace_graph_regs_call
;
194 extern void ftrace_graph_regs_caller(void);
196 static int __ftrace_modify_caller(unsigned long *callsite
,
197 void (*func
) (void), bool enable
)
199 unsigned long caller_fn
= (unsigned long) func
;
200 unsigned long pc
= (unsigned long) callsite
;
201 unsigned long branch
= arm_gen_branch(pc
, caller_fn
);
202 unsigned long nop
= 0xe1a00000; /* mov r0, r0 */
203 unsigned long old
= enable
? nop
: branch
;
204 unsigned long new = enable
? branch
: nop
;
206 return ftrace_modify_code(pc
, old
, new, true);
209 static int ftrace_modify_graph_caller(bool enable
)
213 ret
= __ftrace_modify_caller(&ftrace_graph_call
,
217 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
219 ret
= __ftrace_modify_caller(&ftrace_graph_regs_call
,
220 ftrace_graph_regs_caller
,
228 int ftrace_enable_ftrace_graph_caller(void)
230 return ftrace_modify_graph_caller(true);
233 int ftrace_disable_ftrace_graph_caller(void)
235 return ftrace_modify_graph_caller(false);
237 #endif /* CONFIG_DYNAMIC_FTRACE */
238 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */