1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * arch/arm64/kernel/ftrace.c
4 *
5 * Copyright (C) 2013 Linaro Limited
6 * Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
7 */
8
9 #include <linux/ftrace.h>
10 #include <linux/module.h>
11 #include <linux/swab.h>
12 #include <linux/uaccess.h>
13
14 #include <asm/cacheflush.h>
15 #include <asm/debug-monitors.h>
16 #include <asm/ftrace.h>
17 #include <asm/insn.h>
18 #include <asm/patching.h>
19
20 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS
21 struct fregs_offset {
22 const char *name;
23 int offset;
24 };
25
26 #define FREGS_OFFSET(n, field) \
27 { \
28 .name = n, \
29 .offset = offsetof(struct ftrace_regs, field), \
30 }
31
32 static const struct fregs_offset fregs_offsets[] = {
33 FREGS_OFFSET("x0", regs[0]),
34 FREGS_OFFSET("x1", regs[1]),
35 FREGS_OFFSET("x2", regs[2]),
36 FREGS_OFFSET("x3", regs[3]),
37 FREGS_OFFSET("x4", regs[4]),
38 FREGS_OFFSET("x5", regs[5]),
39 FREGS_OFFSET("x6", regs[6]),
40 FREGS_OFFSET("x7", regs[7]),
41 FREGS_OFFSET("x8", regs[8]),
42
43 FREGS_OFFSET("x29", fp),
44 FREGS_OFFSET("x30", lr),
45 FREGS_OFFSET("lr", lr),
46
47 FREGS_OFFSET("sp", sp),
48 FREGS_OFFSET("pc", pc),
49 };
50
ftrace_regs_query_register_offset(const char * name)51 int ftrace_regs_query_register_offset(const char *name)
52 {
53 for (int i = 0; i < ARRAY_SIZE(fregs_offsets); i++) {
54 const struct fregs_offset *roff = &fregs_offsets[i];
55 if (!strcmp(roff->name, name))
56 return roff->offset;
57 }
58
59 return -EINVAL;
60 }
61 #endif
62
ftrace_call_adjust(unsigned long addr)63 unsigned long ftrace_call_adjust(unsigned long addr)
64 {
65 /*
66 * When using mcount, addr is the address of the mcount call
67 * instruction, and no adjustment is necessary.
68 */
69 if (!IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_ARGS))
70 return addr;
71
72 /*
73 * When using patchable-function-entry without pre-function NOPS, addr
74 * is the address of the first NOP after the function entry point.
75 *
76 * The compiler has either generated:
77 *
78 * addr+00: func: NOP // To be patched to MOV X9, LR
79 * addr+04: NOP // To be patched to BL <caller>
80 *
81 * Or:
82 *
83 * addr-04: BTI C
84 * addr+00: func: NOP // To be patched to MOV X9, LR
85 * addr+04: NOP // To be patched to BL <caller>
86 *
87 * We must adjust addr to the address of the NOP which will be patched
88 * to `BL <caller>`, which is at `addr + 4` bytes in either case.
89 *
90 */
91 if (!IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_CALL_OPS))
92 return addr + AARCH64_INSN_SIZE;
93
94 /*
95 * When using patchable-function-entry with pre-function NOPs, addr is
96 * the address of the first pre-function NOP.
97 *
98 * Starting from an 8-byte aligned base, the compiler has either
99 * generated:
100 *
101 * addr+00: NOP // Literal (first 32 bits)
102 * addr+04: NOP // Literal (last 32 bits)
103 * addr+08: func: NOP // To be patched to MOV X9, LR
104 * addr+12: NOP // To be patched to BL <caller>
105 *
106 * Or:
107 *
108 * addr+00: NOP // Literal (first 32 bits)
109 * addr+04: NOP // Literal (last 32 bits)
110 * addr+08: func: BTI C
111 * addr+12: NOP // To be patched to MOV X9, LR
112 * addr+16: NOP // To be patched to BL <caller>
113 *
114 * We must adjust addr to the address of the NOP which will be patched
115 * to `BL <caller>`, which is at either addr+12 or addr+16 depending on
116 * whether there is a BTI.
117 */
118
119 if (!IS_ALIGNED(addr, sizeof(unsigned long))) {
120 WARN_RATELIMIT(1, "Misaligned patch-site %pS\n",
121 (void *)(addr + 8));
122 return 0;
123 }
124
125 /* Skip the NOPs placed before the function entry point */
126 addr += 2 * AARCH64_INSN_SIZE;
127
128 /* Skip any BTI */
129 if (IS_ENABLED(CONFIG_ARM64_BTI_KERNEL)) {
130 u32 insn = le32_to_cpu(*(__le32 *)addr);
131
132 if (aarch64_insn_is_bti(insn)) {
133 addr += AARCH64_INSN_SIZE;
134 } else if (insn != aarch64_insn_gen_nop()) {
135 WARN_RATELIMIT(1, "unexpected insn in patch-site %pS: 0x%08x\n",
136 (void *)addr, insn);
137 }
138 }
139
140 /* Skip the first NOP after function entry */
141 addr += AARCH64_INSN_SIZE;
142
143 return addr;
144 }
145
146 /*
147 * Replace a single instruction, which may be a branch or NOP.
148 * If @validate == true, a replaced instruction is checked against 'old'.
149 */
ftrace_modify_code(unsigned long pc,u32 old,u32 new,bool validate)150 static int ftrace_modify_code(unsigned long pc, u32 old, u32 new,
151 bool validate)
152 {
153 u32 replaced;
154
155 /*
156 * Note:
157 * We are paranoid about modifying text, as if a bug were to happen, it
158 * could cause us to read or write to someplace that could cause harm.
159 * Carefully read and modify the code with aarch64_insn_*() which uses
160 * probe_kernel_*(), and make sure what we read is what we expected it
161 * to be before modifying it.
162 */
163 if (validate) {
164 if (aarch64_insn_read((void *)pc, &replaced))
165 return -EFAULT;
166
167 if (replaced != old)
168 return -EINVAL;
169 }
170 if (aarch64_insn_patch_text_nosync((void *)pc, new))
171 return -EPERM;
172
173 return 0;
174 }
175
176 /*
177 * Replace tracer function in ftrace_caller()
178 */
ftrace_update_ftrace_func(ftrace_func_t func)179 int ftrace_update_ftrace_func(ftrace_func_t func)
180 {
181 unsigned long pc;
182 u32 new;
183
184 /*
185 * When using CALL_OPS, the function to call is associated with the
186 * call site, and we don't have a global function pointer to update.
187 */
188 if (IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_CALL_OPS))
189 return 0;
190
191 pc = (unsigned long)ftrace_call;
192 new = aarch64_insn_gen_branch_imm(pc, (unsigned long)func,
193 AARCH64_INSN_BRANCH_LINK);
194
195 return ftrace_modify_code(pc, 0, new, false);
196 }
197
get_ftrace_plt(struct module * mod,unsigned long addr)198 static struct plt_entry *get_ftrace_plt(struct module *mod, unsigned long addr)
199 {
200 #ifdef CONFIG_ARM64_MODULE_PLTS
201 struct plt_entry *plt = mod->arch.ftrace_trampolines;
202
203 if (addr == FTRACE_ADDR)
204 return &plt[FTRACE_PLT_IDX];
205 #endif
206 return NULL;
207 }
208
209 /*
210 * Find the address the callsite must branch to in order to reach '*addr'.
211 *
212 * Due to the limited range of 'BL' instructions, modules may be placed too far
213 * away to branch directly and must use a PLT.
214 *
215 * Returns true when '*addr' contains a reachable target address, or has been
216 * modified to contain a PLT address. Returns false otherwise.
217 */
ftrace_find_callable_addr(struct dyn_ftrace * rec,struct module * mod,unsigned long * addr)218 static bool ftrace_find_callable_addr(struct dyn_ftrace *rec,
219 struct module *mod,
220 unsigned long *addr)
221 {
222 unsigned long pc = rec->ip;
223 long offset = (long)*addr - (long)pc;
224 struct plt_entry *plt;
225
226 /*
227 * When the target is within range of the 'BL' instruction, use 'addr'
228 * as-is and branch to that directly.
229 */
230 if (offset >= -SZ_128M && offset < SZ_128M)
231 return true;
232
233 /*
234 * When the target is outside of the range of a 'BL' instruction, we
235 * must use a PLT to reach it. We can only place PLTs for modules, and
236 * only when module PLT support is built-in.
237 */
238 if (!IS_ENABLED(CONFIG_ARM64_MODULE_PLTS))
239 return false;
240
241 /*
242 * 'mod' is only set at module load time, but if we end up
243 * dealing with an out-of-range condition, we can assume it
244 * is due to a module being loaded far away from the kernel.
245 *
246 * NOTE: __module_text_address() must be called with preemption
247 * disabled, but we can rely on ftrace_lock to ensure that 'mod'
248 * retains its validity throughout the remainder of this code.
249 */
250 if (!mod) {
251 preempt_disable();
252 mod = __module_text_address(pc);
253 preempt_enable();
254 }
255
256 if (WARN_ON(!mod))
257 return false;
258
259 plt = get_ftrace_plt(mod, *addr);
260 if (!plt) {
261 pr_err("ftrace: no module PLT for %ps\n", (void *)*addr);
262 return false;
263 }
264
265 *addr = (unsigned long)plt;
266 return true;
267 }
268
269 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_CALL_OPS
arm64_rec_get_ops(struct dyn_ftrace * rec)270 static const struct ftrace_ops *arm64_rec_get_ops(struct dyn_ftrace *rec)
271 {
272 const struct ftrace_ops *ops = NULL;
273
274 if (rec->flags & FTRACE_FL_CALL_OPS_EN) {
275 ops = ftrace_find_unique_ops(rec);
276 WARN_ON_ONCE(!ops);
277 }
278
279 if (!ops)
280 ops = &ftrace_list_ops;
281
282 return ops;
283 }
284
ftrace_rec_set_ops(const struct dyn_ftrace * rec,const struct ftrace_ops * ops)285 static int ftrace_rec_set_ops(const struct dyn_ftrace *rec,
286 const struct ftrace_ops *ops)
287 {
288 unsigned long literal = ALIGN_DOWN(rec->ip - 12, 8);
289 return aarch64_insn_write_literal_u64((void *)literal,
290 (unsigned long)ops);
291 }
292
ftrace_rec_set_nop_ops(struct dyn_ftrace * rec)293 static int ftrace_rec_set_nop_ops(struct dyn_ftrace *rec)
294 {
295 return ftrace_rec_set_ops(rec, &ftrace_nop_ops);
296 }
297
ftrace_rec_update_ops(struct dyn_ftrace * rec)298 static int ftrace_rec_update_ops(struct dyn_ftrace *rec)
299 {
300 return ftrace_rec_set_ops(rec, arm64_rec_get_ops(rec));
301 }
302 #else
ftrace_rec_set_nop_ops(struct dyn_ftrace * rec)303 static int ftrace_rec_set_nop_ops(struct dyn_ftrace *rec) { return 0; }
ftrace_rec_update_ops(struct dyn_ftrace * rec)304 static int ftrace_rec_update_ops(struct dyn_ftrace *rec) { return 0; }
305 #endif
306
307 /*
308 * Turn on the call to ftrace_caller() in instrumented function
309 */
ftrace_make_call(struct dyn_ftrace * rec,unsigned long addr)310 int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
311 {
312 unsigned long pc = rec->ip;
313 u32 old, new;
314 int ret;
315
316 ret = ftrace_rec_update_ops(rec);
317 if (ret)
318 return ret;
319
320 if (!ftrace_find_callable_addr(rec, NULL, &addr))
321 return -EINVAL;
322
323 old = aarch64_insn_gen_nop();
324 new = aarch64_insn_gen_branch_imm(pc, addr, AARCH64_INSN_BRANCH_LINK);
325
326 return ftrace_modify_code(pc, old, new, true);
327 }
328
329 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_CALL_OPS
ftrace_modify_call(struct dyn_ftrace * rec,unsigned long old_addr,unsigned long addr)330 int ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
331 unsigned long addr)
332 {
333 if (WARN_ON_ONCE(old_addr != (unsigned long)ftrace_caller))
334 return -EINVAL;
335 if (WARN_ON_ONCE(addr != (unsigned long)ftrace_caller))
336 return -EINVAL;
337
338 return ftrace_rec_update_ops(rec);
339 }
340 #endif
341
342 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS
343 /*
344 * The compiler has inserted two NOPs before the regular function prologue.
345 * All instrumented functions follow the AAPCS, so x0-x8 and x19-x30 are live,
346 * and x9-x18 are free for our use.
347 *
348 * At runtime we want to be able to swing a single NOP <-> BL to enable or
349 * disable the ftrace call. The BL requires us to save the original LR value,
350 * so here we insert a <MOV X9, LR> over the first NOP so the instructions
351 * before the regular prologue are:
352 *
353 * | Compiled | Disabled | Enabled |
354 * +----------+------------+------------+
355 * | NOP | MOV X9, LR | MOV X9, LR |
356 * | NOP | NOP | BL <entry> |
357 *
358 * The LR value will be recovered by ftrace_caller, and restored into LR
359 * before returning to the regular function prologue. When a function is not
360 * being traced, the MOV is not harmful given x9 is not live per the AAPCS.
361 *
362 * Note: ftrace_process_locs() has pre-adjusted rec->ip to be the address of
363 * the BL.
364 */
ftrace_init_nop(struct module * mod,struct dyn_ftrace * rec)365 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec)
366 {
367 unsigned long pc = rec->ip - AARCH64_INSN_SIZE;
368 u32 old, new;
369 int ret;
370
371 ret = ftrace_rec_set_nop_ops(rec);
372 if (ret)
373 return ret;
374
375 old = aarch64_insn_gen_nop();
376 new = aarch64_insn_gen_move_reg(AARCH64_INSN_REG_9,
377 AARCH64_INSN_REG_LR,
378 AARCH64_INSN_VARIANT_64BIT);
379 return ftrace_modify_code(pc, old, new, true);
380 }
381 #endif
382
383 /*
384 * Turn off the call to ftrace_caller() in instrumented function
385 */
ftrace_make_nop(struct module * mod,struct dyn_ftrace * rec,unsigned long addr)386 int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec,
387 unsigned long addr)
388 {
389 unsigned long pc = rec->ip;
390 u32 old = 0, new;
391 int ret;
392
393 new = aarch64_insn_gen_nop();
394
395 ret = ftrace_rec_set_nop_ops(rec);
396 if (ret)
397 return ret;
398
399 /*
400 * When using mcount, callsites in modules may have been initalized to
401 * call an arbitrary module PLT (which redirects to the _mcount stub)
402 * rather than the ftrace PLT we'll use at runtime (which redirects to
403 * the ftrace trampoline). We can ignore the old PLT when initializing
404 * the callsite.
405 *
406 * Note: 'mod' is only set at module load time.
407 */
408 if (!IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_ARGS) &&
409 IS_ENABLED(CONFIG_ARM64_MODULE_PLTS) && mod) {
410 return aarch64_insn_patch_text_nosync((void *)pc, new);
411 }
412
413 if (!ftrace_find_callable_addr(rec, mod, &addr))
414 return -EINVAL;
415
416 old = aarch64_insn_gen_branch_imm(pc, addr, AARCH64_INSN_BRANCH_LINK);
417
418 return ftrace_modify_code(pc, old, new, true);
419 }
420
arch_ftrace_update_code(int command)421 void arch_ftrace_update_code(int command)
422 {
423 command |= FTRACE_MAY_SLEEP;
424 ftrace_modify_all_code(command);
425 }
426
427 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
428 /*
429 * function_graph tracer expects ftrace_return_to_handler() to be called
430 * on the way back to parent. For this purpose, this function is called
431 * in _mcount() or ftrace_caller() to replace return address (*parent) on
432 * the call stack to return_to_handler.
433 */
prepare_ftrace_return(unsigned long self_addr,unsigned long * parent,unsigned long frame_pointer)434 void prepare_ftrace_return(unsigned long self_addr, unsigned long *parent,
435 unsigned long frame_pointer)
436 {
437 unsigned long return_hooker = (unsigned long)&return_to_handler;
438 unsigned long old;
439
440 if (unlikely(atomic_read(¤t->tracing_graph_pause)))
441 return;
442
443 /*
444 * Note:
445 * No protection against faulting at *parent, which may be seen
446 * on other archs. It's unlikely on AArch64.
447 */
448 old = *parent;
449
450 if (!function_graph_enter(old, self_addr, frame_pointer,
451 (void *)frame_pointer)) {
452 *parent = return_hooker;
453 }
454 }
455
456 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS
ftrace_graph_func(unsigned long ip,unsigned long parent_ip,struct ftrace_ops * op,struct ftrace_regs * fregs)457 void ftrace_graph_func(unsigned long ip, unsigned long parent_ip,
458 struct ftrace_ops *op, struct ftrace_regs *fregs)
459 {
460 prepare_ftrace_return(ip, &fregs->lr, fregs->fp);
461 }
462 #else
463 /*
464 * Turn on/off the call to ftrace_graph_caller() in ftrace_caller()
465 * depending on @enable.
466 */
ftrace_modify_graph_caller(bool enable)467 static int ftrace_modify_graph_caller(bool enable)
468 {
469 unsigned long pc = (unsigned long)&ftrace_graph_call;
470 u32 branch, nop;
471
472 branch = aarch64_insn_gen_branch_imm(pc,
473 (unsigned long)ftrace_graph_caller,
474 AARCH64_INSN_BRANCH_NOLINK);
475 nop = aarch64_insn_gen_nop();
476
477 if (enable)
478 return ftrace_modify_code(pc, nop, branch, true);
479 else
480 return ftrace_modify_code(pc, branch, nop, true);
481 }
482
ftrace_enable_ftrace_graph_caller(void)483 int ftrace_enable_ftrace_graph_caller(void)
484 {
485 return ftrace_modify_graph_caller(true);
486 }
487
ftrace_disable_ftrace_graph_caller(void)488 int ftrace_disable_ftrace_graph_caller(void)
489 {
490 return ftrace_modify_graph_caller(false);
491 }
492 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_ARGS */
493 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
494