blob: b4c93659929ae39ac24683a35a5120e95d1361df [file] [log] [blame]
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001/*
2 * probe-finder.c : C expression to kprobe event converter
3 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <getopt.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <ctype.h>
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040034
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050035#include "string.h"
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040036#include "event.h"
37#include "debug.h"
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040038#include "util.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040039#include "probe-finder.h"
40
41
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040042/*
43 * Generic dwarf analysis helpers
44 */
45
46#define X86_32_MAX_REGS 8
47const char *x86_32_regs_table[X86_32_MAX_REGS] = {
48 "%ax",
49 "%cx",
50 "%dx",
51 "%bx",
52 "$stack", /* Stack address instead of %sp */
53 "%bp",
54 "%si",
55 "%di",
56};
57
58#define X86_64_MAX_REGS 16
59const char *x86_64_regs_table[X86_64_MAX_REGS] = {
60 "%ax",
61 "%dx",
62 "%cx",
63 "%bx",
64 "%si",
65 "%di",
66 "%bp",
67 "%sp",
68 "%r8",
69 "%r9",
70 "%r10",
71 "%r11",
72 "%r12",
73 "%r13",
74 "%r14",
75 "%r15",
76};
77
78/* TODO: switching by dwarf address size */
79#ifdef __x86_64__
80#define ARCH_MAX_REGS X86_64_MAX_REGS
81#define arch_regs_table x86_64_regs_table
82#else
83#define ARCH_MAX_REGS X86_32_MAX_REGS
84#define arch_regs_table x86_32_regs_table
85#endif
86
Masami Hiramatsu49849122010-04-12 13:17:15 -040087/* Kprobe tracer basic type is up to u64 */
88#define MAX_BASIC_TYPE_BITS 64
89
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040090/* Return architecture dependent register string (for kprobe-tracer) */
91static const char *get_arch_regstr(unsigned int n)
92{
93 return (n <= ARCH_MAX_REGS) ? arch_regs_table[n] : NULL;
94}
95
96/*
97 * Compare the tail of two strings.
98 * Return 0 if whole of either string is same as another's tail part.
99 */
100static int strtailcmp(const char *s1, const char *s2)
101{
102 int i1 = strlen(s1);
103 int i2 = strlen(s2);
Juha Leppanend56728b2009-12-07 12:00:40 -0500104 while (--i1 >= 0 && --i2 >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400105 if (s1[i1] != s2[i2])
106 return s1[i1] - s2[i2];
107 }
108 return 0;
109}
110
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500111/* Line number list operations */
112
113/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400114static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500115{
116 struct line_node *ln;
117 struct list_head *p;
118
119 /* Reverse search, because new line will be the last one */
120 list_for_each_entry_reverse(ln, head, list) {
121 if (ln->line < line) {
122 p = &ln->list;
123 goto found;
124 } else if (ln->line == line) /* Already exist */
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400125 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500126 }
127 /* List is empty, or the smallest entry */
128 p = head;
129found:
130 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400131 ln = zalloc(sizeof(struct line_node));
132 if (ln == NULL)
133 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500134 ln->line = line;
135 INIT_LIST_HEAD(&ln->list);
136 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400137 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500138}
139
140/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400141static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500142{
143 struct line_node *ln;
144
145 /* Reverse search, because new line will be the last one */
146 list_for_each_entry(ln, head, list)
147 if (ln->line == line)
148 return 1;
149
150 return 0;
151}
152
153/* Init line number list */
154static void line_list__init(struct list_head *head)
155{
156 INIT_LIST_HEAD(head);
157}
158
159/* Free line number list */
160static void line_list__free(struct list_head *head)
161{
162 struct line_node *ln;
163 while (!list_empty(head)) {
164 ln = list_first_entry(head, struct line_node, list);
165 list_del(&ln->list);
166 free(ln);
167 }
168}
169
170/* Dwarf wrappers */
171
172/* Find the realpath of the target file. */
173static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400174{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500175 Dwarf_Files *files;
176 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300177 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400178 int ret;
179
180 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500181 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500182
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500183 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500184 if (ret != 0)
185 return NULL;
186
187 for (i = 0; i < nfiles; i++) {
188 src = dwarf_filesrc(files, i, NULL, NULL);
189 if (strtailcmp(src, fname) == 0)
190 break;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500191 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400192 if (i == nfiles)
193 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500194 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500195}
196
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400197/* Compare diename and tname */
198static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
199{
200 const char *name;
201 name = dwarf_diename(dw_die);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400202 return name ? strcmp(tname, name) : -1;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400203}
204
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400205/* Get type die, but skip qualifiers and typedef */
206static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
207{
208 Dwarf_Attribute attr;
209 int tag;
210
211 do {
212 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
213 dwarf_formref_die(&attr, die_mem) == NULL)
214 return NULL;
215
216 tag = dwarf_tag(die_mem);
217 vr_die = die_mem;
218 } while (tag == DW_TAG_const_type ||
219 tag == DW_TAG_restrict_type ||
220 tag == DW_TAG_volatile_type ||
221 tag == DW_TAG_shared_type ||
222 tag == DW_TAG_typedef);
223
224 return die_mem;
225}
226
Masami Hiramatsu49849122010-04-12 13:17:15 -0400227static bool die_is_signed_type(Dwarf_Die *tp_die)
228{
229 Dwarf_Attribute attr;
230 Dwarf_Word ret;
231
232 if (dwarf_attr(tp_die, DW_AT_encoding, &attr) == NULL ||
233 dwarf_formudata(&attr, &ret) != 0)
234 return false;
235
236 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
237 ret == DW_ATE_signed_fixed);
238}
239
240static int die_get_byte_size(Dwarf_Die *tp_die)
241{
242 Dwarf_Attribute attr;
243 Dwarf_Word ret;
244
245 if (dwarf_attr(tp_die, DW_AT_byte_size, &attr) == NULL ||
246 dwarf_formudata(&attr, &ret) != 0)
247 return 0;
248
249 return (int)ret;
250}
251
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400252/* Return values for die_find callbacks */
253enum {
254 DIE_FIND_CB_FOUND = 0, /* End of Search */
255 DIE_FIND_CB_CHILD = 1, /* Search only children */
256 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
257 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
258};
259
260/* Search a child die */
261static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
262 int (*callback)(Dwarf_Die *, void *),
263 void *data, Dwarf_Die *die_mem)
264{
265 Dwarf_Die child_die;
266 int ret;
267
268 ret = dwarf_child(rt_die, die_mem);
269 if (ret != 0)
270 return NULL;
271
272 do {
273 ret = callback(die_mem, data);
274 if (ret == DIE_FIND_CB_FOUND)
275 return die_mem;
276
277 if ((ret & DIE_FIND_CB_CHILD) &&
278 die_find_child(die_mem, callback, data, &child_die)) {
279 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
280 return die_mem;
281 }
282 } while ((ret & DIE_FIND_CB_SIBLING) &&
283 dwarf_siblingof(die_mem, die_mem) == 0);
284
285 return NULL;
286}
287
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500288struct __addr_die_search_param {
289 Dwarf_Addr addr;
290 Dwarf_Die *die_mem;
291};
292
293static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
294{
295 struct __addr_die_search_param *ad = data;
296
297 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
298 dwarf_haspc(fn_die, ad->addr)) {
299 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
300 return DWARF_CB_ABORT;
301 }
302 return DWARF_CB_OK;
303}
304
305/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400306static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
307 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500308{
309 struct __addr_die_search_param ad;
310 ad.addr = addr;
311 ad.die_mem = die_mem;
312 /* dwarf_getscopes can't find subprogram. */
313 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
314 return NULL;
315 else
316 return die_mem;
317}
318
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400319/* die_find callback for inline function search */
320static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
321{
322 Dwarf_Addr *addr = data;
323
324 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
325 dwarf_haspc(die_mem, *addr))
326 return DIE_FIND_CB_FOUND;
327
328 return DIE_FIND_CB_CONTINUE;
329}
330
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500331/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400332static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
333 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500334{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400335 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500336}
337
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400338static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400339{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400340 const char *name = data;
341 int tag;
342
343 tag = dwarf_tag(die_mem);
344 if ((tag == DW_TAG_formal_parameter ||
345 tag == DW_TAG_variable) &&
346 (die_compare_name(die_mem, name) == 0))
347 return DIE_FIND_CB_FOUND;
348
349 return DIE_FIND_CB_CONTINUE;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400350}
351
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400352/* Find a variable called 'name' */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500353static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
354 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500355{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400356 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
357 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400358}
359
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400360static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
361{
362 const char *name = data;
363
364 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
365 (die_compare_name(die_mem, name) == 0))
366 return DIE_FIND_CB_FOUND;
367
368 return DIE_FIND_CB_SIBLING;
369}
370
371/* Find a member called 'name' */
372static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
373 Dwarf_Die *die_mem)
374{
375 return die_find_child(st_die, __die_find_member_cb, (void *)name,
376 die_mem);
377}
378
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400379/*
380 * Probe finder related functions
381 */
382
383/* Show a location */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400384static int convert_location(Dwarf_Op *op, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400385{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500386 unsigned int regn;
387 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400388 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400389 const char *regs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400390 struct kprobe_trace_arg *tvar = pf->tvar;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400391
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400392 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500393 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400394 if (pf->fb_ops == NULL) {
395 pr_warning("The attribute of frame base is not "
396 "supported.\n");
397 return -ENOTSUP;
398 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400399 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500400 offs = op->number;
401 op = &pf->fb_ops[0];
402 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400403
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500404 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
405 regn = op->atom - DW_OP_breg0;
406 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400407 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500408 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
409 regn = op->atom - DW_OP_reg0;
410 } else if (op->atom == DW_OP_bregx) {
411 regn = op->number;
412 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400413 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500414 } else if (op->atom == DW_OP_regx) {
415 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400416 } else {
417 pr_warning("DW_OP %x is not supported.\n", op->atom);
418 return -ENOTSUP;
419 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400420
421 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400422 if (!regs) {
423 pr_warning("%u exceeds max register number.\n", regn);
424 return -ERANGE;
425 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400426
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400427 tvar->value = strdup(regs);
428 if (tvar->value == NULL)
429 return -ENOMEM;
430
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400431 if (ref) {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400432 tvar->ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
433 if (tvar->ref == NULL)
434 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400435 tvar->ref->offset = (long)offs;
436 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400437 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400438}
439
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400440static int convert_variable_type(Dwarf_Die *vr_die,
441 struct kprobe_trace_arg *targ)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400442{
443 Dwarf_Die type;
444 char buf[16];
445 int ret;
446
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400447 if (die_get_real_type(vr_die, &type) == NULL) {
448 pr_warning("Failed to get a type information of %s.\n",
449 dwarf_diename(vr_die));
450 return -ENOENT;
451 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400452
453 ret = die_get_byte_size(&type) * 8;
454 if (ret) {
455 /* Check the bitwidth */
456 if (ret > MAX_BASIC_TYPE_BITS) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400457 pr_info("%s exceeds max-bitwidth."
458 " Cut down to %d bits.\n",
459 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400460 ret = MAX_BASIC_TYPE_BITS;
461 }
462
463 ret = snprintf(buf, 16, "%c%d",
464 die_is_signed_type(&type) ? 's' : 'u', ret);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400465 if (ret < 0 || ret >= 16) {
466 if (ret >= 16)
467 ret = -E2BIG;
468 pr_warning("Failed to convert variable type: %s\n",
469 strerror(-ret));
470 return ret;
471 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400472 targ->type = strdup(buf);
473 if (targ->type == NULL)
474 return -ENOMEM;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400475 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400476 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400477}
478
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400479static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400480 struct perf_probe_arg_field *field,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400481 struct kprobe_trace_arg_ref **ref_ptr,
482 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400483{
484 struct kprobe_trace_arg_ref *ref = *ref_ptr;
485 Dwarf_Attribute attr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400486 Dwarf_Die type;
487 Dwarf_Word offs;
488
489 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400490 if (die_get_real_type(vr_die, &type) == NULL) {
491 pr_warning("Failed to get the type of %s.\n", varname);
492 return -ENOENT;
493 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400494
495 /* Check the pointer and dereference */
496 if (dwarf_tag(&type) == DW_TAG_pointer_type) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400497 if (!field->ref) {
498 pr_err("Semantic error: %s must be referred by '->'\n",
499 field->name);
500 return -EINVAL;
501 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400502 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400503 if (die_get_real_type(&type, &type) == NULL) {
504 pr_warning("Failed to get the type of %s.\n", varname);
505 return -ENOENT;
506 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400507 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400508 if (dwarf_tag(&type) != DW_TAG_structure_type) {
509 pr_warning("%s is not a data structure.\n", varname);
510 return -EINVAL;
511 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400512
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400513 ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
514 if (ref == NULL)
515 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400516 if (*ref_ptr)
517 (*ref_ptr)->next = ref;
518 else
519 *ref_ptr = ref;
520 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400521 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400522 if (dwarf_tag(&type) != DW_TAG_structure_type) {
523 pr_warning("%s is not a data structure.\n", varname);
524 return -EINVAL;
525 }
526 if (field->ref) {
527 pr_err("Semantic error: %s must be referred by '.'\n",
528 field->name);
529 return -EINVAL;
530 }
531 if (!ref) {
532 pr_warning("Structure on a register is not "
533 "supported yet.\n");
534 return -ENOTSUP;
535 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400536 }
537
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400538 if (die_find_member(&type, field->name, die_mem) == NULL) {
539 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
540 dwarf_diename(&type), field->name);
541 return -EINVAL;
542 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400543
544 /* Get the offset of the field */
Masami Hiramatsu49849122010-04-12 13:17:15 -0400545 if (dwarf_attr(die_mem, DW_AT_data_member_location, &attr) == NULL ||
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400546 dwarf_formudata(&attr, &offs) != 0) {
547 pr_warning("Failed to get the offset of %s.\n", field->name);
548 return -ENOENT;
549 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400550 ref->offset += (long)offs;
551
552 /* Converting next field */
553 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400554 return convert_variable_fields(die_mem, field->name,
555 field->next, &ref, die_mem);
556 else
557 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400558}
559
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400560/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400561static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400562{
563 Dwarf_Attribute attr;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400564 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500565 Dwarf_Op *expr;
566 size_t nexpr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400567 int ret;
568
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500569 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400570 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500571 /* TODO: handle more than 1 exprs */
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400572 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500573 if (ret <= 0 || nexpr == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400574 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500575
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400576 ret = convert_location(expr, pf);
577 if (ret == 0 && pf->pvar->field) {
578 ret = convert_variable_fields(vr_die, pf->pvar->var,
579 pf->pvar->field, &pf->tvar->ref,
580 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400581 vr_die = &die_mem;
582 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400583 if (ret == 0) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400584 if (pf->pvar->type) {
585 pf->tvar->type = strdup(pf->pvar->type);
586 if (pf->tvar->type == NULL)
587 ret = -ENOMEM;
588 } else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400589 ret = convert_variable_type(vr_die, pf->tvar);
590 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500591 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400592 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400593error:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500594 /* TODO: Support const_value */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400595 pr_err("Failed to find the location of %s at this address.\n"
596 " Perhaps, it has been optimized out.\n", pf->pvar->var);
597 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400598}
599
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400600/* Find a variable in a subprogram die */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400601static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400602{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500603 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400604 char buf[32], *ptr;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400605 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400606
Masami Hiramatsu48481932010-04-12 13:16:53 -0400607 /* TODO: Support arrays */
608 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400609 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400610 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400611 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
612 if (ret < 0)
613 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400614 ptr = strchr(buf, ':'); /* Change type separator to _ */
615 if (ptr)
616 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400617 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400618 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400619 if (pf->tvar->name == NULL)
620 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400621
622 if (!is_c_varname(pf->pvar->var)) {
623 /* Copy raw parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400624 pf->tvar->value = strdup(pf->pvar->var);
625 if (pf->tvar->value == NULL)
626 return -ENOMEM;
627 else
628 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400629 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400630
631 pr_debug("Searching '%s' variable in context.\n",
632 pf->pvar->var);
633 /* Search child die for local variables and parameters. */
634 if (!die_find_variable(sp_die, pf->pvar->var, &vr_die)) {
635 pr_warning("Failed to find '%s' in this function.\n",
636 pf->pvar->var);
637 return -ENOENT;
638 }
639 return convert_variable(&vr_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400640}
641
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400642/* Show a probe point to output buffer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400643static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400644{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400645 struct kprobe_trace_event *tev;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500646 Dwarf_Addr eaddr;
647 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500648 const char *name;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400649 int ret, i;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500650 Dwarf_Attribute fb_attr;
651 size_t nops;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400652
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400653 if (pf->ntevs == MAX_PROBES) {
654 pr_warning("Too many( > %d) probe point found.\n", MAX_PROBES);
655 return -ERANGE;
656 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400657 tev = &pf->tevs[pf->ntevs++];
658
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500659 /* If no real subprogram, find a real one */
660 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400661 sp_die = die_find_real_subprogram(&pf->cu_die,
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500662 pf->addr, &die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400663 if (!sp_die) {
664 pr_warning("Failed to find probe point in any "
665 "functions.\n");
666 return -ENOENT;
667 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500668 }
669
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400670 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500671 name = dwarf_diename(sp_die);
672 if (name) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400673 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
674 pr_warning("Failed to get entry pc of %s\n",
675 dwarf_diename(sp_die));
676 return -ENOENT;
677 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400678 tev->point.symbol = strdup(name);
679 if (tev->point.symbol == NULL)
680 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400681 tev->point.offset = (unsigned long)(pf->addr - eaddr);
682 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400683 /* This function has no name. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400684 tev->point.offset = (unsigned long)pf->addr;
685
686 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
687 tev->point.offset);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400688
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500689 /* Get the frame base attribute/ops */
690 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400691 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400692 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500693 pf->fb_ops = NULL;
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400694 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
695 pf->cfi != NULL) {
696 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400697 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
698 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
699 pr_warning("Failed to get CFA on 0x%jx\n",
700 (uintmax_t)pf->addr);
701 return -ENOENT;
702 }
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400703 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500704
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400705 /* Find each argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400706 tev->nargs = pf->pev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400707 tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
708 if (tev->args == NULL)
709 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400710 for (i = 0; i < pf->pev->nargs; i++) {
711 pf->pvar = &pf->pev->args[i];
712 pf->tvar = &tev->args[i];
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400713 ret = find_variable(sp_die, pf);
714 if (ret != 0)
715 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400716 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500717
718 /* *pf->fb_ops will be cached in libdw. Don't free it. */
719 pf->fb_ops = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400720 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400721}
722
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400723/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400724static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400725{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500726 Dwarf_Lines *lines;
727 Dwarf_Line *line;
728 size_t nlines, i;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500729 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500730 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400731 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400732
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400733 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
734 pr_warning("No source lines found in this CU.\n");
735 return -ENOENT;
736 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400737
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400738 for (i = 0; i < nlines && ret == 0; i++) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500739 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400740 if (dwarf_lineno(line, &lineno) != 0 ||
741 lineno != pf->lno)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400742 continue;
743
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500744 /* TODO: Get fileno from line, but how? */
745 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
746 continue;
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400747
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400748 if (dwarf_lineaddr(line, &addr) != 0) {
749 pr_warning("Failed to get the address of the line.\n");
750 return -ENOENT;
751 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500752 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
753 (int)i, lineno, (uintmax_t)addr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400754 pf->addr = addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500755
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400756 ret = convert_probe_point(NULL, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400757 /* Continuing, because target line might be inlined. */
758 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400759 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400760}
761
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500762/* Find lines which match lazy pattern */
763static int find_lazy_match_lines(struct list_head *head,
764 const char *fname, const char *pat)
765{
766 char *fbuf, *p1, *p2;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400767 int fd, ret, line, nlines = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500768 struct stat st;
769
770 fd = open(fname, O_RDONLY);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400771 if (fd < 0) {
772 pr_warning("Failed to open %s: %s\n", fname, strerror(-fd));
773 return fd;
774 }
775
776 ret = fstat(fd, &st);
777 if (ret < 0) {
778 pr_warning("Failed to get the size of %s: %s\n",
779 fname, strerror(errno));
780 return ret;
781 }
Masami Hiramatsu31facc52010-03-16 18:05:30 -0400782 fbuf = xmalloc(st.st_size + 2);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400783 ret = read(fd, fbuf, st.st_size);
784 if (ret < 0) {
785 pr_warning("Failed to read %s: %s\n", fname, strerror(errno));
786 return ret;
787 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500788 close(fd);
789 fbuf[st.st_size] = '\n'; /* Dummy line */
790 fbuf[st.st_size + 1] = '\0';
791 p1 = fbuf;
792 line = 1;
793 while ((p2 = strchr(p1, '\n')) != NULL) {
794 *p2 = '\0';
795 if (strlazymatch(p1, pat)) {
796 line_list__add_line(head, line);
797 nlines++;
798 }
799 line++;
800 p1 = p2 + 1;
801 }
802 free(fbuf);
803 return nlines;
804}
805
806/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400807static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500808{
809 Dwarf_Lines *lines;
810 Dwarf_Line *line;
811 size_t nlines, i;
812 Dwarf_Addr addr;
813 Dwarf_Die die_mem;
814 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400815 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500816
817 if (list_empty(&pf->lcache)) {
818 /* Matching lazy line pattern */
819 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400820 pf->pev->point.lazy_line);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400821 if (ret == 0) {
822 pr_debug("No matched lines found in %s.\n", pf->fname);
823 return 0;
824 } else if (ret < 0)
825 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500826 }
827
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400828 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
829 pr_warning("No source lines found in this CU.\n");
830 return -ENOENT;
831 }
832
833 for (i = 0; i < nlines && ret >= 0; i++) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500834 line = dwarf_onesrcline(lines, i);
835
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400836 if (dwarf_lineno(line, &lineno) != 0 ||
837 !line_list__has_line(&pf->lcache, lineno))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500838 continue;
839
840 /* TODO: Get fileno from line, but how? */
841 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
842 continue;
843
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400844 if (dwarf_lineaddr(line, &addr) != 0) {
845 pr_debug("Failed to get the address of line %d.\n",
846 lineno);
847 continue;
848 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500849 if (sp_die) {
850 /* Address filtering 1: does sp_die include addr? */
851 if (!dwarf_haspc(sp_die, addr))
852 continue;
853 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400854 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500855 continue;
856 }
857
858 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
859 (int)i, lineno, (unsigned long long)addr);
860 pf->addr = addr;
861
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400862 ret = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500863 /* Continuing, because target line might be inlined. */
864 }
865 /* TODO: deallocate lines, but how? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400866 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500867}
868
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400869/* Callback parameter with return value */
870struct dwarf_callback_param {
871 void *data;
872 int retval;
873};
874
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500875static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400876{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400877 struct dwarf_callback_param *param = data;
878 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400879 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400880 Dwarf_Addr addr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400881
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500882 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400883 param->retval = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500884 else {
885 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400886 if (dwarf_entrypc(in_die, &addr) != 0) {
887 pr_warning("Failed to get entry pc of %s.\n",
888 dwarf_diename(in_die));
889 param->retval = -ENOENT;
890 return DWARF_CB_ABORT;
891 }
892 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500893 pf->addr += pp->offset;
894 pr_debug("found inline addr: 0x%jx\n",
895 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500896
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400897 param->retval = convert_probe_point(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500898 }
899
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500900 return DWARF_CB_OK;
901}
902
903/* Search function from function name */
904static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
905{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400906 struct dwarf_callback_param *param = data;
907 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400908 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500909
910 /* Check tag and diename */
911 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
912 die_compare_name(sp_die, pp->function) != 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400913 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500914
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500915 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500916 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500917 dwarf_decl_line(sp_die, &pf->lno);
918 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400919 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500920 } else if (!dwarf_func_inline(sp_die)) {
921 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500922 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400923 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500924 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400925 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
926 pr_warning("Failed to get entry pc of %s.\n",
927 dwarf_diename(sp_die));
928 param->retval = -ENOENT;
929 return DWARF_CB_ABORT;
930 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500931 pf->addr += pp->offset;
932 /* TODO: Check the address in this function */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400933 param->retval = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500934 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400935 } else {
936 struct dwarf_callback_param _param = {.data = (void *)pf,
937 .retval = 0};
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500938 /* Inlined function: search instances */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400939 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
940 &_param);
941 param->retval = _param.retval;
942 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500943
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400944 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400945}
946
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400947static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400948{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400949 struct dwarf_callback_param _param = {.data = (void *)pf,
950 .retval = 0};
951 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
952 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400953}
954
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400955/* Find kprobe_trace_events specified by perf_probe_event from debuginfo */
956int find_kprobe_trace_events(int fd, struct perf_probe_event *pev,
957 struct kprobe_trace_event **tevs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400958{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400959 struct probe_finder pf = {.pev = pev};
960 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500961 Dwarf_Off off, noff;
962 size_t cuhl;
963 Dwarf_Die *diep;
964 Dwarf *dbg;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400965 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400966
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400967 pf.tevs = zalloc(sizeof(struct kprobe_trace_event) * MAX_PROBES);
968 if (pf.tevs == NULL)
969 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400970 *tevs = pf.tevs;
971 pf.ntevs = 0;
972
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500973 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400974 if (!dbg) {
975 pr_warning("No dwarf info found in the vmlinux - "
976 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
977 return -EBADF;
978 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400979
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400980 /* Get the call frame information from this dwarf */
981 pf.cfi = dwarf_getcfi(dbg);
982
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500983 off = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500984 line_list__init(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500985 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400986 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) &&
987 ret >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400988 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500989 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
990 if (!diep)
991 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400992
993 /* Check if target file is included. */
994 if (pp->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500995 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500996 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500997 pf.fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400998
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500999 if (!pp->file || pf.fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001000 if (pp->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001001 ret = find_probe_point_by_func(&pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001002 else if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001003 ret = find_probe_point_lazy(NULL, &pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001004 else {
1005 pf.lno = pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001006 ret = find_probe_point_by_line(&pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001007 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001008 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001009 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001010 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001011 line_list__free(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001012 dwarf_end(dbg);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001013
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001014 return (ret < 0) ? ret : pf.ntevs;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001015}
1016
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001017/* Reverse search */
1018int find_perf_probe_point(int fd, unsigned long addr,
1019 struct perf_probe_point *ppt)
1020{
1021 Dwarf_Die cudie, spdie, indie;
1022 Dwarf *dbg;
1023 Dwarf_Line *line;
1024 Dwarf_Addr laddr, eaddr;
1025 const char *tmp;
1026 int lineno, ret = 0;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001027 bool found = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001028
1029 dbg = dwarf_begin(fd, DWARF_C_READ);
1030 if (!dbg)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001031 return -EBADF;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001032
1033 /* Find cu die */
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001034 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie)) {
1035 ret = -EINVAL;
1036 goto end;
1037 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001038
1039 /* Find a corresponding line */
1040 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1041 if (line) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001042 if (dwarf_lineaddr(line, &laddr) == 0 &&
1043 (Dwarf_Addr)addr == laddr &&
1044 dwarf_lineno(line, &lineno) == 0) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001045 tmp = dwarf_linesrc(line, NULL, NULL);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001046 if (tmp) {
1047 ppt->line = lineno;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001048 ppt->file = strdup(tmp);
1049 if (ppt->file == NULL) {
1050 ret = -ENOMEM;
1051 goto end;
1052 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001053 found = true;
1054 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001055 }
1056 }
1057
1058 /* Find a corresponding function */
1059 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1060 tmp = dwarf_diename(&spdie);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001061 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001062 goto end;
1063
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001064 if (ppt->line) {
1065 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr,
1066 &indie)) {
1067 /* addr in an inline function */
1068 tmp = dwarf_diename(&indie);
1069 if (!tmp)
1070 goto end;
1071 ret = dwarf_decl_line(&indie, &lineno);
1072 } else {
1073 if (eaddr == addr) { /* Function entry */
1074 lineno = ppt->line;
1075 ret = 0;
1076 } else
1077 ret = dwarf_decl_line(&spdie, &lineno);
1078 }
1079 if (ret == 0) {
1080 /* Make a relative line number */
1081 ppt->line -= lineno;
1082 goto found;
1083 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001084 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001085 /* We don't have a line number, let's use offset */
1086 ppt->offset = addr - (unsigned long)eaddr;
1087found:
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001088 ppt->function = strdup(tmp);
1089 if (ppt->function == NULL) {
1090 ret = -ENOMEM;
1091 goto end;
1092 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001093 found = true;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001094 }
1095
1096end:
1097 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001098 if (ret >= 0)
1099 ret = found ? 1 : 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001100 return ret;
1101}
1102
1103
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001104/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001105static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001106{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001107 Dwarf_Lines *lines;
1108 Dwarf_Line *line;
1109 size_t nlines, i;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001110 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001111 int lineno;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001112 const char *src;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001113 Dwarf_Die die_mem;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001114
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001115 line_list__init(&lf->lr->line_list);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001116 if (dwarf_getsrclines(&lf->cu_die, &lines, &nlines) != 0) {
1117 pr_warning("No source lines found in this CU.\n");
1118 return -ENOENT;
1119 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001120
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001121 for (i = 0; i < nlines; i++) {
1122 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001123 if (dwarf_lineno(line, &lineno) != 0 ||
1124 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001125 continue;
1126
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001127 if (sp_die) {
1128 /* Address filtering 1: does sp_die include addr? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001129 if (dwarf_lineaddr(line, &addr) != 0 ||
1130 !dwarf_haspc(sp_die, addr))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001131 continue;
1132
1133 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -04001134 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001135 continue;
1136 }
1137
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001138 /* TODO: Get fileno from line, but how? */
1139 src = dwarf_linesrc(line, NULL, NULL);
1140 if (strtailcmp(src, lf->fname) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001141 continue;
1142
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001143 /* Copy real path */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001144 if (!lf->lr->path) {
1145 lf->lr->path = strdup(src);
1146 if (lf->lr->path == NULL)
1147 return -ENOMEM;
1148 }
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001149 line_list__add_line(&lf->lr->line_list, lineno);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001150 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001151 /* Update status */
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001152 if (!list_empty(&lf->lr->line_list))
1153 lf->found = 1;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001154 else {
1155 free(lf->lr->path);
1156 lf->lr->path = NULL;
1157 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001158 return lf->found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001159}
1160
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001161static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1162{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001163 struct dwarf_callback_param *param = data;
1164
1165 param->retval = find_line_range_by_line(in_die, param->data);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001166 return DWARF_CB_ABORT; /* No need to find other instances */
1167}
1168
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001169/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001170static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001171{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001172 struct dwarf_callback_param *param = data;
1173 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001174 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001175
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001176 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
1177 die_compare_name(sp_die, lr->function) == 0) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001178 lf->fname = dwarf_decl_file(sp_die);
1179 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001180 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001181 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001182 if (lf->lno_s < 0) /* Overflow */
1183 lf->lno_s = INT_MAX;
1184 lf->lno_e = lr->offset + lr->end;
1185 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001186 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001187 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001188 lr->start = lf->lno_s;
1189 lr->end = lf->lno_e;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001190 if (dwarf_func_inline(sp_die)) {
1191 struct dwarf_callback_param _param;
1192 _param.data = (void *)lf;
1193 _param.retval = 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001194 dwarf_func_inline_instances(sp_die,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001195 line_range_inline_cb,
1196 &_param);
1197 param->retval = _param.retval;
1198 } else
1199 param->retval = find_line_range_by_line(sp_die, lf);
1200 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001201 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001202 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001203}
1204
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001205static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001206{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001207 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1208 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1209 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001210}
1211
1212int find_line_range(int fd, struct line_range *lr)
1213{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001214 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001215 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001216 Dwarf_Off off = 0, noff;
1217 size_t cuhl;
1218 Dwarf_Die *diep;
1219 Dwarf *dbg;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001220
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001221 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001222 if (!dbg) {
1223 pr_warning("No dwarf info found in the vmlinux - "
1224 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1225 return -EBADF;
1226 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001227
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001228 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001229 while (!lf.found && ret >= 0) {
1230 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001231 break;
1232
1233 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001234 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1235 if (!diep)
1236 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001237
1238 /* Check if target file is included. */
1239 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001240 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001241 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001242 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001243
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001244 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001245 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001246 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001247 else {
1248 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001249 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001250 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001251 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001252 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001253 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001254 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001255 pr_debug("path: %lx\n", (unsigned long)lr->path);
1256 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001257
1258 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001259}
1260