blob: ff32ca1d81ffc8d13e2408d3501045a0264b1cb2 [file] [log] [blame]
Jiri Olsa5ea84152014-02-19 16:52:57 +01001#include <linux/compiler.h>
2#include <elfutils/libdw.h>
3#include <elfutils/libdwfl.h>
4#include <inttypes.h>
5#include <errno.h>
Jiri Olsa84f5d362014-07-14 23:46:48 +02006#include "debug.h"
Jiri Olsa5ea84152014-02-19 16:52:57 +01007#include "unwind.h"
8#include "unwind-libdw.h"
9#include "machine.h"
10#include "thread.h"
Borislav Petkovd944c4e2014-04-25 21:31:02 +020011#include <linux/types.h>
Jiri Olsa5ea84152014-02-19 16:52:57 +010012#include "event.h"
13#include "perf_regs.h"
Jiri Olsa8bd508b2015-11-19 14:01:19 +010014#include "callchain.h"
Jiri Olsa5ea84152014-02-19 16:52:57 +010015
16static char *debuginfo_path;
17
18static const Dwfl_Callbacks offline_callbacks = {
19 .find_debuginfo = dwfl_standard_find_debuginfo,
20 .debuginfo_path = &debuginfo_path,
21 .section_address = dwfl_offline_section_address,
22};
23
24static int __report_module(struct addr_location *al, u64 ip,
25 struct unwind_info *ui)
26{
27 Dwfl_Module *mod;
28 struct dso *dso = NULL;
29
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030030 thread__find_addr_location(ui->thread,
Jiri Olsa5ea84152014-02-19 16:52:57 +010031 PERF_RECORD_MISC_USER,
32 MAP__FUNCTION, ip, al);
33
34 if (al->map)
35 dso = al->map->dso;
36
37 if (!dso)
38 return 0;
39
40 mod = dwfl_addrmodule(ui->dwfl, ip);
Milian Wolffaee0f562017-06-02 16:37:52 +020041 if (mod) {
42 Dwarf_Addr s;
43
44 dwfl_module_info(mod, NULL, &s, NULL, NULL, NULL, NULL, NULL);
Milian Wolffa9c87582018-10-29 15:16:44 +010045 if (s != al->map->start - al->map->pgoff)
Milian Wolffaee0f562017-06-02 16:37:52 +020046 mod = 0;
47 }
48
Jiri Olsa5ea84152014-02-19 16:52:57 +010049 if (!mod)
50 mod = dwfl_report_elf(ui->dwfl, dso->short_name,
Milian Wolffa9c87582018-10-29 15:16:44 +010051 (dso->symsrc_filename ? dso->symsrc_filename : dso->long_name), -1, al->map->start - al->map->pgoff,
Jiri Olsa5ea84152014-02-19 16:52:57 +010052 false);
53
54 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1;
55}
56
57static int report_module(u64 ip, struct unwind_info *ui)
58{
59 struct addr_location al;
60
61 return __report_module(&al, ip, ui);
62}
63
Jiri Olsa8bd508b2015-11-19 14:01:19 +010064/*
65 * Store all entries within entries array,
66 * we will process it after we finish unwind.
67 */
Jiri Olsa5ea84152014-02-19 16:52:57 +010068static int entry(u64 ip, struct unwind_info *ui)
69
70{
Jiri Olsa8bd508b2015-11-19 14:01:19 +010071 struct unwind_entry *e = &ui->entries[ui->idx++];
Jiri Olsa5ea84152014-02-19 16:52:57 +010072 struct addr_location al;
73
74 if (__report_module(&al, ip, ui))
75 return -1;
76
Milian Wolff67540752016-08-16 17:39:26 +020077 e->ip = al.addr;
Jiri Olsa8bd508b2015-11-19 14:01:19 +010078 e->map = al.map;
79 e->sym = al.sym;
Jiri Olsa5ea84152014-02-19 16:52:57 +010080
81 pr_debug("unwind: %s:ip = 0x%" PRIx64 " (0x%" PRIx64 ")\n",
82 al.sym ? al.sym->name : "''",
83 ip,
84 al.map ? al.map->map_ip(al.map, ip) : (u64) 0);
Jiri Olsa8bd508b2015-11-19 14:01:19 +010085 return 0;
Jiri Olsa5ea84152014-02-19 16:52:57 +010086}
87
88static pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp)
89{
90 /* We want only single thread to be processed. */
91 if (*thread_argp != NULL)
92 return 0;
93
94 *thread_argp = arg;
95 return dwfl_pid(dwfl);
96}
97
98static int access_dso_mem(struct unwind_info *ui, Dwarf_Addr addr,
99 Dwarf_Word *data)
100{
101 struct addr_location al;
102 ssize_t size;
103
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300104 thread__find_addr_map(ui->thread, PERF_RECORD_MISC_USER,
Jiri Olsa5ea84152014-02-19 16:52:57 +0100105 MAP__FUNCTION, addr, &al);
106 if (!al.map) {
Jiri Olsa0ba98142016-01-07 10:14:02 +0100107 /*
108 * We've seen cases (softice) where DWARF unwinder went
109 * through non executable mmaps, which we need to lookup
110 * in MAP__VARIABLE tree.
111 */
112 thread__find_addr_map(ui->thread, PERF_RECORD_MISC_USER,
113 MAP__VARIABLE, addr, &al);
114 }
115
116 if (!al.map) {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100117 pr_debug("unwind: no map for %lx\n", (unsigned long)addr);
118 return -1;
119 }
120
121 if (!al.map->dso)
122 return -1;
123
124 size = dso__data_read_addr(al.map->dso, al.map, ui->machine,
125 addr, (u8 *) data, sizeof(*data));
126
127 return !(size == sizeof(*data));
128}
129
130static bool memory_read(Dwfl *dwfl __maybe_unused, Dwarf_Addr addr, Dwarf_Word *result,
131 void *arg)
132{
133 struct unwind_info *ui = arg;
134 struct stack_dump *stack = &ui->sample->user_stack;
135 u64 start, end;
136 int offset;
137 int ret;
138
139 ret = perf_reg_value(&start, &ui->sample->user_regs, PERF_REG_SP);
140 if (ret)
141 return false;
142
143 end = start + stack->size;
144
145 /* Check overflow. */
146 if (addr + sizeof(Dwarf_Word) < addr)
147 return false;
148
149 if (addr < start || addr + sizeof(Dwarf_Word) > end) {
150 ret = access_dso_mem(ui, addr, result);
151 if (ret) {
152 pr_debug("unwind: access_mem 0x%" PRIx64 " not inside range"
153 " 0x%" PRIx64 "-0x%" PRIx64 "\n",
154 addr, start, end);
155 return false;
156 }
157 return true;
158 }
159
160 offset = addr - start;
161 *result = *(Dwarf_Word *)&stack->data[offset];
162 pr_debug("unwind: access_mem addr 0x%" PRIx64 ", val %lx, offset %d\n",
163 addr, (unsigned long)*result, offset);
164 return true;
165}
166
167static const Dwfl_Thread_Callbacks callbacks = {
168 .next_thread = next_thread,
169 .memory_read = memory_read,
170 .set_initial_registers = libdw__arch_set_initial_registers,
171};
172
173static int
174frame_callback(Dwfl_Frame *state, void *arg)
175{
176 struct unwind_info *ui = arg;
177 Dwarf_Addr pc;
Milian Wolff695d3a32017-05-24 15:21:25 +0900178 bool isactivation;
Jiri Olsa5ea84152014-02-19 16:52:57 +0100179
Milian Wolff695d3a32017-05-24 15:21:25 +0900180 if (!dwfl_frame_pc(state, &pc, &isactivation)) {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100181 pr_err("%s", dwfl_errmsg(-1));
182 return DWARF_CB_ABORT;
183 }
184
Milian Wolff695d3a32017-05-24 15:21:25 +0900185 if (!isactivation)
186 --pc;
187
Jiri Olsa5ea84152014-02-19 16:52:57 +0100188 return entry(pc, ui) || !(--ui->max_stack) ?
189 DWARF_CB_ABORT : DWARF_CB_OK;
190}
191
192int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -0300193 struct thread *thread,
Jiri Olsa5ea84152014-02-19 16:52:57 +0100194 struct perf_sample *data,
195 int max_stack)
196{
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100197 struct unwind_info *ui, ui_buf = {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100198 .sample = data,
199 .thread = thread,
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -0300200 .machine = thread->mg->machine,
Jiri Olsa5ea84152014-02-19 16:52:57 +0100201 .cb = cb,
202 .arg = arg,
203 .max_stack = max_stack,
204 };
205 Dwarf_Word ip;
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100206 int err = -EINVAL, i;
Jiri Olsa5ea84152014-02-19 16:52:57 +0100207
208 if (!data->user_regs.regs)
209 return -EINVAL;
210
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100211 ui = zalloc(sizeof(ui_buf) + sizeof(ui_buf.entries[0]) * max_stack);
212 if (!ui)
213 return -ENOMEM;
214
215 *ui = ui_buf;
216
217 ui->dwfl = dwfl_begin(&offline_callbacks);
218 if (!ui->dwfl)
Jiri Olsa5ea84152014-02-19 16:52:57 +0100219 goto out;
220
221 err = perf_reg_value(&ip, &data->user_regs, PERF_REG_IP);
222 if (err)
223 goto out;
224
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100225 err = report_module(ip, ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100226 if (err)
227 goto out;
228
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100229 if (!dwfl_attach_state(ui->dwfl, EM_NONE, thread->tid, &callbacks, ui))
Jiri Olsa5ea84152014-02-19 16:52:57 +0100230 goto out;
231
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100232 err = dwfl_getthread_frames(ui->dwfl, thread->tid, frame_callback, ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100233
Milian Wolff255ace32019-02-15 12:49:28 +0000234 if (err && ui->max_stack != max_stack)
Jiri Olsa5ea84152014-02-19 16:52:57 +0100235 err = 0;
236
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100237 /*
238 * Display what we got based on the order setup.
239 */
240 for (i = 0; i < ui->idx && !err; i++) {
241 int j = i;
242
243 if (callchain_param.order == ORDER_CALLER)
244 j = ui->idx - i - 1;
245
246 err = ui->entries[j].ip ? ui->cb(&ui->entries[j], ui->arg) : 0;
247 }
248
Jiri Olsa5ea84152014-02-19 16:52:57 +0100249 out:
250 if (err)
251 pr_debug("unwind: failed with '%s'\n", dwfl_errmsg(-1));
252
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100253 dwfl_end(ui->dwfl);
254 free(ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100255 return 0;
256}