blob: 5473f11a9bc8fc6bf3e35c203cc18517de57435a [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>
Ian Munsiecd932c52010-04-20 16:58:32 +100034#include <dwarf-regs.h>
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040035
Masami Hiramatsu124bb832011-02-04 21:52:11 +090036#include <linux/bitops.h>
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040037#include "event.h"
38#include "debug.h"
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040039#include "util.h"
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040040#include "symbol.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040041#include "probe-finder.h"
42
Masami Hiramatsu49849122010-04-12 13:17:15 -040043/* Kprobe tracer basic type is up to u64 */
44#define MAX_BASIC_TYPE_BITS 64
45
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040046/*
47 * Compare the tail of two strings.
48 * Return 0 if whole of either string is same as another's tail part.
49 */
50static int strtailcmp(const char *s1, const char *s2)
51{
52 int i1 = strlen(s1);
53 int i2 = strlen(s2);
Juha Leppanend56728b2009-12-07 12:00:40 -050054 while (--i1 >= 0 && --i2 >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040055 if (s1[i1] != s2[i2])
56 return s1[i1] - s2[i2];
57 }
58 return 0;
59}
60
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050061/* Line number list operations */
62
63/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040064static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050065{
66 struct line_node *ln;
67 struct list_head *p;
68
69 /* Reverse search, because new line will be the last one */
70 list_for_each_entry_reverse(ln, head, list) {
71 if (ln->line < line) {
72 p = &ln->list;
73 goto found;
74 } else if (ln->line == line) /* Already exist */
Masami Hiramatsue334016f12010-04-12 13:17:49 -040075 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050076 }
77 /* List is empty, or the smallest entry */
78 p = head;
79found:
80 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040081 ln = zalloc(sizeof(struct line_node));
82 if (ln == NULL)
83 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050084 ln->line = line;
85 INIT_LIST_HEAD(&ln->list);
86 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040087 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050088}
89
90/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040091static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050092{
93 struct line_node *ln;
94
95 /* Reverse search, because new line will be the last one */
96 list_for_each_entry(ln, head, list)
97 if (ln->line == line)
98 return 1;
99
100 return 0;
101}
102
103/* Init line number list */
104static void line_list__init(struct list_head *head)
105{
106 INIT_LIST_HEAD(head);
107}
108
109/* Free line number list */
110static void line_list__free(struct list_head *head)
111{
112 struct line_node *ln;
113 while (!list_empty(head)) {
114 ln = list_first_entry(head, struct line_node, list);
115 list_del(&ln->list);
116 free(ln);
117 }
118}
119
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900120/* Dwarf FL wrappers */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900121static char *debuginfo_path; /* Currently dummy */
122
123static const Dwfl_Callbacks offline_callbacks = {
124 .find_debuginfo = dwfl_standard_find_debuginfo,
125 .debuginfo_path = &debuginfo_path,
126
127 .section_address = dwfl_offline_section_address,
128
129 /* We use this table for core files too. */
130 .find_elf = dwfl_build_id_find_elf,
131};
132
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900133/* Get a Dwarf from offline image */
134static Dwarf *dwfl_init_offline_dwarf(int fd, Dwfl **dwflp, Dwarf_Addr *bias)
135{
136 Dwfl_Module *mod;
137 Dwarf *dbg = NULL;
138
139 if (!dwflp)
140 return NULL;
141
142 *dwflp = dwfl_begin(&offline_callbacks);
143 if (!*dwflp)
144 return NULL;
145
146 mod = dwfl_report_offline(*dwflp, "", "", fd);
147 if (!mod)
148 goto error;
149
150 dbg = dwfl_module_getdwarf(mod, bias);
151 if (!dbg) {
152error:
153 dwfl_end(*dwflp);
154 *dwflp = NULL;
155 }
156 return dbg;
157}
158
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900159#if _ELFUTILS_PREREQ(0, 148)
160/* This method is buggy if elfutils is older than 0.148 */
161static int __linux_kernel_find_elf(Dwfl_Module *mod,
162 void **userdata,
163 const char *module_name,
164 Dwarf_Addr base,
165 char **file_name, Elf **elfp)
166{
167 int fd;
168 const char *path = kernel_get_module_path(module_name);
169
170 pr_debug2("Use file %s for %s\n", path, module_name);
171 if (path) {
172 fd = open(path, O_RDONLY);
173 if (fd >= 0) {
174 *file_name = strdup(path);
175 return fd;
176 }
177 }
178 /* If failed, try to call standard method */
179 return dwfl_linux_kernel_find_elf(mod, userdata, module_name, base,
180 file_name, elfp);
181}
182
183static const Dwfl_Callbacks kernel_callbacks = {
184 .find_debuginfo = dwfl_standard_find_debuginfo,
185 .debuginfo_path = &debuginfo_path,
186
187 .find_elf = __linux_kernel_find_elf,
188 .section_address = dwfl_linux_kernel_module_section_address,
189};
190
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900191/* Get a Dwarf from live kernel image */
192static Dwarf *dwfl_init_live_kernel_dwarf(Dwarf_Addr addr, Dwfl **dwflp,
193 Dwarf_Addr *bias)
194{
195 Dwarf *dbg;
196
197 if (!dwflp)
198 return NULL;
199
200 *dwflp = dwfl_begin(&kernel_callbacks);
201 if (!*dwflp)
202 return NULL;
203
204 /* Load the kernel dwarves: Don't care the result here */
205 dwfl_linux_kernel_report_kernel(*dwflp);
206 dwfl_linux_kernel_report_modules(*dwflp);
207
208 dbg = dwfl_addrdwarf(*dwflp, addr, bias);
209 /* Here, check whether we could get a real dwarf */
210 if (!dbg) {
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900211 pr_debug("Failed to find kernel dwarf at %lx\n",
212 (unsigned long)addr);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900213 dwfl_end(*dwflp);
214 *dwflp = NULL;
215 }
216 return dbg;
217}
Masami Hiramatsu3b4694d2010-12-17 22:12:18 +0900218#else
219/* With older elfutils, this just support kernel module... */
220static Dwarf *dwfl_init_live_kernel_dwarf(Dwarf_Addr addr __used, Dwfl **dwflp,
221 Dwarf_Addr *bias)
222{
223 int fd;
224 const char *path = kernel_get_module_path("kernel");
225
226 if (!path) {
227 pr_err("Failed to find vmlinux path\n");
228 return NULL;
229 }
230
231 pr_debug2("Use file %s for debuginfo\n", path);
232 fd = open(path, O_RDONLY);
233 if (fd < 0)
234 return NULL;
235
236 return dwfl_init_offline_dwarf(fd, dwflp, bias);
237}
238#endif
Masami Hiramatsu469b9b82010-10-21 19:13:41 +0900239
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500240/* Dwarf wrappers */
241
242/* Find the realpath of the target file. */
243static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400244{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500245 Dwarf_Files *files;
246 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300247 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400248 int ret;
249
250 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500251 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500252
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500253 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500254 if (ret != 0)
255 return NULL;
256
257 for (i = 0; i < nfiles; i++) {
258 src = dwarf_filesrc(files, i, NULL, NULL);
259 if (strtailcmp(src, fname) == 0)
260 break;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500261 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400262 if (i == nfiles)
263 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500264 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500265}
266
Masami Hiramatsu6a330a32010-07-09 18:29:11 +0900267/* Get DW_AT_comp_dir (should be NULL with older gcc) */
268static const char *cu_get_comp_dir(Dwarf_Die *cu_die)
269{
270 Dwarf_Attribute attr;
271 if (dwarf_attr(cu_die, DW_AT_comp_dir, &attr) == NULL)
272 return NULL;
273 return dwarf_formstring(&attr);
274}
275
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400276/* Compare diename and tname */
277static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
278{
279 const char *name;
280 name = dwarf_diename(dw_die);
Masami Hiramatsu82175632010-07-09 18:29:17 +0900281 return name ? (strcmp(tname, name) == 0) : false;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400282}
283
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900284/* Get callsite line number of inline-function instance */
285static int die_get_call_lineno(Dwarf_Die *in_die)
286{
287 Dwarf_Attribute attr;
288 Dwarf_Word ret;
289
290 if (!dwarf_attr(in_die, DW_AT_call_line, &attr))
291 return -ENOENT;
292
293 dwarf_formudata(&attr, &ret);
294 return (int)ret;
295}
296
Masami Hiramatsu4046b8b2010-10-21 19:13:02 +0900297/* Get type die */
298static Dwarf_Die *die_get_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
299{
300 Dwarf_Attribute attr;
301
302 if (dwarf_attr_integrate(vr_die, DW_AT_type, &attr) &&
303 dwarf_formref_die(&attr, die_mem))
304 return die_mem;
305 else
306 return NULL;
307}
308
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900309/* Get a type die, but skip qualifiers */
310static Dwarf_Die *__die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400311{
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400312 int tag;
313
314 do {
Masami Hiramatsu4046b8b2010-10-21 19:13:02 +0900315 vr_die = die_get_type(vr_die, die_mem);
316 if (!vr_die)
317 break;
318 tag = dwarf_tag(vr_die);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400319 } while (tag == DW_TAG_const_type ||
320 tag == DW_TAG_restrict_type ||
321 tag == DW_TAG_volatile_type ||
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900322 tag == DW_TAG_shared_type);
323
324 return vr_die;
325}
326
327/* Get a type die, but skip qualifiers and typedef */
328static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
329{
330 do {
331 vr_die = __die_get_real_type(vr_die, die_mem);
332 } while (vr_die && dwarf_tag(vr_die) == DW_TAG_typedef);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400333
Masami Hiramatsu4046b8b2010-10-21 19:13:02 +0900334 return vr_die;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400335}
336
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900337static int die_get_attr_udata(Dwarf_Die *tp_die, unsigned int attr_name,
338 Dwarf_Word *result)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400339{
340 Dwarf_Attribute attr;
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900341
342 if (dwarf_attr(tp_die, attr_name, &attr) == NULL ||
343 dwarf_formudata(&attr, result) != 0)
344 return -ENOENT;
345
346 return 0;
347}
348
349static bool die_is_signed_type(Dwarf_Die *tp_die)
350{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400351 Dwarf_Word ret;
352
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900353 if (die_get_attr_udata(tp_die, DW_AT_encoding, &ret))
Masami Hiramatsu49849122010-04-12 13:17:15 -0400354 return false;
355
356 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
357 ret == DW_ATE_signed_fixed);
358}
359
360static int die_get_byte_size(Dwarf_Die *tp_die)
361{
Masami Hiramatsu49849122010-04-12 13:17:15 -0400362 Dwarf_Word ret;
363
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900364 if (die_get_attr_udata(tp_die, DW_AT_byte_size, &ret))
365 return 0;
366
367 return (int)ret;
368}
369
370static int die_get_bit_size(Dwarf_Die *tp_die)
371{
372 Dwarf_Word ret;
373
374 if (die_get_attr_udata(tp_die, DW_AT_bit_size, &ret))
375 return 0;
376
377 return (int)ret;
378}
379
380static int die_get_bit_offset(Dwarf_Die *tp_die)
381{
382 Dwarf_Word ret;
383
384 if (die_get_attr_udata(tp_die, DW_AT_bit_offset, &ret))
Masami Hiramatsu49849122010-04-12 13:17:15 -0400385 return 0;
386
387 return (int)ret;
388}
389
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300390/* Get data_member_location offset */
391static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
392{
393 Dwarf_Attribute attr;
394 Dwarf_Op *expr;
395 size_t nexpr;
396 int ret;
397
398 if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
399 return -ENOENT;
400
401 if (dwarf_formudata(&attr, offs) != 0) {
402 /* DW_AT_data_member_location should be DW_OP_plus_uconst */
403 ret = dwarf_getlocation(&attr, &expr, &nexpr);
404 if (ret < 0 || nexpr == 0)
405 return -ENOENT;
406
407 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
408 pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
409 expr[0].atom, nexpr);
410 return -ENOTSUP;
411 }
412 *offs = (Dwarf_Word)expr[0].number;
413 }
414 return 0;
415}
416
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400417/* Return values for die_find callbacks */
418enum {
419 DIE_FIND_CB_FOUND = 0, /* End of Search */
420 DIE_FIND_CB_CHILD = 1, /* Search only children */
421 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
422 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
423};
424
425/* Search a child die */
426static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
427 int (*callback)(Dwarf_Die *, void *),
428 void *data, Dwarf_Die *die_mem)
429{
430 Dwarf_Die child_die;
431 int ret;
432
433 ret = dwarf_child(rt_die, die_mem);
434 if (ret != 0)
435 return NULL;
436
437 do {
438 ret = callback(die_mem, data);
439 if (ret == DIE_FIND_CB_FOUND)
440 return die_mem;
441
442 if ((ret & DIE_FIND_CB_CHILD) &&
443 die_find_child(die_mem, callback, data, &child_die)) {
444 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
445 return die_mem;
446 }
447 } while ((ret & DIE_FIND_CB_SIBLING) &&
448 dwarf_siblingof(die_mem, die_mem) == 0);
449
450 return NULL;
451}
452
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500453struct __addr_die_search_param {
454 Dwarf_Addr addr;
455 Dwarf_Die *die_mem;
456};
457
458static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
459{
460 struct __addr_die_search_param *ad = data;
461
462 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
463 dwarf_haspc(fn_die, ad->addr)) {
464 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
465 return DWARF_CB_ABORT;
466 }
467 return DWARF_CB_OK;
468}
469
470/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400471static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
472 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500473{
474 struct __addr_die_search_param ad;
475 ad.addr = addr;
476 ad.die_mem = die_mem;
477 /* dwarf_getscopes can't find subprogram. */
478 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
479 return NULL;
480 else
481 return die_mem;
482}
483
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400484/* die_find callback for inline function search */
485static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
486{
487 Dwarf_Addr *addr = data;
488
489 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
490 dwarf_haspc(die_mem, *addr))
491 return DIE_FIND_CB_FOUND;
492
493 return DIE_FIND_CB_CONTINUE;
494}
495
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500496/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400497static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
498 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500499{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400500 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500501}
502
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900503/* Walker on lines (Note: line number will not be sorted) */
504typedef int (* line_walk_handler_t) (const char *fname, int lineno,
505 Dwarf_Addr addr, void *data);
506
507struct __line_walk_param {
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900508 const char *fname;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900509 line_walk_handler_t handler;
510 void *data;
511 int retval;
512};
513
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900514static int __die_walk_funclines_cb(Dwarf_Die *in_die, void *data)
515{
516 struct __line_walk_param *lw = data;
517 Dwarf_Addr addr;
518 int lineno;
519
520 if (dwarf_tag(in_die) == DW_TAG_inlined_subroutine) {
521 lineno = die_get_call_lineno(in_die);
522 if (lineno > 0 && dwarf_entrypc(in_die, &addr) == 0) {
523 lw->retval = lw->handler(lw->fname, lineno, addr,
524 lw->data);
525 if (lw->retval != 0)
526 return DIE_FIND_CB_FOUND;
527 }
528 }
529 return DIE_FIND_CB_SIBLING;
530}
531
532/* Walk on lines of blocks included in given DIE */
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900533static int __die_walk_funclines(Dwarf_Die *sp_die,
534 line_walk_handler_t handler, void *data)
535{
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900536 struct __line_walk_param lw = {
537 .handler = handler,
538 .data = data,
539 .retval = 0,
540 };
541 Dwarf_Die die_mem;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900542 Dwarf_Addr addr;
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900543 int lineno;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900544
545 /* Handle function declaration line */
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900546 lw.fname = dwarf_decl_file(sp_die);
547 if (lw.fname && dwarf_decl_line(sp_die, &lineno) == 0 &&
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900548 dwarf_entrypc(sp_die, &addr) == 0) {
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900549 lw.retval = handler(lw.fname, lineno, addr, data);
550 if (lw.retval != 0)
551 goto done;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900552 }
Masami Hiramatsu5069ed82011-01-13 21:46:05 +0900553 die_find_child(sp_die, __die_walk_funclines_cb, &lw, &die_mem);
554done:
555 return lw.retval;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +0900556}
557
558static int __die_walk_culines_cb(Dwarf_Die *sp_die, void *data)
559{
560 struct __line_walk_param *lw = data;
561
562 lw->retval = __die_walk_funclines(sp_die, lw->handler, lw->data);
563 if (lw->retval != 0)
564 return DWARF_CB_ABORT;
565
566 return DWARF_CB_OK;
567}
568
569/*
570 * Walk on lines inside given PDIE. If the PDIE is subprogram, walk only on
571 * the lines inside the subprogram, otherwise PDIE must be a CU DIE.
572 */
573static int die_walk_lines(Dwarf_Die *pdie, line_walk_handler_t handler,
574 void *data)
575{
576 Dwarf_Lines *lines;
577 Dwarf_Line *line;
578 Dwarf_Addr addr;
579 const char *fname;
580 int lineno, ret = 0;
581 Dwarf_Die die_mem, *cu_die;
582 size_t nlines, i;
583
584 /* Get the CU die */
585 if (dwarf_tag(pdie) == DW_TAG_subprogram)
586 cu_die = dwarf_diecu(pdie, &die_mem, NULL, NULL);
587 else
588 cu_die = pdie;
589 if (!cu_die) {
590 pr_debug2("Failed to get CU from subprogram\n");
591 return -EINVAL;
592 }
593
594 /* Get lines list in the CU */
595 if (dwarf_getsrclines(cu_die, &lines, &nlines) != 0) {
596 pr_debug2("Failed to get source lines on this CU.\n");
597 return -ENOENT;
598 }
599 pr_debug2("Get %zd lines from this CU\n", nlines);
600
601 /* Walk on the lines on lines list */
602 for (i = 0; i < nlines; i++) {
603 line = dwarf_onesrcline(lines, i);
604 if (line == NULL ||
605 dwarf_lineno(line, &lineno) != 0 ||
606 dwarf_lineaddr(line, &addr) != 0) {
607 pr_debug2("Failed to get line info. "
608 "Possible error in debuginfo.\n");
609 continue;
610 }
611 /* Filter lines based on address */
612 if (pdie != cu_die)
613 /*
614 * Address filtering
615 * The line is included in given function, and
616 * no inline block includes it.
617 */
618 if (!dwarf_haspc(pdie, addr) ||
619 die_find_inlinefunc(pdie, addr, &die_mem))
620 continue;
621 /* Get source line */
622 fname = dwarf_linesrc(line, NULL, NULL);
623
624 ret = handler(fname, lineno, addr, data);
625 if (ret != 0)
626 return ret;
627 }
628
629 /*
630 * Dwarf lines doesn't include function declarations and inlined
631 * subroutines. We have to check functions list or given function.
632 */
633 if (pdie != cu_die)
634 ret = __die_walk_funclines(pdie, handler, data);
635 else {
636 struct __line_walk_param param = {
637 .handler = handler,
638 .data = data,
639 .retval = 0,
640 };
641 dwarf_getfuncs(cu_die, __die_walk_culines_cb, &param, 0);
642 ret = param.retval;
643 }
644
645 return ret;
646}
647
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900648struct __find_variable_param {
649 const char *name;
650 Dwarf_Addr addr;
651};
652
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400653static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400654{
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900655 struct __find_variable_param *fvp = data;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400656 int tag;
657
658 tag = dwarf_tag(die_mem);
659 if ((tag == DW_TAG_formal_parameter ||
660 tag == DW_TAG_variable) &&
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900661 die_compare_name(die_mem, fvp->name))
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400662 return DIE_FIND_CB_FOUND;
663
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900664 if (dwarf_haspc(die_mem, fvp->addr))
665 return DIE_FIND_CB_CONTINUE;
666 else
667 return DIE_FIND_CB_SIBLING;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400668}
669
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900670/* Find a variable called 'name' at given address */
671static Dwarf_Die *die_find_variable_at(Dwarf_Die *sp_die, const char *name,
672 Dwarf_Addr addr, Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500673{
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +0900674 struct __find_variable_param fvp = { .name = name, .addr = addr};
675
676 return die_find_child(sp_die, __die_find_variable_cb, (void *)&fvp,
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400677 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400678}
679
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400680static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
681{
682 const char *name = data;
683
684 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
Masami Hiramatsu82175632010-07-09 18:29:17 +0900685 die_compare_name(die_mem, name))
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400686 return DIE_FIND_CB_FOUND;
687
688 return DIE_FIND_CB_SIBLING;
689}
690
691/* Find a member called 'name' */
692static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
693 Dwarf_Die *die_mem)
694{
695 return die_find_child(st_die, __die_find_member_cb, (void *)name,
696 die_mem);
697}
698
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900699/* Get the name of given variable DIE */
700static int die_get_typename(Dwarf_Die *vr_die, char *buf, int len)
701{
702 Dwarf_Die type;
703 int tag, ret, ret2;
704 const char *tmp = "";
705
706 if (__die_get_real_type(vr_die, &type) == NULL)
707 return -ENOENT;
708
709 tag = dwarf_tag(&type);
710 if (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)
711 tmp = "*";
712 else if (tag == DW_TAG_subroutine_type) {
713 /* Function pointer */
714 ret = snprintf(buf, len, "(function_type)");
715 return (ret >= len) ? -E2BIG : ret;
716 } else {
717 if (!dwarf_diename(&type))
718 return -ENOENT;
719 if (tag == DW_TAG_union_type)
720 tmp = "union ";
721 else if (tag == DW_TAG_structure_type)
722 tmp = "struct ";
723 /* Write a base name */
724 ret = snprintf(buf, len, "%s%s", tmp, dwarf_diename(&type));
725 return (ret >= len) ? -E2BIG : ret;
726 }
727 ret = die_get_typename(&type, buf, len);
728 if (ret > 0) {
729 ret2 = snprintf(buf + ret, len - ret, "%s", tmp);
730 ret = (ret2 >= len - ret) ? -E2BIG : ret2 + ret;
731 }
732 return ret;
733}
734
735/* Get the name and type of given variable DIE, stored as "type\tname" */
736static int die_get_varname(Dwarf_Die *vr_die, char *buf, int len)
737{
738 int ret, ret2;
739
740 ret = die_get_typename(vr_die, buf, len);
741 if (ret < 0) {
742 pr_debug("Failed to get type, make it unknown.\n");
743 ret = snprintf(buf, len, "(unknown_type)");
744 }
745 if (ret > 0) {
746 ret2 = snprintf(buf + ret, len - ret, "\t%s",
747 dwarf_diename(vr_die));
748 ret = (ret2 >= len - ret) ? -E2BIG : ret2 + ret;
749 }
750 return ret;
751}
752
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400753/*
754 * Probe finder related functions
755 */
756
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530757static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400758{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530759 struct probe_trace_arg_ref *ref;
760 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400761 if (ref != NULL)
762 ref->offset = offs;
763 return ref;
764}
765
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900766/*
767 * Convert a location into trace_arg.
768 * If tvar == NULL, this just checks variable can be converted.
769 */
770static int convert_variable_location(Dwarf_Die *vr_die, Dwarf_Addr addr,
771 Dwarf_Op *fb_ops,
772 struct probe_trace_arg *tvar)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400773{
774 Dwarf_Attribute attr;
775 Dwarf_Op *op;
776 size_t nops;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500777 unsigned int regn;
778 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400779 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400780 const char *regs;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400781 int ret;
782
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900783 if (dwarf_attr(vr_die, DW_AT_external, &attr) != NULL)
784 goto static_var;
785
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400786 /* TODO: handle more than 1 exprs */
787 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL ||
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900788 dwarf_getlocation_addr(&attr, addr, &op, &nops, 1) <= 0 ||
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400789 nops == 0) {
790 /* TODO: Support const_value */
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400791 return -ENOENT;
792 }
793
794 if (op->atom == DW_OP_addr) {
Masami Hiramatsu632941c2010-10-21 19:13:16 +0900795static_var:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900796 if (!tvar)
797 return 0;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400798 /* Static variables on memory (not stack), make @varname */
799 ret = strlen(dwarf_diename(vr_die));
800 tvar->value = zalloc(ret + 2);
801 if (tvar->value == NULL)
802 return -ENOMEM;
803 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
804 tvar->ref = alloc_trace_arg_ref((long)offs);
805 if (tvar->ref == NULL)
806 return -ENOMEM;
807 return 0;
808 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400809
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400810 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500811 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900812 if (fb_ops == NULL)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400813 return -ENOTSUP;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400814 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500815 offs = op->number;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900816 op = &fb_ops[0];
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500817 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400818
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500819 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
820 regn = op->atom - DW_OP_breg0;
821 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400822 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500823 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
824 regn = op->atom - DW_OP_reg0;
825 } else if (op->atom == DW_OP_bregx) {
826 regn = op->number;
827 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400828 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500829 } else if (op->atom == DW_OP_regx) {
830 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400831 } else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900832 pr_debug("DW_OP %x is not supported.\n", op->atom);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400833 return -ENOTSUP;
834 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400835
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900836 if (!tvar)
837 return 0;
838
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400839 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400840 if (!regs) {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +0900841 /* This should be a bug in DWARF or this tool */
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900842 pr_warning("Mapping for the register number %u "
843 "missing on this architecture.\n", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400844 return -ERANGE;
845 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400846
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400847 tvar->value = strdup(regs);
848 if (tvar->value == NULL)
849 return -ENOMEM;
850
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400851 if (ref) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -0400852 tvar->ref = alloc_trace_arg_ref((long)offs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400853 if (tvar->ref == NULL)
854 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400855 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400856 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400857}
858
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900859#define BYTES_TO_BITS(nb) ((nb) * BITS_PER_LONG / sizeof(long))
860
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400861static int convert_variable_type(Dwarf_Die *vr_die,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530862 struct probe_trace_arg *tvar,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400863 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400864{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530865 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400866 Dwarf_Die type;
867 char buf[16];
868 int ret;
869
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400870 /* TODO: check all types */
871 if (cast && strcmp(cast, "string") != 0) {
872 /* Non string type is OK */
873 tvar->type = strdup(cast);
874 return (tvar->type == NULL) ? -ENOMEM : 0;
875 }
876
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900877 if (die_get_bit_size(vr_die) != 0) {
878 /* This is a bitfield */
879 ret = snprintf(buf, 16, "b%d@%d/%zd", die_get_bit_size(vr_die),
880 die_get_bit_offset(vr_die),
881 BYTES_TO_BITS(die_get_byte_size(vr_die)));
882 goto formatted;
883 }
884
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400885 if (die_get_real_type(vr_die, &type) == NULL) {
886 pr_warning("Failed to get a type information of %s.\n",
887 dwarf_diename(vr_die));
888 return -ENOENT;
889 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400890
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400891 pr_debug("%s type is %s.\n",
892 dwarf_diename(vr_die), dwarf_diename(&type));
893
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400894 if (cast && strcmp(cast, "string") == 0) { /* String type */
895 ret = dwarf_tag(&type);
896 if (ret != DW_TAG_pointer_type &&
897 ret != DW_TAG_array_type) {
898 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900899 "%s(%s) is not a pointer nor array.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400900 dwarf_diename(vr_die), dwarf_diename(&type));
901 return -EINVAL;
902 }
903 if (ret == DW_TAG_pointer_type) {
904 if (die_get_real_type(&type, &type) == NULL) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900905 pr_warning("Failed to get a type"
906 " information.\n");
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400907 return -ENOENT;
908 }
909 while (*ref_ptr)
910 ref_ptr = &(*ref_ptr)->next;
911 /* Add new reference with offset +0 */
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530912 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400913 if (*ref_ptr == NULL) {
914 pr_warning("Out of memory error\n");
915 return -ENOMEM;
916 }
917 }
Masami Hiramatsu82175632010-07-09 18:29:17 +0900918 if (!die_compare_name(&type, "char") &&
919 !die_compare_name(&type, "unsigned char")) {
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400920 pr_warning("Failed to cast into string: "
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +0900921 "%s is not (unsigned) char *.\n",
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400922 dwarf_diename(vr_die));
923 return -EINVAL;
924 }
925 tvar->type = strdup(cast);
926 return (tvar->type == NULL) ? -ENOMEM : 0;
927 }
928
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900929 ret = BYTES_TO_BITS(die_get_byte_size(&type));
930 if (!ret)
931 /* No size ... try to use default type */
932 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400933
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900934 /* Check the bitwidth */
935 if (ret > MAX_BASIC_TYPE_BITS) {
936 pr_info("%s exceeds max-bitwidth. Cut down to %d bits.\n",
937 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
938 ret = MAX_BASIC_TYPE_BITS;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400939 }
Masami Hiramatsu124bb832011-02-04 21:52:11 +0900940 ret = snprintf(buf, 16, "%c%d",
941 die_is_signed_type(&type) ? 's' : 'u', ret);
942
943formatted:
944 if (ret < 0 || ret >= 16) {
945 if (ret >= 16)
946 ret = -E2BIG;
947 pr_warning("Failed to convert variable type: %s\n",
948 strerror(-ret));
949 return ret;
950 }
951 tvar->type = strdup(buf);
952 if (tvar->type == NULL)
953 return -ENOMEM;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400954 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400955}
956
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400957static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400958 struct perf_probe_arg_field *field,
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530959 struct probe_trace_arg_ref **ref_ptr,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400960 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400961{
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530962 struct probe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400963 Dwarf_Die type;
964 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400965 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400966
967 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400968 if (die_get_real_type(vr_die, &type) == NULL) {
969 pr_warning("Failed to get the type of %s.\n", varname);
970 return -ENOENT;
971 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400972 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
973 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400974
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400975 if (field->name[0] == '[' &&
976 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
977 if (field->next)
978 /* Save original type for next field */
979 memcpy(die_mem, &type, sizeof(*die_mem));
980 /* Get the type of this array */
981 if (die_get_real_type(&type, &type) == NULL) {
982 pr_warning("Failed to get the type of %s.\n", varname);
983 return -ENOENT;
984 }
985 pr_debug2("Array real type: (%x)\n",
986 (unsigned)dwarf_dieoffset(&type));
987 if (tag == DW_TAG_pointer_type) {
Srikar Dronamraju0e608362010-07-29 19:43:51 +0530988 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400989 if (ref == NULL)
990 return -ENOMEM;
991 if (*ref_ptr)
992 (*ref_ptr)->next = ref;
993 else
994 *ref_ptr = ref;
995 }
996 ref->offset += die_get_byte_size(&type) * field->index;
997 if (!field->next)
998 /* Save vr_die for converting types */
999 memcpy(die_mem, vr_die, sizeof(*die_mem));
1000 goto next;
1001 } else if (tag == DW_TAG_pointer_type) {
1002 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001003 if (!field->ref) {
1004 pr_err("Semantic error: %s must be referred by '->'\n",
1005 field->name);
1006 return -EINVAL;
1007 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001008 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001009 if (die_get_real_type(&type, &type) == NULL) {
1010 pr_warning("Failed to get the type of %s.\n", varname);
1011 return -ENOENT;
1012 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -04001013 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001014 if (dwarf_tag(&type) != DW_TAG_structure_type) {
1015 pr_warning("%s is not a data structure.\n", varname);
1016 return -EINVAL;
1017 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -04001018
Srikar Dronamraju0e608362010-07-29 19:43:51 +05301019 ref = zalloc(sizeof(struct probe_trace_arg_ref));
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001020 if (ref == NULL)
1021 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001022 if (*ref_ptr)
1023 (*ref_ptr)->next = ref;
1024 else
1025 *ref_ptr = ref;
1026 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -04001027 /* Verify it is a data structure */
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001028 if (tag != DW_TAG_structure_type) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001029 pr_warning("%s is not a data structure.\n", varname);
1030 return -EINVAL;
1031 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001032 if (field->name[0] == '[') {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001033 pr_err("Semantic error: %s is not a pointor"
1034 " nor array.\n", varname);
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001035 return -EINVAL;
1036 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001037 if (field->ref) {
1038 pr_err("Semantic error: %s must be referred by '.'\n",
1039 field->name);
1040 return -EINVAL;
1041 }
1042 if (!ref) {
1043 pr_warning("Structure on a register is not "
1044 "supported yet.\n");
1045 return -ENOTSUP;
1046 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001047 }
1048
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001049 if (die_find_member(&type, field->name, die_mem) == NULL) {
1050 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
1051 dwarf_diename(&type), field->name);
1052 return -EINVAL;
1053 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001054
1055 /* Get the offset of the field */
Masami Hiramatsude1439d2010-04-14 17:44:00 -03001056 ret = die_get_data_member_location(die_mem, &offs);
1057 if (ret < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001058 pr_warning("Failed to get the offset of %s.\n", field->name);
Masami Hiramatsude1439d2010-04-14 17:44:00 -03001059 return ret;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001060 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001061 ref->offset += (long)offs;
1062
Masami Hiramatsub2a3c122010-05-19 15:57:42 -04001063next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001064 /* Converting next field */
1065 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001066 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -03001067 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001068 else
1069 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -04001070}
1071
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001072/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001073static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001074{
Masami Hiramatsu49849122010-04-12 13:17:15 -04001075 Dwarf_Die die_mem;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001076 int ret;
1077
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001078 pr_debug("Converting variable %s into trace event.\n",
1079 dwarf_diename(vr_die));
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001080
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001081 ret = convert_variable_location(vr_die, pf->addr, pf->fb_ops,
1082 pf->tvar);
1083 if (ret == -ENOENT)
1084 pr_err("Failed to find the location of %s at this address.\n"
1085 " Perhaps, it has been optimized out.\n", pf->pvar->var);
1086 else if (ret == -ENOTSUP)
1087 pr_err("Sorry, we don't support this variable location yet.\n");
1088 else if (pf->pvar->field) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001089 ret = convert_variable_fields(vr_die, pf->pvar->var,
1090 pf->pvar->field, &pf->tvar->ref,
1091 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -04001092 vr_die = &die_mem;
1093 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -04001094 if (ret == 0)
1095 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001096 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001097 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001098}
1099
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001100/* Find a variable in a subprogram die */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001101static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001102{
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001103 Dwarf_Die vr_die, *scopes;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001104 char buf[32], *ptr;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001105 int ret, nscopes;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001106
Masami Hiramatsu367e94c2010-08-27 20:38:59 +09001107 if (!is_c_varname(pf->pvar->var)) {
1108 /* Copy raw parameters */
1109 pf->tvar->value = strdup(pf->pvar->var);
1110 if (pf->tvar->value == NULL)
1111 return -ENOMEM;
1112 if (pf->pvar->type) {
1113 pf->tvar->type = strdup(pf->pvar->type);
1114 if (pf->tvar->type == NULL)
1115 return -ENOMEM;
1116 }
1117 if (pf->pvar->name) {
1118 pf->tvar->name = strdup(pf->pvar->name);
1119 if (pf->tvar->name == NULL)
1120 return -ENOMEM;
1121 } else
1122 pf->tvar->name = NULL;
1123 return 0;
1124 }
1125
Masami Hiramatsu48481932010-04-12 13:16:53 -04001126 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001127 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001128 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001129 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
1130 if (ret < 0)
1131 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -04001132 ptr = strchr(buf, ':'); /* Change type separator to _ */
1133 if (ptr)
1134 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001135 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -04001136 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001137 if (pf->tvar->name == NULL)
1138 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -04001139
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001140 pr_debug("Searching '%s' variable in context.\n",
1141 pf->pvar->var);
1142 /* Search child die for local variables and parameters. */
Masami Hiramatsu378eeaa2010-10-21 19:13:09 +09001143 if (die_find_variable_at(sp_die, pf->pvar->var, pf->addr, &vr_die))
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001144 ret = convert_variable(&vr_die, pf);
1145 else {
1146 /* Search upper class */
1147 nscopes = dwarf_getscopes_die(sp_die, &scopes);
Masami Hiramatsu632941c2010-10-21 19:13:16 +09001148 while (nscopes-- > 1) {
1149 pr_debug("Searching variables in %s\n",
1150 dwarf_diename(&scopes[nscopes]));
1151 /* We should check this scope, so give dummy address */
1152 if (die_find_variable_at(&scopes[nscopes],
1153 pf->pvar->var, 0,
1154 &vr_die)) {
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001155 ret = convert_variable(&vr_die, pf);
Masami Hiramatsu632941c2010-10-21 19:13:16 +09001156 goto found;
1157 }
1158 }
1159 if (scopes)
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001160 free(scopes);
Masami Hiramatsu632941c2010-10-21 19:13:16 +09001161 ret = -ENOENT;
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001162 }
Masami Hiramatsu632941c2010-10-21 19:13:16 +09001163found:
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001164 if (ret < 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001165 pr_warning("Failed to find '%s' in this function.\n",
1166 pf->pvar->var);
Masami Hiramatsub7dcb852010-05-19 15:57:49 -04001167 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001168}
1169
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001170/* Convert subprogram DIE to trace point */
1171static int convert_to_trace_point(Dwarf_Die *sp_die, Dwarf_Addr paddr,
1172 bool retprobe, struct probe_trace_point *tp)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001173{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001174 Dwarf_Addr eaddr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001175 const char *name;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001176
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001177 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001178 name = dwarf_diename(sp_die);
1179 if (name) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001180 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001181 pr_warning("Failed to get entry address of %s\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001182 dwarf_diename(sp_die));
1183 return -ENOENT;
1184 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001185 tp->symbol = strdup(name);
1186 if (tp->symbol == NULL)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001187 return -ENOMEM;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001188 tp->offset = (unsigned long)(paddr - eaddr);
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001189 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001190 /* This function has no name. */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001191 tp->offset = (unsigned long)paddr;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001192
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001193 /* Return probe must be on the head of a subprogram */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001194 if (retprobe) {
1195 if (eaddr != paddr) {
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001196 pr_warning("Return probe must be on the head of"
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001197 " a real function.\n");
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001198 return -EINVAL;
1199 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001200 tp->retprobe = true;
Masami Hiramatsu04ddd042010-08-27 20:38:53 +09001201 }
1202
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001203 return 0;
1204}
1205
1206/* Call probe_finder callback with real subprogram DIE */
1207static int call_probe_finder(Dwarf_Die *sp_die, struct probe_finder *pf)
1208{
1209 Dwarf_Die die_mem;
1210 Dwarf_Attribute fb_attr;
1211 size_t nops;
1212 int ret;
1213
1214 /* If no real subprogram, find a real one */
1215 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
1216 sp_die = die_find_real_subprogram(&pf->cu_die,
1217 pf->addr, &die_mem);
1218 if (!sp_die) {
1219 pr_warning("Failed to find probe point in any "
1220 "functions.\n");
1221 return -ENOENT;
1222 }
1223 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001224
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001225 /* Get the frame base attribute/ops */
1226 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -04001227 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001228 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001229 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001230#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001231 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
1232 pf->cfi != NULL) {
1233 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001234 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
1235 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001236 pr_warning("Failed to get call frame on 0x%jx\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001237 (uintmax_t)pf->addr);
1238 return -ENOENT;
1239 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001240#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001241 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001242
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001243 /* Call finder's callback handler */
1244 ret = pf->callback(sp_die, pf);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001245
1246 /* *pf->fb_ops will be cached in libdw. Don't free it. */
1247 pf->fb_ops = NULL;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001248
1249 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001250}
1251
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001252static int probe_point_line_walker(const char *fname, int lineno,
1253 Dwarf_Addr addr, void *data)
1254{
1255 struct probe_finder *pf = data;
1256 int ret;
1257
1258 if (lineno != pf->lno || strtailcmp(fname, pf->fname) != 0)
1259 return 0;
1260
1261 pf->addr = addr;
1262 ret = call_probe_finder(NULL, pf);
1263
1264 /* Continue if no error, because the line will be in inline function */
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001265 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001266}
1267
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001268/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001269static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001270{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001271 return die_walk_lines(&pf->cu_die, probe_point_line_walker, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001272}
1273
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001274/* Find lines which match lazy pattern */
1275static int find_lazy_match_lines(struct list_head *head,
1276 const char *fname, const char *pat)
1277{
Franck Bui-Huuf50c2162011-01-13 11:18:30 +01001278 FILE *fp;
1279 char *line = NULL;
1280 size_t line_len;
1281 ssize_t len;
1282 int count = 0, linenum = 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001283
Franck Bui-Huuf50c2162011-01-13 11:18:30 +01001284 fp = fopen(fname, "r");
1285 if (!fp) {
1286 pr_warning("Failed to open %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -03001287 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001288 }
1289
Franck Bui-Huuf50c2162011-01-13 11:18:30 +01001290 while ((len = getline(&line, &line_len, fp)) > 0) {
1291
1292 if (line[len - 1] == '\n')
1293 line[len - 1] = '\0';
1294
1295 if (strlazymatch(line, pat)) {
1296 line_list__add_line(head, linenum);
1297 count++;
1298 }
1299 linenum++;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001300 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -03001301
Franck Bui-Huuf50c2162011-01-13 11:18:30 +01001302 if (ferror(fp))
1303 count = -errno;
1304 free(line);
1305 fclose(fp);
1306
1307 if (count == 0)
1308 pr_debug("No matched lines found in %s.\n", fname);
1309 return count;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001310}
1311
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001312static int probe_point_lazy_walker(const char *fname, int lineno,
1313 Dwarf_Addr addr, void *data)
1314{
1315 struct probe_finder *pf = data;
1316 int ret;
1317
1318 if (!line_list__has_line(&pf->lcache, lineno) ||
1319 strtailcmp(fname, pf->fname) != 0)
1320 return 0;
1321
1322 pr_debug("Probe line found: line:%d addr:0x%llx\n",
1323 lineno, (unsigned long long)addr);
1324 pf->addr = addr;
1325 ret = call_probe_finder(NULL, pf);
1326
1327 /*
1328 * Continue if no error, because the lazy pattern will match
1329 * to other lines
1330 */
Ingo Molnar5e814dd52011-03-15 20:51:09 +01001331 return ret < 0 ? ret : 0;
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001332}
1333
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001334/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001335static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001336{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001337 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001338
1339 if (list_empty(&pf->lcache)) {
1340 /* Matching lazy line pattern */
1341 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001342 pf->pev->point.lazy_line);
Franck Bui-Huuf50c2162011-01-13 11:18:30 +01001343 if (ret <= 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001344 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001345 }
1346
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001347 return die_walk_lines(sp_die, probe_point_lazy_walker, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001348}
1349
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001350/* Callback parameter with return value */
1351struct dwarf_callback_param {
1352 void *data;
1353 int retval;
1354};
1355
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001356static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001357{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001358 struct dwarf_callback_param *param = data;
1359 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001360 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001361 Dwarf_Addr addr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001362
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001363 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001364 param->retval = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001365 else {
1366 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001367 if (dwarf_entrypc(in_die, &addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001368 pr_warning("Failed to get entry address of %s.\n",
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001369 dwarf_diename(in_die));
1370 param->retval = -ENOENT;
1371 return DWARF_CB_ABORT;
1372 }
1373 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001374 pf->addr += pp->offset;
1375 pr_debug("found inline addr: 0x%jx\n",
1376 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001377
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001378 param->retval = call_probe_finder(in_die, pf);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -04001379 if (param->retval < 0)
1380 return DWARF_CB_ABORT;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001381 }
1382
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001383 return DWARF_CB_OK;
1384}
1385
1386/* Search function from function name */
1387static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
1388{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001389 struct dwarf_callback_param *param = data;
1390 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001391 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001392
1393 /* Check tag and diename */
1394 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
Masami Hiramatsu82175632010-07-09 18:29:17 +09001395 !die_compare_name(sp_die, pp->function))
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001396 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001397
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001398 /* Check declared file */
1399 if (pp->file && strtailcmp(pp->file, dwarf_decl_file(sp_die)))
1400 return DWARF_CB_OK;
1401
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001402 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001403 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001404 dwarf_decl_line(sp_die, &pf->lno);
1405 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001406 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001407 } else if (!dwarf_func_inline(sp_die)) {
1408 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001409 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001410 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001411 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001412 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001413 pr_warning("Failed to get entry address of "
1414 "%s.\n", dwarf_diename(sp_die));
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001415 param->retval = -ENOENT;
1416 return DWARF_CB_ABORT;
1417 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001418 pf->addr += pp->offset;
1419 /* TODO: Check the address in this function */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001420 param->retval = call_probe_finder(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001421 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001422 } else {
1423 struct dwarf_callback_param _param = {.data = (void *)pf,
1424 .retval = 0};
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001425 /* Inlined function: search instances */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001426 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
1427 &_param);
1428 param->retval = _param.retval;
1429 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001430
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001431 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001432}
1433
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001434static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001435{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001436 struct dwarf_callback_param _param = {.data = (void *)pf,
1437 .retval = 0};
1438 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1439 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001440}
1441
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001442/* Find probe points from debuginfo */
1443static int find_probes(int fd, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001444{
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001445 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001446 Dwarf_Off off, noff;
1447 size_t cuhl;
1448 Dwarf_Die *diep;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001449 Dwarf *dbg = NULL;
1450 Dwfl *dwfl;
1451 Dwarf_Addr bias; /* Currently ignored */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001452 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001453
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001454 dbg = dwfl_init_offline_dwarf(fd, &dwfl, &bias);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001455 if (!dbg) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001456 pr_warning("No debug information found in the vmlinux - "
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001457 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsuf0c48012011-03-30 18:25:47 +09001458 close(fd); /* Without dwfl_end(), fd isn't closed. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001459 return -EBADF;
1460 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001461
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001462#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001463 /* Get the call frame information from this dwarf */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001464 pf->cfi = dwarf_getcfi(dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001465#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001466
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001467 off = 0;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001468 line_list__init(&pf->lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001469 /* Loop on CUs (Compilation Unit) */
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001470 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001471 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001472 diep = dwarf_offdie(dbg, off + cuhl, &pf->cu_die);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001473 if (!diep)
1474 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001475
1476 /* Check if target file is included. */
1477 if (pp->file)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001478 pf->fname = cu_find_realpath(&pf->cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001479 else
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001480 pf->fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001481
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001482 if (!pp->file || pf->fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001483 if (pp->function)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001484 ret = find_probe_point_by_func(pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001485 else if (pp->lazy_line)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001486 ret = find_probe_point_lazy(NULL, pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001487 else {
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001488 pf->lno = pp->line;
1489 ret = find_probe_point_by_line(pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001490 }
Arnaldo Carvalho de Melo8635bf62011-02-22 06:56:18 -03001491 if (ret < 0)
Arnaldo Carvalho de Melofbee6322011-02-21 13:23:57 -03001492 break;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001493 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001494 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001495 }
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001496 line_list__free(&pf->lcache);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001497 if (dwfl)
1498 dwfl_end(dwfl);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001499
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001500 return ret;
1501}
1502
1503/* Add a found probe point into trace event list */
1504static int add_probe_trace_event(Dwarf_Die *sp_die, struct probe_finder *pf)
1505{
1506 struct trace_event_finder *tf =
1507 container_of(pf, struct trace_event_finder, pf);
1508 struct probe_trace_event *tev;
1509 int ret, i;
1510
1511 /* Check number of tevs */
1512 if (tf->ntevs == tf->max_tevs) {
1513 pr_warning("Too many( > %d) probe point found.\n",
1514 tf->max_tevs);
1515 return -ERANGE;
1516 }
1517 tev = &tf->tevs[tf->ntevs++];
1518
1519 ret = convert_to_trace_point(sp_die, pf->addr, pf->pev->point.retprobe,
1520 &tev->point);
1521 if (ret < 0)
1522 return ret;
1523
1524 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
1525 tev->point.offset);
1526
1527 /* Find each argument */
1528 tev->nargs = pf->pev->nargs;
1529 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1530 if (tev->args == NULL)
1531 return -ENOMEM;
1532 for (i = 0; i < pf->pev->nargs; i++) {
1533 pf->pvar = &pf->pev->args[i];
1534 pf->tvar = &tev->args[i];
1535 ret = find_variable(sp_die, pf);
1536 if (ret != 0)
1537 return ret;
1538 }
1539
1540 return 0;
1541}
1542
1543/* Find probe_trace_events specified by perf_probe_event from debuginfo */
1544int find_probe_trace_events(int fd, struct perf_probe_event *pev,
1545 struct probe_trace_event **tevs, int max_tevs)
1546{
1547 struct trace_event_finder tf = {
1548 .pf = {.pev = pev, .callback = add_probe_trace_event},
1549 .max_tevs = max_tevs};
1550 int ret;
1551
1552 /* Allocate result tevs array */
1553 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
1554 if (*tevs == NULL)
1555 return -ENOMEM;
1556
1557 tf.tevs = *tevs;
1558 tf.ntevs = 0;
1559
1560 ret = find_probes(fd, &tf.pf);
1561 if (ret < 0) {
1562 free(*tevs);
1563 *tevs = NULL;
1564 return ret;
1565 }
1566
1567 return (ret < 0) ? ret : tf.ntevs;
1568}
1569
1570#define MAX_VAR_LEN 64
1571
1572/* Collect available variables in this scope */
1573static int collect_variables_cb(Dwarf_Die *die_mem, void *data)
1574{
1575 struct available_var_finder *af = data;
1576 struct variable_list *vl;
1577 char buf[MAX_VAR_LEN];
1578 int tag, ret;
1579
1580 vl = &af->vls[af->nvls - 1];
1581
1582 tag = dwarf_tag(die_mem);
1583 if (tag == DW_TAG_formal_parameter ||
1584 tag == DW_TAG_variable) {
1585 ret = convert_variable_location(die_mem, af->pf.addr,
1586 af->pf.fb_ops, NULL);
1587 if (ret == 0) {
1588 ret = die_get_varname(die_mem, buf, MAX_VAR_LEN);
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001589 pr_debug2("Add new var: %s\n", buf);
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001590 if (ret > 0)
1591 strlist__add(vl->vars, buf);
1592 }
1593 }
1594
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001595 if (af->child && dwarf_haspc(die_mem, af->pf.addr))
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001596 return DIE_FIND_CB_CONTINUE;
1597 else
1598 return DIE_FIND_CB_SIBLING;
1599}
1600
1601/* Add a found vars into available variables list */
1602static int add_available_vars(Dwarf_Die *sp_die, struct probe_finder *pf)
1603{
1604 struct available_var_finder *af =
1605 container_of(pf, struct available_var_finder, pf);
1606 struct variable_list *vl;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001607 Dwarf_Die die_mem, *scopes = NULL;
1608 int ret, nscopes;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001609
1610 /* Check number of tevs */
1611 if (af->nvls == af->max_vls) {
1612 pr_warning("Too many( > %d) probe point found.\n", af->max_vls);
1613 return -ERANGE;
1614 }
1615 vl = &af->vls[af->nvls++];
1616
1617 ret = convert_to_trace_point(sp_die, pf->addr, pf->pev->point.retprobe,
1618 &vl->point);
1619 if (ret < 0)
1620 return ret;
1621
1622 pr_debug("Probe point found: %s+%lu\n", vl->point.symbol,
1623 vl->point.offset);
1624
1625 /* Find local variables */
1626 vl->vars = strlist__new(true, NULL);
1627 if (vl->vars == NULL)
1628 return -ENOMEM;
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001629 af->child = true;
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001630 die_find_child(sp_die, collect_variables_cb, (void *)af, &die_mem);
1631
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001632 /* Find external variables */
1633 if (!af->externs)
1634 goto out;
1635 /* Don't need to search child DIE for externs. */
1636 af->child = false;
1637 nscopes = dwarf_getscopes_die(sp_die, &scopes);
1638 while (nscopes-- > 1)
1639 die_find_child(&scopes[nscopes], collect_variables_cb,
1640 (void *)af, &die_mem);
1641 if (scopes)
1642 free(scopes);
1643
1644out:
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001645 if (strlist__empty(vl->vars)) {
1646 strlist__delete(vl->vars);
1647 vl->vars = NULL;
1648 }
1649
1650 return ret;
1651}
1652
1653/* Find available variables at given probe point */
1654int find_available_vars_at(int fd, struct perf_probe_event *pev,
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001655 struct variable_list **vls, int max_vls,
1656 bool externs)
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001657{
1658 struct available_var_finder af = {
1659 .pf = {.pev = pev, .callback = add_available_vars},
Masami Hiramatsufb8c5a52010-10-21 19:13:35 +09001660 .max_vls = max_vls, .externs = externs};
Masami Hiramatsucf6eb482010-10-21 19:13:23 +09001661 int ret;
1662
1663 /* Allocate result vls array */
1664 *vls = zalloc(sizeof(struct variable_list) * max_vls);
1665 if (*vls == NULL)
1666 return -ENOMEM;
1667
1668 af.vls = *vls;
1669 af.nvls = 0;
1670
1671 ret = find_probes(fd, &af.pf);
1672 if (ret < 0) {
1673 /* Free vlist for error */
1674 while (af.nvls--) {
1675 if (af.vls[af.nvls].point.symbol)
1676 free(af.vls[af.nvls].point.symbol);
1677 if (af.vls[af.nvls].vars)
1678 strlist__delete(af.vls[af.nvls].vars);
1679 }
1680 free(af.vls);
1681 *vls = NULL;
1682 return ret;
1683 }
1684
1685 return (ret < 0) ? ret : af.nvls;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001686}
1687
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001688/* Reverse search */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001689int find_perf_probe_point(unsigned long addr, struct perf_probe_point *ppt)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001690{
1691 Dwarf_Die cudie, spdie, indie;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001692 Dwarf *dbg = NULL;
1693 Dwfl *dwfl = NULL;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001694 Dwarf_Line *line;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001695 Dwarf_Addr laddr, eaddr, bias = 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001696 const char *tmp;
1697 int lineno, ret = 0;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001698 bool found = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001699
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001700 /* Open the live linux kernel */
1701 dbg = dwfl_init_live_kernel_dwarf(addr, &dwfl, &bias);
1702 if (!dbg) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001703 pr_warning("No debug information found in the vmlinux - "
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001704 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1705 ret = -EINVAL;
1706 goto end;
1707 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001708
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001709 /* Adjust address with bias */
1710 addr += bias;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001711 /* Find cu die */
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001712 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr - bias, &cudie)) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001713 pr_warning("Failed to find debug information for address %lx\n",
1714 addr);
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001715 ret = -EINVAL;
1716 goto end;
1717 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001718
1719 /* Find a corresponding line */
1720 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1721 if (line) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001722 if (dwarf_lineaddr(line, &laddr) == 0 &&
1723 (Dwarf_Addr)addr == laddr &&
1724 dwarf_lineno(line, &lineno) == 0) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001725 tmp = dwarf_linesrc(line, NULL, NULL);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001726 if (tmp) {
1727 ppt->line = lineno;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001728 ppt->file = strdup(tmp);
1729 if (ppt->file == NULL) {
1730 ret = -ENOMEM;
1731 goto end;
1732 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001733 found = true;
1734 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001735 }
1736 }
1737
1738 /* Find a corresponding function */
1739 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1740 tmp = dwarf_diename(&spdie);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001741 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001742 goto end;
1743
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001744 if (ppt->line) {
1745 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr,
1746 &indie)) {
1747 /* addr in an inline function */
1748 tmp = dwarf_diename(&indie);
1749 if (!tmp)
1750 goto end;
1751 ret = dwarf_decl_line(&indie, &lineno);
1752 } else {
1753 if (eaddr == addr) { /* Function entry */
1754 lineno = ppt->line;
1755 ret = 0;
1756 } else
1757 ret = dwarf_decl_line(&spdie, &lineno);
1758 }
1759 if (ret == 0) {
1760 /* Make a relative line number */
1761 ppt->line -= lineno;
1762 goto found;
1763 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001764 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001765 /* We don't have a line number, let's use offset */
1766 ppt->offset = addr - (unsigned long)eaddr;
1767found:
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001768 ppt->function = strdup(tmp);
1769 if (ppt->function == NULL) {
1770 ret = -ENOMEM;
1771 goto end;
1772 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001773 found = true;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001774 }
1775
1776end:
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001777 if (dwfl)
1778 dwfl_end(dwfl);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001779 if (ret >= 0)
1780 ret = found ? 1 : 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001781 return ret;
1782}
1783
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001784/* Add a line and store the src path */
1785static int line_range_add_line(const char *src, unsigned int lineno,
1786 struct line_range *lr)
1787{
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001788 /* Copy source path */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001789 if (!lr->path) {
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001790 lr->path = strdup(src);
1791 if (lr->path == NULL)
1792 return -ENOMEM;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001793 }
1794 return line_list__add_line(&lr->line_list, lineno);
1795}
1796
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001797static int line_range_walk_cb(const char *fname, int lineno,
1798 Dwarf_Addr addr __used,
1799 void *data)
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001800{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001801 struct line_finder *lf = data;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001802
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001803 if ((strtailcmp(fname, lf->fname) != 0) ||
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001804 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001805 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001806
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001807 if (line_range_add_line(fname, lineno, lf->lr) < 0)
1808 return -EINVAL;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001809
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001810 return 0;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001811}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001812
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001813/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001814static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001815{
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001816 int ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001817
Masami Hiramatsu4cc9cec2011-01-13 21:45:58 +09001818 ret = die_walk_lines(sp_die ?: &lf->cu_die, line_range_walk_cb, lf);
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001819
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001820 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001821 if (ret >= 0)
1822 if (!list_empty(&lf->lr->line_list))
1823 ret = lf->found = 1;
1824 else
1825 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001826 else {
1827 free(lf->lr->path);
1828 lf->lr->path = NULL;
1829 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001830 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001831}
1832
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001833static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1834{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001835 struct dwarf_callback_param *param = data;
1836
1837 param->retval = find_line_range_by_line(in_die, param->data);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001838 return DWARF_CB_ABORT; /* No need to find other instances */
1839}
1840
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001841/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001842static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001843{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001844 struct dwarf_callback_param *param = data;
1845 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001846 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001847
Masami Hiramatsu7d216352011-03-30 18:25:41 +09001848 /* Check declared file */
1849 if (lr->file && strtailcmp(lr->file, dwarf_decl_file(sp_die)))
1850 return DWARF_CB_OK;
1851
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001852 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
Masami Hiramatsu82175632010-07-09 18:29:17 +09001853 die_compare_name(sp_die, lr->function)) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001854 lf->fname = dwarf_decl_file(sp_die);
1855 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001856 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001857 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001858 if (lf->lno_s < 0) /* Overflow */
1859 lf->lno_s = INT_MAX;
1860 lf->lno_e = lr->offset + lr->end;
1861 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001862 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001863 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001864 lr->start = lf->lno_s;
1865 lr->end = lf->lno_e;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001866 if (dwarf_func_inline(sp_die)) {
1867 struct dwarf_callback_param _param;
1868 _param.data = (void *)lf;
1869 _param.retval = 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001870 dwarf_func_inline_instances(sp_die,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001871 line_range_inline_cb,
1872 &_param);
1873 param->retval = _param.retval;
1874 } else
1875 param->retval = find_line_range_by_line(sp_die, lf);
1876 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001877 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001878 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001879}
1880
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001881static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001882{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001883 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1884 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1885 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001886}
1887
1888int find_line_range(int fd, struct line_range *lr)
1889{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001890 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001891 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001892 Dwarf_Off off = 0, noff;
1893 size_t cuhl;
1894 Dwarf_Die *diep;
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001895 Dwarf *dbg = NULL;
1896 Dwfl *dwfl;
1897 Dwarf_Addr bias; /* Currently ignored */
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001898 const char *comp_dir;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001899
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001900 dbg = dwfl_init_offline_dwarf(fd, &dwfl, &bias);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001901 if (!dbg) {
Masami Hiramatsu0e43e5d2010-12-17 22:12:11 +09001902 pr_warning("No debug information found in the vmlinux - "
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001903 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
Masami Hiramatsuf0c48012011-03-30 18:25:47 +09001904 close(fd); /* Without dwfl_end(), fd isn't closed. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001905 return -EBADF;
1906 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001907
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001908 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001909 while (!lf.found && ret >= 0) {
1910 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001911 break;
1912
1913 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001914 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1915 if (!diep)
1916 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001917
1918 /* Check if target file is included. */
1919 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001920 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001921 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001922 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001923
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001924 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001925 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001926 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001927 else {
1928 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001929 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001930 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001931 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001932 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001933 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001934 }
Masami Hiramatsu6a330a32010-07-09 18:29:11 +09001935
1936 /* Store comp_dir */
1937 if (lf.found) {
1938 comp_dir = cu_get_comp_dir(&lf.cu_die);
1939 if (comp_dir) {
1940 lr->comp_dir = strdup(comp_dir);
1941 if (!lr->comp_dir)
1942 ret = -ENOMEM;
1943 }
1944 }
1945
Masami Hiramatsu7cf0b792010-07-09 18:28:59 +09001946 pr_debug("path: %s\n", lr->path);
Masami Hiramatsu469b9b82010-10-21 19:13:41 +09001947 dwfl_end(dwfl);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001948 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001949}
1950