blob: baf665383498ec54042edee05ea7783c3398967f [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 Hiramatsu2a9c8c32010-02-25 08:36:12 -050036#include "string.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
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040061/*
62 * Find a src file from a DWARF tag path. Prepend optional source path prefix
63 * and chop off leading directories that do not exist. Result is passed back as
64 * a newly allocated path on success.
65 * Return 0 if file was found and readable, -errno otherwise.
66 */
67static int get_real_path(const char *raw_path, char **new_path)
68{
69 if (!symbol_conf.source_prefix) {
70 if (access(raw_path, R_OK) == 0) {
71 *new_path = strdup(raw_path);
72 return 0;
73 } else
74 return -errno;
75 }
76
77 *new_path = malloc((strlen(symbol_conf.source_prefix) +
78 strlen(raw_path) + 2));
79 if (!*new_path)
80 return -ENOMEM;
81
82 for (;;) {
83 sprintf(*new_path, "%s/%s", symbol_conf.source_prefix,
84 raw_path);
85
86 if (access(*new_path, R_OK) == 0)
87 return 0;
88
89 switch (errno) {
90 case ENAMETOOLONG:
91 case ENOENT:
92 case EROFS:
93 case EFAULT:
94 raw_path = strchr(++raw_path, '/');
95 if (!raw_path) {
96 free(*new_path);
97 *new_path = NULL;
98 return -ENOENT;
99 }
100 continue;
101
102 default:
103 free(*new_path);
104 *new_path = NULL;
105 return -errno;
106 }
107 }
108}
109
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500110/* Line number list operations */
111
112/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400113static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500114{
115 struct line_node *ln;
116 struct list_head *p;
117
118 /* Reverse search, because new line will be the last one */
119 list_for_each_entry_reverse(ln, head, list) {
120 if (ln->line < line) {
121 p = &ln->list;
122 goto found;
123 } else if (ln->line == line) /* Already exist */
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400124 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500125 }
126 /* List is empty, or the smallest entry */
127 p = head;
128found:
129 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400130 ln = zalloc(sizeof(struct line_node));
131 if (ln == NULL)
132 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500133 ln->line = line;
134 INIT_LIST_HEAD(&ln->list);
135 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400136 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500137}
138
139/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400140static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500141{
142 struct line_node *ln;
143
144 /* Reverse search, because new line will be the last one */
145 list_for_each_entry(ln, head, list)
146 if (ln->line == line)
147 return 1;
148
149 return 0;
150}
151
152/* Init line number list */
153static void line_list__init(struct list_head *head)
154{
155 INIT_LIST_HEAD(head);
156}
157
158/* Free line number list */
159static void line_list__free(struct list_head *head)
160{
161 struct line_node *ln;
162 while (!list_empty(head)) {
163 ln = list_first_entry(head, struct line_node, list);
164 list_del(&ln->list);
165 free(ln);
166 }
167}
168
169/* Dwarf wrappers */
170
171/* Find the realpath of the target file. */
172static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400173{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500174 Dwarf_Files *files;
175 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300176 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400177 int ret;
178
179 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500180 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500181
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500182 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500183 if (ret != 0)
184 return NULL;
185
186 for (i = 0; i < nfiles; i++) {
187 src = dwarf_filesrc(files, i, NULL, NULL);
188 if (strtailcmp(src, fname) == 0)
189 break;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500190 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400191 if (i == nfiles)
192 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500193 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500194}
195
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400196/* Compare diename and tname */
197static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
198{
199 const char *name;
200 name = dwarf_diename(dw_die);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400201 return name ? strcmp(tname, name) : -1;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400202}
203
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400204/* Get type die, but skip qualifiers and typedef */
205static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
206{
207 Dwarf_Attribute attr;
208 int tag;
209
210 do {
211 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
212 dwarf_formref_die(&attr, die_mem) == NULL)
213 return NULL;
214
215 tag = dwarf_tag(die_mem);
216 vr_die = die_mem;
217 } while (tag == DW_TAG_const_type ||
218 tag == DW_TAG_restrict_type ||
219 tag == DW_TAG_volatile_type ||
220 tag == DW_TAG_shared_type ||
221 tag == DW_TAG_typedef);
222
223 return die_mem;
224}
225
Masami Hiramatsu49849122010-04-12 13:17:15 -0400226static bool die_is_signed_type(Dwarf_Die *tp_die)
227{
228 Dwarf_Attribute attr;
229 Dwarf_Word ret;
230
231 if (dwarf_attr(tp_die, DW_AT_encoding, &attr) == NULL ||
232 dwarf_formudata(&attr, &ret) != 0)
233 return false;
234
235 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
236 ret == DW_ATE_signed_fixed);
237}
238
239static int die_get_byte_size(Dwarf_Die *tp_die)
240{
241 Dwarf_Attribute attr;
242 Dwarf_Word ret;
243
244 if (dwarf_attr(tp_die, DW_AT_byte_size, &attr) == NULL ||
245 dwarf_formudata(&attr, &ret) != 0)
246 return 0;
247
248 return (int)ret;
249}
250
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300251/* Get data_member_location offset */
252static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
253{
254 Dwarf_Attribute attr;
255 Dwarf_Op *expr;
256 size_t nexpr;
257 int ret;
258
259 if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
260 return -ENOENT;
261
262 if (dwarf_formudata(&attr, offs) != 0) {
263 /* DW_AT_data_member_location should be DW_OP_plus_uconst */
264 ret = dwarf_getlocation(&attr, &expr, &nexpr);
265 if (ret < 0 || nexpr == 0)
266 return -ENOENT;
267
268 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
269 pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
270 expr[0].atom, nexpr);
271 return -ENOTSUP;
272 }
273 *offs = (Dwarf_Word)expr[0].number;
274 }
275 return 0;
276}
277
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400278/* Return values for die_find callbacks */
279enum {
280 DIE_FIND_CB_FOUND = 0, /* End of Search */
281 DIE_FIND_CB_CHILD = 1, /* Search only children */
282 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
283 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
284};
285
286/* Search a child die */
287static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
288 int (*callback)(Dwarf_Die *, void *),
289 void *data, Dwarf_Die *die_mem)
290{
291 Dwarf_Die child_die;
292 int ret;
293
294 ret = dwarf_child(rt_die, die_mem);
295 if (ret != 0)
296 return NULL;
297
298 do {
299 ret = callback(die_mem, data);
300 if (ret == DIE_FIND_CB_FOUND)
301 return die_mem;
302
303 if ((ret & DIE_FIND_CB_CHILD) &&
304 die_find_child(die_mem, callback, data, &child_die)) {
305 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
306 return die_mem;
307 }
308 } while ((ret & DIE_FIND_CB_SIBLING) &&
309 dwarf_siblingof(die_mem, die_mem) == 0);
310
311 return NULL;
312}
313
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500314struct __addr_die_search_param {
315 Dwarf_Addr addr;
316 Dwarf_Die *die_mem;
317};
318
319static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
320{
321 struct __addr_die_search_param *ad = data;
322
323 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
324 dwarf_haspc(fn_die, ad->addr)) {
325 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
326 return DWARF_CB_ABORT;
327 }
328 return DWARF_CB_OK;
329}
330
331/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400332static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
333 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500334{
335 struct __addr_die_search_param ad;
336 ad.addr = addr;
337 ad.die_mem = die_mem;
338 /* dwarf_getscopes can't find subprogram. */
339 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
340 return NULL;
341 else
342 return die_mem;
343}
344
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400345/* die_find callback for inline function search */
346static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
347{
348 Dwarf_Addr *addr = data;
349
350 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
351 dwarf_haspc(die_mem, *addr))
352 return DIE_FIND_CB_FOUND;
353
354 return DIE_FIND_CB_CONTINUE;
355}
356
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500357/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400358static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
359 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500360{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400361 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500362}
363
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400364static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400365{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400366 const char *name = data;
367 int tag;
368
369 tag = dwarf_tag(die_mem);
370 if ((tag == DW_TAG_formal_parameter ||
371 tag == DW_TAG_variable) &&
372 (die_compare_name(die_mem, name) == 0))
373 return DIE_FIND_CB_FOUND;
374
375 return DIE_FIND_CB_CONTINUE;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400376}
377
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400378/* Find a variable called 'name' */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500379static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
380 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500381{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400382 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
383 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400384}
385
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400386static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
387{
388 const char *name = data;
389
390 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
391 (die_compare_name(die_mem, name) == 0))
392 return DIE_FIND_CB_FOUND;
393
394 return DIE_FIND_CB_SIBLING;
395}
396
397/* Find a member called 'name' */
398static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
399 Dwarf_Die *die_mem)
400{
401 return die_find_child(st_die, __die_find_member_cb, (void *)name,
402 die_mem);
403}
404
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400405/*
406 * Probe finder related functions
407 */
408
409/* Show a location */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400410static int convert_location(Dwarf_Op *op, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400411{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500412 unsigned int regn;
413 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400414 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400415 const char *regs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400416 struct kprobe_trace_arg *tvar = pf->tvar;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400417
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400418 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500419 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400420 if (pf->fb_ops == NULL) {
421 pr_warning("The attribute of frame base is not "
422 "supported.\n");
423 return -ENOTSUP;
424 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400425 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500426 offs = op->number;
427 op = &pf->fb_ops[0];
428 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400429
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500430 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
431 regn = op->atom - DW_OP_breg0;
432 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400433 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500434 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
435 regn = op->atom - DW_OP_reg0;
436 } else if (op->atom == DW_OP_bregx) {
437 regn = op->number;
438 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400439 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500440 } else if (op->atom == DW_OP_regx) {
441 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400442 } else {
443 pr_warning("DW_OP %x is not supported.\n", op->atom);
444 return -ENOTSUP;
445 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400446
447 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400448 if (!regs) {
Ian Munsiecd932c52010-04-20 16:58:32 +1000449 pr_warning("Mapping for DWARF register number %u missing on this architecture.", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400450 return -ERANGE;
451 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400452
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400453 tvar->value = strdup(regs);
454 if (tvar->value == NULL)
455 return -ENOMEM;
456
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400457 if (ref) {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400458 tvar->ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
459 if (tvar->ref == NULL)
460 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400461 tvar->ref->offset = (long)offs;
462 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400463 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400464}
465
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400466static int convert_variable_type(Dwarf_Die *vr_die,
467 struct kprobe_trace_arg *targ)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400468{
469 Dwarf_Die type;
470 char buf[16];
471 int ret;
472
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400473 if (die_get_real_type(vr_die, &type) == NULL) {
474 pr_warning("Failed to get a type information of %s.\n",
475 dwarf_diename(vr_die));
476 return -ENOENT;
477 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400478
479 ret = die_get_byte_size(&type) * 8;
480 if (ret) {
481 /* Check the bitwidth */
482 if (ret > MAX_BASIC_TYPE_BITS) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400483 pr_info("%s exceeds max-bitwidth."
484 " Cut down to %d bits.\n",
485 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400486 ret = MAX_BASIC_TYPE_BITS;
487 }
488
489 ret = snprintf(buf, 16, "%c%d",
490 die_is_signed_type(&type) ? 's' : 'u', ret);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400491 if (ret < 0 || ret >= 16) {
492 if (ret >= 16)
493 ret = -E2BIG;
494 pr_warning("Failed to convert variable type: %s\n",
495 strerror(-ret));
496 return ret;
497 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400498 targ->type = strdup(buf);
499 if (targ->type == NULL)
500 return -ENOMEM;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400501 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400502 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400503}
504
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400505static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400506 struct perf_probe_arg_field *field,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400507 struct kprobe_trace_arg_ref **ref_ptr,
508 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400509{
510 struct kprobe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400511 Dwarf_Die type;
512 Dwarf_Word offs;
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300513 int ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400514
515 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400516 if (die_get_real_type(vr_die, &type) == NULL) {
517 pr_warning("Failed to get the type of %s.\n", varname);
518 return -ENOENT;
519 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400520
521 /* Check the pointer and dereference */
522 if (dwarf_tag(&type) == DW_TAG_pointer_type) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400523 if (!field->ref) {
524 pr_err("Semantic error: %s must be referred by '->'\n",
525 field->name);
526 return -EINVAL;
527 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400528 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400529 if (die_get_real_type(&type, &type) == NULL) {
530 pr_warning("Failed to get the type of %s.\n", varname);
531 return -ENOENT;
532 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400533 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400534 if (dwarf_tag(&type) != DW_TAG_structure_type) {
535 pr_warning("%s is not a data structure.\n", varname);
536 return -EINVAL;
537 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400538
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400539 ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
540 if (ref == NULL)
541 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400542 if (*ref_ptr)
543 (*ref_ptr)->next = ref;
544 else
545 *ref_ptr = ref;
546 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400547 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400548 if (dwarf_tag(&type) != DW_TAG_structure_type) {
549 pr_warning("%s is not a data structure.\n", varname);
550 return -EINVAL;
551 }
552 if (field->ref) {
553 pr_err("Semantic error: %s must be referred by '.'\n",
554 field->name);
555 return -EINVAL;
556 }
557 if (!ref) {
558 pr_warning("Structure on a register is not "
559 "supported yet.\n");
560 return -ENOTSUP;
561 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400562 }
563
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400564 if (die_find_member(&type, field->name, die_mem) == NULL) {
565 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
566 dwarf_diename(&type), field->name);
567 return -EINVAL;
568 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400569
570 /* Get the offset of the field */
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300571 ret = die_get_data_member_location(die_mem, &offs);
572 if (ret < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400573 pr_warning("Failed to get the offset of %s.\n", field->name);
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300574 return ret;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400575 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400576 ref->offset += (long)offs;
577
578 /* Converting next field */
579 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400580 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300581 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400582 else
583 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400584}
585
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400586/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400587static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400588{
589 Dwarf_Attribute attr;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400590 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500591 Dwarf_Op *expr;
592 size_t nexpr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400593 int ret;
594
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500595 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400596 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500597 /* TODO: handle more than 1 exprs */
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400598 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500599 if (ret <= 0 || nexpr == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400600 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500601
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400602 ret = convert_location(expr, pf);
603 if (ret == 0 && pf->pvar->field) {
604 ret = convert_variable_fields(vr_die, pf->pvar->var,
605 pf->pvar->field, &pf->tvar->ref,
606 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400607 vr_die = &die_mem;
608 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400609 if (ret == 0) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400610 if (pf->pvar->type) {
611 pf->tvar->type = strdup(pf->pvar->type);
612 if (pf->tvar->type == NULL)
613 ret = -ENOMEM;
614 } else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400615 ret = convert_variable_type(vr_die, pf->tvar);
616 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500617 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400618 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400619error:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500620 /* TODO: Support const_value */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400621 pr_err("Failed to find the location of %s at this address.\n"
622 " Perhaps, it has been optimized out.\n", pf->pvar->var);
623 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400624}
625
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400626/* Find a variable in a subprogram die */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400627static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400628{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500629 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400630 char buf[32], *ptr;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400631 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400632
Masami Hiramatsu48481932010-04-12 13:16:53 -0400633 /* TODO: Support arrays */
634 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400635 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400636 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400637 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
638 if (ret < 0)
639 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400640 ptr = strchr(buf, ':'); /* Change type separator to _ */
641 if (ptr)
642 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400643 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400644 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400645 if (pf->tvar->name == NULL)
646 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400647
648 if (!is_c_varname(pf->pvar->var)) {
649 /* Copy raw parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400650 pf->tvar->value = strdup(pf->pvar->var);
651 if (pf->tvar->value == NULL)
652 return -ENOMEM;
653 else
654 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400655 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400656
657 pr_debug("Searching '%s' variable in context.\n",
658 pf->pvar->var);
659 /* Search child die for local variables and parameters. */
660 if (!die_find_variable(sp_die, pf->pvar->var, &vr_die)) {
661 pr_warning("Failed to find '%s' in this function.\n",
662 pf->pvar->var);
663 return -ENOENT;
664 }
665 return convert_variable(&vr_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400666}
667
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400668/* Show a probe point to output buffer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400669static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400670{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400671 struct kprobe_trace_event *tev;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500672 Dwarf_Addr eaddr;
673 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500674 const char *name;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400675 int ret, i;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500676 Dwarf_Attribute fb_attr;
677 size_t nops;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400678
Masami Hiramatsuef4a3562010-04-21 15:56:40 -0400679 if (pf->ntevs == pf->max_tevs) {
680 pr_warning("Too many( > %d) probe point found.\n",
681 pf->max_tevs);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400682 return -ERANGE;
683 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400684 tev = &pf->tevs[pf->ntevs++];
685
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500686 /* If no real subprogram, find a real one */
687 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400688 sp_die = die_find_real_subprogram(&pf->cu_die,
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500689 pf->addr, &die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400690 if (!sp_die) {
691 pr_warning("Failed to find probe point in any "
692 "functions.\n");
693 return -ENOENT;
694 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500695 }
696
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400697 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500698 name = dwarf_diename(sp_die);
699 if (name) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400700 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
701 pr_warning("Failed to get entry pc of %s\n",
702 dwarf_diename(sp_die));
703 return -ENOENT;
704 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400705 tev->point.symbol = strdup(name);
706 if (tev->point.symbol == NULL)
707 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400708 tev->point.offset = (unsigned long)(pf->addr - eaddr);
709 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400710 /* This function has no name. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400711 tev->point.offset = (unsigned long)pf->addr;
712
713 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
714 tev->point.offset);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400715
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500716 /* Get the frame base attribute/ops */
717 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400718 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400719 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500720 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400721#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400722 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
723 pf->cfi != NULL) {
724 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400725 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
726 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
727 pr_warning("Failed to get CFA on 0x%jx\n",
728 (uintmax_t)pf->addr);
729 return -ENOENT;
730 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400731#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400732 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500733
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400734 /* Find each argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400735 tev->nargs = pf->pev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400736 tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
737 if (tev->args == NULL)
738 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400739 for (i = 0; i < pf->pev->nargs; i++) {
740 pf->pvar = &pf->pev->args[i];
741 pf->tvar = &tev->args[i];
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400742 ret = find_variable(sp_die, pf);
743 if (ret != 0)
744 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400745 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500746
747 /* *pf->fb_ops will be cached in libdw. Don't free it. */
748 pf->fb_ops = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400749 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400750}
751
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400752/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400753static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400754{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500755 Dwarf_Lines *lines;
756 Dwarf_Line *line;
757 size_t nlines, i;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500758 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500759 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400760 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400761
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400762 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
763 pr_warning("No source lines found in this CU.\n");
764 return -ENOENT;
765 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400766
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400767 for (i = 0; i < nlines && ret == 0; i++) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500768 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400769 if (dwarf_lineno(line, &lineno) != 0 ||
770 lineno != pf->lno)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400771 continue;
772
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500773 /* TODO: Get fileno from line, but how? */
774 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
775 continue;
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400776
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400777 if (dwarf_lineaddr(line, &addr) != 0) {
778 pr_warning("Failed to get the address of the line.\n");
779 return -ENOENT;
780 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500781 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
782 (int)i, lineno, (uintmax_t)addr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400783 pf->addr = addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500784
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400785 ret = convert_probe_point(NULL, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400786 /* Continuing, because target line might be inlined. */
787 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400788 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400789}
790
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500791/* Find lines which match lazy pattern */
792static int find_lazy_match_lines(struct list_head *head,
793 const char *fname, const char *pat)
794{
795 char *fbuf, *p1, *p2;
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300796 int fd, line, nlines = -1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500797 struct stat st;
798
799 fd = open(fname, O_RDONLY);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400800 if (fd < 0) {
801 pr_warning("Failed to open %s: %s\n", fname, strerror(-fd));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300802 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400803 }
804
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300805 if (fstat(fd, &st) < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400806 pr_warning("Failed to get the size of %s: %s\n",
807 fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300808 nlines = -errno;
809 goto out_close;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400810 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300811
812 nlines = -ENOMEM;
813 fbuf = malloc(st.st_size + 2);
814 if (fbuf == NULL)
815 goto out_close;
816 if (read(fd, fbuf, st.st_size) < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400817 pr_warning("Failed to read %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300818 nlines = -errno;
819 goto out_free_fbuf;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400820 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500821 fbuf[st.st_size] = '\n'; /* Dummy line */
822 fbuf[st.st_size + 1] = '\0';
823 p1 = fbuf;
824 line = 1;
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300825 nlines = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500826 while ((p2 = strchr(p1, '\n')) != NULL) {
827 *p2 = '\0';
828 if (strlazymatch(p1, pat)) {
829 line_list__add_line(head, line);
830 nlines++;
831 }
832 line++;
833 p1 = p2 + 1;
834 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300835out_free_fbuf:
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500836 free(fbuf);
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300837out_close:
838 close(fd);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500839 return nlines;
840}
841
842/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400843static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500844{
845 Dwarf_Lines *lines;
846 Dwarf_Line *line;
847 size_t nlines, i;
848 Dwarf_Addr addr;
849 Dwarf_Die die_mem;
850 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400851 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500852
853 if (list_empty(&pf->lcache)) {
854 /* Matching lazy line pattern */
855 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400856 pf->pev->point.lazy_line);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400857 if (ret == 0) {
858 pr_debug("No matched lines found in %s.\n", pf->fname);
859 return 0;
860 } else if (ret < 0)
861 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500862 }
863
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400864 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
865 pr_warning("No source lines found in this CU.\n");
866 return -ENOENT;
867 }
868
869 for (i = 0; i < nlines && ret >= 0; i++) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500870 line = dwarf_onesrcline(lines, i);
871
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400872 if (dwarf_lineno(line, &lineno) != 0 ||
873 !line_list__has_line(&pf->lcache, lineno))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500874 continue;
875
876 /* TODO: Get fileno from line, but how? */
877 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
878 continue;
879
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400880 if (dwarf_lineaddr(line, &addr) != 0) {
881 pr_debug("Failed to get the address of line %d.\n",
882 lineno);
883 continue;
884 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500885 if (sp_die) {
886 /* Address filtering 1: does sp_die include addr? */
887 if (!dwarf_haspc(sp_die, addr))
888 continue;
889 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400890 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500891 continue;
892 }
893
894 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
895 (int)i, lineno, (unsigned long long)addr);
896 pf->addr = addr;
897
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400898 ret = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500899 /* Continuing, because target line might be inlined. */
900 }
901 /* TODO: deallocate lines, but how? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400902 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500903}
904
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400905/* Callback parameter with return value */
906struct dwarf_callback_param {
907 void *data;
908 int retval;
909};
910
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500911static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400912{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400913 struct dwarf_callback_param *param = data;
914 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400915 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400916 Dwarf_Addr addr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400917
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500918 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400919 param->retval = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500920 else {
921 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400922 if (dwarf_entrypc(in_die, &addr) != 0) {
923 pr_warning("Failed to get entry pc of %s.\n",
924 dwarf_diename(in_die));
925 param->retval = -ENOENT;
926 return DWARF_CB_ABORT;
927 }
928 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500929 pf->addr += pp->offset;
930 pr_debug("found inline addr: 0x%jx\n",
931 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500932
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400933 param->retval = convert_probe_point(in_die, pf);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -0400934 if (param->retval < 0)
935 return DWARF_CB_ABORT;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500936 }
937
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500938 return DWARF_CB_OK;
939}
940
941/* Search function from function name */
942static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
943{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400944 struct dwarf_callback_param *param = data;
945 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400946 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500947
948 /* Check tag and diename */
949 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
950 die_compare_name(sp_die, pp->function) != 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400951 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500952
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500953 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500954 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500955 dwarf_decl_line(sp_die, &pf->lno);
956 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400957 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500958 } else if (!dwarf_func_inline(sp_die)) {
959 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500960 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400961 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500962 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400963 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
964 pr_warning("Failed to get entry pc of %s.\n",
965 dwarf_diename(sp_die));
966 param->retval = -ENOENT;
967 return DWARF_CB_ABORT;
968 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500969 pf->addr += pp->offset;
970 /* TODO: Check the address in this function */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400971 param->retval = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500972 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400973 } else {
974 struct dwarf_callback_param _param = {.data = (void *)pf,
975 .retval = 0};
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500976 /* Inlined function: search instances */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400977 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
978 &_param);
979 param->retval = _param.retval;
980 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500981
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400982 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400983}
984
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400985static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400986{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400987 struct dwarf_callback_param _param = {.data = (void *)pf,
988 .retval = 0};
989 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
990 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400991}
992
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400993/* Find kprobe_trace_events specified by perf_probe_event from debuginfo */
994int find_kprobe_trace_events(int fd, struct perf_probe_event *pev,
Masami Hiramatsuef4a3562010-04-21 15:56:40 -0400995 struct kprobe_trace_event **tevs, int max_tevs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400996{
Masami Hiramatsuef4a3562010-04-21 15:56:40 -0400997 struct probe_finder pf = {.pev = pev, .max_tevs = max_tevs};
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400998 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500999 Dwarf_Off off, noff;
1000 size_t cuhl;
1001 Dwarf_Die *diep;
1002 Dwarf *dbg;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001003 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001004
Masami Hiramatsuef4a3562010-04-21 15:56:40 -04001005 pf.tevs = zalloc(sizeof(struct kprobe_trace_event) * max_tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001006 if (pf.tevs == NULL)
1007 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001008 *tevs = pf.tevs;
1009 pf.ntevs = 0;
1010
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001011 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001012 if (!dbg) {
1013 pr_warning("No dwarf info found in the vmlinux - "
1014 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -03001015 free(pf.tevs);
1016 *tevs = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001017 return -EBADF;
1018 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001019
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001020#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001021 /* Get the call frame information from this dwarf */
1022 pf.cfi = dwarf_getcfi(dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001023#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001024
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001025 off = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001026 line_list__init(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001027 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001028 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) &&
1029 ret >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001030 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001031 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
1032 if (!diep)
1033 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001034
1035 /* Check if target file is included. */
1036 if (pp->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001037 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001038 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001039 pf.fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001040
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001041 if (!pp->file || pf.fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001042 if (pp->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001043 ret = find_probe_point_by_func(&pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001044 else if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001045 ret = find_probe_point_lazy(NULL, &pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001046 else {
1047 pf.lno = pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001048 ret = find_probe_point_by_line(&pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001049 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001050 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001051 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001052 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001053 line_list__free(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001054 dwarf_end(dbg);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001055
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001056 return (ret < 0) ? ret : pf.ntevs;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001057}
1058
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001059/* Reverse search */
1060int find_perf_probe_point(int fd, unsigned long addr,
1061 struct perf_probe_point *ppt)
1062{
1063 Dwarf_Die cudie, spdie, indie;
1064 Dwarf *dbg;
1065 Dwarf_Line *line;
1066 Dwarf_Addr laddr, eaddr;
1067 const char *tmp;
1068 int lineno, ret = 0;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001069 bool found = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001070
1071 dbg = dwarf_begin(fd, DWARF_C_READ);
1072 if (!dbg)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001073 return -EBADF;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001074
1075 /* Find cu die */
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001076 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie)) {
1077 ret = -EINVAL;
1078 goto end;
1079 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001080
1081 /* Find a corresponding line */
1082 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1083 if (line) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001084 if (dwarf_lineaddr(line, &laddr) == 0 &&
1085 (Dwarf_Addr)addr == laddr &&
1086 dwarf_lineno(line, &lineno) == 0) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001087 tmp = dwarf_linesrc(line, NULL, NULL);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001088 if (tmp) {
1089 ppt->line = lineno;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001090 ppt->file = strdup(tmp);
1091 if (ppt->file == NULL) {
1092 ret = -ENOMEM;
1093 goto end;
1094 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001095 found = true;
1096 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001097 }
1098 }
1099
1100 /* Find a corresponding function */
1101 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1102 tmp = dwarf_diename(&spdie);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001103 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001104 goto end;
1105
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001106 if (ppt->line) {
1107 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr,
1108 &indie)) {
1109 /* addr in an inline function */
1110 tmp = dwarf_diename(&indie);
1111 if (!tmp)
1112 goto end;
1113 ret = dwarf_decl_line(&indie, &lineno);
1114 } else {
1115 if (eaddr == addr) { /* Function entry */
1116 lineno = ppt->line;
1117 ret = 0;
1118 } else
1119 ret = dwarf_decl_line(&spdie, &lineno);
1120 }
1121 if (ret == 0) {
1122 /* Make a relative line number */
1123 ppt->line -= lineno;
1124 goto found;
1125 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001126 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001127 /* We don't have a line number, let's use offset */
1128 ppt->offset = addr - (unsigned long)eaddr;
1129found:
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001130 ppt->function = strdup(tmp);
1131 if (ppt->function == NULL) {
1132 ret = -ENOMEM;
1133 goto end;
1134 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001135 found = true;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001136 }
1137
1138end:
1139 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001140 if (ret >= 0)
1141 ret = found ? 1 : 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001142 return ret;
1143}
1144
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001145/* Add a line and store the src path */
1146static int line_range_add_line(const char *src, unsigned int lineno,
1147 struct line_range *lr)
1148{
Chase Douglas9ed7e1b2010-06-14 15:26:30 -04001149 int ret;
1150
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001151 /* Copy real path */
1152 if (!lr->path) {
Chase Douglas9ed7e1b2010-06-14 15:26:30 -04001153 ret = get_real_path(src, &lr->path);
1154 if (ret != 0)
1155 return ret;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001156 }
1157 return line_list__add_line(&lr->line_list, lineno);
1158}
1159
1160/* Search function declaration lines */
1161static int line_range_funcdecl_cb(Dwarf_Die *sp_die, void *data)
1162{
1163 struct dwarf_callback_param *param = data;
1164 struct line_finder *lf = param->data;
1165 const char *src;
1166 int lineno;
1167
1168 src = dwarf_decl_file(sp_die);
1169 if (src && strtailcmp(src, lf->fname) != 0)
1170 return DWARF_CB_OK;
1171
1172 if (dwarf_decl_line(sp_die, &lineno) != 0 ||
1173 (lf->lno_s > lineno || lf->lno_e < lineno))
1174 return DWARF_CB_OK;
1175
1176 param->retval = line_range_add_line(src, lineno, lf->lr);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -04001177 if (param->retval < 0)
1178 return DWARF_CB_ABORT;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001179 return DWARF_CB_OK;
1180}
1181
1182static int find_line_range_func_decl_lines(struct line_finder *lf)
1183{
1184 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1185 dwarf_getfuncs(&lf->cu_die, line_range_funcdecl_cb, &param, 0);
1186 return param.retval;
1187}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001188
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001189/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001190static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001191{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001192 Dwarf_Lines *lines;
1193 Dwarf_Line *line;
1194 size_t nlines, i;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001195 Dwarf_Addr addr;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001196 int lineno, ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001197 const char *src;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001198 Dwarf_Die die_mem;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001199
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001200 line_list__init(&lf->lr->line_list);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001201 if (dwarf_getsrclines(&lf->cu_die, &lines, &nlines) != 0) {
1202 pr_warning("No source lines found in this CU.\n");
1203 return -ENOENT;
1204 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001205
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001206 /* Search probable lines on lines list */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001207 for (i = 0; i < nlines; i++) {
1208 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001209 if (dwarf_lineno(line, &lineno) != 0 ||
1210 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001211 continue;
1212
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001213 if (sp_die) {
1214 /* Address filtering 1: does sp_die include addr? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001215 if (dwarf_lineaddr(line, &addr) != 0 ||
1216 !dwarf_haspc(sp_die, addr))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001217 continue;
1218
1219 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -04001220 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001221 continue;
1222 }
1223
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001224 /* TODO: Get fileno from line, but how? */
1225 src = dwarf_linesrc(line, NULL, NULL);
1226 if (strtailcmp(src, lf->fname) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001227 continue;
1228
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001229 ret = line_range_add_line(src, lineno, lf->lr);
1230 if (ret < 0)
1231 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001232 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001233
1234 /*
1235 * Dwarf lines doesn't include function declarations. We have to
1236 * check functions list or given function.
1237 */
1238 if (sp_die) {
1239 src = dwarf_decl_file(sp_die);
1240 if (src && dwarf_decl_line(sp_die, &lineno) == 0 &&
1241 (lf->lno_s <= lineno && lf->lno_e >= lineno))
1242 ret = line_range_add_line(src, lineno, lf->lr);
1243 } else
1244 ret = find_line_range_func_decl_lines(lf);
1245
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001246 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001247 if (ret >= 0)
1248 if (!list_empty(&lf->lr->line_list))
1249 ret = lf->found = 1;
1250 else
1251 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001252 else {
1253 free(lf->lr->path);
1254 lf->lr->path = NULL;
1255 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001256 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001257}
1258
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001259static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1260{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001261 struct dwarf_callback_param *param = data;
1262
1263 param->retval = find_line_range_by_line(in_die, param->data);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001264 return DWARF_CB_ABORT; /* No need to find other instances */
1265}
1266
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001267/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001268static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001269{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001270 struct dwarf_callback_param *param = data;
1271 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001272 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001273
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001274 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
1275 die_compare_name(sp_die, lr->function) == 0) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001276 lf->fname = dwarf_decl_file(sp_die);
1277 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001278 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001279 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001280 if (lf->lno_s < 0) /* Overflow */
1281 lf->lno_s = INT_MAX;
1282 lf->lno_e = lr->offset + lr->end;
1283 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001284 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001285 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001286 lr->start = lf->lno_s;
1287 lr->end = lf->lno_e;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001288 if (dwarf_func_inline(sp_die)) {
1289 struct dwarf_callback_param _param;
1290 _param.data = (void *)lf;
1291 _param.retval = 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001292 dwarf_func_inline_instances(sp_die,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001293 line_range_inline_cb,
1294 &_param);
1295 param->retval = _param.retval;
1296 } else
1297 param->retval = find_line_range_by_line(sp_die, lf);
1298 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001299 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001300 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001301}
1302
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001303static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001304{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001305 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1306 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1307 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001308}
1309
1310int find_line_range(int fd, struct line_range *lr)
1311{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001312 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001313 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001314 Dwarf_Off off = 0, noff;
1315 size_t cuhl;
1316 Dwarf_Die *diep;
1317 Dwarf *dbg;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001318
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001319 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001320 if (!dbg) {
1321 pr_warning("No dwarf info found in the vmlinux - "
1322 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1323 return -EBADF;
1324 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001325
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001326 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001327 while (!lf.found && ret >= 0) {
1328 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001329 break;
1330
1331 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001332 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1333 if (!diep)
1334 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001335
1336 /* Check if target file is included. */
1337 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001338 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001339 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001340 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001341
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001342 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001343 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001344 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001345 else {
1346 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001347 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001348 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001349 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001350 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001351 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001352 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001353 pr_debug("path: %lx\n", (unsigned long)lr->path);
1354 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001355
1356 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001357}
1358