2 * arm64 callchain support
4 * Copyright (C) 2015 ARM Limited
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/perf_event.h>
19 #include <linux/uaccess.h>
21 #include <asm/pointer_auth.h>
22 #include <asm/stacktrace.h>
25 struct frame_tail __user
*fp
;
27 } __attribute__((packed
));
30 * Get the return address for a single stackframe and return a pointer to the
33 static struct frame_tail __user
*
34 user_backtrace(struct frame_tail __user
*tail
,
35 struct perf_callchain_entry_ctx
*entry
)
37 struct frame_tail buftail
;
41 /* Also check accessibility of one struct frame_tail beyond */
42 if (!access_ok(tail
, sizeof(buftail
)))
46 err
= __copy_from_user_inatomic(&buftail
, tail
, sizeof(buftail
));
52 lr
= ptrauth_strip_insn_pac(buftail
.lr
);
54 perf_callchain_store(entry
, lr
);
57 * Frame pointers should strictly progress back up the stack
58 * (towards higher addresses).
60 if (tail
>= buftail
.fp
)
68 * The registers we're interested in are at the end of the variable
69 * length saved register structure. The fp points at the end of this
70 * structure so the address of this struct is:
71 * (struct compat_frame_tail *)(xxx->fp)-1
73 * This code has been adapted from the ARM OProfile support.
75 struct compat_frame_tail
{
76 compat_uptr_t fp
; /* a (struct compat_frame_tail *) in compat mode */
79 } __attribute__((packed
));
81 static struct compat_frame_tail __user
*
82 compat_user_backtrace(struct compat_frame_tail __user
*tail
,
83 struct perf_callchain_entry_ctx
*entry
)
85 struct compat_frame_tail buftail
;
88 /* Also check accessibility of one struct frame_tail beyond */
89 if (!access_ok(tail
, sizeof(buftail
)))
93 err
= __copy_from_user_inatomic(&buftail
, tail
, sizeof(buftail
));
99 perf_callchain_store(entry
, buftail
.lr
);
102 * Frame pointers should strictly progress back up the stack
103 * (towards higher addresses).
105 if (tail
+ 1 >= (struct compat_frame_tail __user
*)
106 compat_ptr(buftail
.fp
))
109 return (struct compat_frame_tail __user
*)compat_ptr(buftail
.fp
) - 1;
111 #endif /* CONFIG_COMPAT */
113 void perf_callchain_user(struct perf_callchain_entry_ctx
*entry
,
114 struct pt_regs
*regs
)
116 if (perf_guest_cbs
&& perf_guest_cbs
->is_in_guest()) {
117 /* We don't support guest os callchain now */
121 perf_callchain_store(entry
, regs
->pc
);
123 if (!compat_user_mode(regs
)) {
125 struct frame_tail __user
*tail
;
127 tail
= (struct frame_tail __user
*)regs
->regs
[29];
129 while (entry
->nr
< entry
->max_stack
&&
130 tail
&& !((unsigned long)tail
& 0xf))
131 tail
= user_backtrace(tail
, entry
);
134 /* AARCH32 compat mode */
135 struct compat_frame_tail __user
*tail
;
137 tail
= (struct compat_frame_tail __user
*)regs
->compat_fp
- 1;
139 while ((entry
->nr
< entry
->max_stack
) &&
140 tail
&& !((unsigned long)tail
& 0x3))
141 tail
= compat_user_backtrace(tail
, entry
);
147 * Gets called by walk_stackframe() for every stackframe. This will be called
148 * whist unwinding the stackframe and is like a subroutine return so we use
151 static int callchain_trace(struct stackframe
*frame
, void *data
)
153 struct perf_callchain_entry_ctx
*entry
= data
;
154 perf_callchain_store(entry
, frame
->pc
);
158 void perf_callchain_kernel(struct perf_callchain_entry_ctx
*entry
,
159 struct pt_regs
*regs
)
161 struct stackframe frame
;
163 if (perf_guest_cbs
&& perf_guest_cbs
->is_in_guest()) {
164 /* We don't support guest os callchain now */
168 frame
.fp
= regs
->regs
[29];
170 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
174 walk_stackframe(current
, &frame
, callchain_trace
, entry
);
177 unsigned long perf_instruction_pointer(struct pt_regs
*regs
)
179 if (perf_guest_cbs
&& perf_guest_cbs
->is_in_guest())
180 return perf_guest_cbs
->get_guest_ip();
182 return instruction_pointer(regs
);
185 unsigned long perf_misc_flags(struct pt_regs
*regs
)
189 if (perf_guest_cbs
&& perf_guest_cbs
->is_in_guest()) {
190 if (perf_guest_cbs
->is_user_mode())
191 misc
|= PERF_RECORD_MISC_GUEST_USER
;
193 misc
|= PERF_RECORD_MISC_GUEST_KERNEL
;
196 misc
|= PERF_RECORD_MISC_USER
;
198 misc
|= PERF_RECORD_MISC_KERNEL
;