blob: 6d8796e38d7f2ff6b333b29291bba3062719fe5d [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 Melo04662522013-12-26 17:41:15 -0300229 if (debuginfo__init_offline_dwarf(dbg, path) < 0)
230 zfree(&dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900231
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300232 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900233}
234
235struct debuginfo *debuginfo__new_online_kernel(unsigned long addr)
236{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300237 struct debuginfo *dbg = zalloc(sizeof(*dbg));
238
239 if (!dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900240 return NULL;
241
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300242 if (debuginfo__init_online_kernel_dwarf(dbg, (Dwarf_Addr)addr) < 0)
243 zfree(&dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900244
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300245 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900246}
247
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300248void debuginfo__delete(struct debuginfo *dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900249{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300250 if (dbg) {
251 if (dbg->dwfl)
252 dwfl_end(dbg->dwfl);
253 free(dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900254 }
255}
256
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400257/*
258 * Probe finder related functions
259 */
260
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530261static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400262{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530263 struct probe_trace_arg_ref *ref;
264 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400265 if (ref != NULL)
266 ref->offset = offs;
267 return ref;
268}
269
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900270/*
271 * Convert a location into trace_arg.
272 * If tvar == NULL, this just checks variable can be converted.
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900273 * If fentry == true and vr_die is a parameter, do huristic search
274 * for the location fuzzed by function entry mcount.
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900275 */
276static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900277 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900278 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400279{
280 Dwarf_Attribute attr;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900281 Dwarf_Addr tmp = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400282 Dwarf_Op *op;
283 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500284 unsigned int regn;
285 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400286 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400287 const char *regs;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400288 int ret;
289
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900290 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
291 goto static_var;
292
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400293 /* TODO: handle more than 1 exprs */
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900294 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
295 return -EINVAL; /* Broken DIE ? */
296 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
297 ret = dwarf_entrypc(sp_die, &tmp);
298 if (ret || addr != tmp ||
299 dwarf_tag(vr_die) != DW_TAG_formal_parameter ||
300 dwarf_highpc(sp_die, &tmp))
301 return -ENOENT;
302 /*
303 * This is fuzzed by fentry mcount. We try to find the
304 * parameter location at the earliest address.
305 */
306 for (addr += 1; addr <= tmp; addr++) {
307 if (dwarf_getlocation_addr(&attr, addr, &op,
308 &nops, 1) > 0)
309 goto found;
310 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400311 return -ENOENT;
312 }
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900313found:
314 if (nops == 0)
315 /* TODO: Support const_value */
316 return -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400317
318 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900319static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900320 if (!tvar)
321 return 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400322 /* Static variables on memory (not stack), make @varname */
323 ret = strlen(dwarf_diename(vr_die));
324 tvar->value = zalloc(ret + 2);
325 if (tvar->value == NULL)
326 return -ENOMEM;
327 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
328 tvar->ref = alloc_trace_arg_ref((long)offs);
329 if (tvar->ref == NULL)
330 return -ENOMEM;
331 return 0;
332 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400333
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400334 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500335 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900336 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400337 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400338 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500339 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900340 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500341 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400342
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500343 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
344 regn = op->atom - DW_OP_breg0;
345 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400346 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500347 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
348 regn = op->atom - DW_OP_reg0;
349 } else if (op->atom == DW_OP_bregx) {
350 regn = op->number;
351 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400352 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500353 } else if (op->atom == DW_OP_regx) {
354 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400355 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900356 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400357 return -ENOTSUP;
358 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400359
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900360 if (!tvar)
361 return 0;
362
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400363 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400364 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900365 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900366 pr_warning("Mapping for the register number %u "
367 "missing on this architecture.\n", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400368 return -ERANGE;
369 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400370
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400371 tvar->value = strdup(regs);
372 if (tvar->value == NULL)
373 return -ENOMEM;
374
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400375 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400376 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400377 if (tvar->ref == NULL)
378 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400379 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400380 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400381}
382
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900383#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
384
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400385static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530386 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400387 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400388{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530389 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400390 Dwarf_Die type;
391 char buf[16];
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900392 int bsize, boffs, total;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400393 int ret;
394
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400395 /* TODO: check all types */
396 if (cast && strcmp(cast, "string") != 0) {
397 /* Non string type is OK */
398 tvar->type = strdup(cast);
399 return (tvar->type == NULL) ? -ENOMEM : 0;
400 }
401
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900402 bsize = dwarf_bitsize(vr_die);
403 if (bsize > 0) {
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900404 /* This is a bitfield */
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900405 boffs = dwarf_bitoffset(vr_die);
406 total = dwarf_bytesize(vr_die);
407 if (boffs < 0 || total < 0)
408 return -ENOENT;
409 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
410 BYTES_TO_BITS(total));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900411 goto formatted;
412 }
413
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400414 if (die_get_real_type(vr_die, &type) == NULL) {
415 pr_warning("Failed to get a type information of %s.\n",
416 dwarf_diename(vr_die));
417 return -ENOENT;
418 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400419
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400420 pr_debug("%s type is %s.\n",
421 dwarf_diename(vr_die), dwarf_diename(&type));
422
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400423 if (cast && strcmp(cast, "string") == 0) { /* String type */
424 ret = dwarf_tag(&type);
425 if (ret != DW_TAG_pointer_type &&
426 ret != DW_TAG_array_type) {
427 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900428 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400429 dwarf_diename(vr_die), dwarf_diename(&type));
430 return -EINVAL;
431 }
Hyeoncheol Lee7ce28b52012-09-11 16:57:28 +0900432 if (die_get_real_type(&type, &type) == NULL) {
433 pr_warning("Failed to get a type"
434 " information.\n");
435 return -ENOENT;
436 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400437 if (ret == DW_TAG_pointer_type) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400438 while (*ref_ptr)
439 ref_ptr = &(*ref_ptr)->next;
440 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530441 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400442 if (*ref_ptr == NULL) {
443 pr_warning("Out of memory error\n");
444 return -ENOMEM;
445 }
446 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900447 if (!die_compare_name(&type, "char") &&
448 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400449 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900450 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400451 dwarf_diename(vr_die));
452 return -EINVAL;
453 }
454 tvar->type = strdup(cast);
455 return (tvar->type == NULL) ? -ENOMEM : 0;
456 }
457
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900458 ret = dwarf_bytesize(&type);
459 if (ret <= 0)
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900460 /* No size ... try to use default type */
461 return 0;
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900462 ret = BYTES_TO_BITS(ret);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400463
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900464 /* Check the bitwidth */
465 if (ret > MAX_BASIC_TYPE_BITS) {
466 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
467 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
468 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400469 }
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900470 ret = snprintf(buf, 16, "%c%d",
471 die_is_signed_type(&type) ? 's' : 'u', ret);
472
473formatted:
474 if (ret < 0 || ret >= 16) {
475 if (ret >= 16)
476 ret = -E2BIG;
477 pr_warning("Failed to convert variable type: %s\n",
478 strerror(-ret));
479 return ret;
480 }
481 tvar->type = strdup(buf);
482 if (tvar->type == NULL)
483 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400484 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400485}
486
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400487static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400488 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530489 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400490 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400491{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530492 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400493 Dwarf_Die type;
494 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400495 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400496
497 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400498 if (die_get_real_type(vr_die, &type) == NULL) {
499 pr_warning("Failed to get the type of %s.\n", varname);
500 return -ENOENT;
501 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400502 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
503 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400504
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400505 if (field->name[0] == '[' &&
506 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
507 if (field->next)
508 /* Save original type for next field */
509 memcpy(die_mem, &type, sizeof(*die_mem));
510 /* Get the type of this array */
511 if (die_get_real_type(&type, &type) == NULL) {
512 pr_warning("Failed to get the type of %s.\n", varname);
513 return -ENOENT;
514 }
515 pr_debug2("Array real type: (%x)\n",
516 (unsigned)dwarf_dieoffset(&type));
517 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530518 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400519 if (ref == NULL)
520 return -ENOMEM;
521 if (*ref_ptr)
522 (*ref_ptr)->next = ref;
523 else
524 *ref_ptr = ref;
525 }
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900526 ref->offset += dwarf_bytesize(&type) * field->index;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400527 if (!field->next)
528 /* Save vr_die for converting types */
529 memcpy(die_mem, vr_die, sizeof(*die_mem));
530 goto next;
531 } else if (tag == DW_TAG_pointer_type) {
532 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400533 if (!field->ref) {
534 pr_err("Semantic error: %s must be referred by '->'\n",
535 field->name);
536 return -EINVAL;
537 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400538 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400539 if (die_get_real_type(&type, &type) == NULL) {
540 pr_warning("Failed to get the type of %s.\n", varname);
541 return -ENOENT;
542 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400543 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900544 tag = dwarf_tag(&type);
545 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
546 pr_warning("%s is not a data structure nor an union.\n",
547 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400548 return -EINVAL;
549 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400550
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530551 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400552 if (ref == NULL)
553 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400554 if (*ref_ptr)
555 (*ref_ptr)->next = ref;
556 else
557 *ref_ptr = ref;
558 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400559 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900560 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
561 pr_warning("%s is not a data structure nor an union.\n",
562 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400563 return -EINVAL;
564 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400565 if (field->name[0] == '[') {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900566 pr_err("Semantic error: %s is not a pointor"
567 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400568 return -EINVAL;
569 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400570 if (field->ref) {
571 pr_err("Semantic error: %s must be referred by '.'\n",
572 field->name);
573 return -EINVAL;
574 }
575 if (!ref) {
576 pr_warning("Structure on a register is not "
577 "supported yet.\n");
578 return -ENOTSUP;
579 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400580 }
581
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400582 if (die_find_member(&type, field->name, die_mem) == NULL) {
Arnaldo Carvalho de Melo9ef04382013-10-24 17:36:31 -0300583 pr_warning("%s(type:%s) has no member %s.\n", varname,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400584 dwarf_diename(&type), field->name);
585 return -EINVAL;
586 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400587
588 /* Get the offset of the field */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900589 if (tag == DW_TAG_union_type) {
590 offs = 0;
591 } else {
592 ret = die_get_data_member_location(die_mem, &offs);
593 if (ret < 0) {
594 pr_warning("Failed to get the offset of %s.\n",
595 field->name);
596 return ret;
597 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400598 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400599 ref->offset += (long)offs;
600
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400601next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400602 /* Converting next field */
603 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400604 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300605 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400606 else
607 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400608}
609
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400610/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400611static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400612{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400613 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400614 int ret;
615
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400616 pr_debug("Converting variable %s into trace event.\n",
617 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500618
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900619 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900620 &pf->sp_die, pf->tvar);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900621 if (ret == -ENOENT)
622 pr_err("Failed to find the location of %s at this address.\n"
623 " Perhaps, it has been optimized out.\n", pf->pvar->var);
624 else if (ret == -ENOTSUP)
625 pr_err("Sorry, we don't support this variable location yet.\n");
626 else if (pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400627 ret = convert_variable_fields(vr_die, pf->pvar->var,
628 pf->pvar->field, &pf->tvar->ref,
629 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400630 vr_die = &die_mem;
631 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400632 if (ret == 0)
633 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500634 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400635 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400636}
637
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900638/* Find a variable in a scope DIE */
639static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400640{
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900641 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400642 char buf[32], *ptr;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900643 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400644
Masami Hiramatsu367e94c2010-08-27 20:38:59 +0900645 if (!is_c_varname(pf->pvar->var)) {
646 /* Copy raw parameters */
647 pf->tvar->value = strdup(pf->pvar->var);
648 if (pf->tvar->value == NULL)
649 return -ENOMEM;
650 if (pf->pvar->type) {
651 pf->tvar->type = strdup(pf->pvar->type);
652 if (pf->tvar->type == NULL)
653 return -ENOMEM;
654 }
655 if (pf->pvar->name) {
656 pf->tvar->name = strdup(pf->pvar->name);
657 if (pf->tvar->name == NULL)
658 return -ENOMEM;
659 } else
660 pf->tvar->name = NULL;
661 return 0;
662 }
663
Masami Hiramatsu48481932010-04-12 13:16:53 -0400664 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400665 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400666 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400667 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
668 if (ret < 0)
669 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400670 ptr = strchr(buf, ':'); /* Change type separator to _ */
671 if (ptr)
672 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400673 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400674 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400675 if (pf->tvar->name == NULL)
676 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400677
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900678 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400679 /* Search child die for local variables and parameters. */
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900680 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
681 /* Search again in global variables */
682 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var, 0, &vr_die))
683 ret = -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400684 }
Masami Hiramatsuf66fedc2011-08-20 14:39:23 +0900685 if (ret >= 0)
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900686 ret = convert_variable(&vr_die, pf);
687
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400688 if (ret < 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400689 pr_warning("Failed to find '%s' in this function.\n",
690 pf->pvar->var);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400691 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400692}
693
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900694/* Convert subprogram DIE to trace point */
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900695static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
696 Dwarf_Addr paddr, bool retprobe,
697 struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400698{
Prashanth Nageshappa26b79522012-02-24 13:11:39 +0530699 Dwarf_Addr eaddr, highaddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900700 GElf_Sym sym;
701 const char *symbol;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500702
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900703 /* Verify the address is correct */
704 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
705 pr_warning("Failed to get entry address of %s\n",
706 dwarf_diename(sp_die));
707 return -ENOENT;
708 }
709 if (dwarf_highpc(sp_die, &highaddr) != 0) {
710 pr_warning("Failed to get end address of %s\n",
711 dwarf_diename(sp_die));
712 return -ENOENT;
713 }
714 if (paddr > highaddr) {
715 pr_warning("Offset specified is greater than size of %s\n",
716 dwarf_diename(sp_die));
717 return -EINVAL;
718 }
719
720 /* Get an appropriate symbol from symtab */
721 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
722 if (!symbol) {
723 pr_warning("Failed to find symbol at 0x%lx\n",
724 (unsigned long)paddr);
725 return -ENOENT;
726 }
727 tp->offset = (unsigned long)(paddr - sym.st_value);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000728 tp->address = (unsigned long)paddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900729 tp->symbol = strdup(symbol);
730 if (!tp->symbol)
731 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400732
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900733 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900734 if (retprobe) {
735 if (eaddr != paddr) {
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900736 pr_warning("Return probe must be on the head of"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900737 " a real function.\n");
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900738 return -EINVAL;
739 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900740 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900741 }
742
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900743 return 0;
744}
745
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900746/* Call probe_finder callback with scope DIE */
747static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900748{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900749 Dwarf_Attribute fb_attr;
750 size_t nops;
751 int ret;
752
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900753 if (!sc_die) {
754 pr_err("Caller must pass a scope DIE. Program error.\n");
755 return -EINVAL;
756 }
757
758 /* If not a real subprogram, find a real one */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900759 if (!die_is_func_def(sc_die)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900760 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900761 pr_warning("Failed to find probe point in any "
762 "functions.\n");
763 return -ENOENT;
764 }
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900765 } else
766 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400767
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900768 /* Get the frame base attribute/ops from subprogram */
769 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400770 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400771 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500772 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400773#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400774 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
775 pf->cfi != NULL) {
776 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400777 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
778 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900779 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400780 (uintmax_t)pf->addr);
781 return -ENOENT;
782 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400783#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400784 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500785
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900786 /* Call finder's callback handler */
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900787 ret = pf->callback(sc_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500788
789 /* *pf->fb_ops will be cached in libdw. Don't free it. */
790 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900791
792 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400793}
794
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900795struct find_scope_param {
796 const char *function;
797 const char *file;
798 int line;
799 int diff;
800 Dwarf_Die *die_mem;
801 bool found;
802};
803
804static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
805{
806 struct find_scope_param *fsp = data;
807 const char *file;
808 int lno;
809
810 /* Skip if declared file name does not match */
811 if (fsp->file) {
812 file = dwarf_decl_file(fn_die);
813 if (!file || strcmp(fsp->file, file) != 0)
814 return 0;
815 }
816 /* If the function name is given, that's what user expects */
817 if (fsp->function) {
818 if (die_compare_name(fn_die, fsp->function)) {
819 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
820 fsp->found = true;
821 return 1;
822 }
823 } else {
824 /* With the line number, find the nearest declared DIE */
825 dwarf_decl_line(fn_die, &lno);
826 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
827 /* Keep a candidate and continue */
828 fsp->diff = fsp->line - lno;
829 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
830 fsp->found = true;
831 }
832 }
833 return 0;
834}
835
836/* Find an appropriate scope fits to given conditions */
837static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
838{
839 struct find_scope_param fsp = {
840 .function = pf->pev->point.function,
841 .file = pf->fname,
842 .line = pf->lno,
843 .diff = INT_MAX,
844 .die_mem = die_mem,
845 .found = false,
846 };
847
848 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
849
850 return fsp.found ? die_mem : NULL;
851}
852
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900853static int probe_point_line_walker(const char *fname, int lineno,
854 Dwarf_Addr addr, void *data)
855{
856 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900857 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900858 int ret;
859
860 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
861 return 0;
862
863 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900864 sc_die = find_best_scope(pf, &die_mem);
865 if (!sc_die) {
866 pr_warning("Failed to find scope of probe point.\n");
867 return -ENOENT;
868 }
869
870 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900871
872 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -0300873 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900874}
875
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400876/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400877static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400878{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900879 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400880}
881
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500882/* Find lines which match lazy pattern */
883static int find_lazy_match_lines(struct list_head *head,
884 const char *fname, const char *pat)
885{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100886 FILE *fp;
887 char *line = NULL;
888 size_t line_len;
889 ssize_t len;
890 int count = 0, linenum = 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500891
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100892 fp = fopen(fname, "r");
893 if (!fp) {
894 pr_warning("Failed to open %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300895 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400896 }
897
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100898 while ((len = getline(&line, &line_len, fp)) > 0) {
899
900 if (line[len - 1] == '\n')
901 line[len - 1] = '\0';
902
903 if (strlazymatch(line, pat)) {
904 line_list__add_line(head, linenum);
905 count++;
906 }
907 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400908 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300909
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100910 if (ferror(fp))
911 count = -errno;
912 free(line);
913 fclose(fp);
914
915 if (count == 0)
916 pr_debug("No matched lines found in %s.\n", fname);
917 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500918}
919
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900920static int probe_point_lazy_walker(const char *fname, int lineno,
921 Dwarf_Addr addr, void *data)
922{
923 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900924 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900925 int ret;
926
927 if (!line_list__has_line(&pf->lcache, lineno) ||
928 strtailcmp(fname, pf->fname) != 0)
929 return 0;
930
931 pr_debug("Probe line found: line:%d addr:0x%llx\n",
932 lineno, (unsigned long long)addr);
933 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900934 pf->lno = lineno;
935 sc_die = find_best_scope(pf, &die_mem);
936 if (!sc_die) {
937 pr_warning("Failed to find scope of probe point.\n");
938 return -ENOENT;
939 }
940
941 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900942
943 /*
944 * Continue if no error, because the lazy pattern will match
945 * to other lines
946 */
Ingo Molnar5e814dd2011-03-15 20:51:09 +0100947 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900948}
949
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500950/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400951static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500952{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400953 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500954
955 if (list_empty(&pf->lcache)) {
956 /* Matching lazy line pattern */
957 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400958 pf->pev->point.lazy_line);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100959 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400960 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500961 }
962
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900963 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500964}
965
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500966static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400967{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900968 struct probe_finder *pf = data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400969 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400970 Dwarf_Addr addr;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900971 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400972
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500973 if (pp->lazy_line)
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900974 ret = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500975 else {
976 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400977 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900978 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400979 dwarf_diename(in_die));
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900980 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400981 }
982 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500983 pf->addr += pp->offset;
984 pr_debug("found inline addr: 0x%jx\n",
985 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500986
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900987 ret = call_probe_finder(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500988 }
989
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900990 return ret;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500991}
992
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900993/* Callback parameter with return value for libdw */
994struct dwarf_callback_param {
995 void *data;
996 int retval;
997};
998
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500999/* Search function from function name */
1000static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
1001{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001002 struct dwarf_callback_param *param = data;
1003 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001004 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001005
1006 /* Check tag and diename */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001007 if (!die_is_func_def(sp_die) ||
1008 !die_compare_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001009 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001010
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001011 /* Check declared file */
1012 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
1013 return DWARF_CB_OK;
1014
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001015 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001016 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001017 dwarf_decl_line(sp_die, &pf->lno);
1018 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001019 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001020 } else if (!dwarf_func_inline(sp_die)) {
1021 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001022 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001023 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001024 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001025 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001026 pr_warning("Failed to get entry address of "
1027 "%s.\n", dwarf_diename(sp_die));
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001028 param->retval = -ENOENT;
1029 return DWARF_CB_ABORT;
1030 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001031 pf->addr += pp->offset;
1032 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001033 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001034 }
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001035 } else
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001036 /* Inlined function: search instances */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001037 param->retval = die_walk_instances(sp_die,
1038 probe_point_inline_cb, (void *)pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001039
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001040 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001041}
1042
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001043static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001044{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001045 struct dwarf_callback_param _param = {.data = (void *)pf,
1046 .retval = 0};
1047 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1048 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001049}
1050
Lin Mingcd25f8b2011-03-25 16:27:48 +08001051struct pubname_callback_param {
1052 char *function;
1053 char *file;
1054 Dwarf_Die *cu_die;
1055 Dwarf_Die *sp_die;
1056 int found;
1057};
1058
1059static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1060{
1061 struct pubname_callback_param *param = data;
1062
1063 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1064 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1065 return DWARF_CB_OK;
1066
1067 if (die_compare_name(param->sp_die, param->function)) {
1068 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1069 return DWARF_CB_OK;
1070
1071 if (param->file &&
1072 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1073 return DWARF_CB_OK;
1074
1075 param->found = 1;
1076 return DWARF_CB_ABORT;
1077 }
1078 }
1079
1080 return DWARF_CB_OK;
1081}
1082
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001083/* Find probe points from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001084static int debuginfo__find_probes(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001085 struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001086{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001087 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001088 Dwarf_Off off, noff;
1089 size_t cuhl;
1090 Dwarf_Die *diep;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001091 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001092
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001093#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001094 /* Get the call frame information from this dwarf */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001095 pf->cfi = dwarf_getcfi(dbg->dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001096#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001097
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001098 off = 0;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001099 line_list__init(&pf->lcache);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001100
1101 /* Fastpath: lookup by function name from .debug_pubnames section */
1102 if (pp->function) {
1103 struct pubname_callback_param pubname_param = {
1104 .function = pp->function,
1105 .file = pp->file,
1106 .cu_die = &pf->cu_die,
1107 .sp_die = &pf->sp_die,
Lin Ming2b348a72011-04-29 08:41:57 +00001108 .found = 0,
Lin Mingcd25f8b2011-03-25 16:27:48 +08001109 };
1110 struct dwarf_callback_param probe_param = {
1111 .data = pf,
1112 };
1113
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001114 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001115 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001116 if (pubname_param.found) {
1117 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1118 if (ret)
1119 goto found;
1120 }
1121 }
1122
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001123 /* Loop on CUs (Compilation Unit) */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001124 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001125 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001126 diep = dwarf_offdie(dbg->dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001127 if (!diep)
1128 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001129
1130 /* Check if target file is included. */
1131 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001132 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001133 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001134 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001135
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001136 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001137 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001138 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001139 else if (pp->lazy_line)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001140 ret = find_probe_point_lazy(NULL, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001141 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001142 pf->lno = pp->line;
1143 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001144 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001145 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001146 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001147 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001148 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001149 }
Lin Mingcd25f8b2011-03-25 16:27:48 +08001150
1151found:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001152 line_list__free(&pf->lcache);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001153
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001154 return ret;
1155}
1156
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001157struct local_vars_finder {
1158 struct probe_finder *pf;
1159 struct perf_probe_arg *args;
1160 int max_args;
1161 int nargs;
1162 int ret;
1163};
1164
1165/* Collect available variables in this scope */
1166static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1167{
1168 struct local_vars_finder *vf = data;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001169 struct probe_finder *pf = vf->pf;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001170 int tag;
1171
1172 tag = dwarf_tag(die_mem);
1173 if (tag == DW_TAG_formal_parameter ||
1174 tag == DW_TAG_variable) {
1175 if (convert_variable_location(die_mem, vf->pf->addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001176 vf->pf->fb_ops, &pf->sp_die,
1177 NULL) == 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001178 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1179 if (vf->args[vf->nargs].var == NULL) {
1180 vf->ret = -ENOMEM;
1181 return DIE_FIND_CB_END;
1182 }
1183 pr_debug(" %s", vf->args[vf->nargs].var);
1184 vf->nargs++;
1185 }
1186 }
1187
1188 if (dwarf_haspc(die_mem, vf->pf->addr))
1189 return DIE_FIND_CB_CONTINUE;
1190 else
1191 return DIE_FIND_CB_SIBLING;
1192}
1193
1194static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1195 struct perf_probe_arg *args)
1196{
1197 Dwarf_Die die_mem;
1198 int i;
1199 int n = 0;
1200 struct local_vars_finder vf = {.pf = pf, .args = args,
1201 .max_args = MAX_PROBE_ARGS, .ret = 0};
1202
1203 for (i = 0; i < pf->pev->nargs; i++) {
1204 /* var never be NULL */
1205 if (strcmp(pf->pev->args[i].var, "$vars") == 0) {
1206 pr_debug("Expanding $vars into:");
1207 vf.nargs = n;
1208 /* Special local variables */
1209 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1210 &die_mem);
1211 pr_debug(" (%d)\n", vf.nargs - n);
1212 if (vf.ret < 0)
1213 return vf.ret;
1214 n = vf.nargs;
1215 } else {
1216 /* Copy normal argument */
1217 args[n] = pf->pev->args[i];
1218 n++;
1219 }
1220 }
1221 return n;
1222}
1223
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001224/* Add a found probe point into trace event list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001225static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001226{
1227 struct trace_event_finder *tf =
1228 container_of(pf, struct trace_event_finder, pf);
1229 struct probe_trace_event *tev;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001230 struct perf_probe_arg *args;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001231 int ret, i;
1232
1233 /* Check number of tevs */
1234 if (tf->ntevs == tf->max_tevs) {
1235 pr_warning("Too many( > %d) probe point found.\n",
1236 tf->max_tevs);
1237 return -ERANGE;
1238 }
1239 tev = &tf->tevs[tf->ntevs++];
1240
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001241 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001242 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001243 pf->pev->point.retprobe, &tev->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001244 if (ret < 0)
1245 return ret;
1246
1247 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1248 tev->point.offset);
1249
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001250 /* Expand special probe argument if exist */
1251 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
1252 if (args == NULL)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001253 return -ENOMEM;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001254
1255 ret = expand_probe_args(sc_die, pf, args);
1256 if (ret < 0)
1257 goto end;
1258
1259 tev->nargs = ret;
1260 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1261 if (tev->args == NULL) {
1262 ret = -ENOMEM;
1263 goto end;
1264 }
1265
1266 /* Find each argument */
1267 for (i = 0; i < tev->nargs; i++) {
1268 pf->pvar = &args[i];
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001269 pf->tvar = &tev->args[i];
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001270 /* Variable should be found from scope DIE */
1271 ret = find_variable(sc_die, pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001272 if (ret != 0)
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001273 break;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001274 }
1275
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001276end:
1277 free(args);
1278 return ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001279}
1280
1281/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001282int debuginfo__find_trace_events(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001283 struct perf_probe_event *pev,
1284 struct probe_trace_event **tevs, int max_tevs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001285{
1286 struct trace_event_finder tf = {
1287 .pf = {.pev = pev, .callback = add_probe_trace_event},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001288 .mod = dbg->mod, .max_tevs = max_tevs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001289 int ret;
1290
1291 /* Allocate result tevs array */
1292 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
1293 if (*tevs == NULL)
1294 return -ENOMEM;
1295
1296 tf.tevs = *tevs;
1297 tf.ntevs = 0;
1298
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001299 ret = debuginfo__find_probes(dbg, &tf.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001300 if (ret < 0) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001301 zfree(tevs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001302 return ret;
1303 }
1304
1305 return (ret < 0) ? ret : tf.ntevs;
1306}
1307
1308#define MAX_VAR_LEN 64
1309
1310/* Collect available variables in this scope */
1311static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1312{
1313 struct available_var_finder *af = data;
1314 struct variable_list *vl;
1315 char buf[MAX_VAR_LEN];
1316 int tag, ret;
1317
1318 vl = &af->vls[af->nvls - 1];
1319
1320 tag = dwarf_tag(die_mem);
1321 if (tag == DW_TAG_formal_parameter ||
1322 tag == DW_TAG_variable) {
1323 ret = convert_variable_location(die_mem, af->pf.addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001324 af->pf.fb_ops, &af->pf.sp_die,
1325 NULL);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001326 if (ret == 0) {
1327 ret = die_get_varname(die_mem, buf, MAX_VAR_LEN);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001328 pr_debug2("Add new var: %s\n", buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001329 if (ret > 0)
1330 strlist__add(vl->vars, buf);
1331 }
1332 }
1333
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001334 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001335 return DIE_FIND_CB_CONTINUE;
1336 else
1337 return DIE_FIND_CB_SIBLING;
1338}
1339
1340/* Add a found vars into available variables list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001341static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001342{
1343 struct available_var_finder *af =
1344 container_of(pf, struct available_var_finder, pf);
1345 struct variable_list *vl;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001346 Dwarf_Die die_mem;
1347 int ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001348
1349 /* Check number of tevs */
1350 if (af->nvls == af->max_vls) {
1351 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1352 return -ERANGE;
1353 }
1354 vl = &af->vls[af->nvls++];
1355
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001356 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001357 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001358 pf->pev->point.retprobe, &vl->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001359 if (ret < 0)
1360 return ret;
1361
1362 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1363 vl->point.offset);
1364
1365 /* Find local variables */
1366 vl->vars = strlist__new(true, NULL);
1367 if (vl->vars == NULL)
1368 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001369 af->child = true;
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001370 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001371
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001372 /* Find external variables */
1373 if (!af->externs)
1374 goto out;
1375 /* Don't need to search child DIE for externs. */
1376 af->child = false;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001377 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001378
1379out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001380 if (strlist__empty(vl->vars)) {
1381 strlist__delete(vl->vars);
1382 vl->vars = NULL;
1383 }
1384
1385 return ret;
1386}
1387
1388/* Find available variables at given probe point */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001389int debuginfo__find_available_vars_at(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001390 struct perf_probe_event *pev,
1391 struct variable_list **vls,
1392 int max_vls, bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001393{
1394 struct available_var_finder af = {
1395 .pf = {.pev = pev, .callback = add_available_vars},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001396 .mod = dbg->mod,
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001397 .max_vls = max_vls, .externs = externs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001398 int ret;
1399
1400 /* Allocate result vls array */
1401 *vls = zalloc(sizeof(struct variable_list) * max_vls);
1402 if (*vls == NULL)
1403 return -ENOMEM;
1404
1405 af.vls = *vls;
1406 af.nvls = 0;
1407
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001408 ret = debuginfo__find_probes(dbg, &af.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001409 if (ret < 0) {
1410 /* Free vlist for error */
1411 while (af.nvls--) {
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001412 free(af.vls[af.nvls].point.symbol);
1413 strlist__delete(af.vls[af.nvls].vars);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001414 }
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001415 zfree(vls);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001416 return ret;
1417 }
1418
1419 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001420}
1421
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001422/* Reverse search */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001423int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001424 struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001425{
1426 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001427 Dwarf_Addr _addr = 0, baseaddr = 0;
1428 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001429 int baseline = 0, lineno = 0, ret = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001430
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001431 /* Adjust address with bias */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001432 addr += dbg->bias;
Masami Hiramatsuff741782011-06-27 16:27:39 +09001433
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001434 /* Find cu die */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001435 if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr - dbg->bias, &cudie)) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001436 pr_warning("Failed to find debug information for address %lx\n",
1437 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001438 ret = -EINVAL;
1439 goto end;
1440 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001441
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001442 /* Find a corresponding line (filename and lineno) */
1443 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1444 /* Don't care whether it failed or not */
1445
1446 /* Find a corresponding function (name, baseline and baseaddr) */
Masami Hiramatsue0d153c2011-06-27 16:27:27 +09001447 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001448 /* Get function entry information */
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001449 func = basefunc = dwarf_diename(&spdie);
1450 if (!func ||
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001451 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001452 dwarf_decl_line(&spdie, &baseline) != 0) {
1453 lineno = 0;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001454 goto post;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001455 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001456
Masami Hiramatsu1b286bd2013-10-11 12:23:17 +00001457 fname = dwarf_decl_file(&spdie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001458 if (addr == (unsigned long)baseaddr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001459 /* Function entry - Relative line number is 0 */
1460 lineno = baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001461 goto post;
1462 }
1463
1464 /* Track down the inline functions step by step */
1465 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1466 &indie)) {
1467 /* There is an inline function */
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001468 if (dwarf_entrypc(&indie, &_addr) == 0 &&
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001469 _addr == addr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001470 /*
1471 * addr is at an inline function entry.
1472 * In this case, lineno should be the call-site
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001473 * line number. (overwrite lineinfo)
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001474 */
1475 lineno = die_get_call_lineno(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001476 fname = die_get_call_file(&indie);
1477 break;
1478 } else {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001479 /*
1480 * addr is in an inline function body.
1481 * Since lineno points one of the lines
1482 * of the inline function, baseline should
1483 * be the entry line of the inline function.
1484 */
1485 tmp = dwarf_diename(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001486 if (!tmp ||
1487 dwarf_decl_line(&indie, &baseline) != 0)
1488 break;
1489 func = tmp;
1490 spdie = indie;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001491 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001492 }
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001493 /* Verify the lineno and baseline are in a same file */
1494 tmp = dwarf_decl_file(&spdie);
1495 if (!tmp || strcmp(tmp, fname) != 0)
1496 lineno = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001497 }
1498
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001499post:
1500 /* Make a relative line number or an offset */
1501 if (lineno)
1502 ppt->line = lineno - baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001503 else if (basefunc) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001504 ppt->offset = addr - (unsigned long)baseaddr;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001505 func = basefunc;
1506 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001507
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001508 /* Duplicate strings */
1509 if (func) {
1510 ppt->function = strdup(func);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001511 if (ppt->function == NULL) {
1512 ret = -ENOMEM;
1513 goto end;
1514 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001515 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001516 if (fname) {
1517 ppt->file = strdup(fname);
1518 if (ppt->file == NULL) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001519 zfree(&ppt->function);
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001520 ret = -ENOMEM;
1521 goto end;
1522 }
1523 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001524end:
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001525 if (ret == 0 && (fname || func))
1526 ret = 1; /* Found a point */
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001527 return ret;
1528}
1529
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001530/* Add a line and store the src path */
1531static int line_range_add_line(const char *src, unsigned int lineno,
1532 struct line_range *lr)
1533{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001534 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001535 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001536 lr->path = strdup(src);
1537 if (lr->path == NULL)
1538 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001539 }
1540 return line_list__add_line(&lr->line_list, lineno);
1541}
1542
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001543static int line_range_walk_cb(const char *fname, int lineno,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001544 Dwarf_Addr addr __maybe_unused,
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001545 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001546{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001547 struct line_finder *lf = data;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001548
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001549 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001550 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001551 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001552
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001553 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1554 return -EINVAL;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001555
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001556 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001557}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001558
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001559/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001560static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001561{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001562 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001563
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001564 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001565
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001566 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001567 if (ret >= 0)
1568 if (!list_empty(&lf->lr->line_list))
1569 ret = lf->found = 1;
1570 else
1571 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001572 else {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001573 zfree(&lf->lr->path);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001574 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001575 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001576}
1577
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001578static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1579{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001580 find_line_range_by_line(in_die, data);
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001581
1582 /*
1583 * We have to check all instances of inlined function, because
1584 * some execution paths can be optimized out depends on the
1585 * function argument of instances
1586 */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001587 return 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001588}
1589
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001590/* Search function definition from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001591static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001592{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001593 struct dwarf_callback_param *param = data;
1594 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001595 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001596
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001597 /* Check declared file */
1598 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1599 return DWARF_CB_OK;
1600
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001601 if (die_is_func_def(sp_die) &&
Masami Hiramatsu82175632010-07-09 18:29:17 +09001602 die_compare_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001603 lf->fname = dwarf_decl_file(sp_die);
1604 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001605 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001606 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001607 if (lf->lno_s < 0) /* Overflow */
1608 lf->lno_s = INT_MAX;
1609 lf->lno_e = lr->offset + lr->end;
1610 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001611 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001612 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001613 lr->start = lf->lno_s;
1614 lr->end = lf->lno_e;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001615 if (dwarf_func_inline(sp_die))
1616 param->retval = die_walk_instances(sp_die,
1617 line_range_inline_cb, lf);
1618 else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001619 param->retval = find_line_range_by_line(sp_die, lf);
1620 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001621 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001622 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001623}
1624
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001625static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001626{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001627 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1628 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1629 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001630}
1631
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001632int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001633{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001634 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001635 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001636 Dwarf_Off off = 0, noff;
1637 size_t cuhl;
1638 Dwarf_Die *diep;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001639 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001640
Lin Mingcd25f8b2011-03-25 16:27:48 +08001641 /* Fastpath: lookup by function name from .debug_pubnames section */
1642 if (lr->function) {
1643 struct pubname_callback_param pubname_param = {
1644 .function = lr->function, .file = lr->file,
1645 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1646 struct dwarf_callback_param line_range_param = {
1647 .data = (void *)&lf, .retval = 0};
1648
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001649 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001650 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001651 if (pubname_param.found) {
1652 line_range_search_cb(&lf.sp_die, &line_range_param);
1653 if (lf.found)
1654 goto found;
1655 }
1656 }
1657
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001658 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001659 while (!lf.found && ret >= 0) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001660 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001661 NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001662 break;
1663
1664 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001665 diep = dwarf_offdie(dbg->dbg, off + cuhl, &lf.cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001666 if (!diep)
1667 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001668
1669 /* Check if target file is included. */
1670 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001671 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001672 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001673 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001674
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001675 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001676 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001677 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001678 else {
1679 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001680 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001681 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001682 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001683 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001684 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001685 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001686
Lin Mingcd25f8b2011-03-25 16:27:48 +08001687found:
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001688 /* Store comp_dir */
1689 if (lf.found) {
1690 comp_dir = cu_get_comp_dir(&lf.cu_die);
1691 if (comp_dir) {
1692 lr->comp_dir = strdup(comp_dir);
1693 if (!lr->comp_dir)
1694 ret = -ENOMEM;
1695 }
1696 }
1697
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001698 pr_debug("path: %s\n", lr->path);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001699 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001700}
1701