1
2
3
4
5
6 #include <linux/linkage.h>
7 #include <asm/page_types.h>
8 #include <asm/segment.h>
9 #include <asm/export.h>
10 #include <asm/ftrace.h>
11 #include <asm/nospec-branch.h>
12 #include <asm/frame.h>
13 #include <asm/asm-offsets.h>
14
15 # define function_hook __fentry__
16 EXPORT_SYMBOL(__fentry__)
17
18 #ifdef CONFIG_FRAME_POINTER
19 # define MCOUNT_FRAME 1
20 #else
21 # define MCOUNT_FRAME 0
22 #endif
23
24 ENTRY(function_hook)
25 ret
26 END(function_hook)
27
28 ENTRY(ftrace_caller)
29
30 #ifdef CONFIG_FRAME_POINTER
31
32
33
34
35
36
37 pushl 4(%esp)
38 pushl %ebp
39 movl %esp, %ebp
40 pushl 2*4(%esp)
41
42
43 pushl %ebp
44 movl %esp, %ebp
45 #endif
46 pushl %eax
47 pushl %ecx
48 pushl %edx
49 pushl $0
50
51 #ifdef CONFIG_FRAME_POINTER
52
53 movl 4*4(%esp), %edx
54 #else
55
56 lea 4*4(%esp), %edx
57 #endif
58
59 movl (MCOUNT_FRAME+4)*4(%esp), %eax
60
61 movl 4(%edx), %edx
62
63 movl function_trace_op, %ecx
64 subl $MCOUNT_INSN_SIZE, %eax
65
66 .globl ftrace_call
67 ftrace_call:
68 call ftrace_stub
69
70 addl $4, %esp
71 popl %edx
72 popl %ecx
73 popl %eax
74 #ifdef CONFIG_FRAME_POINTER
75 popl %ebp
76 addl $4,%esp
77 popl %ebp
78 addl $4, %esp
79 #endif
80 .Lftrace_ret:
81 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
82 .globl ftrace_graph_call
83 ftrace_graph_call:
84 jmp ftrace_stub
85 #endif
86
87
88 WEAK(ftrace_stub)
89 ret
90 END(ftrace_caller)
91
92 ENTRY(ftrace_regs_caller)
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111 subl $3*4, %esp # RET-IP + 3 gaps
112 pushl %ss # ss
113 pushl %esp # points at ss
114 addl $5*4, (%esp) # make it point at <previous context>
115 pushfl # flags
116 pushl $__KERNEL_CS # cs
117 pushl 7*4(%esp) # ip <- RET-IP
118 pushl $0 # orig_eax
119
120 pushl %gs
121 pushl %fs
122 pushl %es
123 pushl %ds
124
125 pushl %eax
126 pushl %ebp
127 pushl %edi
128 pushl %esi
129 pushl %edx
130 pushl %ecx
131 pushl %ebx
132
133 ENCODE_FRAME_POINTER
134
135 movl PT_EIP(%esp), %eax # 1st argument: IP
136 subl $MCOUNT_INSN_SIZE, %eax
137 movl 21*4(%esp), %edx # 2nd argument: parent ip
138 movl function_trace_op, %ecx # 3rd argument: ftrace_pos
139 pushl %esp # 4th argument: pt_regs
140
141 GLOBAL(ftrace_regs_call)
142 call ftrace_stub
143
144 addl $4, %esp # skip 4th argument
145
146
147 movl PT_OLDESP(%esp), %eax
148 movl PT_EIP(%esp), %ecx
149 movl %ecx, -4(%eax)
150
151
152 movl PT_EAX(%esp), %ecx
153 movl %ecx, -8(%eax)
154
155 popl %ebx
156 popl %ecx
157 popl %edx
158 popl %esi
159 popl %edi
160 popl %ebp
161
162 lea -8(%eax), %esp
163 popl %eax
164
165 jmp .Lftrace_ret
166
167 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
168 ENTRY(ftrace_graph_caller)
169 pushl %eax
170 pushl %ecx
171 pushl %edx
172 movl 3*4(%esp), %eax
173
174 lea 4*4(%esp), %edx
175 movl $0, %ecx
176 subl $MCOUNT_INSN_SIZE, %eax
177 call prepare_ftrace_return
178 popl %edx
179 popl %ecx
180 popl %eax
181 ret
182 END(ftrace_graph_caller)
183
184 .globl return_to_handler
185 return_to_handler:
186 pushl %eax
187 pushl %edx
188 movl $0, %eax
189 call ftrace_return_to_handler
190 movl %eax, %ecx
191 popl %edx
192 popl %eax
193 JMP_NOSPEC %ecx
194 #endif