1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2013 Linaro Limited
5 * Copyright (C) 2017 Andes Technology Corporation
8 #include <linux/ftrace.h>
9 #include <linux/uaccess.h>
10 #include <linux/memory.h>
11 #include <asm/cacheflush.h>
12 #include <asm/patch.h>
14 #ifdef CONFIG_DYNAMIC_FTRACE
15 int ftrace_arch_code_modify_prepare(void) __acquires(&text_mutex)
17 mutex_lock(&text_mutex);
21 int ftrace_arch_code_modify_post_process(void) __releases(&text_mutex)
23 mutex_unlock(&text_mutex);
27 static int ftrace_check_current_call(unsigned long hook_pos,
28 unsigned int *expected)
30 unsigned int replaced[2];
31 unsigned int nops[2] = {NOP4, NOP4};
33 /* we expect nops at the hook position */
38 * Read the text we want to modify;
39 * return must be -EFAULT on read error
41 if (copy_from_kernel_nofault(replaced, (void *)hook_pos,
46 * Make sure it is what we expect it to be;
47 * return must be -EINVAL on failed comparison
49 if (memcmp(expected, replaced, sizeof(replaced))) {
50 pr_err("%p: expected (%08x %08x) but got (%08x %08x)\n",
51 (void *)hook_pos, expected[0], expected[1], replaced[0],
59 static int __ftrace_modify_call(unsigned long hook_pos, unsigned long target,
63 unsigned int nops[2] = {NOP4, NOP4};
65 make_call(hook_pos, target, call);
67 /* Replace the auipc-jalr pair at once. Return -EPERM on write error. */
69 ((void *)hook_pos, enable ? call : nops, MCOUNT_INSN_SIZE))
76 * Put 5 instructions with 16 bytes at the front of function within
77 * patchable function entry nops' area.
79 * 0: REG_S ra, -SZREG(sp)
82 * 3: REG_L ra, -SZREG(sp)
85 * 0: 0xfe113c23 (sd)/0xfe112e23 (sw)
86 * 1: 0x???????? -> auipc
87 * 2: 0x???????? -> jalr
88 * 3: 0xff813083 (ld)/0xffc12083 (lw)
90 #if __riscv_xlen == 64
91 #define INSN0 0xfe113c23
92 #define INSN3 0xff813083
93 #elif __riscv_xlen == 32
94 #define INSN0 0xfe112e23
95 #define INSN3 0xffc12083
98 #define FUNC_ENTRY_SIZE 16
99 #define FUNC_ENTRY_JMP 4
101 int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
103 unsigned int call[4] = {INSN0, 0, 0, INSN3};
104 unsigned long target = addr;
105 unsigned long caller = rec->ip + FUNC_ENTRY_JMP;
107 call[1] = to_auipc_insn((unsigned int)(target - caller));
108 call[2] = to_jalr_insn((unsigned int)(target - caller));
110 if (patch_text_nosync((void *)rec->ip, call, FUNC_ENTRY_SIZE))
116 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec,
119 unsigned int nops[4] = {NOP4, NOP4, NOP4, NOP4};
121 if (patch_text_nosync((void *)rec->ip, nops, FUNC_ENTRY_SIZE))
129 * This is called early on, and isn't wrapped by
130 * ftrace_arch_code_modify_{prepare,post_process}() and therefor doesn't hold
131 * text_mutex, which triggers a lockdep failure. SMP isn't running so we could
132 * just directly poke the text, but it's simpler to just take the lock
135 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec)
139 ftrace_arch_code_modify_prepare();
140 out = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
141 ftrace_arch_code_modify_post_process();
146 int ftrace_update_ftrace_func(ftrace_func_t func)
148 int ret = __ftrace_modify_call((unsigned long)&ftrace_call,
149 (unsigned long)func, true);
151 ret = __ftrace_modify_call((unsigned long)&ftrace_regs_call,
152 (unsigned long)func, true);
159 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
160 int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
163 unsigned int call[2];
164 unsigned long caller = rec->ip + FUNC_ENTRY_JMP;
167 make_call(caller, old_addr, call);
168 ret = ftrace_check_current_call(caller, call);
173 return __ftrace_modify_call(caller, addr, true);
177 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
179 * Most of this function is copied from arm64.
181 void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
182 unsigned long frame_pointer)
184 unsigned long return_hooker = (unsigned long)&return_to_handler;
187 if (unlikely(atomic_read(¤t->tracing_graph_pause)))
191 * We don't suffer access faults, so no extra fault-recovery assembly
196 if (!function_graph_enter(old, self_addr, frame_pointer, parent))
197 *parent = return_hooker;
200 #ifdef CONFIG_DYNAMIC_FTRACE
201 extern void ftrace_graph_call(void);
202 extern void ftrace_graph_regs_call(void);
203 int ftrace_enable_ftrace_graph_caller(void)
207 ret = __ftrace_modify_call((unsigned long)&ftrace_graph_call,
208 (unsigned long)&prepare_ftrace_return, true);
212 return __ftrace_modify_call((unsigned long)&ftrace_graph_regs_call,
213 (unsigned long)&prepare_ftrace_return, true);
216 int ftrace_disable_ftrace_graph_caller(void)
220 ret = __ftrace_modify_call((unsigned long)&ftrace_graph_call,
221 (unsigned long)&prepare_ftrace_return, false);
225 return __ftrace_modify_call((unsigned long)&ftrace_graph_regs_call,
226 (unsigned long)&prepare_ftrace_return, false);
228 #endif /* CONFIG_DYNAMIC_FTRACE */
229 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */