blob: b44132ead95a779608e127c40bc0c4d90a968a66 [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
87/* Return architecture dependent register string (for kprobe-tracer) */
88static const char *get_arch_regstr(unsigned int n)
89{
90 return (n <= ARCH_MAX_REGS) ? arch_regs_table[n] : NULL;
91}
92
93/*
94 * Compare the tail of two strings.
95 * Return 0 if whole of either string is same as another's tail part.
96 */
97static int strtailcmp(const char *s1, const char *s2)
98{
99 int i1 = strlen(s1);
100 int i2 = strlen(s2);
Juha Leppanend56728b2009-12-07 12:00:40 -0500101 while (--i1 >= 0 && --i2 >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400102 if (s1[i1] != s2[i2])
103 return s1[i1] - s2[i2];
104 }
105 return 0;
106}
107
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500108/* Line number list operations */
109
110/* Add a line to line number list */
111static void line_list__add_line(struct list_head *head, unsigned int line)
112{
113 struct line_node *ln;
114 struct list_head *p;
115
116 /* Reverse search, because new line will be the last one */
117 list_for_each_entry_reverse(ln, head, list) {
118 if (ln->line < line) {
119 p = &ln->list;
120 goto found;
121 } else if (ln->line == line) /* Already exist */
122 return ;
123 }
124 /* List is empty, or the smallest entry */
125 p = head;
126found:
127 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsu31facc52010-03-16 18:05:30 -0400128 ln = xzalloc(sizeof(struct line_node));
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500129 ln->line = line;
130 INIT_LIST_HEAD(&ln->list);
131 list_add(&ln->list, p);
132}
133
134/* Check if the line in line number list */
135static int line_list__has_line(struct list_head *head, unsigned int line)
136{
137 struct line_node *ln;
138
139 /* Reverse search, because new line will be the last one */
140 list_for_each_entry(ln, head, list)
141 if (ln->line == line)
142 return 1;
143
144 return 0;
145}
146
147/* Init line number list */
148static void line_list__init(struct list_head *head)
149{
150 INIT_LIST_HEAD(head);
151}
152
153/* Free line number list */
154static void line_list__free(struct list_head *head)
155{
156 struct line_node *ln;
157 while (!list_empty(head)) {
158 ln = list_first_entry(head, struct line_node, list);
159 list_del(&ln->list);
160 free(ln);
161 }
162}
163
164/* Dwarf wrappers */
165
166/* Find the realpath of the target file. */
167static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400168{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500169 Dwarf_Files *files;
170 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300171 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400172 int ret;
173
174 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500175 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500176
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500177 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500178 if (ret != 0)
179 return NULL;
180
181 for (i = 0; i < nfiles; i++) {
182 src = dwarf_filesrc(files, i, NULL, NULL);
183 if (strtailcmp(src, fname) == 0)
184 break;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500185 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400186 if (i == nfiles)
187 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500188 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500189}
190
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400191/* Compare diename and tname */
192static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
193{
194 const char *name;
195 name = dwarf_diename(dw_die);
196 DIE_IF(name == NULL);
197 return strcmp(tname, name);
198}
199
200/* Get entry pc(or low pc, 1st entry of ranges) of the die */
201static Dwarf_Addr die_get_entrypc(Dwarf_Die *dw_die)
202{
203 Dwarf_Addr epc;
204 int ret;
205
206 ret = dwarf_entrypc(dw_die, &epc);
207 DIE_IF(ret == -1);
208 return epc;
209}
210
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400211/* Get type die, but skip qualifiers and typedef */
212static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
213{
214 Dwarf_Attribute attr;
215 int tag;
216
217 do {
218 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
219 dwarf_formref_die(&attr, die_mem) == NULL)
220 return NULL;
221
222 tag = dwarf_tag(die_mem);
223 vr_die = die_mem;
224 } while (tag == DW_TAG_const_type ||
225 tag == DW_TAG_restrict_type ||
226 tag == DW_TAG_volatile_type ||
227 tag == DW_TAG_shared_type ||
228 tag == DW_TAG_typedef);
229
230 return die_mem;
231}
232
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400233/* Return values for die_find callbacks */
234enum {
235 DIE_FIND_CB_FOUND = 0, /* End of Search */
236 DIE_FIND_CB_CHILD = 1, /* Search only children */
237 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
238 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
239};
240
241/* Search a child die */
242static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
243 int (*callback)(Dwarf_Die *, void *),
244 void *data, Dwarf_Die *die_mem)
245{
246 Dwarf_Die child_die;
247 int ret;
248
249 ret = dwarf_child(rt_die, die_mem);
250 if (ret != 0)
251 return NULL;
252
253 do {
254 ret = callback(die_mem, data);
255 if (ret == DIE_FIND_CB_FOUND)
256 return die_mem;
257
258 if ((ret & DIE_FIND_CB_CHILD) &&
259 die_find_child(die_mem, callback, data, &child_die)) {
260 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
261 return die_mem;
262 }
263 } while ((ret & DIE_FIND_CB_SIBLING) &&
264 dwarf_siblingof(die_mem, die_mem) == 0);
265
266 return NULL;
267}
268
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500269struct __addr_die_search_param {
270 Dwarf_Addr addr;
271 Dwarf_Die *die_mem;
272};
273
274static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
275{
276 struct __addr_die_search_param *ad = data;
277
278 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
279 dwarf_haspc(fn_die, ad->addr)) {
280 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
281 return DWARF_CB_ABORT;
282 }
283 return DWARF_CB_OK;
284}
285
286/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400287static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
288 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500289{
290 struct __addr_die_search_param ad;
291 ad.addr = addr;
292 ad.die_mem = die_mem;
293 /* dwarf_getscopes can't find subprogram. */
294 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
295 return NULL;
296 else
297 return die_mem;
298}
299
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400300/* die_find callback for inline function search */
301static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
302{
303 Dwarf_Addr *addr = data;
304
305 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
306 dwarf_haspc(die_mem, *addr))
307 return DIE_FIND_CB_FOUND;
308
309 return DIE_FIND_CB_CONTINUE;
310}
311
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500312/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400313static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
314 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500315{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400316 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500317}
318
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400319static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400320{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400321 const char *name = data;
322 int tag;
323
324 tag = dwarf_tag(die_mem);
325 if ((tag == DW_TAG_formal_parameter ||
326 tag == DW_TAG_variable) &&
327 (die_compare_name(die_mem, name) == 0))
328 return DIE_FIND_CB_FOUND;
329
330 return DIE_FIND_CB_CONTINUE;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400331}
332
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400333/* Find a variable called 'name' */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500334static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
335 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500336{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400337 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
338 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400339}
340
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400341static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
342{
343 const char *name = data;
344
345 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
346 (die_compare_name(die_mem, name) == 0))
347 return DIE_FIND_CB_FOUND;
348
349 return DIE_FIND_CB_SIBLING;
350}
351
352/* Find a member called 'name' */
353static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
354 Dwarf_Die *die_mem)
355{
356 return die_find_child(st_die, __die_find_member_cb, (void *)name,
357 die_mem);
358}
359
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400360/*
361 * Probe finder related functions
362 */
363
364/* Show a location */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400365static void convert_location(Dwarf_Op *op, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400366{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500367 unsigned int regn;
368 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400369 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400370 const char *regs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400371 struct kprobe_trace_arg *tvar = pf->tvar;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400372
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500373 /* TODO: support CFA */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400374 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500375 if (op->atom == DW_OP_fbreg) {
376 if (pf->fb_ops == NULL)
377 die("The attribute of frame base is not supported.\n");
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400378 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500379 offs = op->number;
380 op = &pf->fb_ops[0];
381 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400382
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500383 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
384 regn = op->atom - DW_OP_breg0;
385 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400386 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500387 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
388 regn = op->atom - DW_OP_reg0;
389 } else if (op->atom == DW_OP_bregx) {
390 regn = op->number;
391 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400392 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500393 } else if (op->atom == DW_OP_regx) {
394 regn = op->number;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400395 } else
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500396 die("DW_OP %d is not supported.", op->atom);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400397
398 regs = get_arch_regstr(regn);
399 if (!regs)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500400 die("%u exceeds max register number.", regn);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400401
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400402 tvar->value = xstrdup(regs);
403 if (ref) {
404 tvar->ref = xzalloc(sizeof(struct kprobe_trace_arg_ref));
405 tvar->ref->offset = (long)offs;
406 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400407}
408
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400409static void convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
410 struct perf_probe_arg_field *field,
411 struct kprobe_trace_arg_ref **ref_ptr)
412{
413 struct kprobe_trace_arg_ref *ref = *ref_ptr;
414 Dwarf_Attribute attr;
415 Dwarf_Die member;
416 Dwarf_Die type;
417 Dwarf_Word offs;
418
419 pr_debug("converting %s in %s\n", field->name, varname);
420 if (die_get_real_type(vr_die, &type) == NULL)
421 die("Failed to get a type information of %s.", varname);
422
423 /* Check the pointer and dereference */
424 if (dwarf_tag(&type) == DW_TAG_pointer_type) {
425 if (!field->ref)
426 die("Semantic error: %s must be referred by '->'",
427 field->name);
428 /* Get the type pointed by this pointer */
429 if (die_get_real_type(&type, &type) == NULL)
430 die("Failed to get a type information of %s.", varname);
431
432 ref = xzalloc(sizeof(struct kprobe_trace_arg_ref));
433 if (*ref_ptr)
434 (*ref_ptr)->next = ref;
435 else
436 *ref_ptr = ref;
437 } else {
438 if (field->ref)
439 die("Semantic error: %s must be referred by '.'",
440 field->name);
441 if (!ref)
442 die("Structure on a register is not supported yet.");
443 }
444
445 /* Verify it is a data structure */
446 if (dwarf_tag(&type) != DW_TAG_structure_type)
447 die("%s is not a data structure.", varname);
448
449 if (die_find_member(&type, field->name, &member) == NULL)
450 die("%s(tyep:%s) has no member %s.", varname,
451 dwarf_diename(&type), field->name);
452
453 /* Get the offset of the field */
454 if (dwarf_attr(&member, DW_AT_data_member_location, &attr) == NULL ||
455 dwarf_formudata(&attr, &offs) != 0)
456 die("Failed to get the offset of %s.", field->name);
457 ref->offset += (long)offs;
458
459 /* Converting next field */
460 if (field->next)
461 convert_variable_fields(&member, field->name, field->next,
462 &ref);
463}
464
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400465/* Show a variables in kprobe event format */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400466static void convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400467{
468 Dwarf_Attribute attr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500469 Dwarf_Op *expr;
470 size_t nexpr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400471 int ret;
472
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500473 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400474 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500475 /* TODO: handle more than 1 exprs */
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400476 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500477 if (ret <= 0 || nexpr == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400478 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500479
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400480 convert_location(expr, pf);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400481
482 if (pf->pvar->field)
483 convert_variable_fields(vr_die, pf->pvar->name,
484 pf->pvar->field, &pf->tvar->ref);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500485 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400486 return ;
487error:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500488 /* TODO: Support const_value */
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -0400489 die("Failed to find the location of %s at this address.\n"
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400490 " Perhaps, it has been optimized out.", pf->pvar->name);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400491}
492
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400493/* Find a variable in a subprogram die */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500494static void find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400495{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500496 Dwarf_Die vr_die;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400497 char buf[128];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400498
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500499 /* TODO: Support struct members and arrays */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400500 if (!is_c_varname(pf->pvar->name)) {
501 /* Copy raw parameters */
502 pf->tvar->value = xstrdup(pf->pvar->name);
503 } else {
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400504 synthesize_perf_probe_arg(pf->pvar, buf, 128);
505 pf->tvar->name = xstrdup(buf);
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400506 pr_debug("Searching '%s' variable in context.\n",
507 pf->pvar->name);
508 /* Search child die for local variables and parameters. */
509 if (!die_find_variable(sp_die, pf->pvar->name, &vr_die))
510 die("Failed to find '%s' in this function.",
511 pf->pvar->name);
512 convert_variable(&vr_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400513 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400514}
515
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400516/* Show a probe point to output buffer */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400517static void convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400518{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400519 struct kprobe_trace_event *tev;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500520 Dwarf_Addr eaddr;
521 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500522 const char *name;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400523 int ret, i;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500524 Dwarf_Attribute fb_attr;
525 size_t nops;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400526
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400527 if (pf->ntevs == MAX_PROBES)
528 die("Too many( > %d) probe point found.\n", MAX_PROBES);
529 tev = &pf->tevs[pf->ntevs++];
530
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500531 /* If no real subprogram, find a real one */
532 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400533 sp_die = die_find_real_subprogram(&pf->cu_die,
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500534 pf->addr, &die_mem);
535 if (!sp_die)
536 die("Probe point is not found in subprograms.");
537 }
538
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400539 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500540 name = dwarf_diename(sp_die);
541 if (name) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500542 dwarf_entrypc(sp_die, &eaddr);
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400543 tev->point.symbol = xstrdup(name);
544 tev->point.offset = (unsigned long)(pf->addr - eaddr);
545 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400546 /* This function has no name. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400547 tev->point.offset = (unsigned long)pf->addr;
548
549 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
550 tev->point.offset);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400551
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500552 /* Get the frame base attribute/ops */
553 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4260f2010-03-15 13:02:35 -0400554 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500555 if (ret <= 0 || nops == 0)
556 pf->fb_ops = NULL;
557
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400558 /* Find each argument */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500559 /* TODO: use dwarf_cfi_addrframe */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400560 tev->nargs = pf->pev->nargs;
561 tev->args = xzalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
562 for (i = 0; i < pf->pev->nargs; i++) {
563 pf->pvar = &pf->pev->args[i];
564 pf->tvar = &tev->args[i];
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400565 find_variable(sp_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400566 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500567
568 /* *pf->fb_ops will be cached in libdw. Don't free it. */
569 pf->fb_ops = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400570}
571
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400572/* Find probe point from its line number */
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500573static void find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400574{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500575 Dwarf_Lines *lines;
576 Dwarf_Line *line;
577 size_t nlines, i;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500578 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500579 int lineno;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400580 int ret;
581
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500582 ret = dwarf_getsrclines(&pf->cu_die, &lines, &nlines);
583 DIE_IF(ret != 0);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400584
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500585 for (i = 0; i < nlines; i++) {
586 line = dwarf_onesrcline(lines, i);
587 dwarf_lineno(line, &lineno);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400588 if (lineno != pf->lno)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400589 continue;
590
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500591 /* TODO: Get fileno from line, but how? */
592 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
593 continue;
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400594
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500595 ret = dwarf_lineaddr(line, &addr);
596 DIE_IF(ret != 0);
597 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
598 (int)i, lineno, (uintmax_t)addr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400599 pf->addr = addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500600
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400601 convert_probe_point(NULL, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400602 /* Continuing, because target line might be inlined. */
603 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400604}
605
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500606/* Find lines which match lazy pattern */
607static int find_lazy_match_lines(struct list_head *head,
608 const char *fname, const char *pat)
609{
610 char *fbuf, *p1, *p2;
611 int fd, line, nlines = 0;
612 struct stat st;
613
614 fd = open(fname, O_RDONLY);
615 if (fd < 0)
616 die("failed to open %s", fname);
617 DIE_IF(fstat(fd, &st) < 0);
Masami Hiramatsu31facc52010-03-16 18:05:30 -0400618 fbuf = xmalloc(st.st_size + 2);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500619 DIE_IF(read(fd, fbuf, st.st_size) < 0);
620 close(fd);
621 fbuf[st.st_size] = '\n'; /* Dummy line */
622 fbuf[st.st_size + 1] = '\0';
623 p1 = fbuf;
624 line = 1;
625 while ((p2 = strchr(p1, '\n')) != NULL) {
626 *p2 = '\0';
627 if (strlazymatch(p1, pat)) {
628 line_list__add_line(head, line);
629 nlines++;
630 }
631 line++;
632 p1 = p2 + 1;
633 }
634 free(fbuf);
635 return nlines;
636}
637
638/* Find probe points from lazy pattern */
639static void find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
640{
641 Dwarf_Lines *lines;
642 Dwarf_Line *line;
643 size_t nlines, i;
644 Dwarf_Addr addr;
645 Dwarf_Die die_mem;
646 int lineno;
647 int ret;
648
649 if (list_empty(&pf->lcache)) {
650 /* Matching lazy line pattern */
651 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400652 pf->pev->point.lazy_line);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500653 if (ret <= 0)
654 die("No matched lines found in %s.", pf->fname);
655 }
656
657 ret = dwarf_getsrclines(&pf->cu_die, &lines, &nlines);
658 DIE_IF(ret != 0);
659 for (i = 0; i < nlines; i++) {
660 line = dwarf_onesrcline(lines, i);
661
662 dwarf_lineno(line, &lineno);
663 if (!line_list__has_line(&pf->lcache, lineno))
664 continue;
665
666 /* TODO: Get fileno from line, but how? */
667 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
668 continue;
669
670 ret = dwarf_lineaddr(line, &addr);
671 DIE_IF(ret != 0);
672 if (sp_die) {
673 /* Address filtering 1: does sp_die include addr? */
674 if (!dwarf_haspc(sp_die, addr))
675 continue;
676 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400677 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500678 continue;
679 }
680
681 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
682 (int)i, lineno, (unsigned long long)addr);
683 pf->addr = addr;
684
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400685 convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500686 /* Continuing, because target line might be inlined. */
687 }
688 /* TODO: deallocate lines, but how? */
689}
690
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500691static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400692{
693 struct probe_finder *pf = (struct probe_finder *)data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400694 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400695
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500696 if (pp->lazy_line)
697 find_probe_point_lazy(in_die, pf);
698 else {
699 /* Get probe address */
700 pf->addr = die_get_entrypc(in_die);
701 pf->addr += pp->offset;
702 pr_debug("found inline addr: 0x%jx\n",
703 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500704
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400705 convert_probe_point(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500706 }
707
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500708 return DWARF_CB_OK;
709}
710
711/* Search function from function name */
712static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
713{
714 struct probe_finder *pf = (struct probe_finder *)data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400715 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500716
717 /* Check tag and diename */
718 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
719 die_compare_name(sp_die, pp->function) != 0)
720 return 0;
721
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500722 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500723 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500724 dwarf_decl_line(sp_die, &pf->lno);
725 pf->lno += pp->line;
726 find_probe_point_by_line(pf);
727 } else if (!dwarf_func_inline(sp_die)) {
728 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500729 if (pp->lazy_line)
730 find_probe_point_lazy(sp_die, pf);
731 else {
732 pf->addr = die_get_entrypc(sp_die);
733 pf->addr += pp->offset;
734 /* TODO: Check the address in this function */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400735 convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500736 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500737 } else
738 /* Inlined function: search instances */
739 dwarf_func_inline_instances(sp_die, probe_point_inline_cb, pf);
740
741 return 1; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400742}
743
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500744static void find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400745{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500746 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, pf, 0);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400747}
748
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400749/* Find kprobe_trace_events specified by perf_probe_event from debuginfo */
750int find_kprobe_trace_events(int fd, struct perf_probe_event *pev,
751 struct kprobe_trace_event **tevs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400752{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400753 struct probe_finder pf = {.pev = pev};
754 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500755 Dwarf_Off off, noff;
756 size_t cuhl;
757 Dwarf_Die *diep;
758 Dwarf *dbg;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400759
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400760 pf.tevs = xzalloc(sizeof(struct kprobe_trace_event) * MAX_PROBES);
761 *tevs = pf.tevs;
762 pf.ntevs = 0;
763
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500764 dbg = dwarf_begin(fd, DWARF_C_READ);
765 if (!dbg)
Masami Hiramatsua225a1d2009-11-03 19:12:30 -0500766 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400767
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500768 off = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500769 line_list__init(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500770 /* Loop on CUs (Compilation Unit) */
771 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400772 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500773 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
774 if (!diep)
775 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400776
777 /* Check if target file is included. */
778 if (pp->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500779 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500780 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500781 pf.fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400782
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500783 if (!pp->file || pf.fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400784 if (pp->function)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500785 find_probe_point_by_func(&pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500786 else if (pp->lazy_line)
787 find_probe_point_lazy(NULL, &pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400788 else {
789 pf.lno = pp->line;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500790 find_probe_point_by_line(&pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400791 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400792 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500793 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400794 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500795 line_list__free(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500796 dwarf_end(dbg);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400797
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400798 return pf.ntevs;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400799}
800
Masami Hiramatsufb1587d2010-03-16 18:06:19 -0400801/* Reverse search */
802int find_perf_probe_point(int fd, unsigned long addr,
803 struct perf_probe_point *ppt)
804{
805 Dwarf_Die cudie, spdie, indie;
806 Dwarf *dbg;
807 Dwarf_Line *line;
808 Dwarf_Addr laddr, eaddr;
809 const char *tmp;
810 int lineno, ret = 0;
811
812 dbg = dwarf_begin(fd, DWARF_C_READ);
813 if (!dbg)
814 return -ENOENT;
815
816 /* Find cu die */
817 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie))
818 return -EINVAL;
819
820 /* Find a corresponding line */
821 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
822 if (line) {
823 dwarf_lineaddr(line, &laddr);
824 if ((Dwarf_Addr)addr == laddr) {
825 dwarf_lineno(line, &lineno);
826 ppt->line = lineno;
827
828 tmp = dwarf_linesrc(line, NULL, NULL);
829 DIE_IF(!tmp);
830 ppt->file = xstrdup(tmp);
831 ret = 1;
832 }
833 }
834
835 /* Find a corresponding function */
836 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
837 tmp = dwarf_diename(&spdie);
838 if (!tmp)
839 goto end;
840
841 dwarf_entrypc(&spdie, &eaddr);
842 if (!lineno) {
843 /* We don't have a line number, let's use offset */
844 ppt->function = xstrdup(tmp);
845 ppt->offset = addr - (unsigned long)eaddr;
846 ret = 1;
847 goto end;
848 }
849 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr, &indie)) {
850 /* addr in an inline function */
851 tmp = dwarf_diename(&indie);
852 if (!tmp)
853 goto end;
854 dwarf_decl_line(&indie, &lineno);
855 } else {
856 if (eaddr == addr) /* No offset: function entry */
857 lineno = ppt->line;
858 else
859 dwarf_decl_line(&spdie, &lineno);
860 }
861 ppt->function = xstrdup(tmp);
862 ppt->line -= lineno; /* Make a relative line number */
863 }
864
865end:
866 dwarf_end(dbg);
867 return ret;
868}
869
870
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500871/* Find line range from its line number */
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500872static void find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500873{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500874 Dwarf_Lines *lines;
875 Dwarf_Line *line;
876 size_t nlines, i;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500877 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500878 int lineno;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500879 int ret;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500880 const char *src;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500881 Dwarf_Die die_mem;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500882
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500883 line_list__init(&lf->lr->line_list);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500884 ret = dwarf_getsrclines(&lf->cu_die, &lines, &nlines);
885 DIE_IF(ret != 0);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500886
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500887 for (i = 0; i < nlines; i++) {
888 line = dwarf_onesrcline(lines, i);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500889 ret = dwarf_lineno(line, &lineno);
890 DIE_IF(ret != 0);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500891 if (lf->lno_s > lineno || lf->lno_e < lineno)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500892 continue;
893
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500894 if (sp_die) {
895 /* Address filtering 1: does sp_die include addr? */
896 ret = dwarf_lineaddr(line, &addr);
897 DIE_IF(ret != 0);
898 if (!dwarf_haspc(sp_die, addr))
899 continue;
900
901 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400902 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500903 continue;
904 }
905
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500906 /* TODO: Get fileno from line, but how? */
907 src = dwarf_linesrc(line, NULL, NULL);
908 if (strtailcmp(src, lf->fname) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500909 continue;
910
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500911 /* Copy real path */
912 if (!lf->lr->path)
Masami Hiramatsu31facc52010-03-16 18:05:30 -0400913 lf->lr->path = xstrdup(src);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500914 line_list__add_line(&lf->lr->line_list, (unsigned int)lineno);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500915 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500916 /* Update status */
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500917 if (!list_empty(&lf->lr->line_list))
918 lf->found = 1;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500919 else {
920 free(lf->lr->path);
921 lf->lr->path = NULL;
922 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500923}
924
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500925static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
926{
927 find_line_range_by_line(in_die, (struct line_finder *)data);
928 return DWARF_CB_ABORT; /* No need to find other instances */
929}
930
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500931/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500932static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500933{
934 struct line_finder *lf = (struct line_finder *)data;
935 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500936
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500937 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
938 die_compare_name(sp_die, lr->function) == 0) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500939 lf->fname = dwarf_decl_file(sp_die);
940 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500941 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500942 lf->lno_s = lr->offset + lr->start;
943 if (!lr->end)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500944 lf->lno_e = INT_MAX;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500945 else
946 lf->lno_e = lr->offset + lr->end;
947 lr->start = lf->lno_s;
948 lr->end = lf->lno_e;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500949 if (dwarf_func_inline(sp_die))
950 dwarf_func_inline_instances(sp_die,
951 line_range_inline_cb, lf);
952 else
953 find_line_range_by_line(sp_die, lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500954 return 1;
955 }
956 return 0;
957}
958
959static void find_line_range_by_func(struct line_finder *lf)
960{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500961 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, lf, 0);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500962}
963
964int find_line_range(int fd, struct line_range *lr)
965{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500966 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500967 int ret;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500968 Dwarf_Off off = 0, noff;
969 size_t cuhl;
970 Dwarf_Die *diep;
971 Dwarf *dbg;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500972
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500973 dbg = dwarf_begin(fd, DWARF_C_READ);
974 if (!dbg)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500975 return -ENOENT;
976
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500977 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500978 while (!lf.found) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500979 ret = dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL);
980 if (ret != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500981 break;
982
983 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500984 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
985 if (!diep)
986 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500987
988 /* Check if target file is included. */
989 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500990 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500991 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500992 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500993
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500994 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500995 if (lr->function)
996 find_line_range_by_func(&lf);
997 else {
998 lf.lno_s = lr->start;
999 if (!lr->end)
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001000 lf.lno_e = INT_MAX;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001001 else
1002 lf.lno_e = lr->end;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001003 find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001004 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001005 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001006 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001007 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001008 pr_debug("path: %lx\n", (unsigned long)lr->path);
1009 dwarf_end(dbg);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001010 return lf.found;
1011}
1012