blob: ffb657ffd327b1779b328f4546f4d45c0784e243 [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 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300118static int debuginfo__init_offline_dwarf(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +0900119 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
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300127 dbg->dwfl = dwfl_begin(&offline_callbacks);
128 if (!dbg->dwfl)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900129 goto error;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900130
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300131 dbg->mod = dwfl_report_offline(dbg->dwfl, "", "", fd);
132 if (!dbg->mod)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900133 goto error;
134
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300135 dbg->dbg = dwfl_module_getdwarf(dbg->mod, &dbg->bias);
136 if (!dbg->dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900137 goto error;
138
139 return 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900140error:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300141 if (dbg->dwfl)
142 dwfl_end(dbg->dwfl);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900143 else
144 close(fd);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300145 memset(dbg, 0, sizeof(*dbg));
Masami Hiramatsuff741782011-06-27 16:27:39 +0900146
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 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300183static int debuginfo__init_online_kernel_dwarf(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +0900184 Dwarf_Addr addr)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900185{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300186 dbg->dwfl = dwfl_begin(&kernel_callbacks);
187 if (!dbg->dwfl)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900188 return -EINVAL;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900189
190 /* Load the kernel dwarves: Don't care the result here */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300191 dwfl_linux_kernel_report_kernel(dbg->dwfl);
192 dwfl_linux_kernel_report_modules(dbg->dwfl);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900193
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300194 dbg->dbg = dwfl_addrdwarf(dbg->dwfl, addr, &dbg->bias);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900195 /* Here, check whether we could get a real dwarf */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300196 if (!dbg->dbg) {
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900197 pr_debug("Failed to find kernel dwarf at %lx\n",
198 (unsigned long)addr);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300199 dwfl_end(dbg->dwfl);
200 memset(dbg, 0, sizeof(*dbg));
Masami Hiramatsuff741782011-06-27 16:27:39 +0900201 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... */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300208static int debuginfo__init_online_kernel_dwarf(struct debuginfo *dbg,
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);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300219 return debuginfo__init_offline_dwarf(dbg, 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{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300225 struct debuginfo *dbg = zalloc(sizeof(*dbg));
226 if (!dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900227 return NULL;
228
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300229 if (debuginfo__init_offline_dwarf(dbg, path) < 0) {
230 free(dbg);
231 dbg = NULL;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900232 }
233
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300234 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900235}
236
237struct debuginfo *debuginfo__new_online_kernel(unsigned long addr)
238{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300239 struct debuginfo *dbg = zalloc(sizeof(*dbg));
240
241 if (!dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900242 return NULL;
243
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300244 if (debuginfo__init_online_kernel_dwarf(dbg, (Dwarf_Addr)addr) < 0) {
245 free(dbg);
246 dbg = NULL;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900247 }
248
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300249 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900250}
251
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300252void debuginfo__delete(struct debuginfo *dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900253{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300254 if (dbg) {
255 if (dbg->dwfl)
256 dwfl_end(dbg->dwfl);
257 free(dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900258 }
259}
260
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400261/*
262 * Probe finder related functions
263 */
264
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530265static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400266{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530267 struct probe_trace_arg_ref *ref;
268 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400269 if (ref != NULL)
270 ref->offset = offs;
271 return ref;
272}
273
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900274/*
275 * Convert a location into trace_arg.
276 * If tvar == NULL, this just checks variable can be converted.
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900277 * If fentry == true and vr_die is a parameter, do huristic search
278 * for the location fuzzed by function entry mcount.
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900279 */
280static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900281 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900282 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400283{
284 Dwarf_Attribute attr;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900285 Dwarf_Addr tmp = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400286 Dwarf_Op *op;
287 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500288 unsigned int regn;
289 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400290 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400291 const char *regs;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400292 int ret;
293
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900294 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
295 goto static_var;
296
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400297 /* TODO: handle more than 1 exprs */
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900298 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
299 return -EINVAL; /* Broken DIE ? */
300 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
301 ret = dwarf_entrypc(sp_die, &tmp);
302 if (ret || addr != tmp ||
303 dwarf_tag(vr_die) != DW_TAG_formal_parameter ||
304 dwarf_highpc(sp_die, &tmp))
305 return -ENOENT;
306 /*
307 * This is fuzzed by fentry mcount. We try to find the
308 * parameter location at the earliest address.
309 */
310 for (addr += 1; addr <= tmp; addr++) {
311 if (dwarf_getlocation_addr(&attr, addr, &op,
312 &nops, 1) > 0)
313 goto found;
314 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400315 return -ENOENT;
316 }
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900317found:
318 if (nops == 0)
319 /* TODO: Support const_value */
320 return -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400321
322 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900323static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900324 if (!tvar)
325 return 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400326 /* Static variables on memory (not stack), make @varname */
327 ret = strlen(dwarf_diename(vr_die));
328 tvar->value = zalloc(ret + 2);
329 if (tvar->value == NULL)
330 return -ENOMEM;
331 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
332 tvar->ref = alloc_trace_arg_ref((long)offs);
333 if (tvar->ref == NULL)
334 return -ENOMEM;
335 return 0;
336 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400337
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400338 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500339 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900340 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400341 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400342 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500343 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900344 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500345 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400346
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500347 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
348 regn = op->atom - DW_OP_breg0;
349 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400350 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500351 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
352 regn = op->atom - DW_OP_reg0;
353 } else if (op->atom == DW_OP_bregx) {
354 regn = op->number;
355 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400356 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500357 } else if (op->atom == DW_OP_regx) {
358 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400359 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900360 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400361 return -ENOTSUP;
362 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400363
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900364 if (!tvar)
365 return 0;
366
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400367 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400368 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900369 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900370 pr_warning("Mapping for the register number %u "
371 "missing on this architecture.\n", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400372 return -ERANGE;
373 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400374
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400375 tvar->value = strdup(regs);
376 if (tvar->value == NULL)
377 return -ENOMEM;
378
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400379 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400380 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400381 if (tvar->ref == NULL)
382 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400383 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400384 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400385}
386
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900387#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
388
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400389static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530390 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400391 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400392{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530393 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400394 Dwarf_Die type;
395 char buf[16];
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900396 int bsize, boffs, total;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400397 int ret;
398
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400399 /* TODO: check all types */
400 if (cast && strcmp(cast, "string") != 0) {
401 /* Non string type is OK */
402 tvar->type = strdup(cast);
403 return (tvar->type == NULL) ? -ENOMEM : 0;
404 }
405
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900406 bsize = dwarf_bitsize(vr_die);
407 if (bsize > 0) {
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900408 /* This is a bitfield */
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900409 boffs = dwarf_bitoffset(vr_die);
410 total = dwarf_bytesize(vr_die);
411 if (boffs < 0 || total < 0)
412 return -ENOENT;
413 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
414 BYTES_TO_BITS(total));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900415 goto formatted;
416 }
417
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400418 if (die_get_real_type(vr_die, &type) == NULL) {
419 pr_warning("Failed to get a type information of %s.\n",
420 dwarf_diename(vr_die));
421 return -ENOENT;
422 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400423
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400424 pr_debug("%s type is %s.\n",
425 dwarf_diename(vr_die), dwarf_diename(&type));
426
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400427 if (cast && strcmp(cast, "string") == 0) { /* String type */
428 ret = dwarf_tag(&type);
429 if (ret != DW_TAG_pointer_type &&
430 ret != DW_TAG_array_type) {
431 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900432 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400433 dwarf_diename(vr_die), dwarf_diename(&type));
434 return -EINVAL;
435 }
Hyeoncheol Lee7ce28b52012-09-11 16:57:28 +0900436 if (die_get_real_type(&type, &type) == NULL) {
437 pr_warning("Failed to get a type"
438 " information.\n");
439 return -ENOENT;
440 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400441 if (ret == DW_TAG_pointer_type) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400442 while (*ref_ptr)
443 ref_ptr = &(*ref_ptr)->next;
444 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530445 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400446 if (*ref_ptr == NULL) {
447 pr_warning("Out of memory error\n");
448 return -ENOMEM;
449 }
450 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900451 if (!die_compare_name(&type, "char") &&
452 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400453 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900454 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400455 dwarf_diename(vr_die));
456 return -EINVAL;
457 }
458 tvar->type = strdup(cast);
459 return (tvar->type == NULL) ? -ENOMEM : 0;
460 }
461
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900462 ret = dwarf_bytesize(&type);
463 if (ret <= 0)
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900464 /* No size ... try to use default type */
465 return 0;
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900466 ret = BYTES_TO_BITS(ret);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400467
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900468 /* Check the bitwidth */
469 if (ret > MAX_BASIC_TYPE_BITS) {
470 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
471 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
472 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400473 }
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900474 ret = snprintf(buf, 16, "%c%d",
475 die_is_signed_type(&type) ? 's' : 'u', ret);
476
477formatted:
478 if (ret < 0 || ret >= 16) {
479 if (ret >= 16)
480 ret = -E2BIG;
481 pr_warning("Failed to convert variable type: %s\n",
482 strerror(-ret));
483 return ret;
484 }
485 tvar->type = strdup(buf);
486 if (tvar->type == NULL)
487 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400488 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400489}
490
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400491static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400492 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530493 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400494 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400495{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530496 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400497 Dwarf_Die type;
498 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400499 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400500
501 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400502 if (die_get_real_type(vr_die, &type) == NULL) {
503 pr_warning("Failed to get the type of %s.\n", varname);
504 return -ENOENT;
505 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400506 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
507 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400508
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400509 if (field->name[0] == '[' &&
510 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
511 if (field->next)
512 /* Save original type for next field */
513 memcpy(die_mem, &type, sizeof(*die_mem));
514 /* Get the type of this array */
515 if (die_get_real_type(&type, &type) == NULL) {
516 pr_warning("Failed to get the type of %s.\n", varname);
517 return -ENOENT;
518 }
519 pr_debug2("Array real type: (%x)\n",
520 (unsigned)dwarf_dieoffset(&type));
521 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530522 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400523 if (ref == NULL)
524 return -ENOMEM;
525 if (*ref_ptr)
526 (*ref_ptr)->next = ref;
527 else
528 *ref_ptr = ref;
529 }
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900530 ref->offset += dwarf_bytesize(&type) * field->index;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400531 if (!field->next)
532 /* Save vr_die for converting types */
533 memcpy(die_mem, vr_die, sizeof(*die_mem));
534 goto next;
535 } else if (tag == DW_TAG_pointer_type) {
536 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400537 if (!field->ref) {
538 pr_err("Semantic error: %s must be referred by '->'\n",
539 field->name);
540 return -EINVAL;
541 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400542 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400543 if (die_get_real_type(&type, &type) == NULL) {
544 pr_warning("Failed to get the type of %s.\n", varname);
545 return -ENOENT;
546 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400547 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900548 tag = dwarf_tag(&type);
549 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
550 pr_warning("%s is not a data structure nor an union.\n",
551 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400552 return -EINVAL;
553 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400554
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530555 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400556 if (ref == NULL)
557 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400558 if (*ref_ptr)
559 (*ref_ptr)->next = ref;
560 else
561 *ref_ptr = ref;
562 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400563 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900564 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
565 pr_warning("%s is not a data structure nor an union.\n",
566 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400567 return -EINVAL;
568 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400569 if (field->name[0] == '[') {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900570 pr_err("Semantic error: %s is not a pointor"
571 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400572 return -EINVAL;
573 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400574 if (field->ref) {
575 pr_err("Semantic error: %s must be referred by '.'\n",
576 field->name);
577 return -EINVAL;
578 }
579 if (!ref) {
580 pr_warning("Structure on a register is not "
581 "supported yet.\n");
582 return -ENOTSUP;
583 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400584 }
585
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400586 if (die_find_member(&type, field->name, die_mem) == NULL) {
Arnaldo Carvalho de Melo9ef04382013-10-24 17:36:31 -0300587 pr_warning("%s(type:%s) has no member %s.\n", varname,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400588 dwarf_diename(&type), field->name);
589 return -EINVAL;
590 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400591
592 /* Get the offset of the field */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900593 if (tag == DW_TAG_union_type) {
594 offs = 0;
595 } else {
596 ret = die_get_data_member_location(die_mem, &offs);
597 if (ret < 0) {
598 pr_warning("Failed to get the offset of %s.\n",
599 field->name);
600 return ret;
601 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400602 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400603 ref->offset += (long)offs;
604
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400605next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400606 /* Converting next field */
607 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400608 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300609 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400610 else
611 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400612}
613
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400614/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400615static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400616{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400617 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400618 int ret;
619
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400620 pr_debug("Converting variable %s into trace event.\n",
621 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500622
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900623 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900624 &pf->sp_die, pf->tvar);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900625 if (ret == -ENOENT)
626 pr_err("Failed to find the location of %s at this address.\n"
627 " Perhaps, it has been optimized out.\n", pf->pvar->var);
628 else if (ret == -ENOTSUP)
629 pr_err("Sorry, we don't support this variable location yet.\n");
630 else if (pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400631 ret = convert_variable_fields(vr_die, pf->pvar->var,
632 pf->pvar->field, &pf->tvar->ref,
633 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400634 vr_die = &die_mem;
635 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400636 if (ret == 0)
637 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500638 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400639 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400640}
641
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900642/* Find a variable in a scope DIE */
643static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400644{
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900645 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400646 char buf[32], *ptr;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900647 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400648
Masami Hiramatsu367e94c2010-08-27 20:38:59 +0900649 if (!is_c_varname(pf->pvar->var)) {
650 /* Copy raw parameters */
651 pf->tvar->value = strdup(pf->pvar->var);
652 if (pf->tvar->value == NULL)
653 return -ENOMEM;
654 if (pf->pvar->type) {
655 pf->tvar->type = strdup(pf->pvar->type);
656 if (pf->tvar->type == NULL)
657 return -ENOMEM;
658 }
659 if (pf->pvar->name) {
660 pf->tvar->name = strdup(pf->pvar->name);
661 if (pf->tvar->name == NULL)
662 return -ENOMEM;
663 } else
664 pf->tvar->name = NULL;
665 return 0;
666 }
667
Masami Hiramatsu48481932010-04-12 13:16:53 -0400668 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400669 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400670 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400671 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
672 if (ret < 0)
673 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400674 ptr = strchr(buf, ':'); /* Change type separator to _ */
675 if (ptr)
676 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400677 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400678 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400679 if (pf->tvar->name == NULL)
680 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400681
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900682 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400683 /* Search child die for local variables and parameters. */
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900684 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
685 /* Search again in global variables */
686 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var, 0, &vr_die))
687 ret = -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400688 }
Masami Hiramatsuf66fedc2011-08-20 14:39:23 +0900689 if (ret >= 0)
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900690 ret = convert_variable(&vr_die, pf);
691
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400692 if (ret < 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400693 pr_warning("Failed to find '%s' in this function.\n",
694 pf->pvar->var);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400695 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400696}
697
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900698/* Convert subprogram DIE to trace point */
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900699static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
700 Dwarf_Addr paddr, bool retprobe,
701 struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400702{
Prashanth Nageshappa26b79522012-02-24 13:11:39 +0530703 Dwarf_Addr eaddr, highaddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900704 GElf_Sym sym;
705 const char *symbol;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500706
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900707 /* Verify the address is correct */
708 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
709 pr_warning("Failed to get entry address of %s\n",
710 dwarf_diename(sp_die));
711 return -ENOENT;
712 }
713 if (dwarf_highpc(sp_die, &highaddr) != 0) {
714 pr_warning("Failed to get end address of %s\n",
715 dwarf_diename(sp_die));
716 return -ENOENT;
717 }
718 if (paddr > highaddr) {
719 pr_warning("Offset specified is greater than size of %s\n",
720 dwarf_diename(sp_die));
721 return -EINVAL;
722 }
723
724 /* Get an appropriate symbol from symtab */
725 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
726 if (!symbol) {
727 pr_warning("Failed to find symbol at 0x%lx\n",
728 (unsigned long)paddr);
729 return -ENOENT;
730 }
731 tp->offset = (unsigned long)(paddr - sym.st_value);
732 tp->symbol = strdup(symbol);
733 if (!tp->symbol)
734 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400735
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900736 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900737 if (retprobe) {
738 if (eaddr != paddr) {
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900739 pr_warning("Return probe must be on the head of"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900740 " a real function.\n");
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900741 return -EINVAL;
742 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900743 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900744 }
745
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900746 return 0;
747}
748
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900749/* Call probe_finder callback with scope DIE */
750static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900751{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900752 Dwarf_Attribute fb_attr;
753 size_t nops;
754 int ret;
755
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900756 if (!sc_die) {
757 pr_err("Caller must pass a scope DIE. Program error.\n");
758 return -EINVAL;
759 }
760
761 /* If not a real subprogram, find a real one */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900762 if (!die_is_func_def(sc_die)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900763 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900764 pr_warning("Failed to find probe point in any "
765 "functions.\n");
766 return -ENOENT;
767 }
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900768 } else
769 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400770
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900771 /* Get the frame base attribute/ops from subprogram */
772 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400773 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400774 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500775 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400776#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400777 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
778 pf->cfi != NULL) {
779 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400780 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
781 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900782 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400783 (uintmax_t)pf->addr);
784 return -ENOENT;
785 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400786#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400787 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500788
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900789 /* Call finder's callback handler */
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900790 ret = pf->callback(sc_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500791
792 /* *pf->fb_ops will be cached in libdw. Don't free it. */
793 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900794
795 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400796}
797
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900798struct find_scope_param {
799 const char *function;
800 const char *file;
801 int line;
802 int diff;
803 Dwarf_Die *die_mem;
804 bool found;
805};
806
807static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
808{
809 struct find_scope_param *fsp = data;
810 const char *file;
811 int lno;
812
813 /* Skip if declared file name does not match */
814 if (fsp->file) {
815 file = dwarf_decl_file(fn_die);
816 if (!file || strcmp(fsp->file, file) != 0)
817 return 0;
818 }
819 /* If the function name is given, that's what user expects */
820 if (fsp->function) {
821 if (die_compare_name(fn_die, fsp->function)) {
822 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
823 fsp->found = true;
824 return 1;
825 }
826 } else {
827 /* With the line number, find the nearest declared DIE */
828 dwarf_decl_line(fn_die, &lno);
829 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
830 /* Keep a candidate and continue */
831 fsp->diff = fsp->line - lno;
832 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
833 fsp->found = true;
834 }
835 }
836 return 0;
837}
838
839/* Find an appropriate scope fits to given conditions */
840static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
841{
842 struct find_scope_param fsp = {
843 .function = pf->pev->point.function,
844 .file = pf->fname,
845 .line = pf->lno,
846 .diff = INT_MAX,
847 .die_mem = die_mem,
848 .found = false,
849 };
850
851 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
852
853 return fsp.found ? die_mem : NULL;
854}
855
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900856static int probe_point_line_walker(const char *fname, int lineno,
857 Dwarf_Addr addr, void *data)
858{
859 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900860 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900861 int ret;
862
863 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
864 return 0;
865
866 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900867 sc_die = find_best_scope(pf, &die_mem);
868 if (!sc_die) {
869 pr_warning("Failed to find scope of probe point.\n");
870 return -ENOENT;
871 }
872
873 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900874
875 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -0300876 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900877}
878
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400879/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400880static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400881{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900882 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400883}
884
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500885/* Find lines which match lazy pattern */
886static int find_lazy_match_lines(struct list_head *head,
887 const char *fname, const char *pat)
888{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100889 FILE *fp;
890 char *line = NULL;
891 size_t line_len;
892 ssize_t len;
893 int count = 0, linenum = 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500894
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100895 fp = fopen(fname, "r");
896 if (!fp) {
897 pr_warning("Failed to open %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300898 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400899 }
900
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100901 while ((len = getline(&line, &line_len, fp)) > 0) {
902
903 if (line[len - 1] == '\n')
904 line[len - 1] = '\0';
905
906 if (strlazymatch(line, pat)) {
907 line_list__add_line(head, linenum);
908 count++;
909 }
910 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400911 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300912
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100913 if (ferror(fp))
914 count = -errno;
915 free(line);
916 fclose(fp);
917
918 if (count == 0)
919 pr_debug("No matched lines found in %s.\n", fname);
920 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500921}
922
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900923static int probe_point_lazy_walker(const char *fname, int lineno,
924 Dwarf_Addr addr, void *data)
925{
926 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900927 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900928 int ret;
929
930 if (!line_list__has_line(&pf->lcache, lineno) ||
931 strtailcmp(fname, pf->fname) != 0)
932 return 0;
933
934 pr_debug("Probe line found: line:%d addr:0x%llx\n",
935 lineno, (unsigned long long)addr);
936 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900937 pf->lno = lineno;
938 sc_die = find_best_scope(pf, &die_mem);
939 if (!sc_die) {
940 pr_warning("Failed to find scope of probe point.\n");
941 return -ENOENT;
942 }
943
944 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900945
946 /*
947 * Continue if no error, because the lazy pattern will match
948 * to other lines
949 */
Ingo Molnar5e814dd2011-03-15 20:51:09 +0100950 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900951}
952
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500953/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400954static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500955{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400956 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500957
958 if (list_empty(&pf->lcache)) {
959 /* Matching lazy line pattern */
960 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400961 pf->pev->point.lazy_line);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100962 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400963 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500964 }
965
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900966 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500967}
968
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500969static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400970{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900971 struct probe_finder *pf = data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400972 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400973 Dwarf_Addr addr;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900974 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400975
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500976 if (pp->lazy_line)
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900977 ret = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500978 else {
979 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400980 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900981 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400982 dwarf_diename(in_die));
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900983 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400984 }
985 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500986 pf->addr += pp->offset;
987 pr_debug("found inline addr: 0x%jx\n",
988 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500989
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900990 ret = call_probe_finder(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500991 }
992
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900993 return ret;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500994}
995
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900996/* Callback parameter with return value for libdw */
997struct dwarf_callback_param {
998 void *data;
999 int retval;
1000};
1001
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001002/* Search function from function name */
1003static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
1004{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001005 struct dwarf_callback_param *param = data;
1006 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001007 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001008
1009 /* Check tag and diename */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001010 if (!die_is_func_def(sp_die) ||
1011 !die_compare_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001012 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001013
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001014 /* Check declared file */
1015 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
1016 return DWARF_CB_OK;
1017
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001018 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001019 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001020 dwarf_decl_line(sp_die, &pf->lno);
1021 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001022 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001023 } else if (!dwarf_func_inline(sp_die)) {
1024 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001025 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001026 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001027 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001028 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001029 pr_warning("Failed to get entry address of "
1030 "%s.\n", dwarf_diename(sp_die));
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001031 param->retval = -ENOENT;
1032 return DWARF_CB_ABORT;
1033 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001034 pf->addr += pp->offset;
1035 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001036 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001037 }
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001038 } else
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001039 /* Inlined function: search instances */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001040 param->retval = die_walk_instances(sp_die,
1041 probe_point_inline_cb, (void *)pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001042
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001043 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001044}
1045
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001046static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001047{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001048 struct dwarf_callback_param _param = {.data = (void *)pf,
1049 .retval = 0};
1050 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1051 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001052}
1053
Lin Mingcd25f8b2011-03-25 16:27:48 +08001054struct pubname_callback_param {
1055 char *function;
1056 char *file;
1057 Dwarf_Die *cu_die;
1058 Dwarf_Die *sp_die;
1059 int found;
1060};
1061
1062static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1063{
1064 struct pubname_callback_param *param = data;
1065
1066 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1067 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1068 return DWARF_CB_OK;
1069
1070 if (die_compare_name(param->sp_die, param->function)) {
1071 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1072 return DWARF_CB_OK;
1073
1074 if (param->file &&
1075 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1076 return DWARF_CB_OK;
1077
1078 param->found = 1;
1079 return DWARF_CB_ABORT;
1080 }
1081 }
1082
1083 return DWARF_CB_OK;
1084}
1085
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001086/* Find probe points from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001087static int debuginfo__find_probes(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001088 struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001089{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001090 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001091 Dwarf_Off off, noff;
1092 size_t cuhl;
1093 Dwarf_Die *diep;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001094 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001095
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001096#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001097 /* Get the call frame information from this dwarf */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001098 pf->cfi = dwarf_getcfi(dbg->dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001099#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001100
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001101 off = 0;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001102 line_list__init(&pf->lcache);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001103
1104 /* Fastpath: lookup by function name from .debug_pubnames section */
1105 if (pp->function) {
1106 struct pubname_callback_param pubname_param = {
1107 .function = pp->function,
1108 .file = pp->file,
1109 .cu_die = &pf->cu_die,
1110 .sp_die = &pf->sp_die,
Lin Ming2b348a72011-04-29 08:41:57 +00001111 .found = 0,
Lin Mingcd25f8b2011-03-25 16:27:48 +08001112 };
1113 struct dwarf_callback_param probe_param = {
1114 .data = pf,
1115 };
1116
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001117 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001118 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001119 if (pubname_param.found) {
1120 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1121 if (ret)
1122 goto found;
1123 }
1124 }
1125
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001126 /* Loop on CUs (Compilation Unit) */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001127 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001128 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001129 diep = dwarf_offdie(dbg->dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001130 if (!diep)
1131 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001132
1133 /* Check if target file is included. */
1134 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001135 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001136 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001137 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001138
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001139 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001140 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001141 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001142 else if (pp->lazy_line)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001143 ret = find_probe_point_lazy(NULL, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001144 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001145 pf->lno = pp->line;
1146 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001147 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001148 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001149 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001150 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001151 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001152 }
Lin Mingcd25f8b2011-03-25 16:27:48 +08001153
1154found:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001155 line_list__free(&pf->lcache);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001156
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001157 return ret;
1158}
1159
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001160struct local_vars_finder {
1161 struct probe_finder *pf;
1162 struct perf_probe_arg *args;
1163 int max_args;
1164 int nargs;
1165 int ret;
1166};
1167
1168/* Collect available variables in this scope */
1169static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1170{
1171 struct local_vars_finder *vf = data;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001172 struct probe_finder *pf = vf->pf;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001173 int tag;
1174
1175 tag = dwarf_tag(die_mem);
1176 if (tag == DW_TAG_formal_parameter ||
1177 tag == DW_TAG_variable) {
1178 if (convert_variable_location(die_mem, vf->pf->addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001179 vf->pf->fb_ops, &pf->sp_die,
1180 NULL) == 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001181 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1182 if (vf->args[vf->nargs].var == NULL) {
1183 vf->ret = -ENOMEM;
1184 return DIE_FIND_CB_END;
1185 }
1186 pr_debug(" %s", vf->args[vf->nargs].var);
1187 vf->nargs++;
1188 }
1189 }
1190
1191 if (dwarf_haspc(die_mem, vf->pf->addr))
1192 return DIE_FIND_CB_CONTINUE;
1193 else
1194 return DIE_FIND_CB_SIBLING;
1195}
1196
1197static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1198 struct perf_probe_arg *args)
1199{
1200 Dwarf_Die die_mem;
1201 int i;
1202 int n = 0;
1203 struct local_vars_finder vf = {.pf = pf, .args = args,
1204 .max_args = MAX_PROBE_ARGS, .ret = 0};
1205
1206 for (i = 0; i < pf->pev->nargs; i++) {
1207 /* var never be NULL */
1208 if (strcmp(pf->pev->args[i].var, "$vars") == 0) {
1209 pr_debug("Expanding $vars into:");
1210 vf.nargs = n;
1211 /* Special local variables */
1212 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1213 &die_mem);
1214 pr_debug(" (%d)\n", vf.nargs - n);
1215 if (vf.ret < 0)
1216 return vf.ret;
1217 n = vf.nargs;
1218 } else {
1219 /* Copy normal argument */
1220 args[n] = pf->pev->args[i];
1221 n++;
1222 }
1223 }
1224 return n;
1225}
1226
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001227/* Add a found probe point into trace event list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001228static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001229{
1230 struct trace_event_finder *tf =
1231 container_of(pf, struct trace_event_finder, pf);
1232 struct probe_trace_event *tev;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001233 struct perf_probe_arg *args;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001234 int ret, i;
1235
1236 /* Check number of tevs */
1237 if (tf->ntevs == tf->max_tevs) {
1238 pr_warning("Too many( > %d) probe point found.\n",
1239 tf->max_tevs);
1240 return -ERANGE;
1241 }
1242 tev = &tf->tevs[tf->ntevs++];
1243
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001244 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001245 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001246 pf->pev->point.retprobe, &tev->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001247 if (ret < 0)
1248 return ret;
1249
1250 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1251 tev->point.offset);
1252
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001253 /* Expand special probe argument if exist */
1254 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
1255 if (args == NULL)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001256 return -ENOMEM;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001257
1258 ret = expand_probe_args(sc_die, pf, args);
1259 if (ret < 0)
1260 goto end;
1261
1262 tev->nargs = ret;
1263 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1264 if (tev->args == NULL) {
1265 ret = -ENOMEM;
1266 goto end;
1267 }
1268
1269 /* Find each argument */
1270 for (i = 0; i < tev->nargs; i++) {
1271 pf->pvar = &args[i];
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001272 pf->tvar = &tev->args[i];
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001273 /* Variable should be found from scope DIE */
1274 ret = find_variable(sc_die, pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001275 if (ret != 0)
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001276 break;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001277 }
1278
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001279end:
1280 free(args);
1281 return ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001282}
1283
1284/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001285int debuginfo__find_trace_events(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001286 struct perf_probe_event *pev,
1287 struct probe_trace_event **tevs, int max_tevs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001288{
1289 struct trace_event_finder tf = {
1290 .pf = {.pev = pev, .callback = add_probe_trace_event},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001291 .mod = dbg->mod, .max_tevs = max_tevs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001292 int ret;
1293
1294 /* Allocate result tevs array */
1295 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
1296 if (*tevs == NULL)
1297 return -ENOMEM;
1298
1299 tf.tevs = *tevs;
1300 tf.ntevs = 0;
1301
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001302 ret = debuginfo__find_probes(dbg, &tf.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001303 if (ret < 0) {
1304 free(*tevs);
1305 *tevs = NULL;
1306 return ret;
1307 }
1308
1309 return (ret < 0) ? ret : tf.ntevs;
1310}
1311
1312#define MAX_VAR_LEN 64
1313
1314/* Collect available variables in this scope */
1315static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1316{
1317 struct available_var_finder *af = data;
1318 struct variable_list *vl;
1319 char buf[MAX_VAR_LEN];
1320 int tag, ret;
1321
1322 vl = &af->vls[af->nvls - 1];
1323
1324 tag = dwarf_tag(die_mem);
1325 if (tag == DW_TAG_formal_parameter ||
1326 tag == DW_TAG_variable) {
1327 ret = convert_variable_location(die_mem, af->pf.addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001328 af->pf.fb_ops, &af->pf.sp_die,
1329 NULL);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001330 if (ret == 0) {
1331 ret = die_get_varname(die_mem, buf, MAX_VAR_LEN);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001332 pr_debug2("Add new var: %s\n", buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001333 if (ret > 0)
1334 strlist__add(vl->vars, buf);
1335 }
1336 }
1337
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001338 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001339 return DIE_FIND_CB_CONTINUE;
1340 else
1341 return DIE_FIND_CB_SIBLING;
1342}
1343
1344/* Add a found vars into available variables list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001345static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001346{
1347 struct available_var_finder *af =
1348 container_of(pf, struct available_var_finder, pf);
1349 struct variable_list *vl;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001350 Dwarf_Die die_mem;
1351 int ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001352
1353 /* Check number of tevs */
1354 if (af->nvls == af->max_vls) {
1355 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1356 return -ERANGE;
1357 }
1358 vl = &af->vls[af->nvls++];
1359
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001360 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001361 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001362 pf->pev->point.retprobe, &vl->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001363 if (ret < 0)
1364 return ret;
1365
1366 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1367 vl->point.offset);
1368
1369 /* Find local variables */
1370 vl->vars = strlist__new(true, NULL);
1371 if (vl->vars == NULL)
1372 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001373 af->child = true;
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001374 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001375
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001376 /* Find external variables */
1377 if (!af->externs)
1378 goto out;
1379 /* Don't need to search child DIE for externs. */
1380 af->child = false;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001381 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001382
1383out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001384 if (strlist__empty(vl->vars)) {
1385 strlist__delete(vl->vars);
1386 vl->vars = NULL;
1387 }
1388
1389 return ret;
1390}
1391
1392/* Find available variables at given probe point */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001393int debuginfo__find_available_vars_at(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001394 struct perf_probe_event *pev,
1395 struct variable_list **vls,
1396 int max_vls, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001397{
1398 struct available_var_finder af = {
1399 .pf = {.pev = pev, .callback = add_available_vars},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001400 .mod = dbg->mod,
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001401 .max_vls = max_vls, .externs = externs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001402 int ret;
1403
1404 /* Allocate result vls array */
1405 *vls = zalloc(sizeof(struct variable_list) * max_vls);
1406 if (*vls == NULL)
1407 return -ENOMEM;
1408
1409 af.vls = *vls;
1410 af.nvls = 0;
1411
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001412 ret = debuginfo__find_probes(dbg, &af.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001413 if (ret < 0) {
1414 /* Free vlist for error */
1415 while (af.nvls--) {
1416 if (af.vls[af.nvls].point.symbol)
1417 free(af.vls[af.nvls].point.symbol);
1418 if (af.vls[af.nvls].vars)
1419 strlist__delete(af.vls[af.nvls].vars);
1420 }
1421 free(af.vls);
1422 *vls = NULL;
1423 return ret;
1424 }
1425
1426 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001427}
1428
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001429/* Reverse search */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001430int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001431 struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001432{
1433 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001434 Dwarf_Addr _addr = 0, baseaddr = 0;
1435 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001436 int baseline = 0, lineno = 0, ret = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001437
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001438 /* Adjust address with bias */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001439 addr += dbg->bias;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001440
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001441 /* Find cu die */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001442 if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr - dbg->bias, &cudie)) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001443 pr_warning("Failed to find debug information for address %lx\n",
1444 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001445 ret = -EINVAL;
1446 goto end;
1447 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001448
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001449 /* Find a corresponding line (filename and lineno) */
1450 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1451 /* Don't care whether it failed or not */
1452
1453 /* Find a corresponding function (name, baseline and baseaddr) */
Masami Hiramatsue0d153c2011-06-27 16:27:27 +09001454 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001455 /* Get function entry information */
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001456 func = basefunc = dwarf_diename(&spdie);
1457 if (!func ||
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001458 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001459 dwarf_decl_line(&spdie, &baseline) != 0) {
1460 lineno = 0;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001461 goto post;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001462 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001463
Masami Hiramatsu1b286bd2013-10-11 12:23:17 +00001464 fname = dwarf_decl_file(&spdie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001465 if (addr == (unsigned long)baseaddr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001466 /* Function entry - Relative line number is 0 */
1467 lineno = baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001468 goto post;
1469 }
1470
1471 /* Track down the inline functions step by step */
1472 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1473 &indie)) {
1474 /* There is an inline function */
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001475 if (dwarf_entrypc(&indie, &_addr) == 0 &&
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001476 _addr == addr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001477 /*
1478 * addr is at an inline function entry.
1479 * In this case, lineno should be the call-site
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001480 * line number. (overwrite lineinfo)
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001481 */
1482 lineno = die_get_call_lineno(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001483 fname = die_get_call_file(&indie);
1484 break;
1485 } else {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001486 /*
1487 * addr is in an inline function body.
1488 * Since lineno points one of the lines
1489 * of the inline function, baseline should
1490 * be the entry line of the inline function.
1491 */
1492 tmp = dwarf_diename(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001493 if (!tmp ||
1494 dwarf_decl_line(&indie, &baseline) != 0)
1495 break;
1496 func = tmp;
1497 spdie = indie;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001498 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001499 }
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001500 /* Verify the lineno and baseline are in a same file */
1501 tmp = dwarf_decl_file(&spdie);
1502 if (!tmp || strcmp(tmp, fname) != 0)
1503 lineno = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001504 }
1505
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001506post:
1507 /* Make a relative line number or an offset */
1508 if (lineno)
1509 ppt->line = lineno - baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001510 else if (basefunc) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001511 ppt->offset = addr - (unsigned long)baseaddr;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001512 func = basefunc;
1513 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001514
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001515 /* Duplicate strings */
1516 if (func) {
1517 ppt->function = strdup(func);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001518 if (ppt->function == NULL) {
1519 ret = -ENOMEM;
1520 goto end;
1521 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001522 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001523 if (fname) {
1524 ppt->file = strdup(fname);
1525 if (ppt->file == NULL) {
1526 if (ppt->function) {
1527 free(ppt->function);
1528 ppt->function = NULL;
1529 }
1530 ret = -ENOMEM;
1531 goto end;
1532 }
1533 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001534end:
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001535 if (ret == 0 && (fname || func))
1536 ret = 1; /* Found a point */
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001537 return ret;
1538}
1539
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001540/* Add a line and store the src path */
1541static int line_range_add_line(const char *src, unsigned int lineno,
1542 struct line_range *lr)
1543{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001544 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001545 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001546 lr->path = strdup(src);
1547 if (lr->path == NULL)
1548 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001549 }
1550 return line_list__add_line(&lr->line_list, lineno);
1551}
1552
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001553static int line_range_walk_cb(const char *fname, int lineno,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001554 Dwarf_Addr addr __maybe_unused,
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001555 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001556{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001557 struct line_finder *lf = data;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001558
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001559 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001560 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001561 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001562
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001563 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1564 return -EINVAL;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001565
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001566 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001567}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001568
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001569/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001570static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001571{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001572 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001573
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001574 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001575
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001576 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001577 if (ret >= 0)
1578 if (!list_empty(&lf->lr->line_list))
1579 ret = lf->found = 1;
1580 else
1581 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001582 else {
1583 free(lf->lr->path);
1584 lf->lr->path = NULL;
1585 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001586 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001587}
1588
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001589static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1590{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001591 find_line_range_by_line(in_die, data);
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001592
1593 /*
1594 * We have to check all instances of inlined function, because
1595 * some execution paths can be optimized out depends on the
1596 * function argument of instances
1597 */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001598 return 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001599}
1600
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001601/* Search function definition from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001602static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001603{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001604 struct dwarf_callback_param *param = data;
1605 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001606 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001607
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001608 /* Check declared file */
1609 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1610 return DWARF_CB_OK;
1611
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001612 if (die_is_func_def(sp_die) &&
Masami Hiramatsu82175632010-07-09 18:29:17 +09001613 die_compare_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001614 lf->fname = dwarf_decl_file(sp_die);
1615 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001616 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001617 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001618 if (lf->lno_s < 0) /* Overflow */
1619 lf->lno_s = INT_MAX;
1620 lf->lno_e = lr->offset + lr->end;
1621 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001622 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001623 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001624 lr->start = lf->lno_s;
1625 lr->end = lf->lno_e;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001626 if (dwarf_func_inline(sp_die))
1627 param->retval = die_walk_instances(sp_die,
1628 line_range_inline_cb, lf);
1629 else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001630 param->retval = find_line_range_by_line(sp_die, lf);
1631 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001632 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001633 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001634}
1635
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001636static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001637{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001638 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1639 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1640 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001641}
1642
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001643int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001644{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001645 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001646 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001647 Dwarf_Off off = 0, noff;
1648 size_t cuhl;
1649 Dwarf_Die *diep;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001650 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001651
Lin Mingcd25f8b2011-03-25 16:27:48 +08001652 /* Fastpath: lookup by function name from .debug_pubnames section */
1653 if (lr->function) {
1654 struct pubname_callback_param pubname_param = {
1655 .function = lr->function, .file = lr->file,
1656 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1657 struct dwarf_callback_param line_range_param = {
1658 .data = (void *)&lf, .retval = 0};
1659
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001660 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001661 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001662 if (pubname_param.found) {
1663 line_range_search_cb(&lf.sp_die, &line_range_param);
1664 if (lf.found)
1665 goto found;
1666 }
1667 }
1668
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001669 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001670 while (!lf.found && ret >= 0) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001671 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001672 NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001673 break;
1674
1675 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001676 diep = dwarf_offdie(dbg->dbg, off + cuhl, &lf.cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001677 if (!diep)
1678 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001679
1680 /* Check if target file is included. */
1681 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001682 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001683 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001684 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001685
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001686 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001687 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001688 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001689 else {
1690 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001691 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001692 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001693 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001694 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001695 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001696 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001697
Lin Mingcd25f8b2011-03-25 16:27:48 +08001698found:
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001699 /* Store comp_dir */
1700 if (lf.found) {
1701 comp_dir = cu_get_comp_dir(&lf.cu_die);
1702 if (comp_dir) {
1703 lr->comp_dir = strdup(comp_dir);
1704 if (!lr->comp_dir)
1705 ret = -ENOMEM;
1706 }
1707 }
1708
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001709 pr_debug("path: %s\n", lr->path);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001710 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001711}
1712