blob: 943a06291587b064c3649569dd85b356805a7fab [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"
Arnaldo Carvalho de Melo9a3993d2017-04-18 11:33:48 -030015#include "util.h"
Jiri Olsa5ea84152014-02-19 16:52:57 +010016
17static char *debuginfo_path;
18
19static const Dwfl_Callbacks offline_callbacks = {
20 .find_debuginfo = dwfl_standard_find_debuginfo,
21 .debuginfo_path = &debuginfo_path,
22 .section_address = dwfl_offline_section_address,
23};
24
25static int __report_module(struct addr_location *al, u64 ip,
26 struct unwind_info *ui)
27{
28 Dwfl_Module *mod;
29 struct dso *dso = NULL;
30
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030031 thread__find_addr_location(ui->thread,
Jiri Olsa5ea84152014-02-19 16:52:57 +010032 PERF_RECORD_MISC_USER,
33 MAP__FUNCTION, ip, al);
34
35 if (al->map)
36 dso = al->map->dso;
37
38 if (!dso)
39 return 0;
40
41 mod = dwfl_addrmodule(ui->dwfl, ip);
42 if (!mod)
43 mod = dwfl_report_elf(ui->dwfl, dso->short_name,
44 dso->long_name, -1, al->map->start,
45 false);
46
47 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1;
48}
49
50static int report_module(u64 ip, struct unwind_info *ui)
51{
52 struct addr_location al;
53
54 return __report_module(&al, ip, ui);
55}
56
Jiri Olsa8bd508b2015-11-19 14:01:19 +010057/*
58 * Store all entries within entries array,
59 * we will process it after we finish unwind.
60 */
Jiri Olsa5ea84152014-02-19 16:52:57 +010061static int entry(u64 ip, struct unwind_info *ui)
62
63{
Jiri Olsa8bd508b2015-11-19 14:01:19 +010064 struct unwind_entry *e = &ui->entries[ui->idx++];
Jiri Olsa5ea84152014-02-19 16:52:57 +010065 struct addr_location al;
66
67 if (__report_module(&al, ip, ui))
68 return -1;
69
Milian Wolff67540752016-08-16 17:39:26 +020070 e->ip = al.addr;
Jiri Olsa8bd508b2015-11-19 14:01:19 +010071 e->map = al.map;
72 e->sym = al.sym;
Jiri Olsa5ea84152014-02-19 16:52:57 +010073
74 pr_debug("unwind: %s:ip = 0x%" PRIx64 " (0x%" PRIx64 ")\n",
75 al.sym ? al.sym->name : "''",
76 ip,
77 al.map ? al.map->map_ip(al.map, ip) : (u64) 0);
Jiri Olsa8bd508b2015-11-19 14:01:19 +010078 return 0;
Jiri Olsa5ea84152014-02-19 16:52:57 +010079}
80
81static pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp)
82{
83 /* We want only single thread to be processed. */
84 if (*thread_argp != NULL)
85 return 0;
86
87 *thread_argp = arg;
88 return dwfl_pid(dwfl);
89}
90
91static int access_dso_mem(struct unwind_info *ui, Dwarf_Addr addr,
92 Dwarf_Word *data)
93{
94 struct addr_location al;
95 ssize_t size;
96
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030097 thread__find_addr_map(ui->thread, PERF_RECORD_MISC_USER,
Jiri Olsa5ea84152014-02-19 16:52:57 +010098 MAP__FUNCTION, addr, &al);
99 if (!al.map) {
Jiri Olsa0ba98142016-01-07 10:14:02 +0100100 /*
101 * We've seen cases (softice) where DWARF unwinder went
102 * through non executable mmaps, which we need to lookup
103 * in MAP__VARIABLE tree.
104 */
105 thread__find_addr_map(ui->thread, PERF_RECORD_MISC_USER,
106 MAP__VARIABLE, addr, &al);
107 }
108
109 if (!al.map) {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100110 pr_debug("unwind: no map for %lx\n", (unsigned long)addr);
111 return -1;
112 }
113
114 if (!al.map->dso)
115 return -1;
116
117 size = dso__data_read_addr(al.map->dso, al.map, ui->machine,
118 addr, (u8 *) data, sizeof(*data));
119
120 return !(size == sizeof(*data));
121}
122
123static bool memory_read(Dwfl *dwfl __maybe_unused, Dwarf_Addr addr, Dwarf_Word *result,
124 void *arg)
125{
126 struct unwind_info *ui = arg;
127 struct stack_dump *stack = &ui->sample->user_stack;
128 u64 start, end;
129 int offset;
130 int ret;
131
132 ret = perf_reg_value(&start, &ui->sample->user_regs, PERF_REG_SP);
133 if (ret)
134 return false;
135
136 end = start + stack->size;
137
138 /* Check overflow. */
139 if (addr + sizeof(Dwarf_Word) < addr)
140 return false;
141
142 if (addr < start || addr + sizeof(Dwarf_Word) > end) {
143 ret = access_dso_mem(ui, addr, result);
144 if (ret) {
145 pr_debug("unwind: access_mem 0x%" PRIx64 " not inside range"
146 " 0x%" PRIx64 "-0x%" PRIx64 "\n",
147 addr, start, end);
148 return false;
149 }
150 return true;
151 }
152
153 offset = addr - start;
154 *result = *(Dwarf_Word *)&stack->data[offset];
155 pr_debug("unwind: access_mem addr 0x%" PRIx64 ", val %lx, offset %d\n",
156 addr, (unsigned long)*result, offset);
157 return true;
158}
159
160static const Dwfl_Thread_Callbacks callbacks = {
161 .next_thread = next_thread,
162 .memory_read = memory_read,
163 .set_initial_registers = libdw__arch_set_initial_registers,
164};
165
166static int
167frame_callback(Dwfl_Frame *state, void *arg)
168{
169 struct unwind_info *ui = arg;
170 Dwarf_Addr pc;
Milian Wolff1982ad42017-05-24 15:21:25 +0900171 bool isactivation;
Jiri Olsa5ea84152014-02-19 16:52:57 +0100172
Milian Wolff1982ad42017-05-24 15:21:25 +0900173 if (!dwfl_frame_pc(state, &pc, &isactivation)) {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100174 pr_err("%s", dwfl_errmsg(-1));
175 return DWARF_CB_ABORT;
176 }
177
Milian Wolff1982ad42017-05-24 15:21:25 +0900178 if (!isactivation)
179 --pc;
180
Jiri Olsa5ea84152014-02-19 16:52:57 +0100181 return entry(pc, ui) || !(--ui->max_stack) ?
182 DWARF_CB_ABORT : DWARF_CB_OK;
183}
184
185int unwind__get_entries(unwind_entry_cb_t cb, void *arg,
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -0300186 struct thread *thread,
Jiri Olsa5ea84152014-02-19 16:52:57 +0100187 struct perf_sample *data,
188 int max_stack)
189{
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100190 struct unwind_info *ui, ui_buf = {
Jiri Olsa5ea84152014-02-19 16:52:57 +0100191 .sample = data,
192 .thread = thread,
Arnaldo Carvalho de Melodd8c17a2014-10-23 16:42:19 -0300193 .machine = thread->mg->machine,
Jiri Olsa5ea84152014-02-19 16:52:57 +0100194 .cb = cb,
195 .arg = arg,
196 .max_stack = max_stack,
197 };
198 Dwarf_Word ip;
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100199 int err = -EINVAL, i;
Jiri Olsa5ea84152014-02-19 16:52:57 +0100200
201 if (!data->user_regs.regs)
202 return -EINVAL;
203
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100204 ui = zalloc(sizeof(ui_buf) + sizeof(ui_buf.entries[0]) * max_stack);
205 if (!ui)
206 return -ENOMEM;
207
208 *ui = ui_buf;
209
210 ui->dwfl = dwfl_begin(&offline_callbacks);
211 if (!ui->dwfl)
Jiri Olsa5ea84152014-02-19 16:52:57 +0100212 goto out;
213
214 err = perf_reg_value(&ip, &data->user_regs, PERF_REG_IP);
215 if (err)
216 goto out;
217
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100218 err = report_module(ip, ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100219 if (err)
220 goto out;
221
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100222 if (!dwfl_attach_state(ui->dwfl, EM_NONE, thread->tid, &callbacks, ui))
Jiri Olsa5ea84152014-02-19 16:52:57 +0100223 goto out;
224
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100225 err = dwfl_getthread_frames(ui->dwfl, thread->tid, frame_callback, ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100226
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100227 if (err && !ui->max_stack)
Jiri Olsa5ea84152014-02-19 16:52:57 +0100228 err = 0;
229
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100230 /*
231 * Display what we got based on the order setup.
232 */
233 for (i = 0; i < ui->idx && !err; i++) {
234 int j = i;
235
236 if (callchain_param.order == ORDER_CALLER)
237 j = ui->idx - i - 1;
238
239 err = ui->entries[j].ip ? ui->cb(&ui->entries[j], ui->arg) : 0;
240 }
241
Jiri Olsa5ea84152014-02-19 16:52:57 +0100242 out:
243 if (err)
244 pr_debug("unwind: failed with '%s'\n", dwfl_errmsg(-1));
245
Jiri Olsa8bd508b2015-11-19 14:01:19 +0100246 dwfl_end(ui->dwfl);
247 free(ui);
Jiri Olsa5ea84152014-02-19 16:52:57 +0100248 return 0;
249}