blob: c04405296e5bc2d08d01ce118f6aa83ab94e5b03 [file] [log] [blame]
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001/*
2 * probe-finder.c : C expression to kprobe event converter
3 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <getopt.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
Ian Munsiecd932c52010-04-20 16:58:32 +100033#include <dwarf-regs.h>
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040034
Masami Hiramatsu124bb832011-02-04 21:52:11 +090035#include <linux/bitops.h>
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040036#include "event.h"
37#include "debug.h"
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040038#include "util.h"
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040039#include "symbol.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040040#include "probe-finder.h"
41
Masami Hiramatsu49849122010-04-12 13:17:15 -040042/* Kprobe tracer basic type is up to u64 */
43#define MAX_BASIC_TYPE_BITS 64
44
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050045/* Line number list operations */
46
47/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040048static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050049{
50 struct line_node *ln;
51 struct list_head *p;
52
53 /* Reverse search, because new line will be the last one */
54 list_for_each_entry_reverse(ln, head, list) {
55 if (ln->line < line) {
56 p = &ln->list;
57 goto found;
58 } else if (ln->line == line) /* Already exist */
Masami Hiramatsue334016f12010-04-12 13:17:49 -040059 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050060 }
61 /* List is empty, or the smallest entry */
62 p = head;
63found:
64 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040065 ln = zalloc(sizeof(struct line_node));
66 if (ln == NULL)
67 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050068 ln->line = line;
69 INIT_LIST_HEAD(&ln->list);
70 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040071 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050072}
73
74/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040075static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050076{
77 struct line_node *ln;
78
79 /* Reverse search, because new line will be the last one */
80 list_for_each_entry(ln, head, list)
81 if (ln->line == line)
82 return 1;
83
84 return 0;
85}
86
87/* Init line number list */
88static void line_list__init(struct list_head *head)
89{
90 INIT_LIST_HEAD(head);
91}
92
93/* Free line number list */
94static void line_list__free(struct list_head *head)
95{
96 struct line_node *ln;
97 while (!list_empty(head)) {
98 ln = list_first_entry(head, struct line_node, list);
99 list_del(&ln->list);
100 free(ln);
101 }
102}
103
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900104/* Dwarf FL wrappers */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900105static char *debuginfo_path; /* Currently dummy */
106
107static const Dwfl_Callbacks offline_callbacks = {
108 .find_debuginfo = dwfl_standard_find_debuginfo,
109 .debuginfo_path = &debuginfo_path,
110
111 .section_address = dwfl_offline_section_address,
112
113 /* We use this table for core files too. */
114 .find_elf = dwfl_build_id_find_elf,
115};
116
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900117/* Get a Dwarf from offline image */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900118static int debuginfo__init_offline_dwarf(struct debuginfo *self,
119 const char *path)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900120{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900121 int fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900122
Masami Hiramatsuff741782011-06-27 16:27:39 +0900123 fd = open(path, O_RDONLY);
124 if (fd < 0)
125 return fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900126
Masami Hiramatsuff741782011-06-27 16:27:39 +0900127 self->dwfl = dwfl_begin(&offline_callbacks);
128 if (!self->dwfl)
129 goto error;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900130
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900131 self->mod = dwfl_report_offline(self->dwfl, "", "", fd);
132 if (!self->mod)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900133 goto error;
134
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900135 self->dbg = dwfl_module_getdwarf(self->mod, &self->bias);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900136 if (!self->dbg)
137 goto error;
138
139 return 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900140error:
Masami Hiramatsuff741782011-06-27 16:27:39 +0900141 if (self->dwfl)
142 dwfl_end(self->dwfl);
143 else
144 close(fd);
145 memset(self, 0, sizeof(*self));
146
147 return -ENOENT;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900148}
149
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900150#if _ELFUTILS_PREREQ(0, 148)
151/* This method is buggy if elfutils is older than 0.148 */
152static int __linux_kernel_find_elf(Dwfl_Module *mod,
153 void **userdata,
154 const char *module_name,
155 Dwarf_Addr base,
156 char **file_name, Elf **elfp)
157{
158 int fd;
159 const char *path = kernel_get_module_path(module_name);
160
161 pr_debug2("Use file %s for %s\n", path, module_name);
162 if (path) {
163 fd = open(path, O_RDONLY);
164 if (fd >= 0) {
165 *file_name = strdup(path);
166 return fd;
167 }
168 }
169 /* If failed, try to call standard method */
170 return dwfl_linux_kernel_find_elf(mod, userdata, module_name, base,
171 file_name, elfp);
172}
173
174static const Dwfl_Callbacks kernel_callbacks = {
175 .find_debuginfo = dwfl_standard_find_debuginfo,
176 .debuginfo_path = &debuginfo_path,
177
178 .find_elf = __linux_kernel_find_elf,
179 .section_address = dwfl_linux_kernel_module_section_address,
180};
181
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900182/* Get a Dwarf from live kernel image */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900183static int debuginfo__init_online_kernel_dwarf(struct debuginfo *self,
184 Dwarf_Addr addr)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900185{
Masami Hiramatsuff741782011-06-27 16:27:39 +0900186 self->dwfl = dwfl_begin(&kernel_callbacks);
187 if (!self->dwfl)
188 return -EINVAL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900189
190 /* Load the kernel dwarves: Don't care the result here */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900191 dwfl_linux_kernel_report_kernel(self->dwfl);
192 dwfl_linux_kernel_report_modules(self->dwfl);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900193
Masami Hiramatsuff741782011-06-27 16:27:39 +0900194 self->dbg = dwfl_addrdwarf(self->dwfl, addr, &self->bias);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900195 /* Here, check whether we could get a real dwarf */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900196 if (!self->dbg) {
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900197 pr_debug("Failed to find kernel dwarf at %lx\n",
198 (unsigned long)addr);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900199 dwfl_end(self->dwfl);
200 memset(self, 0, sizeof(*self));
201 return -ENOENT;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900202 }
Masami Hiramatsuff741782011-06-27 16:27:39 +0900203
204 return 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900205}
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900206#else
207/* With older elfutils, this just support kernel module... */
Masami Hiramatsuff741782011-06-27 16:27:39 +0900208static int debuginfo__init_online_kernel_dwarf(struct debuginfo *self,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300209 Dwarf_Addr addr __maybe_unused)
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900210{
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900211 const char *path = kernel_get_module_path("kernel");
212
213 if (!path) {
214 pr_err("Failed to find vmlinux path\n");
Masami Hiramatsuff741782011-06-27 16:27:39 +0900215 return -ENOENT;
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900216 }
217
218 pr_debug2("Use file %s for debuginfo\n", path);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900219 return debuginfo__init_offline_dwarf(self, path);
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900220}
221#endif
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900222
Masami Hiramatsuff741782011-06-27 16:27:39 +0900223struct debuginfo *debuginfo__new(const char *path)
224{
225 struct debuginfo *self = zalloc(sizeof(struct debuginfo));
226 if (!self)
227 return NULL;
228
229 if (debuginfo__init_offline_dwarf(self, path) < 0) {
230 free(self);
231 self = NULL;
232 }
233
234 return self;
235}
236
237struct debuginfo *debuginfo__new_online_kernel(unsigned long addr)
238{
239 struct debuginfo *self = zalloc(sizeof(struct debuginfo));
240 if (!self)
241 return NULL;
242
243 if (debuginfo__init_online_kernel_dwarf(self, (Dwarf_Addr)addr) < 0) {
244 free(self);
245 self = NULL;
246 }
247
248 return self;
249}
250
251void debuginfo__delete(struct debuginfo *self)
252{
253 if (self) {
254 if (self->dwfl)
255 dwfl_end(self->dwfl);
256 free(self);
257 }
258}
259
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400260/*
261 * Probe finder related functions
262 */
263
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530264static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400265{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530266 struct probe_trace_arg_ref *ref;
267 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400268 if (ref != NULL)
269 ref->offset = offs;
270 return ref;
271}
272
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900273/*
274 * Convert a location into trace_arg.
275 * If tvar == NULL, this just checks variable can be converted.
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900276 * If fentry == true and vr_die is a parameter, do huristic search
277 * for the location fuzzed by function entry mcount.
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900278 */
279static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900280 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900281 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400282{
283 Dwarf_Attribute attr;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900284 Dwarf_Addr tmp = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400285 Dwarf_Op *op;
286 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500287 unsigned int regn;
288 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400289 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400290 const char *regs;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400291 int ret;
292
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900293 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
294 goto static_var;
295
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400296 /* TODO: handle more than 1 exprs */
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900297 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
298 return -EINVAL; /* Broken DIE ? */
299 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
300 ret = dwarf_entrypc(sp_die, &tmp);
301 if (ret || addr != tmp ||
302 dwarf_tag(vr_die) != DW_TAG_formal_parameter ||
303 dwarf_highpc(sp_die, &tmp))
304 return -ENOENT;
305 /*
306 * This is fuzzed by fentry mcount. We try to find the
307 * parameter location at the earliest address.
308 */
309 for (addr += 1; addr <= tmp; addr++) {
310 if (dwarf_getlocation_addr(&attr, addr, &op,
311 &nops, 1) > 0)
312 goto found;
313 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400314 return -ENOENT;
315 }
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900316found:
317 if (nops == 0)
318 /* TODO: Support const_value */
319 return -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400320
321 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900322static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900323 if (!tvar)
324 return 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400325 /* Static variables on memory (not stack), make @varname */
326 ret = strlen(dwarf_diename(vr_die));
327 tvar->value = zalloc(ret + 2);
328 if (tvar->value == NULL)
329 return -ENOMEM;
330 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
331 tvar->ref = alloc_trace_arg_ref((long)offs);
332 if (tvar->ref == NULL)
333 return -ENOMEM;
334 return 0;
335 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400336
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400337 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500338 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900339 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400340 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400341 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500342 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900343 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500344 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400345
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500346 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
347 regn = op->atom - DW_OP_breg0;
348 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400349 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500350 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
351 regn = op->atom - DW_OP_reg0;
352 } else if (op->atom == DW_OP_bregx) {
353 regn = op->number;
354 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400355 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500356 } else if (op->atom == DW_OP_regx) {
357 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400358 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900359 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400360 return -ENOTSUP;
361 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400362
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900363 if (!tvar)
364 return 0;
365
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400366 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400367 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900368 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900369 pr_warning("Mapping for the register number %u "
370 "missing on this architecture.\n", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400371 return -ERANGE;
372 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400373
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400374 tvar->value = strdup(regs);
375 if (tvar->value == NULL)
376 return -ENOMEM;
377
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400378 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400379 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400380 if (tvar->ref == NULL)
381 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400382 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400383 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400384}
385
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900386#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
387
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400388static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530389 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400390 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400391{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530392 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400393 Dwarf_Die type;
394 char buf[16];
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900395 int bsize, boffs, total;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400396 int ret;
397
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400398 /* TODO: check all types */
399 if (cast && strcmp(cast, "string") != 0) {
400 /* Non string type is OK */
401 tvar->type = strdup(cast);
402 return (tvar->type == NULL) ? -ENOMEM : 0;
403 }
404
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900405 bsize = dwarf_bitsize(vr_die);
406 if (bsize > 0) {
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900407 /* This is a bitfield */
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900408 boffs = dwarf_bitoffset(vr_die);
409 total = dwarf_bytesize(vr_die);
410 if (boffs < 0 || total < 0)
411 return -ENOENT;
412 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
413 BYTES_TO_BITS(total));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900414 goto formatted;
415 }
416
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400417 if (die_get_real_type(vr_die, &type) == NULL) {
418 pr_warning("Failed to get a type information of %s.\n",
419 dwarf_diename(vr_die));
420 return -ENOENT;
421 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400422
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400423 pr_debug("%s type is %s.\n",
424 dwarf_diename(vr_die), dwarf_diename(&type));
425
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400426 if (cast && strcmp(cast, "string") == 0) { /* String type */
427 ret = dwarf_tag(&type);
428 if (ret != DW_TAG_pointer_type &&
429 ret != DW_TAG_array_type) {
430 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900431 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400432 dwarf_diename(vr_die), dwarf_diename(&type));
433 return -EINVAL;
434 }
Hyeoncheol Lee7ce28b52012-09-11 16:57:28 +0900435 if (die_get_real_type(&type, &type) == NULL) {
436 pr_warning("Failed to get a type"
437 " information.\n");
438 return -ENOENT;
439 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400440 if (ret == DW_TAG_pointer_type) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400441 while (*ref_ptr)
442 ref_ptr = &(*ref_ptr)->next;
443 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530444 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400445 if (*ref_ptr == NULL) {
446 pr_warning("Out of memory error\n");
447 return -ENOMEM;
448 }
449 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900450 if (!die_compare_name(&type, "char") &&
451 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400452 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900453 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400454 dwarf_diename(vr_die));
455 return -EINVAL;
456 }
457 tvar->type = strdup(cast);
458 return (tvar->type == NULL) ? -ENOMEM : 0;
459 }
460
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900461 ret = dwarf_bytesize(&type);
462 if (ret <= 0)
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900463 /* No size ... try to use default type */
464 return 0;
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900465 ret = BYTES_TO_BITS(ret);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400466
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900467 /* Check the bitwidth */
468 if (ret > MAX_BASIC_TYPE_BITS) {
469 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
470 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
471 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400472 }
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900473 ret = snprintf(buf, 16, "%c%d",
474 die_is_signed_type(&type) ? 's' : 'u', ret);
475
476formatted:
477 if (ret < 0 || ret >= 16) {
478 if (ret >= 16)
479 ret = -E2BIG;
480 pr_warning("Failed to convert variable type: %s\n",
481 strerror(-ret));
482 return ret;
483 }
484 tvar->type = strdup(buf);
485 if (tvar->type == NULL)
486 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400487 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400488}
489
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400490static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400491 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530492 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400493 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400494{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530495 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400496 Dwarf_Die type;
497 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400498 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400499
500 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400501 if (die_get_real_type(vr_die, &type) == NULL) {
502 pr_warning("Failed to get the type of %s.\n", varname);
503 return -ENOENT;
504 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400505 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
506 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400507
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400508 if (field->name[0] == '[' &&
509 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
510 if (field->next)
511 /* Save original type for next field */
512 memcpy(die_mem, &type, sizeof(*die_mem));
513 /* Get the type of this array */
514 if (die_get_real_type(&type, &type) == NULL) {
515 pr_warning("Failed to get the type of %s.\n", varname);
516 return -ENOENT;
517 }
518 pr_debug2("Array real type: (%x)\n",
519 (unsigned)dwarf_dieoffset(&type));
520 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530521 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400522 if (ref == NULL)
523 return -ENOMEM;
524 if (*ref_ptr)
525 (*ref_ptr)->next = ref;
526 else
527 *ref_ptr = ref;
528 }
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900529 ref->offset += dwarf_bytesize(&type) * field->index;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400530 if (!field->next)
531 /* Save vr_die for converting types */
532 memcpy(die_mem, vr_die, sizeof(*die_mem));
533 goto next;
534 } else if (tag == DW_TAG_pointer_type) {
535 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400536 if (!field->ref) {
537 pr_err("Semantic error: %s must be referred by '->'\n",
538 field->name);
539 return -EINVAL;
540 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400541 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400542 if (die_get_real_type(&type, &type) == NULL) {
543 pr_warning("Failed to get the type of %s.\n", varname);
544 return -ENOENT;
545 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400546 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900547 tag = dwarf_tag(&type);
548 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
549 pr_warning("%s is not a data structure nor an union.\n",
550 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400551 return -EINVAL;
552 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400553
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530554 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400555 if (ref == NULL)
556 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400557 if (*ref_ptr)
558 (*ref_ptr)->next = ref;
559 else
560 *ref_ptr = ref;
561 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400562 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900563 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
564 pr_warning("%s is not a data structure nor an union.\n",
565 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400566 return -EINVAL;
567 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400568 if (field->name[0] == '[') {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900569 pr_err("Semantic error: %s is not a pointor"
570 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400571 return -EINVAL;
572 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400573 if (field->ref) {
574 pr_err("Semantic error: %s must be referred by '.'\n",
575 field->name);
576 return -EINVAL;
577 }
578 if (!ref) {
579 pr_warning("Structure on a register is not "
580 "supported yet.\n");
581 return -ENOTSUP;
582 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400583 }
584
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400585 if (die_find_member(&type, field->name, die_mem) == NULL) {
586 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
587 dwarf_diename(&type), field->name);
588 return -EINVAL;
589 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400590
591 /* Get the offset of the field */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900592 if (tag == DW_TAG_union_type) {
593 offs = 0;
594 } else {
595 ret = die_get_data_member_location(die_mem, &offs);
596 if (ret < 0) {
597 pr_warning("Failed to get the offset of %s.\n",
598 field->name);
599 return ret;
600 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400601 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400602 ref->offset += (long)offs;
603
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400604next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400605 /* Converting next field */
606 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400607 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300608 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400609 else
610 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400611}
612
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400613/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400614static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400615{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400616 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400617 int ret;
618
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400619 pr_debug("Converting variable %s into trace event.\n",
620 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500621
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900622 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900623 &pf->sp_die, pf->tvar);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900624 if (ret == -ENOENT)
625 pr_err("Failed to find the location of %s at this address.\n"
626 " Perhaps, it has been optimized out.\n", pf->pvar->var);
627 else if (ret == -ENOTSUP)
628 pr_err("Sorry, we don't support this variable location yet.\n");
629 else if (pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400630 ret = convert_variable_fields(vr_die, pf->pvar->var,
631 pf->pvar->field, &pf->tvar->ref,
632 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400633 vr_die = &die_mem;
634 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400635 if (ret == 0)
636 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500637 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400638 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400639}
640
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900641/* Find a variable in a scope DIE */
642static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400643{
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900644 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400645 char buf[32], *ptr;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900646 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400647
Masami Hiramatsu367e94c2010-08-27 20:38:59 +0900648 if (!is_c_varname(pf->pvar->var)) {
649 /* Copy raw parameters */
650 pf->tvar->value = strdup(pf->pvar->var);
651 if (pf->tvar->value == NULL)
652 return -ENOMEM;
653 if (pf->pvar->type) {
654 pf->tvar->type = strdup(pf->pvar->type);
655 if (pf->tvar->type == NULL)
656 return -ENOMEM;
657 }
658 if (pf->pvar->name) {
659 pf->tvar->name = strdup(pf->pvar->name);
660 if (pf->tvar->name == NULL)
661 return -ENOMEM;
662 } else
663 pf->tvar->name = NULL;
664 return 0;
665 }
666
Masami Hiramatsu48481932010-04-12 13:16:53 -0400667 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400668 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400669 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400670 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
671 if (ret < 0)
672 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400673 ptr = strchr(buf, ':'); /* Change type separator to _ */
674 if (ptr)
675 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400676 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400677 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400678 if (pf->tvar->name == NULL)
679 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400680
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900681 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400682 /* Search child die for local variables and parameters. */
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900683 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
684 /* Search again in global variables */
685 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var, 0, &vr_die))
686 ret = -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400687 }
Masami Hiramatsuf66fedc2011-08-20 14:39:23 +0900688 if (ret >= 0)
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900689 ret = convert_variable(&vr_die, pf);
690
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400691 if (ret < 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400692 pr_warning("Failed to find '%s' in this function.\n",
693 pf->pvar->var);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400694 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400695}
696
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900697/* Convert subprogram DIE to trace point */
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900698static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
699 Dwarf_Addr paddr, bool retprobe,
700 struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400701{
Prashanth Nageshappa26b79522012-02-24 13:11:39 +0530702 Dwarf_Addr eaddr, highaddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900703 GElf_Sym sym;
704 const char *symbol;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500705
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900706 /* Verify the address is correct */
707 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
708 pr_warning("Failed to get entry address of %s\n",
709 dwarf_diename(sp_die));
710 return -ENOENT;
711 }
712 if (dwarf_highpc(sp_die, &highaddr) != 0) {
713 pr_warning("Failed to get end address of %s\n",
714 dwarf_diename(sp_die));
715 return -ENOENT;
716 }
717 if (paddr > highaddr) {
718 pr_warning("Offset specified is greater than size of %s\n",
719 dwarf_diename(sp_die));
720 return -EINVAL;
721 }
722
723 /* Get an appropriate symbol from symtab */
724 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
725 if (!symbol) {
726 pr_warning("Failed to find symbol at 0x%lx\n",
727 (unsigned long)paddr);
728 return -ENOENT;
729 }
730 tp->offset = (unsigned long)(paddr - sym.st_value);
731 tp->symbol = strdup(symbol);
732 if (!tp->symbol)
733 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400734
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900735 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900736 if (retprobe) {
737 if (eaddr != paddr) {
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900738 pr_warning("Return probe must be on the head of"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900739 " a real function.\n");
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900740 return -EINVAL;
741 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900742 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900743 }
744
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900745 return 0;
746}
747
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900748/* Call probe_finder callback with scope DIE */
749static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900750{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900751 Dwarf_Attribute fb_attr;
752 size_t nops;
753 int ret;
754
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900755 if (!sc_die) {
756 pr_err("Caller must pass a scope DIE. Program error.\n");
757 return -EINVAL;
758 }
759
760 /* If not a real subprogram, find a real one */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900761 if (!die_is_func_def(sc_die)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900762 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900763 pr_warning("Failed to find probe point in any "
764 "functions.\n");
765 return -ENOENT;
766 }
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900767 } else
768 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400769
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900770 /* Get the frame base attribute/ops from subprogram */
771 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400772 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400773 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500774 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400775#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400776 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
777 pf->cfi != NULL) {
778 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400779 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
780 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900781 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400782 (uintmax_t)pf->addr);
783 return -ENOENT;
784 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400785#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400786 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500787
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900788 /* Call finder's callback handler */
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900789 ret = pf->callback(sc_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500790
791 /* *pf->fb_ops will be cached in libdw. Don't free it. */
792 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900793
794 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400795}
796
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900797struct find_scope_param {
798 const char *function;
799 const char *file;
800 int line;
801 int diff;
802 Dwarf_Die *die_mem;
803 bool found;
804};
805
806static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
807{
808 struct find_scope_param *fsp = data;
809 const char *file;
810 int lno;
811
812 /* Skip if declared file name does not match */
813 if (fsp->file) {
814 file = dwarf_decl_file(fn_die);
815 if (!file || strcmp(fsp->file, file) != 0)
816 return 0;
817 }
818 /* If the function name is given, that's what user expects */
819 if (fsp->function) {
820 if (die_compare_name(fn_die, fsp->function)) {
821 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
822 fsp->found = true;
823 return 1;
824 }
825 } else {
826 /* With the line number, find the nearest declared DIE */
827 dwarf_decl_line(fn_die, &lno);
828 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
829 /* Keep a candidate and continue */
830 fsp->diff = fsp->line - lno;
831 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
832 fsp->found = true;
833 }
834 }
835 return 0;
836}
837
838/* Find an appropriate scope fits to given conditions */
839static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
840{
841 struct find_scope_param fsp = {
842 .function = pf->pev->point.function,
843 .file = pf->fname,
844 .line = pf->lno,
845 .diff = INT_MAX,
846 .die_mem = die_mem,
847 .found = false,
848 };
849
850 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
851
852 return fsp.found ? die_mem : NULL;
853}
854
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900855static int probe_point_line_walker(const char *fname, int lineno,
856 Dwarf_Addr addr, void *data)
857{
858 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900859 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900860 int ret;
861
862 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
863 return 0;
864
865 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900866 sc_die = find_best_scope(pf, &die_mem);
867 if (!sc_die) {
868 pr_warning("Failed to find scope of probe point.\n");
869 return -ENOENT;
870 }
871
872 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900873
874 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -0300875 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900876}
877
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400878/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400879static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400880{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900881 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400882}
883
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500884/* Find lines which match lazy pattern */
885static int find_lazy_match_lines(struct list_head *head,
886 const char *fname, const char *pat)
887{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100888 FILE *fp;
889 char *line = NULL;
890 size_t line_len;
891 ssize_t len;
892 int count = 0, linenum = 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500893
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100894 fp = fopen(fname, "r");
895 if (!fp) {
896 pr_warning("Failed to open %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300897 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400898 }
899
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100900 while ((len = getline(&line, &line_len, fp)) > 0) {
901
902 if (line[len - 1] == '\n')
903 line[len - 1] = '\0';
904
905 if (strlazymatch(line, pat)) {
906 line_list__add_line(head, linenum);
907 count++;
908 }
909 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400910 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300911
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100912 if (ferror(fp))
913 count = -errno;
914 free(line);
915 fclose(fp);
916
917 if (count == 0)
918 pr_debug("No matched lines found in %s.\n", fname);
919 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500920}
921
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900922static int probe_point_lazy_walker(const char *fname, int lineno,
923 Dwarf_Addr addr, void *data)
924{
925 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900926 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900927 int ret;
928
929 if (!line_list__has_line(&pf->lcache, lineno) ||
930 strtailcmp(fname, pf->fname) != 0)
931 return 0;
932
933 pr_debug("Probe line found: line:%d addr:0x%llx\n",
934 lineno, (unsigned long long)addr);
935 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900936 pf->lno = lineno;
937 sc_die = find_best_scope(pf, &die_mem);
938 if (!sc_die) {
939 pr_warning("Failed to find scope of probe point.\n");
940 return -ENOENT;
941 }
942
943 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900944
945 /*
946 * Continue if no error, because the lazy pattern will match
947 * to other lines
948 */
Ingo Molnar5e814dd2011-03-15 20:51:09 +0100949 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900950}
951
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500952/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400953static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500954{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400955 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500956
957 if (list_empty(&pf->lcache)) {
958 /* Matching lazy line pattern */
959 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400960 pf->pev->point.lazy_line);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100961 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400962 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500963 }
964
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900965 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500966}
967
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500968static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400969{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900970 struct probe_finder *pf = data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400971 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400972 Dwarf_Addr addr;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900973 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400974
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500975 if (pp->lazy_line)
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900976 ret = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500977 else {
978 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400979 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900980 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400981 dwarf_diename(in_die));
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900982 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400983 }
984 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500985 pf->addr += pp->offset;
986 pr_debug("found inline addr: 0x%jx\n",
987 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500988
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900989 ret = call_probe_finder(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500990 }
991
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900992 return ret;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500993}
994
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900995/* Callback parameter with return value for libdw */
996struct dwarf_callback_param {
997 void *data;
998 int retval;
999};
1000
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001001/* Search function from function name */
1002static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
1003{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001004 struct dwarf_callback_param *param = data;
1005 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001006 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001007
1008 /* Check tag and diename */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001009 if (!die_is_func_def(sp_die) ||
1010 !die_compare_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001011 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001012
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001013 /* Check declared file */
1014 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
1015 return DWARF_CB_OK;
1016
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001017 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001018 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001019 dwarf_decl_line(sp_die, &pf->lno);
1020 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001021 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001022 } else if (!dwarf_func_inline(sp_die)) {
1023 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001024 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001025 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001026 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001027 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001028 pr_warning("Failed to get entry address of "
1029 "%s.\n", dwarf_diename(sp_die));
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001030 param->retval = -ENOENT;
1031 return DWARF_CB_ABORT;
1032 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001033 pf->addr += pp->offset;
1034 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001035 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001036 }
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001037 } else
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001038 /* Inlined function: search instances */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001039 param->retval = die_walk_instances(sp_die,
1040 probe_point_inline_cb, (void *)pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001041
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001042 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001043}
1044
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001045static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001046{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001047 struct dwarf_callback_param _param = {.data = (void *)pf,
1048 .retval = 0};
1049 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1050 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001051}
1052
Lin Mingcd25f8b2011-03-25 16:27:48 +08001053struct pubname_callback_param {
1054 char *function;
1055 char *file;
1056 Dwarf_Die *cu_die;
1057 Dwarf_Die *sp_die;
1058 int found;
1059};
1060
1061static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1062{
1063 struct pubname_callback_param *param = data;
1064
1065 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1066 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1067 return DWARF_CB_OK;
1068
1069 if (die_compare_name(param->sp_die, param->function)) {
1070 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1071 return DWARF_CB_OK;
1072
1073 if (param->file &&
1074 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1075 return DWARF_CB_OK;
1076
1077 param->found = 1;
1078 return DWARF_CB_ABORT;
1079 }
1080 }
1081
1082 return DWARF_CB_OK;
1083}
1084
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001085/* Find probe points from debuginfo */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001086static int debuginfo__find_probes(struct debuginfo *self,
1087 struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001088{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001089 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001090 Dwarf_Off off, noff;
1091 size_t cuhl;
1092 Dwarf_Die *diep;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001093 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001094
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001095#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001096 /* Get the call frame information from this dwarf */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001097 pf->cfi = dwarf_getcfi(self->dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001098#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001099
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001100 off = 0;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001101 line_list__init(&pf->lcache);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001102
1103 /* Fastpath: lookup by function name from .debug_pubnames section */
1104 if (pp->function) {
1105 struct pubname_callback_param pubname_param = {
1106 .function = pp->function,
1107 .file = pp->file,
1108 .cu_die = &pf->cu_die,
1109 .sp_die = &pf->sp_die,
Lin Ming2b348a72011-04-29 08:41:57 +00001110 .found = 0,
Lin Mingcd25f8b2011-03-25 16:27:48 +08001111 };
1112 struct dwarf_callback_param probe_param = {
1113 .data = pf,
1114 };
1115
Masami Hiramatsuff741782011-06-27 16:27:39 +09001116 dwarf_getpubnames(self->dbg, pubname_search_cb,
1117 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001118 if (pubname_param.found) {
1119 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1120 if (ret)
1121 goto found;
1122 }
1123 }
1124
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001125 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001126 while (!dwarf_nextcu(self->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001127 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001128 diep = dwarf_offdie(self->dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001129 if (!diep)
1130 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001131
1132 /* Check if target file is included. */
1133 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001134 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001135 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001136 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001137
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001138 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001139 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001140 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001141 else if (pp->lazy_line)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001142 ret = find_probe_point_lazy(NULL, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001143 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001144 pf->lno = pp->line;
1145 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001146 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001147 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001148 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001149 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001150 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001151 }
Lin Mingcd25f8b2011-03-25 16:27:48 +08001152
1153found:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001154 line_list__free(&pf->lcache);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001155
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001156 return ret;
1157}
1158
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001159struct local_vars_finder {
1160 struct probe_finder *pf;
1161 struct perf_probe_arg *args;
1162 int max_args;
1163 int nargs;
1164 int ret;
1165};
1166
1167/* Collect available variables in this scope */
1168static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1169{
1170 struct local_vars_finder *vf = data;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001171 struct probe_finder *pf = vf->pf;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001172 int tag;
1173
1174 tag = dwarf_tag(die_mem);
1175 if (tag == DW_TAG_formal_parameter ||
1176 tag == DW_TAG_variable) {
1177 if (convert_variable_location(die_mem, vf->pf->addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001178 vf->pf->fb_ops, &pf->sp_die,
1179 NULL) == 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001180 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1181 if (vf->args[vf->nargs].var == NULL) {
1182 vf->ret = -ENOMEM;
1183 return DIE_FIND_CB_END;
1184 }
1185 pr_debug(" %s", vf->args[vf->nargs].var);
1186 vf->nargs++;
1187 }
1188 }
1189
1190 if (dwarf_haspc(die_mem, vf->pf->addr))
1191 return DIE_FIND_CB_CONTINUE;
1192 else
1193 return DIE_FIND_CB_SIBLING;
1194}
1195
1196static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1197 struct perf_probe_arg *args)
1198{
1199 Dwarf_Die die_mem;
1200 int i;
1201 int n = 0;
1202 struct local_vars_finder vf = {.pf = pf, .args = args,
1203 .max_args = MAX_PROBE_ARGS, .ret = 0};
1204
1205 for (i = 0; i < pf->pev->nargs; i++) {
1206 /* var never be NULL */
1207 if (strcmp(pf->pev->args[i].var, "$vars") == 0) {
1208 pr_debug("Expanding $vars into:");
1209 vf.nargs = n;
1210 /* Special local variables */
1211 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1212 &die_mem);
1213 pr_debug(" (%d)\n", vf.nargs - n);
1214 if (vf.ret < 0)
1215 return vf.ret;
1216 n = vf.nargs;
1217 } else {
1218 /* Copy normal argument */
1219 args[n] = pf->pev->args[i];
1220 n++;
1221 }
1222 }
1223 return n;
1224}
1225
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001226/* Add a found probe point into trace event list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001227static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001228{
1229 struct trace_event_finder *tf =
1230 container_of(pf, struct trace_event_finder, pf);
1231 struct probe_trace_event *tev;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001232 struct perf_probe_arg *args;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001233 int ret, i;
1234
1235 /* Check number of tevs */
1236 if (tf->ntevs == tf->max_tevs) {
1237 pr_warning("Too many( > %d) probe point found.\n",
1238 tf->max_tevs);
1239 return -ERANGE;
1240 }
1241 tev = &tf->tevs[tf->ntevs++];
1242
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001243 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001244 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001245 pf->pev->point.retprobe, &tev->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001246 if (ret < 0)
1247 return ret;
1248
1249 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1250 tev->point.offset);
1251
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001252 /* Expand special probe argument if exist */
1253 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
1254 if (args == NULL)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001255 return -ENOMEM;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001256
1257 ret = expand_probe_args(sc_die, pf, args);
1258 if (ret < 0)
1259 goto end;
1260
1261 tev->nargs = ret;
1262 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1263 if (tev->args == NULL) {
1264 ret = -ENOMEM;
1265 goto end;
1266 }
1267
1268 /* Find each argument */
1269 for (i = 0; i < tev->nargs; i++) {
1270 pf->pvar = &args[i];
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001271 pf->tvar = &tev->args[i];
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001272 /* Variable should be found from scope DIE */
1273 ret = find_variable(sc_die, pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001274 if (ret != 0)
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001275 break;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001276 }
1277
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001278end:
1279 free(args);
1280 return ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001281}
1282
1283/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001284int debuginfo__find_trace_events(struct debuginfo *self,
1285 struct perf_probe_event *pev,
1286 struct probe_trace_event **tevs, int max_tevs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001287{
1288 struct trace_event_finder tf = {
1289 .pf = {.pev = pev, .callback = add_probe_trace_event},
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001290 .mod = self->mod, .max_tevs = max_tevs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001291 int ret;
1292
1293 /* Allocate result tevs array */
1294 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
1295 if (*tevs == NULL)
1296 return -ENOMEM;
1297
1298 tf.tevs = *tevs;
1299 tf.ntevs = 0;
1300
Masami Hiramatsuff741782011-06-27 16:27:39 +09001301 ret = debuginfo__find_probes(self, &tf.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001302 if (ret < 0) {
1303 free(*tevs);
1304 *tevs = NULL;
1305 return ret;
1306 }
1307
1308 return (ret < 0) ? ret : tf.ntevs;
1309}
1310
1311#define MAX_VAR_LEN 64
1312
1313/* Collect available variables in this scope */
1314static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1315{
1316 struct available_var_finder *af = data;
1317 struct variable_list *vl;
1318 char buf[MAX_VAR_LEN];
1319 int tag, ret;
1320
1321 vl = &af->vls[af->nvls - 1];
1322
1323 tag = dwarf_tag(die_mem);
1324 if (tag == DW_TAG_formal_parameter ||
1325 tag == DW_TAG_variable) {
1326 ret = convert_variable_location(die_mem, af->pf.addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001327 af->pf.fb_ops, &af->pf.sp_die,
1328 NULL);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001329 if (ret == 0) {
1330 ret = die_get_varname(die_mem, buf, MAX_VAR_LEN);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001331 pr_debug2("Add new var: %s\n", buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001332 if (ret > 0)
1333 strlist__add(vl->vars, buf);
1334 }
1335 }
1336
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001337 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001338 return DIE_FIND_CB_CONTINUE;
1339 else
1340 return DIE_FIND_CB_SIBLING;
1341}
1342
1343/* Add a found vars into available variables list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001344static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001345{
1346 struct available_var_finder *af =
1347 container_of(pf, struct available_var_finder, pf);
1348 struct variable_list *vl;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001349 Dwarf_Die die_mem;
1350 int ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001351
1352 /* Check number of tevs */
1353 if (af->nvls == af->max_vls) {
1354 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1355 return -ERANGE;
1356 }
1357 vl = &af->vls[af->nvls++];
1358
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001359 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001360 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001361 pf->pev->point.retprobe, &vl->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001362 if (ret < 0)
1363 return ret;
1364
1365 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1366 vl->point.offset);
1367
1368 /* Find local variables */
1369 vl->vars = strlist__new(true, NULL);
1370 if (vl->vars == NULL)
1371 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001372 af->child = true;
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001373 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001374
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001375 /* Find external variables */
1376 if (!af->externs)
1377 goto out;
1378 /* Don't need to search child DIE for externs. */
1379 af->child = false;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001380 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001381
1382out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001383 if (strlist__empty(vl->vars)) {
1384 strlist__delete(vl->vars);
1385 vl->vars = NULL;
1386 }
1387
1388 return ret;
1389}
1390
1391/* Find available variables at given probe point */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001392int debuginfo__find_available_vars_at(struct debuginfo *self,
1393 struct perf_probe_event *pev,
1394 struct variable_list **vls,
1395 int max_vls, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001396{
1397 struct available_var_finder af = {
1398 .pf = {.pev = pev, .callback = add_available_vars},
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001399 .mod = self->mod,
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001400 .max_vls = max_vls, .externs = externs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001401 int ret;
1402
1403 /* Allocate result vls array */
1404 *vls = zalloc(sizeof(struct variable_list) * max_vls);
1405 if (*vls == NULL)
1406 return -ENOMEM;
1407
1408 af.vls = *vls;
1409 af.nvls = 0;
1410
Masami Hiramatsuff741782011-06-27 16:27:39 +09001411 ret = debuginfo__find_probes(self, &af.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001412 if (ret < 0) {
1413 /* Free vlist for error */
1414 while (af.nvls--) {
1415 if (af.vls[af.nvls].point.symbol)
1416 free(af.vls[af.nvls].point.symbol);
1417 if (af.vls[af.nvls].vars)
1418 strlist__delete(af.vls[af.nvls].vars);
1419 }
1420 free(af.vls);
1421 *vls = NULL;
1422 return ret;
1423 }
1424
1425 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001426}
1427
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001428/* Reverse search */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001429int debuginfo__find_probe_point(struct debuginfo *self, unsigned long addr,
1430 struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001431{
1432 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001433 Dwarf_Addr _addr = 0, baseaddr = 0;
1434 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001435 int baseline = 0, lineno = 0, ret = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001436
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001437 /* Adjust address with bias */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001438 addr += self->bias;
1439
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001440 /* Find cu die */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001441 if (!dwarf_addrdie(self->dbg, (Dwarf_Addr)addr - self->bias, &cudie)) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001442 pr_warning("Failed to find debug information for address %lx\n",
1443 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001444 ret = -EINVAL;
1445 goto end;
1446 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001447
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001448 /* Find a corresponding line (filename and lineno) */
1449 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1450 /* Don't care whether it failed or not */
1451
1452 /* Find a corresponding function (name, baseline and baseaddr) */
Masami Hiramatsue0d153c2011-06-27 16:27:27 +09001453 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001454 /* Get function entry information */
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001455 func = basefunc = dwarf_diename(&spdie);
1456 if (!func ||
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001457 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001458 dwarf_decl_line(&spdie, &baseline) != 0) {
1459 lineno = 0;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001460 goto post;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001461 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001462
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001463 if (addr == (unsigned long)baseaddr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001464 /* Function entry - Relative line number is 0 */
1465 lineno = baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001466 fname = dwarf_decl_file(&spdie);
1467 goto post;
1468 }
1469
1470 /* Track down the inline functions step by step */
1471 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1472 &indie)) {
1473 /* There is an inline function */
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001474 if (dwarf_entrypc(&indie, &_addr) == 0 &&
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001475 _addr == addr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001476 /*
1477 * addr is at an inline function entry.
1478 * In this case, lineno should be the call-site
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001479 * line number. (overwrite lineinfo)
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001480 */
1481 lineno = die_get_call_lineno(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001482 fname = die_get_call_file(&indie);
1483 break;
1484 } else {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001485 /*
1486 * addr is in an inline function body.
1487 * Since lineno points one of the lines
1488 * of the inline function, baseline should
1489 * be the entry line of the inline function.
1490 */
1491 tmp = dwarf_diename(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001492 if (!tmp ||
1493 dwarf_decl_line(&indie, &baseline) != 0)
1494 break;
1495 func = tmp;
1496 spdie = indie;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001497 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001498 }
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001499 /* Verify the lineno and baseline are in a same file */
1500 tmp = dwarf_decl_file(&spdie);
1501 if (!tmp || strcmp(tmp, fname) != 0)
1502 lineno = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001503 }
1504
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001505post:
1506 /* Make a relative line number or an offset */
1507 if (lineno)
1508 ppt->line = lineno - baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001509 else if (basefunc) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001510 ppt->offset = addr - (unsigned long)baseaddr;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001511 func = basefunc;
1512 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001513
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001514 /* Duplicate strings */
1515 if (func) {
1516 ppt->function = strdup(func);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001517 if (ppt->function == NULL) {
1518 ret = -ENOMEM;
1519 goto end;
1520 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001521 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001522 if (fname) {
1523 ppt->file = strdup(fname);
1524 if (ppt->file == NULL) {
1525 if (ppt->function) {
1526 free(ppt->function);
1527 ppt->function = NULL;
1528 }
1529 ret = -ENOMEM;
1530 goto end;
1531 }
1532 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001533end:
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001534 if (ret == 0 && (fname || func))
1535 ret = 1; /* Found a point */
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001536 return ret;
1537}
1538
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001539/* Add a line and store the src path */
1540static int line_range_add_line(const char *src, unsigned int lineno,
1541 struct line_range *lr)
1542{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001543 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001544 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001545 lr->path = strdup(src);
1546 if (lr->path == NULL)
1547 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001548 }
1549 return line_list__add_line(&lr->line_list, lineno);
1550}
1551
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001552static int line_range_walk_cb(const char *fname, int lineno,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001553 Dwarf_Addr addr __maybe_unused,
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001554 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001555{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001556 struct line_finder *lf = data;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001557
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001558 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001559 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001560 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001561
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001562 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1563 return -EINVAL;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001564
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001565 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001566}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001567
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001568/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001569static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001570{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001571 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001572
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001573 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001574
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001575 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001576 if (ret >= 0)
1577 if (!list_empty(&lf->lr->line_list))
1578 ret = lf->found = 1;
1579 else
1580 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001581 else {
1582 free(lf->lr->path);
1583 lf->lr->path = NULL;
1584 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001585 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001586}
1587
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001588static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1589{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001590 find_line_range_by_line(in_die, data);
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001591
1592 /*
1593 * We have to check all instances of inlined function, because
1594 * some execution paths can be optimized out depends on the
1595 * function argument of instances
1596 */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001597 return 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001598}
1599
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001600/* Search function definition from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001601static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001602{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001603 struct dwarf_callback_param *param = data;
1604 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001605 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001606
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001607 /* Check declared file */
1608 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1609 return DWARF_CB_OK;
1610
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001611 if (die_is_func_def(sp_die) &&
Masami Hiramatsu82175632010-07-09 18:29:17 +09001612 die_compare_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001613 lf->fname = dwarf_decl_file(sp_die);
1614 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001615 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001616 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001617 if (lf->lno_s < 0) /* Overflow */
1618 lf->lno_s = INT_MAX;
1619 lf->lno_e = lr->offset + lr->end;
1620 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001621 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001622 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001623 lr->start = lf->lno_s;
1624 lr->end = lf->lno_e;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001625 if (dwarf_func_inline(sp_die))
1626 param->retval = die_walk_instances(sp_die,
1627 line_range_inline_cb, lf);
1628 else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001629 param->retval = find_line_range_by_line(sp_die, lf);
1630 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001631 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001632 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001633}
1634
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001635static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001636{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001637 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1638 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1639 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001640}
1641
Masami Hiramatsuff741782011-06-27 16:27:39 +09001642int debuginfo__find_line_range(struct debuginfo *self, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001643{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001644 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001645 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001646 Dwarf_Off off = 0, noff;
1647 size_t cuhl;
1648 Dwarf_Die *diep;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001649 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001650
Lin Mingcd25f8b2011-03-25 16:27:48 +08001651 /* Fastpath: lookup by function name from .debug_pubnames section */
1652 if (lr->function) {
1653 struct pubname_callback_param pubname_param = {
1654 .function = lr->function, .file = lr->file,
1655 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1656 struct dwarf_callback_param line_range_param = {
1657 .data = (void *)&lf, .retval = 0};
1658
Masami Hiramatsuff741782011-06-27 16:27:39 +09001659 dwarf_getpubnames(self->dbg, pubname_search_cb,
1660 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001661 if (pubname_param.found) {
1662 line_range_search_cb(&lf.sp_die, &line_range_param);
1663 if (lf.found)
1664 goto found;
1665 }
1666 }
1667
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001668 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001669 while (!lf.found && ret >= 0) {
Masami Hiramatsuff741782011-06-27 16:27:39 +09001670 if (dwarf_nextcu(self->dbg, off, &noff, &cuhl,
1671 NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001672 break;
1673
1674 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsuff741782011-06-27 16:27:39 +09001675 diep = dwarf_offdie(self->dbg, off + cuhl, &lf.cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001676 if (!diep)
1677 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001678
1679 /* Check if target file is included. */
1680 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001681 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001682 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001683 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001684
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001685 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001686 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001687 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001688 else {
1689 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001690 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001691 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001692 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001693 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001694 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001695 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001696
Lin Mingcd25f8b2011-03-25 16:27:48 +08001697found:
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001698 /* Store comp_dir */
1699 if (lf.found) {
1700 comp_dir = cu_get_comp_dir(&lf.cu_die);
1701 if (comp_dir) {
1702 lr->comp_dir = strdup(comp_dir);
1703 if (!lr->comp_dir)
1704 ret = -ENOMEM;
1705 }
1706 }
1707
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001708 pr_debug("path: %s\n", lr->path);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001709 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001710}
1711