blob: 2da65a7108932857bd585681eb0fac195f0c850b [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"
42
Masami Hiramatsu49849122010-04-12 13:17:15 -040043/* Kprobe tracer basic type is up to u64 */
44#define MAX_BASIC_TYPE_BITS 64
45
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090046/* Dwarf FL wrappers */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090047static char *debuginfo_path; /* Currently dummy */
48
49static const Dwfl_Callbacks offline_callbacks = {
50 .find_debuginfo = dwfl_standard_find_debuginfo,
51 .debuginfo_path = &debuginfo_path,
52
53 .section_address = dwfl_offline_section_address,
54
55 /* We use this table for core files too. */
56 .find_elf = dwfl_build_id_find_elf,
57};
58
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090059/* Get a Dwarf from offline image */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030060static int debuginfo__init_offline_dwarf(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +090061 const char *path)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090062{
Masami Hiramatsuff741782011-06-27 16:27:39 +090063 int fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090064
Masami Hiramatsuff741782011-06-27 16:27:39 +090065 fd = open(path, O_RDONLY);
66 if (fd < 0)
67 return fd;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090068
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030069 dbg->dwfl = dwfl_begin(&offline_callbacks);
70 if (!dbg->dwfl)
Masami Hiramatsuff741782011-06-27 16:27:39 +090071 goto error;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090072
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030073 dbg->mod = dwfl_report_offline(dbg->dwfl, "", "", fd);
74 if (!dbg->mod)
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090075 goto error;
76
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030077 dbg->dbg = dwfl_module_getdwarf(dbg->mod, &dbg->bias);
78 if (!dbg->dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +090079 goto error;
80
81 return 0;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090082error:
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030083 if (dbg->dwfl)
84 dwfl_end(dbg->dwfl);
Masami Hiramatsuff741782011-06-27 16:27:39 +090085 else
86 close(fd);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030087 memset(dbg, 0, sizeof(*dbg));
Masami Hiramatsuff741782011-06-27 16:27:39 +090088
89 return -ENOENT;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +090090}
91
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +000092static struct debuginfo *__debuginfo__new(const char *path)
Masami Hiramatsuff741782011-06-27 16:27:39 +090093{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030094 struct debuginfo *dbg = zalloc(sizeof(*dbg));
95 if (!dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +090096 return NULL;
97
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -030098 if (debuginfo__init_offline_dwarf(dbg, path) < 0)
99 zfree(&dbg);
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000100 if (dbg)
101 pr_debug("Open Debuginfo file: %s\n", path);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300102 return dbg;
Masami Hiramatsuff741782011-06-27 16:27:39 +0900103}
104
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000105enum dso_binary_type distro_dwarf_types[] = {
106 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
107 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
108 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
109 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
110 DSO_BINARY_TYPE__NOT_FOUND,
111};
112
113struct debuginfo *debuginfo__new(const char *path)
114{
115 enum dso_binary_type *type;
116 char buf[PATH_MAX], nil = '\0';
117 struct dso *dso;
118 struct debuginfo *dinfo = NULL;
119
120 /* Try to open distro debuginfo files */
121 dso = dso__new(path);
122 if (!dso)
123 goto out;
124
125 for (type = distro_dwarf_types;
126 !dinfo && *type != DSO_BINARY_TYPE__NOT_FOUND;
127 type++) {
128 if (dso__read_binary_type_filename(dso, *type, &nil,
129 buf, PATH_MAX) < 0)
130 continue;
131 dinfo = __debuginfo__new(buf);
132 }
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -0300133 dso__put(dso);
Masami Hiramatsua15ad2f2014-02-06 05:32:27 +0000134
135out:
136 /* if failed to open all distro debuginfo, open given binary */
137 return dinfo ? : __debuginfo__new(path);
138}
139
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300140void debuginfo__delete(struct debuginfo *dbg)
Masami Hiramatsuff741782011-06-27 16:27:39 +0900141{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300142 if (dbg) {
143 if (dbg->dwfl)
144 dwfl_end(dbg->dwfl);
145 free(dbg);
Masami Hiramatsuff741782011-06-27 16:27:39 +0900146 }
147}
148
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400149/*
150 * Probe finder related functions
151 */
152
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530153static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400154{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530155 struct probe_trace_arg_ref *ref;
156 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400157 if (ref != NULL)
158 ref->offset = offs;
159 return ref;
160}
161
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900162/*
163 * Convert a location into trace_arg.
164 * If tvar == NULL, this just checks variable can be converted.
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900165 * If fentry == true and vr_die is a parameter, do huristic search
166 * for the location fuzzed by function entry mcount.
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900167 */
168static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900169 Dwarf_Op *fb_ops, Dwarf_Die *sp_die,
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900170 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400171{
172 Dwarf_Attribute attr;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900173 Dwarf_Addr tmp = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400174 Dwarf_Op *op;
175 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500176 unsigned int regn;
177 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400178 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400179 const char *regs;
He Kuang349e8d22015-05-11 09:25:03 +0000180 int ret, ret2 = 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400181
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900182 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
183 goto static_var;
184
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400185 /* TODO: handle more than 1 exprs */
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900186 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
187 return -EINVAL; /* Broken DIE ? */
188 if (dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0) {
189 ret = dwarf_entrypc(sp_die, &tmp);
He Kuang349e8d22015-05-11 09:25:03 +0000190 if (ret)
191 return -ENOENT;
192
193 if (probe_conf.show_location_range &&
194 (dwarf_tag(vr_die) == DW_TAG_variable)) {
195 ret2 = -ERANGE;
196 } else if (addr != tmp ||
197 dwarf_tag(vr_die) != DW_TAG_formal_parameter) {
198 return -ENOENT;
199 }
200
201 ret = dwarf_highpc(sp_die, &tmp);
202 if (ret)
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900203 return -ENOENT;
204 /*
205 * This is fuzzed by fentry mcount. We try to find the
206 * parameter location at the earliest address.
207 */
208 for (addr += 1; addr <= tmp; addr++) {
209 if (dwarf_getlocation_addr(&attr, addr, &op,
210 &nops, 1) > 0)
211 goto found;
212 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400213 return -ENOENT;
214 }
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900215found:
216 if (nops == 0)
217 /* TODO: Support const_value */
218 return -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400219
220 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900221static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900222 if (!tvar)
He Kuang349e8d22015-05-11 09:25:03 +0000223 return ret2;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400224 /* Static variables on memory (not stack), make @varname */
225 ret = strlen(dwarf_diename(vr_die));
226 tvar->value = zalloc(ret + 2);
227 if (tvar->value == NULL)
228 return -ENOMEM;
229 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
230 tvar->ref = alloc_trace_arg_ref((long)offs);
231 if (tvar->ref == NULL)
232 return -ENOMEM;
He Kuang349e8d22015-05-11 09:25:03 +0000233 return ret2;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400234 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400235
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400236 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500237 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900238 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400239 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400240 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500241 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900242 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500243 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400244
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500245 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
246 regn = op->atom - DW_OP_breg0;
247 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400248 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500249 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
250 regn = op->atom - DW_OP_reg0;
251 } else if (op->atom == DW_OP_bregx) {
252 regn = op->number;
253 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400254 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500255 } else if (op->atom == DW_OP_regx) {
256 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400257 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900258 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400259 return -ENOTSUP;
260 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400261
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900262 if (!tvar)
He Kuang349e8d22015-05-11 09:25:03 +0000263 return ret2;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900264
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400265 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400266 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900267 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900268 pr_warning("Mapping for the register number %u "
269 "missing on this architecture.\n", regn);
He Kuang349e8d22015-05-11 09:25:03 +0000270 return -ENOTSUP;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400271 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400272
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400273 tvar->value = strdup(regs);
274 if (tvar->value == NULL)
275 return -ENOMEM;
276
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400277 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400278 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400279 if (tvar->ref == NULL)
280 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400281 }
He Kuang349e8d22015-05-11 09:25:03 +0000282 return ret2;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400283}
284
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900285#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
286
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400287static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530288 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400289 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400290{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530291 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400292 Dwarf_Die type;
293 char buf[16];
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000294 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900295 int bsize, boffs, total;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400296 int ret;
297
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400298 /* TODO: check all types */
299 if (cast && strcmp(cast, "string") != 0) {
300 /* Non string type is OK */
301 tvar->type = strdup(cast);
302 return (tvar->type == NULL) ? -ENOMEM : 0;
303 }
304
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900305 bsize = dwarf_bitsize(vr_die);
306 if (bsize > 0) {
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900307 /* This is a bitfield */
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900308 boffs = dwarf_bitoffset(vr_die);
309 total = dwarf_bytesize(vr_die);
310 if (boffs < 0 || total < 0)
311 return -ENOENT;
312 ret = snprintf(buf, 16, "b%d@%d/%zd", bsize, boffs,
313 BYTES_TO_BITS(total));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900314 goto formatted;
315 }
316
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400317 if (die_get_real_type(vr_die, &type) == NULL) {
318 pr_warning("Failed to get a type information of %s.\n",
319 dwarf_diename(vr_die));
320 return -ENOENT;
321 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400322
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400323 pr_debug("%s type is %s.\n",
324 dwarf_diename(vr_die), dwarf_diename(&type));
325
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400326 if (cast && strcmp(cast, "string") == 0) { /* String type */
327 ret = dwarf_tag(&type);
328 if (ret != DW_TAG_pointer_type &&
329 ret != DW_TAG_array_type) {
330 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900331 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400332 dwarf_diename(vr_die), dwarf_diename(&type));
333 return -EINVAL;
334 }
Hyeoncheol Lee7ce28b52012-09-11 16:57:28 +0900335 if (die_get_real_type(&type, &type) == NULL) {
336 pr_warning("Failed to get a type"
337 " information.\n");
338 return -ENOENT;
339 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400340 if (ret == DW_TAG_pointer_type) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400341 while (*ref_ptr)
342 ref_ptr = &(*ref_ptr)->next;
343 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530344 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400345 if (*ref_ptr == NULL) {
346 pr_warning("Out of memory error\n");
347 return -ENOMEM;
348 }
349 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900350 if (!die_compare_name(&type, "char") &&
351 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400352 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900353 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400354 dwarf_diename(vr_die));
355 return -EINVAL;
356 }
357 tvar->type = strdup(cast);
358 return (tvar->type == NULL) ? -ENOMEM : 0;
359 }
360
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900361 ret = dwarf_bytesize(&type);
362 if (ret <= 0)
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900363 /* No size ... try to use default type */
364 return 0;
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900365 ret = BYTES_TO_BITS(ret);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400366
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900367 /* Check the bitwidth */
368 if (ret > MAX_BASIC_TYPE_BITS) {
369 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
370 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
371 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400372 }
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900373 ret = snprintf(buf, 16, "%c%d",
374 die_is_signed_type(&type) ? 's' : 'u', ret);
375
376formatted:
377 if (ret < 0 || ret >= 16) {
378 if (ret >= 16)
379 ret = -E2BIG;
380 pr_warning("Failed to convert variable type: %s\n",
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000381 strerror_r(-ret, sbuf, sizeof(sbuf)));
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900382 return ret;
383 }
384 tvar->type = strdup(buf);
385 if (tvar->type == NULL)
386 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400387 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400388}
389
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400390static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400391 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530392 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400393 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400394{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530395 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400396 Dwarf_Die type;
397 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400398 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400399
400 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400401 if (die_get_real_type(vr_die, &type) == NULL) {
402 pr_warning("Failed to get the type of %s.\n", varname);
403 return -ENOENT;
404 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400405 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
406 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400407
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400408 if (field->name[0] == '[' &&
409 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
410 if (field->next)
411 /* Save original type for next field */
412 memcpy(die_mem, &type, sizeof(*die_mem));
413 /* Get the type of this array */
414 if (die_get_real_type(&type, &type) == NULL) {
415 pr_warning("Failed to get the type of %s.\n", varname);
416 return -ENOENT;
417 }
418 pr_debug2("Array real type: (%x)\n",
419 (unsigned)dwarf_dieoffset(&type));
420 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530421 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400422 if (ref == NULL)
423 return -ENOMEM;
424 if (*ref_ptr)
425 (*ref_ptr)->next = ref;
426 else
427 *ref_ptr = ref;
428 }
Masami Hiramatsubcfc0822011-06-27 16:27:21 +0900429 ref->offset += dwarf_bytesize(&type) * field->index;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400430 if (!field->next)
431 /* Save vr_die for converting types */
432 memcpy(die_mem, vr_die, sizeof(*die_mem));
433 goto next;
434 } else if (tag == DW_TAG_pointer_type) {
435 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400436 if (!field->ref) {
437 pr_err("Semantic error: %s must be referred by '->'\n",
438 field->name);
439 return -EINVAL;
440 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400441 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400442 if (die_get_real_type(&type, &type) == NULL) {
443 pr_warning("Failed to get the type of %s.\n", varname);
444 return -ENOENT;
445 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400446 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900447 tag = dwarf_tag(&type);
448 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
449 pr_warning("%s is not a data structure nor an union.\n",
450 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400451 return -EINVAL;
452 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400453
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530454 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400455 if (ref == NULL)
456 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400457 if (*ref_ptr)
458 (*ref_ptr)->next = ref;
459 else
460 *ref_ptr = ref;
461 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400462 /* Verify it is a data structure */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900463 if (tag != DW_TAG_structure_type && tag != DW_TAG_union_type) {
464 pr_warning("%s is not a data structure nor an union.\n",
465 varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400466 return -EINVAL;
467 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400468 if (field->name[0] == '[') {
Masanari Iidad939be32015-02-27 23:52:31 +0900469 pr_err("Semantic error: %s is not a pointer"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900470 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400471 return -EINVAL;
472 }
Masami Hiramatsuc7273832015-04-02 16:33:12 +0900473 /* While prcessing unnamed field, we don't care about this */
474 if (field->ref && dwarf_diename(vr_die)) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400475 pr_err("Semantic error: %s must be referred by '.'\n",
476 field->name);
477 return -EINVAL;
478 }
479 if (!ref) {
480 pr_warning("Structure on a register is not "
481 "supported yet.\n");
482 return -ENOTSUP;
483 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400484 }
485
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400486 if (die_find_member(&type, field->name, die_mem) == NULL) {
Arnaldo Carvalho de Melo9ef04382013-10-24 17:36:31 -0300487 pr_warning("%s(type:%s) has no member %s.\n", varname,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400488 dwarf_diename(&type), field->name);
489 return -EINVAL;
490 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400491
492 /* Get the offset of the field */
Hyeoncheol Lee7b0295b2012-09-12 16:57:45 +0900493 if (tag == DW_TAG_union_type) {
494 offs = 0;
495 } else {
496 ret = die_get_data_member_location(die_mem, &offs);
497 if (ret < 0) {
498 pr_warning("Failed to get the offset of %s.\n",
499 field->name);
500 return ret;
501 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400502 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400503 ref->offset += (long)offs;
504
Masami Hiramatsuc7273832015-04-02 16:33:12 +0900505 /* If this member is unnamed, we need to reuse this field */
506 if (!dwarf_diename(die_mem))
507 return convert_variable_fields(die_mem, varname, field,
508 &ref, die_mem);
509
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400510next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400511 /* Converting next field */
512 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400513 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300514 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400515 else
516 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400517}
518
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400519/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400520static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400521{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400522 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400523 int ret;
524
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400525 pr_debug("Converting variable %s into trace event.\n",
526 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500527
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900528 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +0900529 &pf->sp_die, pf->tvar);
He Kuang7d5eaba2015-05-11 09:25:04 +0000530 if (ret == -ENOENT || ret == -EINVAL) {
531 pr_err("Failed to find the location of the '%s' variable at this address.\n"
532 " Perhaps it has been optimized out.\n"
533 " Use -V with the --range option to show '%s' location range.\n",
534 pf->pvar->var, pf->pvar->var);
535 } else if (ret == -ENOTSUP)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900536 pr_err("Sorry, we don't support this variable location yet.\n");
Masami Hiramatsu0c188a02014-05-29 19:52:32 +0900537 else if (ret == 0 && pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400538 ret = convert_variable_fields(vr_die, pf->pvar->var,
539 pf->pvar->field, &pf->tvar->ref,
540 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400541 vr_die = &die_mem;
542 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400543 if (ret == 0)
544 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500545 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400546 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400547}
548
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900549/* Find a variable in a scope DIE */
550static int find_variable(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400551{
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900552 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400553 char buf[32], *ptr;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900554 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400555
Masami Hiramatsu367e94c2010-08-27 20:38:59 +0900556 if (!is_c_varname(pf->pvar->var)) {
557 /* Copy raw parameters */
558 pf->tvar->value = strdup(pf->pvar->var);
559 if (pf->tvar->value == NULL)
560 return -ENOMEM;
561 if (pf->pvar->type) {
562 pf->tvar->type = strdup(pf->pvar->type);
563 if (pf->tvar->type == NULL)
564 return -ENOMEM;
565 }
566 if (pf->pvar->name) {
567 pf->tvar->name = strdup(pf->pvar->name);
568 if (pf->tvar->name == NULL)
569 return -ENOMEM;
570 } else
571 pf->tvar->name = NULL;
572 return 0;
573 }
574
Masami Hiramatsu48481932010-04-12 13:16:53 -0400575 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400576 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400577 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400578 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
579 if (ret < 0)
580 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400581 ptr = strchr(buf, ':'); /* Change type separator to _ */
582 if (ptr)
583 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400584 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400585 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400586 if (pf->tvar->name == NULL)
587 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400588
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900589 pr_debug("Searching '%s' variable in context.\n", pf->pvar->var);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400590 /* Search child die for local variables and parameters. */
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900591 if (!die_find_variable_at(sc_die, pf->pvar->var, pf->addr, &vr_die)) {
592 /* Search again in global variables */
He Kuangd13855e2015-04-25 16:08:58 +0800593 if (!die_find_variable_at(&pf->cu_die, pf->pvar->var,
594 0, &vr_die)) {
Masami Hiramatsu36d789a2014-06-06 07:13:45 +0000595 pr_warning("Failed to find '%s' in this function.\n",
596 pf->pvar->var);
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900597 ret = -ENOENT;
He Kuangd13855e2015-04-25 16:08:58 +0800598 }
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400599 }
Masami Hiramatsuf66fedc2011-08-20 14:39:23 +0900600 if (ret >= 0)
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +0900601 ret = convert_variable(&vr_die, pf);
602
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400603 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400604}
605
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900606/* Convert subprogram DIE to trace point */
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900607static int convert_to_trace_point(Dwarf_Die *sp_die, Dwfl_Module *mod,
608 Dwarf_Addr paddr, bool retprobe,
609 struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400610{
Prashanth Nageshappa26b79522012-02-24 13:11:39 +0530611 Dwarf_Addr eaddr, highaddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900612 GElf_Sym sym;
613 const char *symbol;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500614
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900615 /* Verify the address is correct */
616 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
617 pr_warning("Failed to get entry address of %s\n",
618 dwarf_diename(sp_die));
619 return -ENOENT;
620 }
621 if (dwarf_highpc(sp_die, &highaddr) != 0) {
622 pr_warning("Failed to get end address of %s\n",
623 dwarf_diename(sp_die));
624 return -ENOENT;
625 }
626 if (paddr > highaddr) {
627 pr_warning("Offset specified is greater than size of %s\n",
628 dwarf_diename(sp_die));
629 return -EINVAL;
630 }
631
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000632 symbol = dwarf_diename(sp_die);
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900633 if (!symbol) {
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000634 /* Try to get the symbol name from symtab */
635 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
636 if (!symbol) {
637 pr_warning("Failed to find symbol at 0x%lx\n",
638 (unsigned long)paddr);
639 return -ENOENT;
640 }
641 eaddr = sym.st_value;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900642 }
Masami Hiramatsu664fee32014-09-17 08:41:01 +0000643 tp->offset = (unsigned long)(paddr - eaddr);
Masami Hiramatsufb7345b2013-12-26 05:41:53 +0000644 tp->address = (unsigned long)paddr;
Masami Hiramatsu576b5232013-09-25 22:16:16 +0900645 tp->symbol = strdup(symbol);
646 if (!tp->symbol)
647 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400648
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900649 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900650 if (retprobe) {
651 if (eaddr != paddr) {
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900652 pr_warning("Return probe must be on the head of"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900653 " a real function.\n");
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900654 return -EINVAL;
655 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900656 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +0900657 }
658
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900659 return 0;
660}
661
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900662/* Call probe_finder callback with scope DIE */
663static int call_probe_finder(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900664{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900665 Dwarf_Attribute fb_attr;
666 size_t nops;
667 int ret;
668
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900669 if (!sc_die) {
670 pr_err("Caller must pass a scope DIE. Program error.\n");
671 return -EINVAL;
672 }
673
674 /* If not a real subprogram, find a real one */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900675 if (!die_is_func_def(sc_die)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900676 if (!die_find_realfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
Naveen N. Raod4c537e2015-04-30 17:12:31 +0530677 if (die_find_tailfunc(&pf->cu_die, pf->addr, &pf->sp_die)) {
678 pr_warning("Ignoring tail call from %s\n",
679 dwarf_diename(&pf->sp_die));
680 return 0;
681 } else {
682 pr_warning("Failed to find probe point in any "
683 "functions.\n");
684 return -ENOENT;
685 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900686 }
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900687 } else
688 memcpy(&pf->sp_die, sc_die, sizeof(Dwarf_Die));
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400689
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900690 /* Get the frame base attribute/ops from subprogram */
691 dwarf_attr(&pf->sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400692 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400693 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500694 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400695#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400696 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
697 pf->cfi != NULL) {
698 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400699 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
700 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900701 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400702 (uintmax_t)pf->addr);
703 return -ENOENT;
704 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400705#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400706 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500707
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900708 /* Call finder's callback handler */
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900709 ret = pf->callback(sc_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500710
711 /* *pf->fb_ops will be cached in libdw. Don't free it. */
712 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900713
714 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400715}
716
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900717struct find_scope_param {
718 const char *function;
719 const char *file;
720 int line;
721 int diff;
722 Dwarf_Die *die_mem;
723 bool found;
724};
725
726static int find_best_scope_cb(Dwarf_Die *fn_die, void *data)
727{
728 struct find_scope_param *fsp = data;
729 const char *file;
730 int lno;
731
732 /* Skip if declared file name does not match */
733 if (fsp->file) {
734 file = dwarf_decl_file(fn_die);
735 if (!file || strcmp(fsp->file, file) != 0)
736 return 0;
737 }
738 /* If the function name is given, that's what user expects */
739 if (fsp->function) {
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900740 if (die_match_name(fn_die, fsp->function)) {
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900741 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
742 fsp->found = true;
743 return 1;
744 }
745 } else {
746 /* With the line number, find the nearest declared DIE */
747 dwarf_decl_line(fn_die, &lno);
748 if (lno < fsp->line && fsp->diff > fsp->line - lno) {
749 /* Keep a candidate and continue */
750 fsp->diff = fsp->line - lno;
751 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die));
752 fsp->found = true;
753 }
754 }
755 return 0;
756}
757
758/* Find an appropriate scope fits to given conditions */
759static Dwarf_Die *find_best_scope(struct probe_finder *pf, Dwarf_Die *die_mem)
760{
761 struct find_scope_param fsp = {
762 .function = pf->pev->point.function,
763 .file = pf->fname,
764 .line = pf->lno,
765 .diff = INT_MAX,
766 .die_mem = die_mem,
767 .found = false,
768 };
769
770 cu_walk_functions_at(&pf->cu_die, pf->addr, find_best_scope_cb, &fsp);
771
772 return fsp.found ? die_mem : NULL;
773}
774
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900775static int probe_point_line_walker(const char *fname, int lineno,
776 Dwarf_Addr addr, void *data)
777{
778 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900779 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900780 int ret;
781
782 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
783 return 0;
784
785 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900786 sc_die = find_best_scope(pf, &die_mem);
787 if (!sc_die) {
788 pr_warning("Failed to find scope of probe point.\n");
789 return -ENOENT;
790 }
791
792 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900793
794 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -0300795 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900796}
797
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400798/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400799static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400800{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900801 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400802}
803
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500804/* Find lines which match lazy pattern */
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000805static int find_lazy_match_lines(struct intlist *list,
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500806 const char *fname, const char *pat)
807{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100808 FILE *fp;
809 char *line = NULL;
810 size_t line_len;
811 ssize_t len;
812 int count = 0, linenum = 1;
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000813 char sbuf[STRERR_BUFSIZE];
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500814
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100815 fp = fopen(fname, "r");
816 if (!fp) {
Masami Hiramatsu5f03cba2014-08-14 02:22:34 +0000817 pr_warning("Failed to open %s: %s\n", fname,
818 strerror_r(errno, sbuf, sizeof(sbuf)));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300819 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400820 }
821
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100822 while ((len = getline(&line, &line_len, fp)) > 0) {
823
824 if (line[len - 1] == '\n')
825 line[len - 1] = '\0';
826
827 if (strlazymatch(line, pat)) {
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000828 intlist__add(list, linenum);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100829 count++;
830 }
831 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400832 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300833
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100834 if (ferror(fp))
835 count = -errno;
836 free(line);
837 fclose(fp);
838
839 if (count == 0)
840 pr_debug("No matched lines found in %s.\n", fname);
841 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500842}
843
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900844static int probe_point_lazy_walker(const char *fname, int lineno,
845 Dwarf_Addr addr, void *data)
846{
847 struct probe_finder *pf = data;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900848 Dwarf_Die *sc_die, die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900849 int ret;
850
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000851 if (!intlist__has_entry(pf->lcache, lineno) ||
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900852 strtailcmp(fname, pf->fname) != 0)
853 return 0;
854
855 pr_debug("Probe line found: line:%d addr:0x%llx\n",
856 lineno, (unsigned long long)addr);
857 pf->addr = addr;
Masami Hiramatsu221d0612011-08-11 20:02:59 +0900858 pf->lno = lineno;
859 sc_die = find_best_scope(pf, &die_mem);
860 if (!sc_die) {
861 pr_warning("Failed to find scope of probe point.\n");
862 return -ENOENT;
863 }
864
865 ret = call_probe_finder(sc_die, pf);
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900866
867 /*
868 * Continue if no error, because the lazy pattern will match
869 * to other lines
870 */
Ingo Molnar5e814dd2011-03-15 20:51:09 +0100871 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900872}
873
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500874/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400875static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500876{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400877 int ret = 0;
Naohiro Aota09ed8972015-03-13 14:18:40 +0900878 char *fpath;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500879
Masami Hiramatsu5a622572014-02-06 05:32:09 +0000880 if (intlist__empty(pf->lcache)) {
Naohiro Aota09ed8972015-03-13 14:18:40 +0900881 const char *comp_dir;
882
883 comp_dir = cu_get_comp_dir(&pf->cu_die);
884 ret = get_real_path(pf->fname, comp_dir, &fpath);
885 if (ret < 0) {
886 pr_warning("Failed to find source file path.\n");
887 return ret;
888 }
889
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500890 /* Matching lazy line pattern */
Naohiro Aota09ed8972015-03-13 14:18:40 +0900891 ret = find_lazy_match_lines(pf->lcache, fpath,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400892 pf->pev->point.lazy_line);
Naohiro Aota09ed8972015-03-13 14:18:40 +0900893 free(fpath);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +0100894 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400895 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500896 }
897
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900898 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500899}
900
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500901static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400902{
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900903 struct probe_finder *pf = data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400904 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400905 Dwarf_Addr addr;
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900906 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400907
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500908 if (pp->lazy_line)
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900909 ret = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500910 else {
911 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400912 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900913 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400914 dwarf_diename(in_die));
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900915 return -ENOENT;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400916 }
917 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500918 pf->addr += pp->offset;
919 pr_debug("found inline addr: 0x%jx\n",
920 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500921
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900922 ret = call_probe_finder(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500923 }
924
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900925 return ret;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500926}
927
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900928/* Callback parameter with return value for libdw */
929struct dwarf_callback_param {
930 void *data;
931 int retval;
932};
933
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500934/* Search function from function name */
935static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
936{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400937 struct dwarf_callback_param *param = data;
938 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400939 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500940
941 /* Check tag and diename */
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +0900942 if (!die_is_func_def(sp_die) ||
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900943 !die_match_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400944 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500945
Masami Hiramatsu7d216352011-03-30 18:25:41 +0900946 /* Check declared file */
947 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
948 return DWARF_CB_OK;
949
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900950 pr_debug("Matched function: %s\n", dwarf_diename(sp_die));
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500951 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500952 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500953 dwarf_decl_line(sp_die, &pf->lno);
954 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400955 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue1ecbbc2015-01-30 18:37:44 +0900956 } else if (die_is_func_instance(sp_die)) {
957 /* Instances always have the entry address */
958 dwarf_entrypc(sp_die, &pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500959 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500960 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400961 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500962 else {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500963 pf->addr += pp->offset;
964 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900965 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500966 }
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900967 } else if (!probe_conf.no_inlines) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500968 /* Inlined function: search instances */
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +0900969 param->retval = die_walk_instances(sp_die,
970 probe_point_inline_cb, (void *)pf);
Masami Hiramatsu4c859352015-05-08 10:03:35 +0900971 /* This could be a non-existed inline definition */
972 if (param->retval == -ENOENT && strisglob(pp->function))
973 param->retval = 0;
974 }
975
976 /* We need to find other candidates */
977 if (strisglob(pp->function) && param->retval >= 0) {
978 param->retval = 0; /* We have to clear the result */
979 return DWARF_CB_OK;
980 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500981
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400982 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400983}
984
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400985static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400986{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400987 struct dwarf_callback_param _param = {.data = (void *)pf,
988 .retval = 0};
989 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
990 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400991}
992
Lin Mingcd25f8b2011-03-25 16:27:48 +0800993struct pubname_callback_param {
994 char *function;
995 char *file;
996 Dwarf_Die *cu_die;
997 Dwarf_Die *sp_die;
998 int found;
999};
1000
1001static int pubname_search_cb(Dwarf *dbg, Dwarf_Global *gl, void *data)
1002{
1003 struct pubname_callback_param *param = data;
1004
1005 if (dwarf_offdie(dbg, gl->die_offset, param->sp_die)) {
1006 if (dwarf_tag(param->sp_die) != DW_TAG_subprogram)
1007 return DWARF_CB_OK;
1008
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001009 if (die_match_name(param->sp_die, param->function)) {
Lin Mingcd25f8b2011-03-25 16:27:48 +08001010 if (!dwarf_offdie(dbg, gl->cu_offset, param->cu_die))
1011 return DWARF_CB_OK;
1012
1013 if (param->file &&
1014 strtailcmp(param->file, dwarf_decl_file(param->sp_die)))
1015 return DWARF_CB_OK;
1016
1017 param->found = 1;
1018 return DWARF_CB_ABORT;
1019 }
1020 }
1021
1022 return DWARF_CB_OK;
1023}
1024
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001025/* Find probe points from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001026static int debuginfo__find_probes(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001027 struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001028{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001029 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001030 Dwarf_Off off, noff;
1031 size_t cuhl;
1032 Dwarf_Die *diep;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001033 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001034
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001035#if _ELFUTILS_PREREQ(0, 142)
Namhyung Kim40933252014-12-30 17:47:47 +09001036 Elf *elf;
1037 GElf_Ehdr ehdr;
1038 GElf_Shdr shdr;
1039
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001040 /* Get the call frame information from this dwarf */
Namhyung Kim40933252014-12-30 17:47:47 +09001041 elf = dwarf_getelf(dbg->dbg);
1042 if (elf == NULL)
1043 return -EINVAL;
1044
1045 if (gelf_getehdr(elf, &ehdr) == NULL)
1046 return -EINVAL;
1047
1048 if (elf_section_by_name(elf, &ehdr, &shdr, ".eh_frame", NULL) &&
1049 shdr.sh_type == SHT_PROGBITS) {
1050 pf->cfi = dwarf_getcfi_elf(elf);
1051 } else {
1052 pf->cfi = dwarf_getcfi(dbg->dbg);
1053 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001054#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001055
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001056 off = 0;
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001057 pf->lcache = intlist__new(NULL);
1058 if (!pf->lcache)
1059 return -ENOMEM;
Lin Mingcd25f8b2011-03-25 16:27:48 +08001060
1061 /* Fastpath: lookup by function name from .debug_pubnames section */
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001062 if (pp->function && !strisglob(pp->function)) {
Lin Mingcd25f8b2011-03-25 16:27:48 +08001063 struct pubname_callback_param pubname_param = {
1064 .function = pp->function,
1065 .file = pp->file,
1066 .cu_die = &pf->cu_die,
1067 .sp_die = &pf->sp_die,
Lin Ming2b348a72011-04-29 08:41:57 +00001068 .found = 0,
Lin Mingcd25f8b2011-03-25 16:27:48 +08001069 };
1070 struct dwarf_callback_param probe_param = {
1071 .data = pf,
1072 };
1073
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001074 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001075 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001076 if (pubname_param.found) {
1077 ret = probe_point_search_cb(&pf->sp_die, &probe_param);
1078 if (ret)
1079 goto found;
1080 }
1081 }
1082
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001083 /* Loop on CUs (Compilation Unit) */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001084 while (!dwarf_nextcu(dbg->dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001085 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001086 diep = dwarf_offdie(dbg->dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001087 if (!diep)
1088 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001089
1090 /* Check if target file is included. */
1091 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001092 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001093 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001094 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001095
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001096 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001097 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001098 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001099 else if (pp->lazy_line)
He Kuangf19e80c2015-04-13 19:41:30 +08001100 ret = find_probe_point_lazy(&pf->cu_die, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001101 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001102 pf->lno = pp->line;
1103 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001104 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001105 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001106 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001107 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001108 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001109 }
Lin Mingcd25f8b2011-03-25 16:27:48 +08001110
1111found:
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001112 intlist__delete(pf->lcache);
1113 pf->lcache = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001114
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001115 return ret;
1116}
1117
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001118struct local_vars_finder {
1119 struct probe_finder *pf;
1120 struct perf_probe_arg *args;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001121 bool vars;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001122 int max_args;
1123 int nargs;
1124 int ret;
1125};
1126
1127/* Collect available variables in this scope */
1128static int copy_variables_cb(Dwarf_Die *die_mem, void *data)
1129{
1130 struct local_vars_finder *vf = data;
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001131 struct probe_finder *pf = vf->pf;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001132 int tag;
1133
1134 tag = dwarf_tag(die_mem);
1135 if (tag == DW_TAG_formal_parameter ||
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001136 (tag == DW_TAG_variable && vf->vars)) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001137 if (convert_variable_location(die_mem, vf->pf->addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001138 vf->pf->fb_ops, &pf->sp_die,
1139 NULL) == 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001140 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem);
1141 if (vf->args[vf->nargs].var == NULL) {
1142 vf->ret = -ENOMEM;
1143 return DIE_FIND_CB_END;
1144 }
1145 pr_debug(" %s", vf->args[vf->nargs].var);
1146 vf->nargs++;
1147 }
1148 }
1149
1150 if (dwarf_haspc(die_mem, vf->pf->addr))
1151 return DIE_FIND_CB_CONTINUE;
1152 else
1153 return DIE_FIND_CB_SIBLING;
1154}
1155
1156static int expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf,
1157 struct perf_probe_arg *args)
1158{
1159 Dwarf_Die die_mem;
1160 int i;
1161 int n = 0;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001162 struct local_vars_finder vf = {.pf = pf, .args = args, .vars = false,
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001163 .max_args = MAX_PROBE_ARGS, .ret = 0};
1164
1165 for (i = 0; i < pf->pev->nargs; i++) {
1166 /* var never be NULL */
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001167 if (strcmp(pf->pev->args[i].var, PROBE_ARG_VARS) == 0)
1168 vf.vars = true;
1169 else if (strcmp(pf->pev->args[i].var, PROBE_ARG_PARAMS) != 0) {
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001170 /* Copy normal argument */
1171 args[n] = pf->pev->args[i];
1172 n++;
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001173 continue;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001174 }
Masami Hiramatsuf8bffbf2015-05-06 21:46:53 +09001175 pr_debug("Expanding %s into:", pf->pev->args[i].var);
1176 vf.nargs = n;
1177 /* Special local variables */
1178 die_find_child(sc_die, copy_variables_cb, (void *)&vf,
1179 &die_mem);
1180 pr_debug(" (%d)\n", vf.nargs - n);
1181 if (vf.ret < 0)
1182 return vf.ret;
1183 n = vf.nargs;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001184 }
1185 return n;
1186}
1187
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001188/* Add a found probe point into trace event list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001189static int add_probe_trace_event(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001190{
1191 struct trace_event_finder *tf =
1192 container_of(pf, struct trace_event_finder, pf);
1193 struct probe_trace_event *tev;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001194 struct perf_probe_arg *args;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001195 int ret, i;
1196
1197 /* Check number of tevs */
1198 if (tf->ntevs == tf->max_tevs) {
1199 pr_warning("Too many( > %d) probe point found.\n",
1200 tf->max_tevs);
1201 return -ERANGE;
1202 }
1203 tev = &tf->tevs[tf->ntevs++];
1204
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001205 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001206 ret = convert_to_trace_point(&pf->sp_die, tf->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001207 pf->pev->point.retprobe, &tev->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001208 if (ret < 0)
1209 return ret;
1210
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001211 tev->point.realname = strdup(dwarf_diename(sc_die));
1212 if (!tev->point.realname)
1213 return -ENOMEM;
1214
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001215 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1216 tev->point.offset);
1217
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001218 /* Expand special probe argument if exist */
1219 args = zalloc(sizeof(struct perf_probe_arg) * MAX_PROBE_ARGS);
1220 if (args == NULL)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001221 return -ENOMEM;
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001222
1223 ret = expand_probe_args(sc_die, pf, args);
1224 if (ret < 0)
1225 goto end;
1226
1227 tev->nargs = ret;
1228 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1229 if (tev->args == NULL) {
1230 ret = -ENOMEM;
1231 goto end;
1232 }
1233
1234 /* Find each argument */
1235 for (i = 0; i < tev->nargs; i++) {
1236 pf->pvar = &args[i];
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001237 pf->tvar = &tev->args[i];
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001238 /* Variable should be found from scope DIE */
1239 ret = find_variable(sc_die, pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001240 if (ret != 0)
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001241 break;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001242 }
1243
Masami Hiramatsu7969ec72013-10-11 16:10:23 +09001244end:
1245 free(args);
1246 return ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001247}
1248
1249/* Find probe_trace_events specified by perf_probe_event from debuginfo */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001250int debuginfo__find_trace_events(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001251 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001252 struct probe_trace_event **tevs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001253{
1254 struct trace_event_finder tf = {
1255 .pf = {.pev = pev, .callback = add_probe_trace_event},
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001256 .max_tevs = probe_conf.max_probes, .mod = dbg->mod};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001257 int ret;
1258
1259 /* Allocate result tevs array */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001260 *tevs = zalloc(sizeof(struct probe_trace_event) * tf.max_tevs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001261 if (*tevs == NULL)
1262 return -ENOMEM;
1263
1264 tf.tevs = *tevs;
1265 tf.ntevs = 0;
1266
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001267 ret = debuginfo__find_probes(dbg, &tf.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001268 if (ret < 0) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001269 zfree(tevs);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001270 return ret;
1271 }
1272
1273 return (ret < 0) ? ret : tf.ntevs;
1274}
1275
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001276/* Collect available variables in this scope */
1277static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1278{
1279 struct available_var_finder *af = data;
1280 struct variable_list *vl;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001281 int tag, ret;
1282
1283 vl = &af->vls[af->nvls - 1];
1284
1285 tag = dwarf_tag(die_mem);
1286 if (tag == DW_TAG_formal_parameter ||
1287 tag == DW_TAG_variable) {
1288 ret = convert_variable_location(die_mem, af->pf.addr,
Masami Hiramatsu3d918a12013-10-11 16:10:26 +09001289 af->pf.fb_ops, &af->pf.sp_die,
1290 NULL);
He Kuang349e8d22015-05-11 09:25:03 +00001291 if (ret == 0 || ret == -ERANGE) {
1292 int ret2;
1293 bool externs = !af->child;
He Kuangfb9596d2015-05-11 09:25:02 +00001294 struct strbuf buf;
1295
1296 strbuf_init(&buf, 64);
He Kuang349e8d22015-05-11 09:25:03 +00001297
1298 if (probe_conf.show_location_range) {
1299 if (!externs) {
1300 if (ret)
1301 strbuf_addf(&buf, "[INV]\t");
1302 else
1303 strbuf_addf(&buf, "[VAL]\t");
1304 } else
1305 strbuf_addf(&buf, "[EXT]\t");
1306 }
1307
1308 ret2 = die_get_varname(die_mem, &buf);
1309
1310 if (!ret2 && probe_conf.show_location_range &&
1311 !externs) {
1312 strbuf_addf(&buf, "\t");
1313 ret2 = die_get_var_range(&af->pf.sp_die,
1314 die_mem, &buf);
1315 }
1316
1317 pr_debug("Add new var: %s\n", buf.buf);
1318 if (ret2 == 0) {
He Kuangfb9596d2015-05-11 09:25:02 +00001319 strlist__add(vl->vars,
1320 strbuf_detach(&buf, NULL));
1321 }
1322 strbuf_release(&buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001323 }
1324 }
1325
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001326 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001327 return DIE_FIND_CB_CONTINUE;
1328 else
1329 return DIE_FIND_CB_SIBLING;
1330}
1331
1332/* Add a found vars into available variables list */
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001333static int add_available_vars(Dwarf_Die *sc_die, struct probe_finder *pf)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001334{
1335 struct available_var_finder *af =
1336 container_of(pf, struct available_var_finder, pf);
1337 struct variable_list *vl;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001338 Dwarf_Die die_mem;
1339 int ret;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001340
1341 /* Check number of tevs */
1342 if (af->nvls == af->max_vls) {
1343 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1344 return -ERANGE;
1345 }
1346 vl = &af->vls[af->nvls++];
1347
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001348 /* Trace point should be converted from subprogram DIE */
Masami Hiramatsu576b5232013-09-25 22:16:16 +09001349 ret = convert_to_trace_point(&pf->sp_die, af->mod, pf->addr,
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001350 pf->pev->point.retprobe, &vl->point);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001351 if (ret < 0)
1352 return ret;
1353
1354 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1355 vl->point.offset);
1356
1357 /* Find local variables */
1358 vl->vars = strlist__new(true, NULL);
1359 if (vl->vars == NULL)
1360 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001361 af->child = true;
Masami Hiramatsu221d0612011-08-11 20:02:59 +09001362 die_find_child(sc_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001363
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001364 /* Find external variables */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001365 if (!probe_conf.show_ext_vars)
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001366 goto out;
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001367 /* Don't need to search child DIE for external vars. */
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001368 af->child = false;
Masami Hiramatsuf182e3e2011-08-11 20:03:05 +09001369 die_find_child(&pf->cu_die, collect_variables_cb, (void *)af, &die_mem);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001370
1371out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001372 if (strlist__empty(vl->vars)) {
1373 strlist__delete(vl->vars);
1374 vl->vars = NULL;
1375 }
1376
1377 return ret;
1378}
1379
Masami Hiramatsu69e96ea2014-06-06 07:13:59 +00001380/*
1381 * Find available variables at given probe point
1382 * Return the number of found probe points. Return 0 if there is no
1383 * matched probe point. Return <0 if an error occurs.
1384 */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001385int debuginfo__find_available_vars_at(struct debuginfo *dbg,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001386 struct perf_probe_event *pev,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001387 struct variable_list **vls)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001388{
1389 struct available_var_finder af = {
1390 .pf = {.pev = pev, .callback = add_available_vars},
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001391 .mod = dbg->mod,
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001392 .max_vls = probe_conf.max_probes};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001393 int ret;
1394
1395 /* Allocate result vls array */
Masami Hiramatsuddb2f582015-05-08 10:03:31 +09001396 *vls = zalloc(sizeof(struct variable_list) * af.max_vls);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001397 if (*vls == NULL)
1398 return -ENOMEM;
1399
1400 af.vls = *vls;
1401 af.nvls = 0;
1402
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001403 ret = debuginfo__find_probes(dbg, &af.pf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001404 if (ret < 0) {
1405 /* Free vlist for error */
1406 while (af.nvls--) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001407 zfree(&af.vls[af.nvls].point.symbol);
Arnaldo Carvalho de Melof5385652013-12-26 15:54:57 -03001408 strlist__delete(af.vls[af.nvls].vars);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001409 }
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001410 zfree(vls);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001411 return ret;
1412 }
1413
1414 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001415}
1416
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001417/* Reverse search */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001418int debuginfo__find_probe_point(struct debuginfo *dbg, unsigned long addr,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001419 struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001420{
1421 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001422 Dwarf_Addr _addr = 0, baseaddr = 0;
1423 const char *fname = NULL, *func = NULL, *basefunc = NULL, *tmp;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001424 int baseline = 0, lineno = 0, ret = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001425
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001426 /* Find cu die */
Masami Hiramatsu0104fe62015-03-02 21:49:46 +09001427 if (!dwarf_addrdie(dbg->dbg, (Dwarf_Addr)addr, &cudie)) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001428 pr_warning("Failed to find debug information for address %lx\n",
1429 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001430 ret = -EINVAL;
1431 goto end;
1432 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001433
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001434 /* Find a corresponding line (filename and lineno) */
1435 cu_find_lineinfo(&cudie, addr, &fname, &lineno);
1436 /* Don't care whether it failed or not */
1437
1438 /* Find a corresponding function (name, baseline and baseaddr) */
Masami Hiramatsue0d153c2011-06-27 16:27:27 +09001439 if (die_find_realfunc(&cudie, (Dwarf_Addr)addr, &spdie)) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001440 /* Get function entry information */
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001441 func = basefunc = dwarf_diename(&spdie);
1442 if (!func ||
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001443 dwarf_entrypc(&spdie, &baseaddr) != 0 ||
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001444 dwarf_decl_line(&spdie, &baseline) != 0) {
1445 lineno = 0;
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001446 goto post;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001447 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001448
Masami Hiramatsu1b286bd2013-10-11 12:23:17 +00001449 fname = dwarf_decl_file(&spdie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001450 if (addr == (unsigned long)baseaddr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001451 /* Function entry - Relative line number is 0 */
1452 lineno = baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001453 goto post;
1454 }
1455
1456 /* Track down the inline functions step by step */
1457 while (die_find_top_inlinefunc(&spdie, (Dwarf_Addr)addr,
1458 &indie)) {
1459 /* There is an inline function */
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001460 if (dwarf_entrypc(&indie, &_addr) == 0 &&
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001461 _addr == addr) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001462 /*
1463 * addr is at an inline function entry.
1464 * In this case, lineno should be the call-site
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001465 * line number. (overwrite lineinfo)
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001466 */
1467 lineno = die_get_call_lineno(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001468 fname = die_get_call_file(&indie);
1469 break;
1470 } else {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001471 /*
1472 * addr is in an inline function body.
1473 * Since lineno points one of the lines
1474 * of the inline function, baseline should
1475 * be the entry line of the inline function.
1476 */
1477 tmp = dwarf_diename(&indie);
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001478 if (!tmp ||
1479 dwarf_decl_line(&indie, &baseline) != 0)
1480 break;
1481 func = tmp;
1482 spdie = indie;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001483 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001484 }
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001485 /* Verify the lineno and baseline are in a same file */
1486 tmp = dwarf_decl_file(&spdie);
1487 if (!tmp || strcmp(tmp, fname) != 0)
1488 lineno = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001489 }
1490
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001491post:
1492 /* Make a relative line number or an offset */
1493 if (lineno)
1494 ppt->line = lineno - baseline;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001495 else if (basefunc) {
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001496 ppt->offset = addr - (unsigned long)baseaddr;
Masami Hiramatsue08cfd42013-09-30 18:21:44 +09001497 func = basefunc;
1498 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001499
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001500 /* Duplicate strings */
1501 if (func) {
1502 ppt->function = strdup(func);
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001503 if (ppt->function == NULL) {
1504 ret = -ENOMEM;
1505 goto end;
1506 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001507 }
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001508 if (fname) {
1509 ppt->file = strdup(fname);
1510 if (ppt->file == NULL) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001511 zfree(&ppt->function);
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001512 ret = -ENOMEM;
1513 goto end;
1514 }
1515 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001516end:
Masami Hiramatsu1d46ea22011-03-30 18:26:05 +09001517 if (ret == 0 && (fname || func))
1518 ret = 1; /* Found a point */
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001519 return ret;
1520}
1521
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001522/* Add a line and store the src path */
1523static int line_range_add_line(const char *src, unsigned int lineno,
1524 struct line_range *lr)
1525{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001526 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001527 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001528 lr->path = strdup(src);
1529 if (lr->path == NULL)
1530 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001531 }
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001532 return intlist__add(lr->line_list, lineno);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001533}
1534
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001535static int line_range_walk_cb(const char *fname, int lineno,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001536 Dwarf_Addr addr __maybe_unused,
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001537 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001538{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001539 struct line_finder *lf = data;
Namhyung Kim202c7c12014-04-01 13:47:57 +09001540 int err;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001541
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001542 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001543 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001544 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001545
Namhyung Kim202c7c12014-04-01 13:47:57 +09001546 err = line_range_add_line(fname, lineno, lf->lr);
1547 if (err < 0 && err != -EEXIST)
1548 return err;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001549
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001550 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001551}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001552
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001553/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001554static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001555{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001556 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001557
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001558 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001559
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001560 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001561 if (ret >= 0)
Masami Hiramatsu5a622572014-02-06 05:32:09 +00001562 if (!intlist__empty(lf->lr->line_list))
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001563 ret = lf->found = 1;
1564 else
1565 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001566 else {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001567 zfree(&lf->lr->path);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001568 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001569 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001570}
1571
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001572static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1573{
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001574 int ret = find_line_range_by_line(in_die, data);
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001575
1576 /*
1577 * We have to check all instances of inlined function, because
1578 * some execution paths can be optimized out depends on the
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001579 * function argument of instances. However, if an error occurs,
1580 * it should be handled by the caller.
Masami Hiramatsu36c0c582011-08-11 20:02:47 +09001581 */
Masami Hiramatsu182c2282014-04-02 14:48:31 +09001582 return ret < 0 ? ret : 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001583}
1584
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001585/* Search function definition from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001586static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001587{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001588 struct dwarf_callback_param *param = data;
1589 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001590 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001591
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001592 /* Check declared file */
1593 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1594 return DWARF_CB_OK;
1595
Masami Hiramatsu0dbb1ca2012-04-23 12:24:36 +09001596 if (die_is_func_def(sp_die) &&
Masami Hiramatsu4c859352015-05-08 10:03:35 +09001597 die_match_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001598 lf->fname = dwarf_decl_file(sp_die);
1599 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001600 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001601 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001602 if (lf->lno_s < 0) /* Overflow */
1603 lf->lno_s = INT_MAX;
1604 lf->lno_e = lr->offset + lr->end;
1605 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001606 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001607 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001608 lr->start = lf->lno_s;
1609 lr->end = lf->lno_e;
Masami Hiramatsue1ecbbc2015-01-30 18:37:44 +09001610 if (!die_is_func_instance(sp_die))
Masami Hiramatsudb0d2c62011-08-11 20:03:11 +09001611 param->retval = die_walk_instances(sp_die,
1612 line_range_inline_cb, lf);
1613 else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001614 param->retval = find_line_range_by_line(sp_die, lf);
1615 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001616 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001617 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001618}
1619
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001620static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001621{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001622 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1623 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1624 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001625}
1626
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001627int debuginfo__find_line_range(struct debuginfo *dbg, struct line_range *lr)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001628{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001629 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001630 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001631 Dwarf_Off off = 0, noff;
1632 size_t cuhl;
1633 Dwarf_Die *diep;
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001634 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001635
Lin Mingcd25f8b2011-03-25 16:27:48 +08001636 /* Fastpath: lookup by function name from .debug_pubnames section */
1637 if (lr->function) {
1638 struct pubname_callback_param pubname_param = {
1639 .function = lr->function, .file = lr->file,
1640 .cu_die = &lf.cu_die, .sp_die = &lf.sp_die, .found = 0};
1641 struct dwarf_callback_param line_range_param = {
1642 .data = (void *)&lf, .retval = 0};
1643
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001644 dwarf_getpubnames(dbg->dbg, pubname_search_cb,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001645 &pubname_param, 0);
Lin Mingcd25f8b2011-03-25 16:27:48 +08001646 if (pubname_param.found) {
1647 line_range_search_cb(&lf.sp_die, &line_range_param);
1648 if (lf.found)
1649 goto found;
1650 }
1651 }
1652
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001653 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001654 while (!lf.found && ret >= 0) {
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001655 if (dwarf_nextcu(dbg->dbg, off, &noff, &cuhl,
Masami Hiramatsuff741782011-06-27 16:27:39 +09001656 NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001657 break;
1658
1659 /* Get the DIE(Debugging Information Entry) of this CU */
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -03001660 diep = dwarf_offdie(dbg->dbg, off + cuhl, &lf.cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001661 if (!diep)
1662 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001663
1664 /* Check if target file is included. */
1665 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001666 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001667 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001668 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001669
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001670 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001671 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001672 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001673 else {
1674 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001675 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001676 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001677 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001678 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001679 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001680 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001681
Lin Mingcd25f8b2011-03-25 16:27:48 +08001682found:
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001683 /* Store comp_dir */
1684 if (lf.found) {
1685 comp_dir = cu_get_comp_dir(&lf.cu_die);
1686 if (comp_dir) {
1687 lr->comp_dir = strdup(comp_dir);
1688 if (!lr->comp_dir)
1689 ret = -ENOMEM;
1690 }
1691 }
1692
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001693 pr_debug("path: %s\n", lr->path);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001694 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001695}
1696
Naohiro Aota09ed8972015-03-13 14:18:40 +09001697/*
1698 * Find a src file from a DWARF tag path. Prepend optional source path prefix
1699 * and chop off leading directories that do not exist. Result is passed back as
1700 * a newly allocated path on success.
1701 * Return 0 if file was found and readable, -errno otherwise.
1702 */
1703int get_real_path(const char *raw_path, const char *comp_dir,
1704 char **new_path)
1705{
1706 const char *prefix = symbol_conf.source_prefix;
1707
1708 if (!prefix) {
1709 if (raw_path[0] != '/' && comp_dir)
1710 /* If not an absolute path, try to use comp_dir */
1711 prefix = comp_dir;
1712 else {
1713 if (access(raw_path, R_OK) == 0) {
1714 *new_path = strdup(raw_path);
1715 return *new_path ? 0 : -ENOMEM;
1716 } else
1717 return -errno;
1718 }
1719 }
1720
1721 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
1722 if (!*new_path)
1723 return -ENOMEM;
1724
1725 for (;;) {
1726 sprintf(*new_path, "%s/%s", prefix, raw_path);
1727
1728 if (access(*new_path, R_OK) == 0)
1729 return 0;
1730
1731 if (!symbol_conf.source_prefix) {
1732 /* In case of searching comp_dir, don't retry */
1733 zfree(new_path);
1734 return -errno;
1735 }
1736
1737 switch (errno) {
1738 case ENAMETOOLONG:
1739 case ENOENT:
1740 case EROFS:
1741 case EFAULT:
1742 raw_path = strchr(++raw_path, '/');
1743 if (!raw_path) {
1744 zfree(new_path);
1745 return -ENOENT;
1746 }
1747 continue;
1748
1749 default:
1750 zfree(new_path);
1751 return -errno;
1752 }
1753 }
1754}