1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2014 Steven Rostedt, Red Hat Inc
6 #include <linux/linkage.h>
7 #include <asm/ptrace.h>
8 #include <asm/ftrace.h>
9 #include <asm/export.h>
10 #include <asm/nospec-branch.h>
11 #include <asm/unwind_hints.h>
12 #include <asm/frame.h>
15 .section .entry.text, "ax"
17 #ifdef CONFIG_FRAME_POINTER
18 /* Save parent and function stack frames (rip and rbp) */
19 # define MCOUNT_FRAME_SIZE (8+16*2)
21 /* No need to save a stack frame */
22 # define MCOUNT_FRAME_SIZE 0
23 #endif /* CONFIG_FRAME_POINTER */
25 /* Size of stack used to save mcount regs in save_mcount_regs */
26 #define MCOUNT_REG_SIZE (SS+8 + MCOUNT_FRAME_SIZE)
29 * gcc -pg option adds a call to 'mcount' in most functions.
30 * When -mfentry is used, the call is to 'fentry' and not 'mcount'
31 * and is done before the function's stack frame is set up.
32 * They both require a set of regs to be saved before calling
33 * any C code and restored before returning back to the function.
35 * On boot up, all these calls are converted into nops. When tracing
36 * is enabled, the call can jump to either ftrace_caller or
37 * ftrace_regs_caller. Callbacks (tracing functions) that require
38 * ftrace_regs_caller (like kprobes) need to have pt_regs passed to
39 * it. For this reason, the size of the pt_regs structure will be
40 * allocated on the stack and the required mcount registers will
41 * be saved in the locations that pt_regs has them in.
45 * @added: the amount of stack added before calling this
47 * After this is called, the following registers contain:
49 * %rdi - holds the address that called the trampoline
50 * %rsi - holds the parent function (traced function's return address)
51 * %rdx - holds the original %rbp
53 .macro save_mcount_regs added=0
55 #ifdef CONFIG_FRAME_POINTER
56 /* Save the original rbp */
60 * Stack traces will stop at the ftrace trampoline if the frame pointer
61 * is not set up properly. If fentry is used, we need to save a frame
62 * pointer for the parent as well as the function traced, because the
63 * fentry is called before the stack frame is set up, where as mcount
64 * is called afterward.
67 /* Save the parent pointer (skip orig rbp and our return address) */
68 pushq \added+8*2(%rsp)
71 /* Save the return address (now skip orig rbp, rbp and parent) */
72 pushq \added+8*3(%rsp)
75 #endif /* CONFIG_FRAME_POINTER */
78 * We add enough stack to save all regs.
80 subq $(MCOUNT_REG_SIZE - MCOUNT_FRAME_SIZE), %rsp
88 movq $0, ORIG_RAX(%rsp)
90 * Save the original RBP. Even though the mcount ABI does not
91 * require this, it helps out callers.
93 #ifdef CONFIG_FRAME_POINTER
94 movq MCOUNT_REG_SIZE-8(%rsp), %rdx
100 /* Copy the parent address into %rsi (second parameter) */
101 movq MCOUNT_REG_SIZE+8+\added(%rsp), %rsi
103 /* Move RIP to its proper location */
104 movq MCOUNT_REG_SIZE+\added(%rsp), %rdi
108 * Now %rdi (the first parameter) has the return address of
109 * where ftrace_call returns. But the callbacks expect the
110 * address of the call itself.
112 subq $MCOUNT_INSN_SIZE, %rdi
115 .macro restore_mcount_regs save=0
117 /* ftrace_regs_caller or frame pointers require this */
128 addq $MCOUNT_REG_SIZE-\save, %rsp
132 #ifdef CONFIG_DYNAMIC_FTRACE
134 SYM_FUNC_START(__fentry__)
136 SYM_FUNC_END(__fentry__)
137 EXPORT_SYMBOL(__fentry__)
139 SYM_FUNC_START(ftrace_caller)
140 /* save_mcount_regs fills in first two parameters */
143 SYM_INNER_LABEL(ftrace_caller_op_ptr, SYM_L_GLOBAL)
144 /* Load the ftrace_ops into the 3rd parameter */
145 movq function_trace_op(%rip), %rdx
147 /* regs go into 4th parameter (but make it NULL) */
150 SYM_INNER_LABEL(ftrace_call, SYM_L_GLOBAL)
156 * The code up to this label is copied into trampolines so
157 * think twice before adding any new code or changing the
160 SYM_INNER_LABEL(ftrace_epilogue, SYM_L_GLOBAL)
162 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
163 SYM_INNER_LABEL(ftrace_graph_call, SYM_L_GLOBAL)
168 * This is weak to keep gas from relaxing the jumps.
169 * It is also used to copy the retq for trampolines.
171 SYM_INNER_LABEL_ALIGN(ftrace_stub, SYM_L_WEAK)
173 SYM_FUNC_END(ftrace_caller)
175 SYM_FUNC_START(ftrace_regs_caller)
176 /* Save the current flags before any operations that can change them */
181 /* added 8 bytes to save flags */
183 /* save_mcount_regs fills in first two parameters */
185 SYM_INNER_LABEL(ftrace_regs_caller_op_ptr, SYM_L_GLOBAL)
186 /* Load the ftrace_ops into the 3rd parameter */
187 movq function_trace_op(%rip), %rdx
189 /* Save the rest of pt_regs */
197 /* Copy saved flags */
198 movq MCOUNT_REG_SIZE(%rsp), %rcx
199 movq %rcx, EFLAGS(%rsp)
200 /* Kernel segments */
201 movq $__KERNEL_DS, %rcx
203 movq $__KERNEL_CS, %rcx
205 /* Stack - skipping return address and flags */
206 leaq MCOUNT_REG_SIZE+8*2(%rsp), %rcx
211 /* regs go into 4th parameter */
214 SYM_INNER_LABEL(ftrace_regs_call, SYM_L_GLOBAL)
217 /* Copy flags back to SS, to restore them */
218 movq EFLAGS(%rsp), %rax
219 movq %rax, MCOUNT_REG_SIZE(%rsp)
221 /* Handlers can change the RIP */
223 movq %rax, MCOUNT_REG_SIZE+8(%rsp)
225 /* restore the rest of pt_regs */
233 movq ORIG_RAX(%rsp), %rax
234 movq %rax, MCOUNT_REG_SIZE-8(%rsp)
236 /* If ORIG_RAX is anything but zero, make this a call to that */
237 movq ORIG_RAX(%rsp), %rax
241 /* Swap the flags with orig_rax */
242 movq MCOUNT_REG_SIZE(%rsp), %rdi
243 movq %rdi, MCOUNT_REG_SIZE-8(%rsp)
244 movq %rax, MCOUNT_REG_SIZE(%rsp)
246 restore_mcount_regs 8
250 1: restore_mcount_regs
255 * The stack layout is nondetermistic here, depending on which path was
256 * taken. This confuses objtool and ORC, rightfully so. For now,
257 * pretend the stack always looks like the non-direct case.
265 * As this jmp to ftrace_epilogue can be a short jump
266 * it must not be copied into the trampoline.
267 * The trampoline will add the code to jump
270 SYM_INNER_LABEL(ftrace_regs_caller_end, SYM_L_GLOBAL)
274 SYM_FUNC_END(ftrace_regs_caller)
277 #else /* ! CONFIG_DYNAMIC_FTRACE */
279 SYM_FUNC_START(__fentry__)
280 cmpq $ftrace_stub, ftrace_trace_function
284 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
285 cmpq $ftrace_stub, ftrace_graph_return
286 jnz ftrace_graph_caller
288 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
289 jnz ftrace_graph_caller
292 SYM_INNER_LABEL(ftrace_stub, SYM_L_GLOBAL)
296 /* save_mcount_regs fills in first two parameters */
300 * When DYNAMIC_FTRACE is not defined, ARCH_SUPPORTS_FTRACE_OPS is not
301 * set (see include/asm/ftrace.h and include/linux/ftrace.h). Only the
302 * ip and parent ip are used and the list function is called when
303 * function tracing is enabled.
305 movq ftrace_trace_function, %r8
310 SYM_FUNC_END(__fentry__)
311 EXPORT_SYMBOL(__fentry__)
312 #endif /* CONFIG_DYNAMIC_FTRACE */
314 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
315 SYM_FUNC_START(ftrace_graph_caller)
316 /* Saves rbp into %rdx and fills first parameter */
319 leaq MCOUNT_REG_SIZE+8(%rsp), %rsi
320 movq $0, %rdx /* No framepointers needed */
321 call prepare_ftrace_return
326 SYM_FUNC_END(ftrace_graph_caller)
328 SYM_CODE_START(return_to_handler)
332 /* Save the return values */
337 call ftrace_return_to_handler
344 SYM_CODE_END(return_to_handler)