2 * Code for replacing ftrace calls with jumps.
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2009 DSLab, Lanzhou University, China
6 * Author: Wu Zhangjin <wuzj@lemote.com>
8 * Thanks goes to Steven Rostedt for writing the original x86 version.
11 #include <linux/uaccess.h>
12 #include <linux/init.h>
13 #include <linux/ftrace.h>
15 #include <asm/cacheflush.h>
17 #include <asm/asm-offsets.h>
19 #ifdef CONFIG_DYNAMIC_FTRACE
21 #define JAL 0x0c000000 /* jump & link: ip --> ra, jump to target */
22 #define ADDR_MASK 0x03ffffff /* op_code|addr : 31...26|25 ....0 */
23 #define jump_insn_encode(op_code, addr) \
24 ((unsigned int)((op_code) | (((addr) >> 2) & ADDR_MASK)))
26 static unsigned int ftrace_nop
= 0x00000000;
28 static int ftrace_modify_code(unsigned long ip
, unsigned int new_code
)
32 /* *(unsigned int *)ip = new_code; */
33 safe_store_code(new_code
, ip
, faulted
);
35 if (unlikely(faulted
))
38 flush_icache_range(ip
, ip
+ 8);
44 static int jal_mcount
;
46 int ftrace_make_nop(struct module
*mod
,
47 struct dyn_ftrace
*rec
, unsigned long addr
)
51 unsigned long ip
= rec
->ip
;
53 /* We have compiled module with -mlong-calls, but compiled the kernel
54 * without it, we need to cope with them respectively. */
55 if (ip
& 0x40000000) {
56 /* record it for ftrace_make_call */
58 /* lui_v1 = *(unsigned int *)ip; */
59 safe_load_code(lui_v1
, ip
, faulted
);
61 if (unlikely(faulted
))
65 /* lui v1, hi_16bit_of_mcount --> b 1f (0x10000004)
66 * addiu v1, v1, low_16bit_of_mcount
74 /* record/calculate it for ftrace_make_call */
75 if (jal_mcount
== 0) {
76 /* We can record it directly like this:
77 * jal_mcount = *(unsigned int *)ip;
78 * Herein, jump over the first two nop instructions */
79 jal_mcount
= jump_insn_encode(JAL
, (MCOUNT_ADDR
+ 8));
87 return ftrace_modify_code(ip
, new);
90 static int modified
; /* initialized as 0 by default */
92 int ftrace_make_call(struct dyn_ftrace
*rec
, unsigned long addr
)
95 unsigned long ip
= rec
->ip
;
97 /* We just need to remove the "b ftrace_stub" at the fist time! */
100 ftrace_modify_code(addr
, ftrace_nop
);
102 /* ip, module: 0xc0000000, kernel: 0x80000000 */
103 new = (ip
& 0x40000000) ? lui_v1
: jal_mcount
;
105 return ftrace_modify_code(ip
, new);
108 #define FTRACE_CALL_IP ((unsigned long)(&ftrace_call))
110 int ftrace_update_ftrace_func(ftrace_func_t func
)
114 new = jump_insn_encode(JAL
, (unsigned long)func
);
116 return ftrace_modify_code(FTRACE_CALL_IP
, new);
119 int __init
ftrace_dyn_arch_init(void *data
)
121 /* The return code is retured via data */
122 *(unsigned long *)data
= 0;
126 #endif /* CONFIG_DYNAMIC_FTRACE */
128 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
130 #ifdef CONFIG_DYNAMIC_FTRACE
132 extern void ftrace_graph_call(void);
133 #define JMP 0x08000000 /* jump to target directly */
134 #define CALL_FTRACE_GRAPH_CALLER \
135 jump_insn_encode(JMP, (unsigned long)(&ftrace_graph_caller))
136 #define FTRACE_GRAPH_CALL_IP ((unsigned long)(&ftrace_graph_call))
138 int ftrace_enable_ftrace_graph_caller(void)
140 return ftrace_modify_code(FTRACE_GRAPH_CALL_IP
,
141 CALL_FTRACE_GRAPH_CALLER
);
144 int ftrace_disable_ftrace_graph_caller(void)
146 return ftrace_modify_code(FTRACE_GRAPH_CALL_IP
, ftrace_nop
);
149 #endif /* !CONFIG_DYNAMIC_FTRACE */
151 #ifndef KBUILD_MCOUNT_RA_ADDRESS
152 #define S_RA_SP (0xafbf << 16) /* s{d,w} ra, offset(sp) */
153 #define S_R_SP (0xafb0 << 16) /* s{d,w} R, offset(sp) */
154 #define OFFSET_MASK 0xffff /* stack offset range: 0 ~ PT_SIZE */
156 unsigned long ftrace_get_parent_addr(unsigned long self_addr
,
157 unsigned long parent
,
158 unsigned long parent_addr
,
161 unsigned long sp
, ip
, ra
;
165 /* in module or kernel? */
166 if (self_addr
& 0x40000000) {
167 /* module: move to the instruction "lui v1, HI_16BIT_OF_MCOUNT" */
170 /* kernel: move to the instruction "move ra, at" */
174 /* search the text until finding the non-store instruction or "s{d,w}
175 * ra, offset(sp)" instruction */
179 /* get the code at "ip": code = *(unsigned int *)ip; */
180 safe_load_code(code
, ip
, faulted
);
182 if (unlikely(faulted
))
185 /* If we hit the non-store instruction before finding where the
186 * ra is stored, then this is a leaf function and it does not
187 * store the ra on the stack. */
188 if ((code
& S_R_SP
) != S_R_SP
)
191 } while (((code
& S_RA_SP
) != S_RA_SP
));
193 sp
= fp
+ (code
& OFFSET_MASK
);
195 /* ra = *(unsigned long *)sp; */
196 safe_load_stack(ra
, sp
, faulted
);
197 if (unlikely(faulted
))
208 * Hook the return address and push it in the stack of return addrs
209 * in current thread info.
211 void prepare_ftrace_return(unsigned long *parent
, unsigned long self_addr
,
215 struct ftrace_graph_ent trace
;
216 unsigned long return_hooker
= (unsigned long)
220 if (unlikely(atomic_read(¤t
->tracing_graph_pause
)))
223 /* "parent" is the stack address saved the return address of the caller
226 * if the gcc < 4.5, a leaf function does not save the return address
227 * in the stack address, so, we "emulate" one in _mcount's stack space,
228 * and hijack it directly, but for a non-leaf function, it save the
229 * return address to the its own stack space, we can not hijack it
230 * directly, but need to find the real stack address,
231 * ftrace_get_parent_addr() does it!
233 * if gcc>= 4.5, with the new -mmcount-ra-address option, for a
234 * non-leaf function, the location of the return address will be saved
235 * to $12 for us, and for a leaf function, only put a zero into $12. we
236 * do it in ftrace_graph_caller of mcount.S.
240 safe_load_stack(old
, parent
, faulted
);
241 if (unlikely(faulted
))
243 #ifndef KBUILD_MCOUNT_RA_ADDRESS
244 parent
= (unsigned long *)ftrace_get_parent_addr(self_addr
, old
,
245 (unsigned long)parent
,
247 /* If fails when getting the stack address of the non-leaf function's
248 * ra, stop function graph tracer and return */
252 /* *parent = return_hooker; */
253 safe_store_stack(return_hooker
, parent
, faulted
);
254 if (unlikely(faulted
))
257 if (ftrace_push_return_trace(old
, self_addr
, &trace
.depth
, fp
) ==
263 trace
.func
= self_addr
;
265 /* Only trace if the calling function expects to */
266 if (!ftrace_graph_entry(&trace
)) {
267 current
->curr_ret_stack
--;
275 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */