Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13-rc2 213 lines 5.4 kB view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * arch/arm64/include/asm/ftrace.h 4 * 5 * Copyright (C) 2013 Linaro Limited 6 * Author: AKASHI Takahiro <takahiro.akashi@linaro.org> 7 */ 8#ifndef __ASM_FTRACE_H 9#define __ASM_FTRACE_H 10 11#include <asm/insn.h> 12 13#define HAVE_FUNCTION_GRAPH_FP_TEST 14 15#ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS 16#define ARCH_SUPPORTS_FTRACE_OPS 1 17#else 18#define MCOUNT_ADDR ((unsigned long)_mcount) 19#endif 20 21/* The BL at the callsite's adjusted rec->ip */ 22#define MCOUNT_INSN_SIZE AARCH64_INSN_SIZE 23 24#define FTRACE_PLT_IDX 0 25#define NR_FTRACE_PLTS 1 26 27/* 28 * Currently, gcc tends to save the link register after the local variables 29 * on the stack. This causes the max stack tracer to report the function 30 * frame sizes for the wrong functions. By defining 31 * ARCH_FTRACE_SHIFT_STACK_TRACER, it will tell the stack tracer to expect 32 * to find the return address on the stack after the local variables have 33 * been set up. 34 * 35 * Note, this may change in the future, and we will need to deal with that 36 * if it were to happen. 37 */ 38#define ARCH_FTRACE_SHIFT_STACK_TRACER 1 39 40#ifndef __ASSEMBLY__ 41#include <linux/compat.h> 42 43extern void _mcount(unsigned long); 44extern void *return_address(unsigned int); 45 46struct dyn_arch_ftrace { 47 /* No extra data needed for arm64 */ 48}; 49 50extern unsigned long ftrace_graph_call; 51 52extern void return_to_handler(void); 53 54unsigned long ftrace_call_adjust(unsigned long addr); 55 56#ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS 57#define HAVE_ARCH_FTRACE_REGS 58struct dyn_ftrace; 59struct ftrace_ops; 60struct ftrace_regs; 61#define arch_ftrace_regs(fregs) ((struct __arch_ftrace_regs *)(fregs)) 62 63#define arch_ftrace_get_regs(regs) NULL 64 65/* 66 * Note: sizeof(struct ftrace_regs) must be a multiple of 16 to ensure correct 67 * stack alignment 68 */ 69struct __arch_ftrace_regs { 70 /* x0 - x8 */ 71 unsigned long regs[9]; 72 73#ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS 74 unsigned long direct_tramp; 75#else 76 unsigned long __unused; 77#endif 78 79 unsigned long fp; 80 unsigned long lr; 81 82 unsigned long sp; 83 unsigned long pc; 84}; 85 86static __always_inline unsigned long 87ftrace_regs_get_instruction_pointer(const struct ftrace_regs *fregs) 88{ 89 return arch_ftrace_regs(fregs)->pc; 90} 91 92static __always_inline void 93ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs, 94 unsigned long pc) 95{ 96 arch_ftrace_regs(fregs)->pc = pc; 97} 98 99static __always_inline unsigned long 100ftrace_regs_get_stack_pointer(const struct ftrace_regs *fregs) 101{ 102 return arch_ftrace_regs(fregs)->sp; 103} 104 105static __always_inline unsigned long 106ftrace_regs_get_argument(struct ftrace_regs *fregs, unsigned int n) 107{ 108 if (n < 8) 109 return arch_ftrace_regs(fregs)->regs[n]; 110 return 0; 111} 112 113static __always_inline unsigned long 114ftrace_regs_get_return_value(const struct ftrace_regs *fregs) 115{ 116 return arch_ftrace_regs(fregs)->regs[0]; 117} 118 119static __always_inline void 120ftrace_regs_set_return_value(struct ftrace_regs *fregs, 121 unsigned long ret) 122{ 123 arch_ftrace_regs(fregs)->regs[0] = ret; 124} 125 126static __always_inline void 127ftrace_override_function_with_return(struct ftrace_regs *fregs) 128{ 129 arch_ftrace_regs(fregs)->pc = arch_ftrace_regs(fregs)->lr; 130} 131 132int ftrace_regs_query_register_offset(const char *name); 133 134int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec); 135#define ftrace_init_nop ftrace_init_nop 136 137void ftrace_graph_func(unsigned long ip, unsigned long parent_ip, 138 struct ftrace_ops *op, struct ftrace_regs *fregs); 139#define ftrace_graph_func ftrace_graph_func 140 141#ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS 142static inline void arch_ftrace_set_direct_caller(struct ftrace_regs *fregs, 143 unsigned long addr) 144{ 145 /* 146 * The ftrace trampoline will return to this address instead of the 147 * instrumented function. 148 */ 149 arch_ftrace_regs(fregs)->direct_tramp = addr; 150} 151#endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */ 152 153#endif 154 155#define ftrace_return_address(n) return_address(n) 156 157/* 158 * Because AArch32 mode does not share the same syscall table with AArch64, 159 * tracing compat syscalls may result in reporting bogus syscalls or even 160 * hang-up, so just do not trace them. 161 * See kernel/trace/trace_syscalls.c 162 * 163 * x86 code says: 164 * If the user really wants these, then they should use the 165 * raw syscall tracepoints with filtering. 166 */ 167#define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS 168static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs) 169{ 170 return is_compat_task(); 171} 172 173#define ARCH_HAS_SYSCALL_MATCH_SYM_NAME 174 175static inline bool arch_syscall_match_sym_name(const char *sym, 176 const char *name) 177{ 178 /* 179 * Since all syscall functions have __arm64_ prefix, we must skip it. 180 * However, as we described above, we decided to ignore compat 181 * syscalls, so we don't care about __arm64_compat_ prefix here. 182 */ 183 return !strcmp(sym + 8, name); 184} 185#endif /* ifndef __ASSEMBLY__ */ 186 187#ifndef __ASSEMBLY__ 188#ifdef CONFIG_FUNCTION_GRAPH_TRACER 189struct fgraph_ret_regs { 190 /* x0 - x7 */ 191 unsigned long regs[8]; 192 193 unsigned long fp; 194 unsigned long __unused; 195}; 196 197static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *ret_regs) 198{ 199 return ret_regs->regs[0]; 200} 201 202static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *ret_regs) 203{ 204 return ret_regs->fp; 205} 206 207void prepare_ftrace_return(unsigned long self_addr, unsigned long *parent, 208 unsigned long frame_pointer); 209 210#endif /* ifdef CONFIG_FUNCTION_GRAPH_TRACER */ 211#endif 212 213#endif /* __ASM_FTRACE_H */