blob: ac4740f8ee3aa54ae78f49e79883870bffa26c02 [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>
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040029#include <stdlib.h>
30#include <string.h>
31#include <stdarg.h>
Ian Munsiecd932c52010-04-20 16:58:32 +100032#include <dwarf-regs.h>
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040033
Masami Hiramatsu124bb832011-02-04 21:52:11 +090034#include <linux/bitops.h>
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040035#include "event.h"
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +000036#include "dso.h"
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040037#include "debug.h"
Masami Hiramatsu5a622572014-02-06 05:32:09 +000038#include "intlist.h"
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040039#include "util.h"
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040040#include "symbol.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040041#include "probe-finder.h"
Masami Hiramatsu180b2062016-08-18 17:58:31 +090042#include "probe-file.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040043
Masami Hiramatsu49849122010-04-12 13:17:15 -040044/* Kprobe tracer basic type is up to u64 */
45#define MAX_BASIC_TYPE_BITS 64
46
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090047/* Dwarf FL wrappers */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090048static char *debuginfo_path; /* Currently dummy */
49
50static const Dwfl_Callbacks offline_callbacks = {
51 .find_debuginfo = dwfl_standard_find_debuginfo,
52 .debuginfo_path = &debuginfo_path,
53
54 .section_address = dwfl_offline_section_address,
55
56 /* We use this table for core files too. */
57 .find_elf = dwfl_build_id_find_elf,
58};
59
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090060/* Get a Dwarf from offline image */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030061static int debuginfo__init_offline_dwarf(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +090062 const char *path)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090063{
Masami Hiramatsuff741782011-06-27 16:27:39 +090064 int fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090065
Masami Hiramatsuff741782011-06-27 16:27:39 +090066 fd = open(path, O_RDONLY);
67 if (fd < 0)
68 return fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090069
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030070 dbg->dwfl = dwfl_begin(&offline_callbacks);
71 if (!dbg->dwfl)
Masami Hiramatsuff741782011-06-27 16:27:39 +090072 goto error;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090073
Masami Hiramatsu91359492015-10-01 01:41:28 +090074 dwfl_report_begin(dbg->dwfl);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030075 dbg->mod = dwfl_report_offline(dbg->dwfl, "", "", fd);
76 if (!dbg->mod)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090077 goto error;
78
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030079 dbg->dbg = dwfl_module_getdwarf(dbg->mod, &dbg->bias);
80 if (!dbg->dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +090081 goto error;
82
Masami Hiramatsu91359492015-10-01 01:41:28 +090083 dwfl_report_end(dbg->dwfl, NULL, NULL);
84
Masami Hiramatsuff741782011-06-27 16:27:39 +090085 return 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090086error:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030087 if (dbg->dwfl)
88 dwfl_end(dbg->dwfl);
Masami Hiramatsuff741782011-06-27 16:27:39 +090089 else
90 close(fd);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030091 memset(dbg, 0, sizeof(*dbg));
Masami Hiramatsuff741782011-06-27 16:27:39 +090092
93 return -ENOENT;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090094}
95
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +000096static struct debuginfo *__debuginfo__new(const char *path)
Masami Hiramatsuff741782011-06-27 16:27:39 +090097{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030098 struct debuginfo *dbg = zalloc(sizeof(*dbg));
99 if (!dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900100 return NULL;
101
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300102 if (debuginfo__init_offline_dwarf(dbg, path) < 0)
103 zfree(&dbg);
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000104 if (dbg)
105 pr_debug("Open Debuginfo file: %s\n", path);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300106 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900107}
108
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000109enum dso_binary_type distro_dwarf_types[] = {
110 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
111 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
112 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
113 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
114 DSO_BINARY_TYPE__NOT_FOUND,
115};
116
117struct debuginfo *debuginfo__new(const char *path)
118{
119 enum dso_binary_type *type;
120 char buf[PATH_MAX], nil = '\0';
121 struct dso *dso;
122 struct debuginfo *dinfo = NULL;
123
124 /* Try to open distro debuginfo files */
125 dso = dso__new(path);
126 if (!dso)
127 goto out;
128
129 for (type = distro_dwarf_types;
130 !dinfo && *type != DSO_BINARY_TYPE__NOT_FOUND;
131 type++) {
132 if (dso__read_binary_type_filename(dso, *type, &nil,
133 buf, PATH_MAX) < 0)
134 continue;
135 dinfo = __debuginfo__new(buf);
136 }
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300137 dso__put(dso);
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000138
139out:
140 /* if failed to open all distro debuginfo, open given binary */
141 return dinfo ? : __debuginfo__new(path);
142}
143
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300144void debuginfo__delete(struct debuginfo *dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900145{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300146 if (dbg) {
147 if (dbg->dwfl)
148 dwfl_end(dbg->dwfl);
149 free(dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900150 }
151}
152
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400153/*
154 * Probe finder related functions
155 */
156
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530157static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400158{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530159 struct probe_trace_arg_ref *ref;
160 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400161 if (ref != NULL)
162 ref->offset = offs;
163 return ref;
164}
165
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900166/*
167 * Convert a location into trace_arg.
168 * If tvar == NULL, this just checks variable can be converted.
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900169 * If fentry == true and vr_die is a parameter, do huristic search
170 * for the location fuzzed by function entry mcount.
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900171 */
172static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900173 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900174 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400175{
176 Dwarf_Attribute attr;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900177 Dwarf_Addr tmp = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400178 Dwarf_Op *op;
179 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500180 unsigned int regn;
181 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400182 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400183 const char *regs;
He Kuang349e8d22015-05-11 09:25:03 +0000184 int ret, ret2 = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400185
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900186 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
187 goto static_var;
188
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400189 /* TODO: handle more than 1 exprs */
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900190 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
191 return -EINVAL; /* Broken DIE ? */
192 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
193 ret = dwarf_entrypc(sp_die, &tmp);
He Kuang349e8d22015-05-11 09:25:03 +0000194 if (ret)
195 return -ENOENT;
196
197 if (probe_conf.show_location_range &&
198 (dwarf_tag(vr_die) == DW_TAG_variable)) {
199 ret2 = -ERANGE;
200 } else if (addr != tmp ||
201 dwarf_tag(vr_die) != DW_TAG_formal_parameter) {
202 return -ENOENT;
203 }
204
205 ret = dwarf_highpc(sp_die, &tmp);
206 if (ret)
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900207 return -ENOENT;
208 /*
209 * This is fuzzed by fentry mcount. We try to find the
210 * parameter location at the earliest address.
211 */
212 for (addr += 1; addr <= tmp; addr++) {
213 if (dwarf_getlocation_addr(&attr, addr, &op,
214 &nops, 1) > 0)
215 goto found;
216 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400217 return -ENOENT;
218 }
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900219found:
220 if (nops == 0)
221 /* TODO: Support const_value */
222 return -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400223
224 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900225static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900226 if (!tvar)
He Kuang349e8d22015-05-11 09:25:03 +0000227 return ret2;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400228 /* Static variables on memory (not stack), make @varname */
229 ret = strlen(dwarf_diename(vr_die));
230 tvar->value = zalloc(ret + 2);
231 if (tvar->value == NULL)
232 return -ENOMEM;
233 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
234 tvar->ref = alloc_trace_arg_ref((long)offs);
235 if (tvar->ref == NULL)
236 return -ENOMEM;
He Kuang349e8d22015-05-11 09:25:03 +0000237 return ret2;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400238 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400239
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400240 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500241 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900242 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400243 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400244 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500245 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900246 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500247 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400248
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500249 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
250 regn = op->atom - DW_OP_breg0;
251 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400252 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500253 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
254 regn = op->atom - DW_OP_reg0;
255 } else if (op->atom == DW_OP_bregx) {
256 regn = op->number;
257 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400258 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500259 } else if (op->atom == DW_OP_regx) {
260 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400261 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900262 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400263 return -ENOTSUP;
264 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400265
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900266 if (!tvar)
He Kuang349e8d22015-05-11 09:25:03 +0000267 return ret2;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900268
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400269 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400270 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900271 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900272 pr_warning("Mapping for the register number %u "
273 "missing on this architecture.\n", regn);
He Kuang349e8d22015-05-11 09:25:03 +0000274 return -ENOTSUP;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400275 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400276
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400277 tvar->value = strdup(regs);
278 if (tvar->value == NULL)
279 return -ENOMEM;
280
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400281 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400282 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400283 if (tvar->ref == NULL)
284 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400285 }
He Kuang349e8d22015-05-11 09:25:03 +0000286 return ret2;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400287}
288
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900289#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
290
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400291static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530292 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400293 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400294{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530295 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400296 Dwarf_Die type;
297 char buf[16];
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000298 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900299 int bsize, boffs, total;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400300 int ret;
Masami Hiramatsu92543782016-08-18 17:58:47 +0900301 char prefix;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400302
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400303 /* TODO: check all types */
Masami Hiramatsu92543782016-08-18 17:58:47 +0900304 if (cast && strcmp(cast, "string") != 0 && strcmp(cast, "x") != 0 &&
Naohiro Aota19f00b02016-08-09 11:40:08 +0900305 strcmp(cast, "s") != 0 && strcmp(cast, "u") != 0) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400306 /* Non string type is OK */
Masami Hiramatsu92543782016-08-18 17:58:47 +0900307 /* and respect signedness/hexadecimal cast */
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400308 tvar->type = strdup(cast);
309 return (tvar->type == NULL) ? -ENOMEM : 0;
310 }
311
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900312 bsize = dwarf_bitsize(vr_die);
313 if (bsize > 0) {
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900314 /* This is a bitfield */
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900315 boffs = dwarf_bitoffset(vr_die);
316 total = dwarf_bytesize(vr_die);
317 if (boffs < 0 || total < 0)
318 return -ENOENT;
319 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
320 BYTES_TO_BITS(total));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900321 goto formatted;
322 }
323
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400324 if (die_get_real_type(vr_die, &type) == NULL) {
325 pr_warning("Failed to get a type information of %s.\n",
326 dwarf_diename(vr_die));
327 return -ENOENT;
328 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400329
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400330 pr_debug("%s type is %s.\n",
331 dwarf_diename(vr_die), dwarf_diename(&type));
332
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400333 if (cast && strcmp(cast, "string") == 0) { /* String type */
334 ret = dwarf_tag(&type);
335 if (ret != DW_TAG_pointer_type &&
336 ret != DW_TAG_array_type) {
337 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900338 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400339 dwarf_diename(vr_die), dwarf_diename(&type));
340 return -EINVAL;
341 }
Hyeoncheol Lee7ce28b52012-09-11 16:57:28 +0900342 if (die_get_real_type(&type, &type) == NULL) {
343 pr_warning("Failed to get a type"
344 " information.\n");
345 return -ENOENT;
346 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400347 if (ret == DW_TAG_pointer_type) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400348 while (*ref_ptr)
349 ref_ptr = &(*ref_ptr)->next;
350 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530351 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400352 if (*ref_ptr == NULL) {
353 pr_warning("Out of memory error\n");
354 return -ENOMEM;
355 }
356 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900357 if (!die_compare_name(&type, "char") &&
358 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400359 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900360 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400361 dwarf_diename(vr_die));
362 return -EINVAL;
363 }
364 tvar->type = strdup(cast);
365 return (tvar->type == NULL) ? -ENOMEM : 0;
366 }
367
Naohiro Aota19f00b02016-08-09 11:40:08 +0900368 if (cast && (strcmp(cast, "u") == 0))
Masami Hiramatsu92543782016-08-18 17:58:47 +0900369 prefix = 'u';
Naohiro Aota19f00b02016-08-09 11:40:08 +0900370 else if (cast && (strcmp(cast, "s") == 0))
Masami Hiramatsu92543782016-08-18 17:58:47 +0900371 prefix = 's';
372 else if (cast && (strcmp(cast, "x") == 0) &&
373 probe_type_is_available(PROBE_TYPE_X))
374 prefix = 'x';
Naohiro Aota19f00b02016-08-09 11:40:08 +0900375 else
Masami Hiramatsu9880ce42016-08-18 17:59:07 +0900376 prefix = die_is_signed_type(&type) ? 's' :
377 probe_type_is_available(PROBE_TYPE_X) ? 'x' : 'u';
Naohiro Aota19f00b02016-08-09 11:40:08 +0900378
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900379 ret = dwarf_bytesize(&type);
380 if (ret <= 0)
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900381 /* No size ... try to use default type */
382 return 0;
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900383 ret = BYTES_TO_BITS(ret);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400384
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900385 /* Check the bitwidth */
386 if (ret > MAX_BASIC_TYPE_BITS) {
387 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
388 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
389 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400390 }
Masami Hiramatsu92543782016-08-18 17:58:47 +0900391 ret = snprintf(buf, 16, "%c%d", prefix, ret);
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900392
393formatted:
394 if (ret < 0 || ret >= 16) {
395 if (ret >= 16)
396 ret = -E2BIG;
397 pr_warning("Failed to convert variable type: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300398 str_error_r(-ret, sbuf, sizeof(sbuf)));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900399 return ret;
400 }
401 tvar->type = strdup(buf);
402 if (tvar->type == NULL)
403 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400404 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400405}
406
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400407static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400408 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530409 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400410 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400411{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530412 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400413 Dwarf_Die type;
414 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400415 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400416
417 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400418 if (die_get_real_type(vr_die, &type) == NULL) {
419 pr_warning("Failed to get the type of %s.\n", varname);
420 return -ENOENT;
421 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400422 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
423 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400424
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400425 if (field->name[0] == '[' &&
426 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
427 if (field->next)
428 /* Save original type for next field */
429 memcpy(die_mem, &type, sizeof(*die_mem));
430 /* Get the type of this array */
431 if (die_get_real_type(&type, &type) == NULL) {
432 pr_warning("Failed to get the type of %s.\n", varname);
433 return -ENOENT;
434 }
435 pr_debug2("Array real type: (%x)\n",
436 (unsigned)dwarf_dieoffset(&type));
437 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530438 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400439 if (ref == NULL)
440 return -ENOMEM;
441 if (*ref_ptr)
442 (*ref_ptr)->next = ref;
443 else
444 *ref_ptr = ref;
445 }
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900446 ref->offset += dwarf_bytesize(&type) * field->index;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400447 if (!field->next)
448 /* Save vr_die for converting types */
449 memcpy(die_mem, vr_die, sizeof(*die_mem));
450 goto next;
451 } else if (tag == DW_TAG_pointer_type) {
452 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400453 if (!field->ref) {
454 pr_err("Semantic error: %s must be referred by '->'\n",
455 field->name);
456 return -EINVAL;
457 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400458 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400459 if (die_get_real_type(&type, &type) == NULL) {
460 pr_warning("Failed to get the type of %s.\n", varname);
461 return -ENOENT;
462 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400463 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900464 tag = dwarf_tag(&type);
465 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
466 pr_warning("%s is not a data structure nor an union.\n",
467 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400468 return -EINVAL;
469 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400470
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530471 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400472 if (ref == NULL)
473 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400474 if (*ref_ptr)
475 (*ref_ptr)->next = ref;
476 else
477 *ref_ptr = ref;
478 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400479 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900480 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
481 pr_warning("%s is not a data structure nor an union.\n",
482 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400483 return -EINVAL;
484 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400485 if (field->name[0] == '[') {
Masanari Iidad939be32015-02-27 23:52:31 +0900486 pr_err("Semantic error: %s is not a pointer"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900487 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400488 return -EINVAL;
489 }
Masami Hiramatsuc7273832015-04-02 16:33:12 +0900490 /* While prcessing unnamed field, we don't care about this */
491 if (field->ref && dwarf_diename(vr_die)) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400492 pr_err("Semantic error: %s must be referred by '.'\n",
493 field->name);
494 return -EINVAL;
495 }
496 if (!ref) {
497 pr_warning("Structure on a register is not "
498 "supported yet.\n");
499 return -ENOTSUP;
500 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400501 }
502
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400503 if (die_find_member(&type, field->name, die_mem) == NULL) {
Arnaldo Carvalho de Melo9ef04382013-10-24 17:36:31 -0300504 pr_warning("%s(type:%s) has no member %s.\n", varname,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400505 dwarf_diename(&type), field->name);
506 return -EINVAL;
507 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400508
509 /* Get the offset of the field */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900510 if (tag == DW_TAG_union_type) {
511 offs = 0;
512 } else {
513 ret = die_get_data_member_location(die_mem, &offs);
514 if (ret < 0) {
515 pr_warning("Failed to get the offset of %s.\n",
516 field->name);
517 return ret;
518 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400519 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400520 ref->offset += (long)offs;
521
Masami Hiramatsuc7273832015-04-02 16:33:12 +0900522 /* If this member is unnamed, we need to reuse this field */
523 if (!dwarf_diename(die_mem))
524 return convert_variable_fields(die_mem, varname, field,
525 &ref, die_mem);
526
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400527next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400528 /* Converting next field */
529 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400530 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300531 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400532 else
533 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400534}
535
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400536/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400537static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400538{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400539 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400540 int ret;
541
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400542 pr_debug("Converting variable %s into trace event.\n",
543 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500544
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900545 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900546 &pf->sp_die, pf->tvar);
He Kuang7d5eaba2015-05-11 09:25:04 +0000547 if (ret == -ENOENT || ret == -EINVAL) {
548 pr_err("Failed to find the location of the '%s' variable at this address.\n"
549 " Perhaps it has been optimized out.\n"
550 " Use -V with the --range option to show '%s' location range.\n",
551 pf->pvar->var, pf->pvar->var);
552 } else if (ret == -ENOTSUP)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900553 pr_err("Sorry, we don't support this variable location yet.\n");
Masami Hiramatsu0c188a02014-05-29 19:52:32 +0900554 else if (ret == 0 && pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400555 ret = convert_variable_fields(vr_die, pf->pvar->var,
556 pf->pvar->field, &pf->tvar->ref,
557 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400558 vr_die = &die_mem;
559 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400560 if (ret == 0)
561 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500562 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400563 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400564}
565
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900566/* Find a variable in a scope DIE */
567static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400568{
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900569 Dwarf_Die vr_die;
Masami Hiramatsu909b0362016-04-28 03:37:14 +0900570 char *buf, *ptr;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900571 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400572
Wang Nanda15bd92015-08-26 10:57:45 +0000573 /* Copy raw parameters */
574 if (!is_c_varname(pf->pvar->var))
575 return copy_to_probe_trace_arg(pf->tvar, pf->pvar);
Masami Hiramatsu367e94c2010-08-27 20:38:59 +0900576
Masami Hiramatsu48481932010-04-12 13:16:53 -0400577 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400578 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400579 else {
Masami Hiramatsu909b0362016-04-28 03:37:14 +0900580 buf = synthesize_perf_probe_arg(pf->pvar);
581 if (!buf)
582 return -ENOMEM;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400583 ptr = strchr(buf, ':'); /* Change type separator to _ */
584 if (ptr)
585 *ptr = '_';
Masami Hiramatsu909b0362016-04-28 03:37:14 +0900586 pf->tvar->name = buf;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400587 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400588 if (pf->tvar->name == NULL)
589 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400590
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900591 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400592 /* Search child die for local variables and parameters. */
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900593 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
594 /* Search again in global variables */
He Kuangd13855e2015-04-25 16:08:58 +0800595 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var,
596 0, &vr_die)) {
Masami Hiramatsu36d789a2014-06-06 07:13:45 +0000597 pr_warning("Failed to find '%s' in this function.\n",
598 pf->pvar->var);
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900599 ret = -ENOENT;
He Kuangd13855e2015-04-25 16:08:58 +0800600 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400601 }
Masami Hiramatsuf66fedc2011-08-20 14:39:23 +0900602 if (ret >= 0)
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900603 ret = convert_variable(&vr_die, pf);
604
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400605 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400606}
607
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900608/* Convert subprogram DIE to trace point */
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900609static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
610 Dwarf_Addr paddr, bool retprobe,
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +0900611 const char *function,
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900612 struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400613{
Prashanth Nageshappa26b79522012-02-24 13:11:39 +0530614 Dwarf_Addr eaddr, highaddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900615 GElf_Sym sym;
616 const char *symbol;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500617
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900618 /* Verify the address is correct */
619 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
620 pr_warning("Failed to get entry address of %s\n",
621 dwarf_diename(sp_die));
622 return -ENOENT;
623 }
624 if (dwarf_highpc(sp_die, &highaddr) != 0) {
625 pr_warning("Failed to get end address of %s\n",
626 dwarf_diename(sp_die));
627 return -ENOENT;
628 }
629 if (paddr > highaddr) {
630 pr_warning("Offset specified is greater than size of %s\n",
631 dwarf_diename(sp_die));
632 return -EINVAL;
633 }
634
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000635 symbol = dwarf_diename(sp_die);
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900636 if (!symbol) {
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000637 /* Try to get the symbol name from symtab */
638 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
639 if (!symbol) {
640 pr_warning("Failed to find symbol at 0x%lx\n",
641 (unsigned long)paddr);
642 return -ENOENT;
643 }
644 eaddr = sym.st_value;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900645 }
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000646 tp->offset = (unsigned long)(paddr - eaddr);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000647 tp->address = (unsigned long)paddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900648 tp->symbol = strdup(symbol);
649 if (!tp->symbol)
650 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400651
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900652 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900653 if (retprobe) {
654 if (eaddr != paddr) {
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +0900655 pr_warning("Failed to find \"%s%%return\",\n"
656 " because %s is an inlined function and"
657 " has no return point.\n", function,
658 function);
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900659 return -EINVAL;
660 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900661 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900662 }
663
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900664 return 0;
665}
666
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900667/* Call probe_finder callback with scope DIE */
668static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900669{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900670 Dwarf_Attribute fb_attr;
Masami Hiramatsu4d3b1622015-11-25 19:34:32 +0900671 Dwarf_Frame *frame = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900672 size_t nops;
673 int ret;
674
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900675 if (!sc_die) {
676 pr_err("Caller must pass a scope DIE. Program error.\n");
677 return -EINVAL;
678 }
679
680 /* If not a real subprogram, find a real one */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900681 if (!die_is_func_def(sc_die)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900682 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
Naveen N. Raod4c537e2015-04-30 17:12:31 +0530683 if (die_find_tailfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
684 pr_warning("Ignoring tail call from %s\n",
685 dwarf_diename(&pf->sp_die));
686 return 0;
687 } else {
688 pr_warning("Failed to find probe point in any "
689 "functions.\n");
690 return -ENOENT;
691 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900692 }
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900693 } else
694 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400695
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900696 /* Get the frame base attribute/ops from subprogram */
697 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400698 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400699 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500700 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400701#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400702 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
Hemant Kumar270bde12016-02-02 20:56:46 +0530703 (pf->cfi_eh != NULL || pf->cfi_dbg != NULL)) {
704 if ((dwarf_cfi_addrframe(pf->cfi_eh, pf->addr, &frame) != 0 &&
705 (dwarf_cfi_addrframe(pf->cfi_dbg, pf->addr, &frame) != 0)) ||
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400706 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900707 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400708 (uintmax_t)pf->addr);
Masami Hiramatsu4d3b1622015-11-25 19:34:32 +0900709 free(frame);
710 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400711 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400712#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400713 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500714
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900715 /* Call finder's callback handler */
Masami Hiramatsu4d3b1622015-11-25 19:34:32 +0900716 ret = pf->callback(sc_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500717
Masami Hiramatsu4d3b1622015-11-25 19:34:32 +0900718 /* Since *pf->fb_ops can be a part of frame. we should free it here. */
719 free(frame);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500720 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900721
722 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400723}
724
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900725struct find_scope_param {
726 const char *function;
727 const char *file;
728 int line;
729 int diff;
730 Dwarf_Die *die_mem;
731 bool found;
732};
733
734static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
735{
736 struct find_scope_param *fsp = data;
737 const char *file;
738 int lno;
739
740 /* Skip if declared file name does not match */
741 if (fsp->file) {
742 file = dwarf_decl_file(fn_die);
743 if (!file || strcmp(fsp->file, file) != 0)
744 return 0;
745 }
746 /* If the function name is given, that's what user expects */
747 if (fsp->function) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900748 if (die_match_name(fn_die, fsp->function)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900749 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
750 fsp->found = true;
751 return 1;
752 }
753 } else {
754 /* With the line number, find the nearest declared DIE */
755 dwarf_decl_line(fn_die, &lno);
756 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
757 /* Keep a candidate and continue */
758 fsp->diff = fsp->line - lno;
759 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
760 fsp->found = true;
761 }
762 }
763 return 0;
764}
765
766/* Find an appropriate scope fits to given conditions */
767static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
768{
769 struct find_scope_param fsp = {
770 .function = pf->pev->point.function,
771 .file = pf->fname,
772 .line = pf->lno,
773 .diff = INT_MAX,
774 .die_mem = die_mem,
775 .found = false,
776 };
777
778 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
779
780 return fsp.found ? die_mem : NULL;
781}
782
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900783static int probe_point_line_walker(const char *fname, int lineno,
784 Dwarf_Addr addr, void *data)
785{
786 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900787 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900788 int ret;
789
790 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
791 return 0;
792
793 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900794 sc_die = find_best_scope(pf, &die_mem);
795 if (!sc_die) {
796 pr_warning("Failed to find scope of probe point.\n");
797 return -ENOENT;
798 }
799
800 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900801
802 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -0300803 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900804}
805
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400806/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400807static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400808{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900809 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400810}
811
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500812/* Find lines which match lazy pattern */
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000813static int find_lazy_match_lines(struct intlist *list,
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500814 const char *fname, const char *pat)
815{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100816 FILE *fp;
817 char *line = NULL;
818 size_t line_len;
819 ssize_t len;
820 int count = 0, linenum = 1;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000821 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500822
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100823 fp = fopen(fname, "r");
824 if (!fp) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000825 pr_warning("Failed to open %s: %s\n", fname,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300826 str_error_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300827 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400828 }
829
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100830 while ((len = getline(&line, &line_len, fp)) > 0) {
831
832 if (line[len - 1] == '\n')
833 line[len - 1] = '\0';
834
835 if (strlazymatch(line, pat)) {
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000836 intlist__add(list, linenum);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100837 count++;
838 }
839 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400840 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300841
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100842 if (ferror(fp))
843 count = -errno;
844 free(line);
845 fclose(fp);
846
847 if (count == 0)
848 pr_debug("No matched lines found in %s.\n", fname);
849 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500850}
851
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900852static int probe_point_lazy_walker(const char *fname, int lineno,
853 Dwarf_Addr addr, void *data)
854{
855 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900856 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900857 int ret;
858
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000859 if (!intlist__has_entry(pf->lcache, lineno) ||
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900860 strtailcmp(fname, pf->fname) != 0)
861 return 0;
862
863 pr_debug("Probe line found: line:%d addr:0x%llx\n",
864 lineno, (unsigned long long)addr);
865 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900866 pf->lno = lineno;
867 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 /*
876 * Continue if no error, because the lazy pattern will match
877 * to other lines
878 */
Ingo Molnar5e814dd2011-03-15 20:51:09 +0100879 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900880}
881
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500882/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400883static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500884{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400885 int ret = 0;
Naohiro Aota09ed8972015-03-13 14:18:40 +0900886 char *fpath;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500887
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000888 if (intlist__empty(pf->lcache)) {
Naohiro Aota09ed8972015-03-13 14:18:40 +0900889 const char *comp_dir;
890
891 comp_dir = cu_get_comp_dir(&pf->cu_die);
892 ret = get_real_path(pf->fname, comp_dir, &fpath);
893 if (ret < 0) {
894 pr_warning("Failed to find source file path.\n");
895 return ret;
896 }
897
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500898 /* Matching lazy line pattern */
Naohiro Aota09ed8972015-03-13 14:18:40 +0900899 ret = find_lazy_match_lines(pf->lcache, fpath,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400900 pf->pev->point.lazy_line);
Naohiro Aota09ed8972015-03-13 14:18:40 +0900901 free(fpath);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100902 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400903 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500904 }
905
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900906 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500907}
908
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500909static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400910{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900911 struct probe_finder *pf = data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400912 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400913 Dwarf_Addr addr;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900914 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400915
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500916 if (pp->lazy_line)
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900917 ret = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500918 else {
919 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400920 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900921 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400922 dwarf_diename(in_die));
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900923 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400924 }
925 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500926 pf->addr += pp->offset;
927 pr_debug("found inline addr: 0x%jx\n",
928 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500929
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900930 ret = call_probe_finder(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500931 }
932
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900933 return ret;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500934}
935
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900936/* Callback parameter with return value for libdw */
937struct dwarf_callback_param {
938 void *data;
939 int retval;
940};
941
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500942/* Search function from function name */
943static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
944{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400945 struct dwarf_callback_param *param = data;
946 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400947 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500948
949 /* Check tag and diename */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900950 if (!die_is_func_def(sp_die) ||
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900951 !die_match_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400952 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500953
Masami Hiramatsu7d216352011-03-30 18:25:41 +0900954 /* Check declared file */
955 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
956 return DWARF_CB_OK;
957
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900958 pr_debug("Matched function: %s\n", dwarf_diename(sp_die));
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500959 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500960 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500961 dwarf_decl_line(sp_die, &pf->lno);
962 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400963 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue1ecbbc2015-01-30 18:37:44 +0900964 } else if (die_is_func_instance(sp_die)) {
965 /* Instances always have the entry address */
966 dwarf_entrypc(sp_die, &pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500967 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500968 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400969 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500970 else {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500971 pf->addr += pp->offset;
972 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900973 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500974 }
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900975 } else if (!probe_conf.no_inlines) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500976 /* Inlined function: search instances */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900977 param->retval = die_walk_instances(sp_die,
978 probe_point_inline_cb, (void *)pf);
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900979 /* This could be a non-existed inline definition */
980 if (param->retval == -ENOENT && strisglob(pp->function))
981 param->retval = 0;
982 }
983
984 /* We need to find other candidates */
985 if (strisglob(pp->function) && param->retval >= 0) {
986 param->retval = 0; /* We have to clear the result */
987 return DWARF_CB_OK;
988 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500989
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400990 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400991}
992
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400993static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400994{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400995 struct dwarf_callback_param _param = {.data = (void *)pf,
996 .retval = 0};
997 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
998 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400999}
1000
Lin Mingcd25f8b2011-03-25 16:27:48 +08001001struct pubname_callback_param {
1002 char *function;
1003 char *file;
1004 Dwarf_Die *cu_die;
1005 Dwarf_Die *sp_die;
1006 int found;
1007};
1008
1009static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1010{
1011 struct pubname_callback_param *param = data;
1012
1013 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1014 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1015 return DWARF_CB_OK;
1016
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001017 if (die_match_name(param->sp_die, param->function)) {
Lin Mingcd25f8b2011-03-25 16:27:48 +08001018 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1019 return DWARF_CB_OK;
1020
1021 if (param->file &&
1022 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1023 return DWARF_CB_OK;
1024
1025 param->found = 1;
1026 return DWARF_CB_ABORT;
1027 }
1028 }
1029
1030 return DWARF_CB_OK;
1031}
1032
Hemant Kumar270bde12016-02-02 20:56:46 +05301033static int debuginfo__find_probe_location(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001034 struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001035{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001036 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001037 Dwarf_Off off, noff;
1038 size_t cuhl;
1039 Dwarf_Die *diep;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001040 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001041
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001042 off = 0;
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001043 pf->lcache = intlist__new(NULL);
1044 if (!pf->lcache)
1045 return -ENOMEM;
Lin Mingcd25f8b2011-03-25 16:27:48 +08001046
1047 /* Fastpath: lookup by function name from .debug_pubnames section */
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001048 if (pp->function && !strisglob(pp->function)) {
Lin Mingcd25f8b2011-03-25 16:27:48 +08001049 struct pubname_callback_param pubname_param = {
1050 .function = pp->function,
1051 .file = pp->file,
1052 .cu_die = &pf->cu_die,
1053 .sp_die = &pf->sp_die,
Lin Ming2b348a72011-04-29 08:41:57 +00001054 .found = 0,
Lin Mingcd25f8b2011-03-25 16:27:48 +08001055 };
1056 struct dwarf_callback_param probe_param = {
1057 .data = pf,
1058 };
1059
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001060 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001061 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001062 if (pubname_param.found) {
1063 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1064 if (ret)
1065 goto found;
1066 }
1067 }
1068
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001069 /* Loop on CUs (Compilation Unit) */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001070 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001071 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001072 diep = dwarf_offdie(dbg->dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001073 if (!diep)
1074 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001075
1076 /* Check if target file is included. */
1077 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001078 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001079 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001080 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001081
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001082 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001083 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001084 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001085 else if (pp->lazy_line)
He Kuangf19e80c2015-04-13 19:41:30 +08001086 ret = find_probe_point_lazy(&pf->cu_die, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001087 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001088 pf->lno = pp->line;
1089 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001090 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001091 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001092 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001093 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001094 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001095 }
Lin Mingcd25f8b2011-03-25 16:27:48 +08001096
1097found:
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001098 intlist__delete(pf->lcache);
1099 pf->lcache = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001100
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001101 return ret;
1102}
1103
Hemant Kumar270bde12016-02-02 20:56:46 +05301104/* Find probe points from debuginfo */
1105static int debuginfo__find_probes(struct debuginfo *dbg,
1106 struct probe_finder *pf)
1107{
1108 int ret = 0;
1109
1110#if _ELFUTILS_PREREQ(0, 142)
1111 Elf *elf;
1112 GElf_Ehdr ehdr;
1113 GElf_Shdr shdr;
1114
1115 if (pf->cfi_eh || pf->cfi_dbg)
1116 return debuginfo__find_probe_location(dbg, pf);
1117
1118 /* Get the call frame information from this dwarf */
1119 elf = dwarf_getelf(dbg->dbg);
1120 if (elf == NULL)
1121 return -EINVAL;
1122
1123 if (gelf_getehdr(elf, &ehdr) == NULL)
1124 return -EINVAL;
1125
1126 if (elf_section_by_name(elf, &ehdr, &shdr, ".eh_frame", NULL) &&
1127 shdr.sh_type == SHT_PROGBITS)
1128 pf->cfi_eh = dwarf_getcfi_elf(elf);
1129
1130 pf->cfi_dbg = dwarf_getcfi(dbg->dbg);
1131#endif
1132
1133 ret = debuginfo__find_probe_location(dbg, pf);
1134 return ret;
1135}
1136
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001137struct local_vars_finder {
1138 struct probe_finder *pf;
1139 struct perf_probe_arg *args;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001140 bool vars;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001141 int max_args;
1142 int nargs;
1143 int ret;
1144};
1145
1146/* Collect available variables in this scope */
1147static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1148{
1149 struct local_vars_finder *vf = data;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001150 struct probe_finder *pf = vf->pf;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001151 int tag;
1152
1153 tag = dwarf_tag(die_mem);
1154 if (tag == DW_TAG_formal_parameter ||
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001155 (tag == DW_TAG_variable && vf->vars)) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001156 if (convert_variable_location(die_mem, vf->pf->addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001157 vf->pf->fb_ops, &pf->sp_die,
1158 NULL) == 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001159 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1160 if (vf->args[vf->nargs].var == NULL) {
1161 vf->ret = -ENOMEM;
1162 return DIE_FIND_CB_END;
1163 }
1164 pr_debug(" %s", vf->args[vf->nargs].var);
1165 vf->nargs++;
1166 }
1167 }
1168
1169 if (dwarf_haspc(die_mem, vf->pf->addr))
1170 return DIE_FIND_CB_CONTINUE;
1171 else
1172 return DIE_FIND_CB_SIBLING;
1173}
1174
1175static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1176 struct perf_probe_arg *args)
1177{
1178 Dwarf_Die die_mem;
1179 int i;
1180 int n = 0;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001181 struct local_vars_finder vf = {.pf = pf, .args = args, .vars = false,
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001182 .max_args = MAX_PROBE_ARGS, .ret = 0};
1183
1184 for (i = 0; i < pf->pev->nargs; i++) {
1185 /* var never be NULL */
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001186 if (strcmp(pf->pev->args[i].var, PROBE_ARG_VARS) == 0)
1187 vf.vars = true;
1188 else if (strcmp(pf->pev->args[i].var, PROBE_ARG_PARAMS) != 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001189 /* Copy normal argument */
1190 args[n] = pf->pev->args[i];
1191 n++;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001192 continue;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001193 }
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001194 pr_debug("Expanding %s into:", pf->pev->args[i].var);
1195 vf.nargs = n;
1196 /* Special local variables */
1197 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1198 &die_mem);
1199 pr_debug(" (%d)\n", vf.nargs - n);
1200 if (vf.ret < 0)
1201 return vf.ret;
1202 n = vf.nargs;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001203 }
1204 return n;
1205}
1206
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001207/* Add a found probe point into trace event list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001208static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001209{
1210 struct trace_event_finder *tf =
1211 container_of(pf, struct trace_event_finder, pf);
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +09001212 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001213 struct probe_trace_event *tev;
Wang Nan092b1f02015-11-13 12:29:11 +00001214 struct perf_probe_arg *args = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001215 int ret, i;
1216
1217 /* Check number of tevs */
1218 if (tf->ntevs == tf->max_tevs) {
1219 pr_warning("Too many( > %d) probe point found.\n",
1220 tf->max_tevs);
1221 return -ERANGE;
1222 }
1223 tev = &tf->tevs[tf->ntevs++];
1224
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001225 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001226 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +09001227 pp->retprobe, pp->function, &tev->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001228 if (ret < 0)
Wang Nan092b1f02015-11-13 12:29:11 +00001229 goto end;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001230
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001231 tev->point.realname = strdup(dwarf_diename(sc_die));
Wang Nan092b1f02015-11-13 12:29:11 +00001232 if (!tev->point.realname) {
1233 ret = -ENOMEM;
1234 goto end;
1235 }
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001236
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001237 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1238 tev->point.offset);
1239
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001240 /* Expand special probe argument if exist */
1241 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
Wang Nan092b1f02015-11-13 12:29:11 +00001242 if (args == NULL) {
1243 ret = -ENOMEM;
1244 goto end;
1245 }
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001246
1247 ret = expand_probe_args(sc_die, pf, args);
1248 if (ret < 0)
1249 goto end;
1250
1251 tev->nargs = ret;
1252 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1253 if (tev->args == NULL) {
1254 ret = -ENOMEM;
1255 goto end;
1256 }
1257
1258 /* Find each argument */
1259 for (i = 0; i < tev->nargs; i++) {
1260 pf->pvar = &args[i];
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001261 pf->tvar = &tev->args[i];
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001262 /* Variable should be found from scope DIE */
1263 ret = find_variable(sc_die, pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001264 if (ret != 0)
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001265 break;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001266 }
1267
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001268end:
Wang Nan092b1f02015-11-13 12:29:11 +00001269 if (ret) {
1270 clear_probe_trace_event(tev);
1271 tf->ntevs--;
1272 }
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001273 free(args);
1274 return ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001275}
1276
1277/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001278int debuginfo__find_trace_events(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001279 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001280 struct probe_trace_event **tevs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001281{
1282 struct trace_event_finder tf = {
1283 .pf = {.pev = pev, .callback = add_probe_trace_event},
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001284 .max_tevs = probe_conf.max_probes, .mod = dbg->mod};
Masami Hiramatsu0196e782015-11-13 12:29:10 +00001285 int ret, i;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001286
1287 /* Allocate result tevs array */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001288 *tevs = zalloc(sizeof(struct probe_trace_event) * tf.max_tevs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001289 if (*tevs == NULL)
1290 return -ENOMEM;
1291
1292 tf.tevs = *tevs;
1293 tf.ntevs = 0;
1294
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001295 ret = debuginfo__find_probes(dbg, &tf.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001296 if (ret < 0) {
Masami Hiramatsu0196e782015-11-13 12:29:10 +00001297 for (i = 0; i < tf.ntevs; i++)
1298 clear_probe_trace_event(&tf.tevs[i]);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001299 zfree(tevs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001300 return ret;
1301 }
1302
1303 return (ret < 0) ? ret : tf.ntevs;
1304}
1305
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001306/* Collect available variables in this scope */
1307static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1308{
1309 struct available_var_finder *af = data;
1310 struct variable_list *vl;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001311 struct strbuf buf = STRBUF_INIT;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001312 int tag, ret;
1313
1314 vl = &af->vls[af->nvls - 1];
1315
1316 tag = dwarf_tag(die_mem);
1317 if (tag == DW_TAG_formal_parameter ||
1318 tag == DW_TAG_variable) {
1319 ret = convert_variable_location(die_mem, af->pf.addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001320 af->pf.fb_ops, &af->pf.sp_die,
1321 NULL);
He Kuang349e8d22015-05-11 09:25:03 +00001322 if (ret == 0 || ret == -ERANGE) {
1323 int ret2;
1324 bool externs = !af->child;
He Kuangfb9596d2015-05-11 09:25:02 +00001325
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001326 if (strbuf_init(&buf, 64) < 0)
1327 goto error;
He Kuang349e8d22015-05-11 09:25:03 +00001328
1329 if (probe_conf.show_location_range) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001330 if (!externs)
1331 ret2 = strbuf_add(&buf,
1332 ret ? "[INV]\t" : "[VAL]\t", 6);
1333 else
1334 ret2 = strbuf_add(&buf, "[EXT]\t", 6);
1335 if (ret2)
1336 goto error;
He Kuang349e8d22015-05-11 09:25:03 +00001337 }
1338
1339 ret2 = die_get_varname(die_mem, &buf);
1340
1341 if (!ret2 && probe_conf.show_location_range &&
1342 !externs) {
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001343 if (strbuf_addch(&buf, '\t') < 0)
1344 goto error;
He Kuang349e8d22015-05-11 09:25:03 +00001345 ret2 = die_get_var_range(&af->pf.sp_die,
1346 die_mem, &buf);
1347 }
1348
1349 pr_debug("Add new var: %s\n", buf.buf);
1350 if (ret2 == 0) {
He Kuangfb9596d2015-05-11 09:25:02 +00001351 strlist__add(vl->vars,
1352 strbuf_detach(&buf, NULL));
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001353 }
1354 strbuf_release(&buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001355 }
1356 }
1357
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001358 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001359 return DIE_FIND_CB_CONTINUE;
1360 else
1361 return DIE_FIND_CB_SIBLING;
Masami Hiramatsubf4d5f22016-05-10 14:47:07 +09001362error:
1363 strbuf_release(&buf);
1364 pr_debug("Error in strbuf\n");
1365 return DIE_FIND_CB_END;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001366}
1367
1368/* Add a found vars into available variables list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001369static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001370{
1371 struct available_var_finder *af =
1372 container_of(pf, struct available_var_finder, pf);
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +09001373 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001374 struct variable_list *vl;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001375 Dwarf_Die die_mem;
1376 int ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001377
1378 /* Check number of tevs */
1379 if (af->nvls == af->max_vls) {
1380 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1381 return -ERANGE;
1382 }
1383 vl = &af->vls[af->nvls++];
1384
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001385 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001386 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
Masami Hiramatsu6cca13b2015-10-01 01:41:37 +09001387 pp->retprobe, pp->function, &vl->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001388 if (ret < 0)
1389 return ret;
1390
1391 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1392 vl->point.offset);
1393
1394 /* Find local variables */
Arnaldo Carvalho de Melo4a77e212015-07-20 12:13:34 -03001395 vl->vars = strlist__new(NULL, NULL);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001396 if (vl->vars == NULL)
1397 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001398 af->child = true;
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001399 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001400
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001401 /* Find external variables */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001402 if (!probe_conf.show_ext_vars)
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001403 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001404 /* Don't need to search child DIE for external vars. */
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001405 af->child = false;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001406 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001407
1408out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001409 if (strlist__empty(vl->vars)) {
1410 strlist__delete(vl->vars);
1411 vl->vars = NULL;
1412 }
1413
1414 return ret;
1415}
1416
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001417/*
1418 * Find available variables at given probe point
1419 * Return the number of found probe points. Return 0 if there is no
1420 * matched probe point. Return <0 if an error occurs.
1421 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001422int debuginfo__find_available_vars_at(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001423 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001424 struct variable_list **vls)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001425{
1426 struct available_var_finder af = {
1427 .pf = {.pev = pev, .callback = add_available_vars},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001428 .mod = dbg->mod,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001429 .max_vls = probe_conf.max_probes};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001430 int ret;
1431
1432 /* Allocate result vls array */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001433 *vls = zalloc(sizeof(struct variable_list) * af.max_vls);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001434 if (*vls == NULL)
1435 return -ENOMEM;
1436
1437 af.vls = *vls;
1438 af.nvls = 0;
1439
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001440 ret = debuginfo__find_probes(dbg, &af.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001441 if (ret < 0) {
1442 /* Free vlist for error */
1443 while (af.nvls--) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001444 zfree(&af.vls[af.nvls].point.symbol);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001445 strlist__delete(af.vls[af.nvls].vars);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001446 }
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001447 zfree(vls);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001448 return ret;
1449 }
1450
1451 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001452}
1453
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001454/* For the kernel module, we need a special code to get a DIE */
1455static int debuginfo__get_text_offset(struct debuginfo *dbg, Dwarf_Addr *offs)
1456{
1457 int n, i;
1458 Elf32_Word shndx;
1459 Elf_Scn *scn;
1460 Elf *elf;
1461 GElf_Shdr mem, *shdr;
1462 const char *p;
1463
1464 elf = dwfl_module_getelf(dbg->mod, &dbg->bias);
1465 if (!elf)
1466 return -EINVAL;
1467
1468 /* Get the number of relocations */
1469 n = dwfl_module_relocations(dbg->mod);
1470 if (n < 0)
1471 return -ENOENT;
1472 /* Search the relocation related .text section */
1473 for (i = 0; i < n; i++) {
1474 p = dwfl_module_relocation_info(dbg->mod, i, &shndx);
1475 if (strcmp(p, ".text") == 0) {
1476 /* OK, get the section header */
1477 scn = elf_getscn(elf, shndx);
1478 if (!scn)
1479 return -ENOENT;
1480 shdr = gelf_getshdr(scn, &mem);
1481 if (!shdr)
1482 return -ENOENT;
1483 *offs = shdr->sh_addr;
1484 }
1485 }
1486 return 0;
1487}
1488
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001489/* Reverse search */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001490int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001491 struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001492{
1493 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001494 Dwarf_Addr _addr = 0, baseaddr = 0;
1495 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001496 int baseline = 0, lineno = 0, ret = 0;
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001497 bool reloc = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001498
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001499retry:
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001500 /* Find cu die */
Masami Hiramatsu0104fe62015-03-02 21:49:46 +09001501 if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr, &cudie)) {
Masami Hiramatsu9b239a12015-10-01 01:41:33 +09001502 if (!reloc && debuginfo__get_text_offset(dbg, &baseaddr) == 0) {
1503 addr += baseaddr;
1504 reloc = true;
1505 goto retry;
1506 }
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001507 pr_warning("Failed to find debug information for address %lx\n",
1508 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001509 ret = -EINVAL;
1510 goto end;
1511 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001512
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001513 /* Find a corresponding line (filename and lineno) */
1514 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1515 /* Don't care whether it failed or not */
1516
1517 /* Find a corresponding function (name, baseline and baseaddr) */
Masami Hiramatsue0d153c2011-06-27 16:27:27 +09001518 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001519 /* Get function entry information */
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001520 func = basefunc = dwarf_diename(&spdie);
1521 if (!func ||
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001522 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001523 dwarf_decl_line(&spdie, &baseline) != 0) {
1524 lineno = 0;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001525 goto post;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001526 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001527
Masami Hiramatsu1b286bd2013-10-11 12:23:17 +00001528 fname = dwarf_decl_file(&spdie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001529 if (addr == (unsigned long)baseaddr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001530 /* Function entry - Relative line number is 0 */
1531 lineno = baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001532 goto post;
1533 }
1534
1535 /* Track down the inline functions step by step */
1536 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1537 &indie)) {
1538 /* There is an inline function */
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001539 if (dwarf_entrypc(&indie, &_addr) == 0 &&
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001540 _addr == addr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001541 /*
1542 * addr is at an inline function entry.
1543 * In this case, lineno should be the call-site
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001544 * line number. (overwrite lineinfo)
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001545 */
1546 lineno = die_get_call_lineno(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001547 fname = die_get_call_file(&indie);
1548 break;
1549 } else {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001550 /*
1551 * addr is in an inline function body.
1552 * Since lineno points one of the lines
1553 * of the inline function, baseline should
1554 * be the entry line of the inline function.
1555 */
1556 tmp = dwarf_diename(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001557 if (!tmp ||
1558 dwarf_decl_line(&indie, &baseline) != 0)
1559 break;
1560 func = tmp;
1561 spdie = indie;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001562 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001563 }
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001564 /* Verify the lineno and baseline are in a same file */
1565 tmp = dwarf_decl_file(&spdie);
1566 if (!tmp || strcmp(tmp, fname) != 0)
1567 lineno = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001568 }
1569
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001570post:
1571 /* Make a relative line number or an offset */
1572 if (lineno)
1573 ppt->line = lineno - baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001574 else if (basefunc) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001575 ppt->offset = addr - (unsigned long)baseaddr;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001576 func = basefunc;
1577 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001578
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001579 /* Duplicate strings */
1580 if (func) {
1581 ppt->function = strdup(func);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001582 if (ppt->function == NULL) {
1583 ret = -ENOMEM;
1584 goto end;
1585 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001586 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001587 if (fname) {
1588 ppt->file = strdup(fname);
1589 if (ppt->file == NULL) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001590 zfree(&ppt->function);
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001591 ret = -ENOMEM;
1592 goto end;
1593 }
1594 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001595end:
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001596 if (ret == 0 && (fname || func))
1597 ret = 1; /* Found a point */
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001598 return ret;
1599}
1600
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001601/* Add a line and store the src path */
1602static int line_range_add_line(const char *src, unsigned int lineno,
1603 struct line_range *lr)
1604{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001605 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001606 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001607 lr->path = strdup(src);
1608 if (lr->path == NULL)
1609 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001610 }
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001611 return intlist__add(lr->line_list, lineno);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001612}
1613
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001614static int line_range_walk_cb(const char *fname, int lineno,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001615 Dwarf_Addr addr __maybe_unused,
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001616 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001617{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001618 struct line_finder *lf = data;
Namhyung Kim202c7c12014-04-01 13:47:57 +09001619 int err;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001620
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001621 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001622 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001623 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001624
Namhyung Kim202c7c12014-04-01 13:47:57 +09001625 err = line_range_add_line(fname, lineno, lf->lr);
1626 if (err < 0 && err != -EEXIST)
1627 return err;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001628
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001629 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001630}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001631
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001632/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001633static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001634{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001635 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001636
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001637 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001638
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001639 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001640 if (ret >= 0)
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001641 if (!intlist__empty(lf->lr->line_list))
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001642 ret = lf->found = 1;
1643 else
1644 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001645 else {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001646 zfree(&lf->lr->path);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001647 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001648 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001649}
1650
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001651static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1652{
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001653 int ret = find_line_range_by_line(in_die, data);
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001654
1655 /*
1656 * We have to check all instances of inlined function, because
1657 * some execution paths can be optimized out depends on the
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001658 * function argument of instances. However, if an error occurs,
1659 * it should be handled by the caller.
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001660 */
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001661 return ret < 0 ? ret : 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001662}
1663
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001664/* Search function definition from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001665static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001666{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001667 struct dwarf_callback_param *param = data;
1668 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001669 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001670
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001671 /* Check declared file */
1672 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1673 return DWARF_CB_OK;
1674
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001675 if (die_is_func_def(sp_die) &&
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001676 die_match_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001677 lf->fname = dwarf_decl_file(sp_die);
1678 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001679 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001680 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001681 if (lf->lno_s < 0) /* Overflow */
1682 lf->lno_s = INT_MAX;
1683 lf->lno_e = lr->offset + lr->end;
1684 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001685 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001686 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001687 lr->start = lf->lno_s;
1688 lr->end = lf->lno_e;
Masami Hiramatsue1ecbbc2015-01-30 18:37:44 +09001689 if (!die_is_func_instance(sp_die))
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001690 param->retval = die_walk_instances(sp_die,
1691 line_range_inline_cb, lf);
1692 else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001693 param->retval = find_line_range_by_line(sp_die, lf);
1694 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001695 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001696 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001697}
1698
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001699static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001700{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001701 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1702 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1703 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001704}
1705
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001706int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001707{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001708 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001709 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001710 Dwarf_Off off = 0, noff;
1711 size_t cuhl;
1712 Dwarf_Die *diep;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001713 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001714
Lin Mingcd25f8b2011-03-25 16:27:48 +08001715 /* Fastpath: lookup by function name from .debug_pubnames section */
1716 if (lr->function) {
1717 struct pubname_callback_param pubname_param = {
1718 .function = lr->function, .file = lr->file,
1719 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1720 struct dwarf_callback_param line_range_param = {
1721 .data = (void *)&lf, .retval = 0};
1722
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001723 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001724 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001725 if (pubname_param.found) {
1726 line_range_search_cb(&lf.sp_die, &line_range_param);
1727 if (lf.found)
1728 goto found;
1729 }
1730 }
1731
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001732 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001733 while (!lf.found && ret >= 0) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001734 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001735 NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001736 break;
1737
1738 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001739 diep = dwarf_offdie(dbg->dbg, off + cuhl, &lf.cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001740 if (!diep)
1741 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001742
1743 /* Check if target file is included. */
1744 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001745 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001746 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001747 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001748
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001749 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001750 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001751 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001752 else {
1753 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001754 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001755 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001756 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001757 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001758 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001759 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001760
Lin Mingcd25f8b2011-03-25 16:27:48 +08001761found:
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001762 /* Store comp_dir */
1763 if (lf.found) {
1764 comp_dir = cu_get_comp_dir(&lf.cu_die);
1765 if (comp_dir) {
1766 lr->comp_dir = strdup(comp_dir);
1767 if (!lr->comp_dir)
1768 ret = -ENOMEM;
1769 }
1770 }
1771
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001772 pr_debug("path: %s\n", lr->path);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001773 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001774}
1775
Naohiro Aota09ed8972015-03-13 14:18:40 +09001776/*
1777 * Find a src file from a DWARF tag path. Prepend optional source path prefix
1778 * and chop off leading directories that do not exist. Result is passed back as
1779 * a newly allocated path on success.
1780 * Return 0 if file was found and readable, -errno otherwise.
1781 */
1782int get_real_path(const char *raw_path, const char *comp_dir,
1783 char **new_path)
1784{
1785 const char *prefix = symbol_conf.source_prefix;
1786
1787 if (!prefix) {
1788 if (raw_path[0] != '/' && comp_dir)
1789 /* If not an absolute path, try to use comp_dir */
1790 prefix = comp_dir;
1791 else {
1792 if (access(raw_path, R_OK) == 0) {
1793 *new_path = strdup(raw_path);
1794 return *new_path ? 0 : -ENOMEM;
1795 } else
1796 return -errno;
1797 }
1798 }
1799
1800 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
1801 if (!*new_path)
1802 return -ENOMEM;
1803
1804 for (;;) {
1805 sprintf(*new_path, "%s/%s", prefix, raw_path);
1806
1807 if (access(*new_path, R_OK) == 0)
1808 return 0;
1809
1810 if (!symbol_conf.source_prefix) {
1811 /* In case of searching comp_dir, don't retry */
1812 zfree(new_path);
1813 return -errno;
1814 }
1815
1816 switch (errno) {
1817 case ENAMETOOLONG:
1818 case ENOENT:
1819 case EROFS:
1820 case EFAULT:
1821 raw_path = strchr(++raw_path, '/');
1822 if (!raw_path) {
1823 zfree(new_path);
1824 return -ENOENT;
1825 }
1826 continue;
1827
1828 default:
1829 zfree(new_path);
1830 return -errno;
1831 }
1832 }
1833}