tracing/kprobe: Fix a memory leak in error case
[deliverable/linux.git] / tools / perf / util / probe-finder.c
CommitLineData
4ea42b18
MH
1/*
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>
cd932c59 34#include <dwarf-regs.h>
074fc0e4 35
89c69c0e
MH
36#include "event.h"
37#include "debug.h"
074fc0e4 38#include "util.h"
9ed7e1b8 39#include "symbol.h"
4ea42b18
MH
40#include "probe-finder.h"
41
4984912e
MH
42/* Kprobe tracer basic type is up to u64 */
43#define MAX_BASIC_TYPE_BITS 64
44
4ea42b18
MH
45/*
46 * Compare the tail of two strings.
47 * Return 0 if whole of either string is same as another's tail part.
48 */
49static int strtailcmp(const char *s1, const char *s2)
50{
51 int i1 = strlen(s1);
52 int i2 = strlen(s2);
d56728b8 53 while (--i1 >= 0 && --i2 >= 0) {
4ea42b18
MH
54 if (s1[i1] != s2[i2])
55 return s1[i1] - s2[i2];
56 }
57 return 0;
58}
59
2a9c8c36
MH
60/* Line number list operations */
61
62/* Add a line to line number list */
d3b63d7a 63static int line_list__add_line(struct list_head *head, int line)
2a9c8c36
MH
64{
65 struct line_node *ln;
66 struct list_head *p;
67
68 /* Reverse search, because new line will be the last one */
69 list_for_each_entry_reverse(ln, head, list) {
70 if (ln->line < line) {
71 p = &ln->list;
72 goto found;
73 } else if (ln->line == line) /* Already exist */
e334016f 74 return 1;
2a9c8c36
MH
75 }
76 /* List is empty, or the smallest entry */
77 p = head;
78found:
79 pr_debug("line list: add a line %u\n", line);
e334016f
MH
80 ln = zalloc(sizeof(struct line_node));
81 if (ln == NULL)
82 return -ENOMEM;
2a9c8c36
MH
83 ln->line = line;
84 INIT_LIST_HEAD(&ln->list);
85 list_add(&ln->list, p);
e334016f 86 return 0;
2a9c8c36
MH
87}
88
89/* Check if the line in line number list */
d3b63d7a 90static int line_list__has_line(struct list_head *head, int line)
2a9c8c36
MH
91{
92 struct line_node *ln;
93
94 /* Reverse search, because new line will be the last one */
95 list_for_each_entry(ln, head, list)
96 if (ln->line == line)
97 return 1;
98
99 return 0;
100}
101
102/* Init line number list */
103static void line_list__init(struct list_head *head)
104{
105 INIT_LIST_HEAD(head);
106}
107
108/* Free line number list */
109static void line_list__free(struct list_head *head)
110{
111 struct line_node *ln;
112 while (!list_empty(head)) {
113 ln = list_first_entry(head, struct line_node, list);
114 list_del(&ln->list);
115 free(ln);
116 }
117}
118
119/* Dwarf wrappers */
120
121/* Find the realpath of the target file. */
122static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
4ea42b18 123{
804b3606
MH
124 Dwarf_Files *files;
125 size_t nfiles, i;
accd3cc4 126 const char *src = NULL;
4ea42b18
MH
127 int ret;
128
129 if (!fname)
2a9c8c36 130 return NULL;
4ea42b18 131
804b3606 132 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
2a9c8c36
MH
133 if (ret != 0)
134 return NULL;
135
136 for (i = 0; i < nfiles; i++) {
137 src = dwarf_filesrc(files, i, NULL, NULL);
138 if (strtailcmp(src, fname) == 0)
139 break;
4ea42b18 140 }
c9e38582
MH
141 if (i == nfiles)
142 return NULL;
2a9c8c36 143 return src;
4ea42b18
MH
144}
145
6a330a3c
MH
146/* Get DW_AT_comp_dir (should be NULL with older gcc) */
147static const char *cu_get_comp_dir(Dwarf_Die *cu_die)
148{
149 Dwarf_Attribute attr;
150 if (dwarf_attr(cu_die, DW_AT_comp_dir, &attr) == NULL)
151 return NULL;
152 return dwarf_formstring(&attr);
153}
154
016f262e
MH
155/* Compare diename and tname */
156static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
157{
158 const char *name;
159 name = dwarf_diename(dw_die);
82175633 160 return name ? (strcmp(tname, name) == 0) : false;
016f262e
MH
161}
162
7df2f329
MH
163/* Get type die, but skip qualifiers and typedef */
164static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
165{
166 Dwarf_Attribute attr;
167 int tag;
168
169 do {
170 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
171 dwarf_formref_die(&attr, die_mem) == NULL)
172 return NULL;
173
174 tag = dwarf_tag(die_mem);
175 vr_die = die_mem;
176 } while (tag == DW_TAG_const_type ||
177 tag == DW_TAG_restrict_type ||
178 tag == DW_TAG_volatile_type ||
179 tag == DW_TAG_shared_type ||
180 tag == DW_TAG_typedef);
181
182 return die_mem;
183}
184
4984912e
MH
185static bool die_is_signed_type(Dwarf_Die *tp_die)
186{
187 Dwarf_Attribute attr;
188 Dwarf_Word ret;
189
190 if (dwarf_attr(tp_die, DW_AT_encoding, &attr) == NULL ||
191 dwarf_formudata(&attr, &ret) != 0)
192 return false;
193
194 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
195 ret == DW_ATE_signed_fixed);
196}
197
198static int die_get_byte_size(Dwarf_Die *tp_die)
199{
200 Dwarf_Attribute attr;
201 Dwarf_Word ret;
202
203 if (dwarf_attr(tp_die, DW_AT_byte_size, &attr) == NULL ||
204 dwarf_formudata(&attr, &ret) != 0)
205 return 0;
206
207 return (int)ret;
208}
209
de1439d8
MH
210/* Get data_member_location offset */
211static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
212{
213 Dwarf_Attribute attr;
214 Dwarf_Op *expr;
215 size_t nexpr;
216 int ret;
217
218 if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
219 return -ENOENT;
220
221 if (dwarf_formudata(&attr, offs) != 0) {
222 /* DW_AT_data_member_location should be DW_OP_plus_uconst */
223 ret = dwarf_getlocation(&attr, &expr, &nexpr);
224 if (ret < 0 || nexpr == 0)
225 return -ENOENT;
226
227 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
228 pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
229 expr[0].atom, nexpr);
230 return -ENOTSUP;
231 }
232 *offs = (Dwarf_Word)expr[0].number;
233 }
234 return 0;
235}
236
016f262e
MH
237/* Return values for die_find callbacks */
238enum {
239 DIE_FIND_CB_FOUND = 0, /* End of Search */
240 DIE_FIND_CB_CHILD = 1, /* Search only children */
241 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
242 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
243};
244
245/* Search a child die */
246static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
247 int (*callback)(Dwarf_Die *, void *),
248 void *data, Dwarf_Die *die_mem)
249{
250 Dwarf_Die child_die;
251 int ret;
252
253 ret = dwarf_child(rt_die, die_mem);
254 if (ret != 0)
255 return NULL;
256
257 do {
258 ret = callback(die_mem, data);
259 if (ret == DIE_FIND_CB_FOUND)
260 return die_mem;
261
262 if ((ret & DIE_FIND_CB_CHILD) &&
263 die_find_child(die_mem, callback, data, &child_die)) {
264 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
265 return die_mem;
266 }
267 } while ((ret & DIE_FIND_CB_SIBLING) &&
268 dwarf_siblingof(die_mem, die_mem) == 0);
269
270 return NULL;
271}
272
804b3606
MH
273struct __addr_die_search_param {
274 Dwarf_Addr addr;
275 Dwarf_Die *die_mem;
276};
277
278static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
631c9def 279{
804b3606 280 struct __addr_die_search_param *ad = data;
631c9def 281
804b3606
MH
282 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
283 dwarf_haspc(fn_die, ad->addr)) {
284 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
285 return DWARF_CB_ABORT;
286 }
287 return DWARF_CB_OK;
288}
631c9def 289
804b3606 290/* Search a real subprogram including this line, */
95a3e4c4
MH
291static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
292 Dwarf_Die *die_mem)
804b3606
MH
293{
294 struct __addr_die_search_param ad;
295 ad.addr = addr;
296 ad.die_mem = die_mem;
297 /* dwarf_getscopes can't find subprogram. */
298 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
299 return NULL;
300 else
301 return die_mem;
631c9def
MH
302}
303
016f262e
MH
304/* die_find callback for inline function search */
305static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
161a26b0 306{
016f262e 307 Dwarf_Addr *addr = data;
161a26b0 308
016f262e
MH
309 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
310 dwarf_haspc(die_mem, *addr))
311 return DIE_FIND_CB_FOUND;
161a26b0 312
016f262e 313 return DIE_FIND_CB_CONTINUE;
161a26b0
MH
314}
315
016f262e
MH
316/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
317static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
318 Dwarf_Die *die_mem)
4ea42b18 319{
016f262e 320 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
4ea42b18
MH
321}
322
016f262e 323static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
4ea42b18 324{
016f262e
MH
325 const char *name = data;
326 int tag;
4ea42b18 327
016f262e
MH
328 tag = dwarf_tag(die_mem);
329 if ((tag == DW_TAG_formal_parameter ||
330 tag == DW_TAG_variable) &&
82175633 331 die_compare_name(die_mem, name))
016f262e
MH
332 return DIE_FIND_CB_FOUND;
333
334 return DIE_FIND_CB_CONTINUE;
4ea42b18
MH
335}
336
016f262e 337/* Find a variable called 'name' */
e92b85e1
MH
338static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
339 Dwarf_Die *die_mem)
4ea42b18 340{
016f262e
MH
341 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
342 die_mem);
4ea42b18
MH
343}
344
7df2f329
MH
345static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
346{
347 const char *name = data;
348
349 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
82175633 350 die_compare_name(die_mem, name))
7df2f329
MH
351 return DIE_FIND_CB_FOUND;
352
353 return DIE_FIND_CB_SIBLING;
354}
355
356/* Find a member called 'name' */
357static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
358 Dwarf_Die *die_mem)
359{
360 return die_find_child(st_die, __die_find_member_cb, (void *)name,
361 die_mem);
362}
363
4ea42b18
MH
364/*
365 * Probe finder related functions
366 */
367
0e60836b 368static struct probe_trace_arg_ref *alloc_trace_arg_ref(long offs)
b7dcb857 369{
0e60836b
SD
370 struct probe_trace_arg_ref *ref;
371 ref = zalloc(sizeof(struct probe_trace_arg_ref));
b7dcb857
MH
372 if (ref != NULL)
373 ref->offset = offs;
374 return ref;
375}
376
4ea42b18 377/* Show a location */
b7dcb857 378static int convert_variable_location(Dwarf_Die *vr_die, struct probe_finder *pf)
4ea42b18 379{
b7dcb857
MH
380 Dwarf_Attribute attr;
381 Dwarf_Op *op;
382 size_t nops;
804b3606
MH
383 unsigned int regn;
384 Dwarf_Word offs = 0;
4235b045 385 bool ref = false;
4ea42b18 386 const char *regs;
0e60836b 387 struct probe_trace_arg *tvar = pf->tvar;
b7dcb857
MH
388 int ret;
389
390 /* TODO: handle more than 1 exprs */
391 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL ||
392 dwarf_getlocation_addr(&attr, pf->addr, &op, &nops, 1) <= 0 ||
393 nops == 0) {
394 /* TODO: Support const_value */
395 pr_err("Failed to find the location of %s at this address.\n"
396 " Perhaps, it has been optimized out.\n", pf->pvar->var);
397 return -ENOENT;
398 }
399
400 if (op->atom == DW_OP_addr) {
401 /* Static variables on memory (not stack), make @varname */
402 ret = strlen(dwarf_diename(vr_die));
403 tvar->value = zalloc(ret + 2);
404 if (tvar->value == NULL)
405 return -ENOMEM;
406 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die));
407 tvar->ref = alloc_trace_arg_ref((long)offs);
408 if (tvar->ref == NULL)
409 return -ENOMEM;
410 return 0;
411 }
4ea42b18 412
4ea42b18 413 /* If this is based on frame buffer, set the offset */
804b3606 414 if (op->atom == DW_OP_fbreg) {
b55a87ad
MH
415 if (pf->fb_ops == NULL) {
416 pr_warning("The attribute of frame base is not "
417 "supported.\n");
418 return -ENOTSUP;
419 }
4235b045 420 ref = true;
804b3606
MH
421 offs = op->number;
422 op = &pf->fb_ops[0];
423 }
4ea42b18 424
804b3606
MH
425 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
426 regn = op->atom - DW_OP_breg0;
427 offs += op->number;
4235b045 428 ref = true;
804b3606
MH
429 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
430 regn = op->atom - DW_OP_reg0;
431 } else if (op->atom == DW_OP_bregx) {
432 regn = op->number;
433 offs += op->number2;
4235b045 434 ref = true;
804b3606
MH
435 } else if (op->atom == DW_OP_regx) {
436 regn = op->number;
b55a87ad
MH
437 } else {
438 pr_warning("DW_OP %x is not supported.\n", op->atom);
439 return -ENOTSUP;
440 }
4ea42b18
MH
441
442 regs = get_arch_regstr(regn);
b55a87ad 443 if (!regs) {
cd932c59 444 pr_warning("Mapping for DWARF register number %u missing on this architecture.", regn);
b55a87ad
MH
445 return -ERANGE;
446 }
4ea42b18 447
02b95dad
MH
448 tvar->value = strdup(regs);
449 if (tvar->value == NULL)
450 return -ENOMEM;
451
4235b045 452 if (ref) {
b7dcb857 453 tvar->ref = alloc_trace_arg_ref((long)offs);
e334016f
MH
454 if (tvar->ref == NULL)
455 return -ENOMEM;
4235b045 456 }
b55a87ad 457 return 0;
4ea42b18
MH
458}
459
b55a87ad 460static int convert_variable_type(Dwarf_Die *vr_die,
0e60836b 461 struct probe_trace_arg *tvar,
73317b95 462 const char *cast)
4984912e 463{
0e60836b 464 struct probe_trace_arg_ref **ref_ptr = &tvar->ref;
4984912e
MH
465 Dwarf_Die type;
466 char buf[16];
467 int ret;
468
73317b95
MH
469 /* TODO: check all types */
470 if (cast && strcmp(cast, "string") != 0) {
471 /* Non string type is OK */
472 tvar->type = strdup(cast);
473 return (tvar->type == NULL) ? -ENOMEM : 0;
474 }
475
b55a87ad
MH
476 if (die_get_real_type(vr_die, &type) == NULL) {
477 pr_warning("Failed to get a type information of %s.\n",
478 dwarf_diename(vr_die));
479 return -ENOENT;
480 }
4984912e 481
b2a3c12b
MH
482 pr_debug("%s type is %s.\n",
483 dwarf_diename(vr_die), dwarf_diename(&type));
484
73317b95
MH
485 if (cast && strcmp(cast, "string") == 0) { /* String type */
486 ret = dwarf_tag(&type);
487 if (ret != DW_TAG_pointer_type &&
488 ret != DW_TAG_array_type) {
489 pr_warning("Failed to cast into string: "
490 "%s(%s) is not a pointer nor array.",
491 dwarf_diename(vr_die), dwarf_diename(&type));
492 return -EINVAL;
493 }
494 if (ret == DW_TAG_pointer_type) {
495 if (die_get_real_type(&type, &type) == NULL) {
496 pr_warning("Failed to get a type information.");
497 return -ENOENT;
498 }
499 while (*ref_ptr)
500 ref_ptr = &(*ref_ptr)->next;
501 /* Add new reference with offset +0 */
0e60836b 502 *ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
73317b95
MH
503 if (*ref_ptr == NULL) {
504 pr_warning("Out of memory error\n");
505 return -ENOMEM;
506 }
507 }
82175633
MH
508 if (!die_compare_name(&type, "char") &&
509 !die_compare_name(&type, "unsigned char")) {
73317b95
MH
510 pr_warning("Failed to cast into string: "
511 "%s is not (unsigned) char *.",
512 dwarf_diename(vr_die));
513 return -EINVAL;
514 }
515 tvar->type = strdup(cast);
516 return (tvar->type == NULL) ? -ENOMEM : 0;
517 }
518
4984912e
MH
519 ret = die_get_byte_size(&type) * 8;
520 if (ret) {
521 /* Check the bitwidth */
522 if (ret > MAX_BASIC_TYPE_BITS) {
b55a87ad
MH
523 pr_info("%s exceeds max-bitwidth."
524 " Cut down to %d bits.\n",
525 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
4984912e
MH
526 ret = MAX_BASIC_TYPE_BITS;
527 }
528
529 ret = snprintf(buf, 16, "%c%d",
530 die_is_signed_type(&type) ? 's' : 'u', ret);
b55a87ad
MH
531 if (ret < 0 || ret >= 16) {
532 if (ret >= 16)
533 ret = -E2BIG;
534 pr_warning("Failed to convert variable type: %s\n",
535 strerror(-ret));
536 return ret;
537 }
73317b95
MH
538 tvar->type = strdup(buf);
539 if (tvar->type == NULL)
02b95dad 540 return -ENOMEM;
4984912e 541 }
b55a87ad 542 return 0;
4984912e
MH
543}
544
b55a87ad 545static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
7df2f329 546 struct perf_probe_arg_field *field,
0e60836b 547 struct probe_trace_arg_ref **ref_ptr,
4984912e 548 Dwarf_Die *die_mem)
7df2f329 549{
0e60836b 550 struct probe_trace_arg_ref *ref = *ref_ptr;
7df2f329
MH
551 Dwarf_Die type;
552 Dwarf_Word offs;
b2a3c12b 553 int ret, tag;
7df2f329
MH
554
555 pr_debug("converting %s in %s\n", field->name, varname);
b55a87ad
MH
556 if (die_get_real_type(vr_die, &type) == NULL) {
557 pr_warning("Failed to get the type of %s.\n", varname);
558 return -ENOENT;
559 }
b2a3c12b
MH
560 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
561 tag = dwarf_tag(&type);
562
563 if (field->name[0] == '[' &&
564 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
565 if (field->next)
566 /* Save original type for next field */
567 memcpy(die_mem, &type, sizeof(*die_mem));
568 /* Get the type of this array */
569 if (die_get_real_type(&type, &type) == NULL) {
570 pr_warning("Failed to get the type of %s.\n", varname);
571 return -ENOENT;
572 }
573 pr_debug2("Array real type: (%x)\n",
574 (unsigned)dwarf_dieoffset(&type));
575 if (tag == DW_TAG_pointer_type) {
0e60836b 576 ref = zalloc(sizeof(struct probe_trace_arg_ref));
b2a3c12b
MH
577 if (ref == NULL)
578 return -ENOMEM;
579 if (*ref_ptr)
580 (*ref_ptr)->next = ref;
581 else
582 *ref_ptr = ref;
583 }
584 ref->offset += die_get_byte_size(&type) * field->index;
585 if (!field->next)
586 /* Save vr_die for converting types */
587 memcpy(die_mem, vr_die, sizeof(*die_mem));
588 goto next;
589 } else if (tag == DW_TAG_pointer_type) {
590 /* Check the pointer and dereference */
b55a87ad
MH
591 if (!field->ref) {
592 pr_err("Semantic error: %s must be referred by '->'\n",
593 field->name);
594 return -EINVAL;
595 }
7df2f329 596 /* Get the type pointed by this pointer */
b55a87ad
MH
597 if (die_get_real_type(&type, &type) == NULL) {
598 pr_warning("Failed to get the type of %s.\n", varname);
599 return -ENOENT;
600 }
12e5a7ae 601 /* Verify it is a data structure */
b55a87ad
MH
602 if (dwarf_tag(&type) != DW_TAG_structure_type) {
603 pr_warning("%s is not a data structure.\n", varname);
604 return -EINVAL;
605 }
12e5a7ae 606
0e60836b 607 ref = zalloc(sizeof(struct probe_trace_arg_ref));
e334016f
MH
608 if (ref == NULL)
609 return -ENOMEM;
7df2f329
MH
610 if (*ref_ptr)
611 (*ref_ptr)->next = ref;
612 else
613 *ref_ptr = ref;
614 } else {
12e5a7ae 615 /* Verify it is a data structure */
b2a3c12b 616 if (tag != DW_TAG_structure_type) {
b55a87ad
MH
617 pr_warning("%s is not a data structure.\n", varname);
618 return -EINVAL;
619 }
b2a3c12b
MH
620 if (field->name[0] == '[') {
621 pr_err("Semantic error: %s is not a pointor nor array.",
622 varname);
623 return -EINVAL;
624 }
b55a87ad
MH
625 if (field->ref) {
626 pr_err("Semantic error: %s must be referred by '.'\n",
627 field->name);
628 return -EINVAL;
629 }
630 if (!ref) {
631 pr_warning("Structure on a register is not "
632 "supported yet.\n");
633 return -ENOTSUP;
634 }
7df2f329
MH
635 }
636
b55a87ad
MH
637 if (die_find_member(&type, field->name, die_mem) == NULL) {
638 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
639 dwarf_diename(&type), field->name);
640 return -EINVAL;
641 }
7df2f329
MH
642
643 /* Get the offset of the field */
de1439d8
MH
644 ret = die_get_data_member_location(die_mem, &offs);
645 if (ret < 0) {
b55a87ad 646 pr_warning("Failed to get the offset of %s.\n", field->name);
de1439d8 647 return ret;
b55a87ad 648 }
7df2f329
MH
649 ref->offset += (long)offs;
650
b2a3c12b 651next:
7df2f329
MH
652 /* Converting next field */
653 if (field->next)
b55a87ad 654 return convert_variable_fields(die_mem, field->name,
de1439d8 655 field->next, &ref, die_mem);
b55a87ad
MH
656 else
657 return 0;
7df2f329
MH
658}
659
4ea42b18 660/* Show a variables in kprobe event format */
b55a87ad 661static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
4ea42b18 662{
4984912e 663 Dwarf_Die die_mem;
4ea42b18
MH
664 int ret;
665
b7dcb857
MH
666 pr_debug("Converting variable %s into trace event.\n",
667 dwarf_diename(vr_die));
804b3606 668
b7dcb857 669 ret = convert_variable_location(vr_die, pf);
b55a87ad
MH
670 if (ret == 0 && pf->pvar->field) {
671 ret = convert_variable_fields(vr_die, pf->pvar->var,
672 pf->pvar->field, &pf->tvar->ref,
673 &die_mem);
4984912e
MH
674 vr_die = &die_mem;
675 }
73317b95
MH
676 if (ret == 0)
677 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
804b3606 678 /* *expr will be cached in libdw. Don't free it. */
b55a87ad 679 return ret;
4ea42b18
MH
680}
681
4ea42b18 682/* Find a variable in a subprogram die */
b55a87ad 683static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
4ea42b18 684{
b7dcb857 685 Dwarf_Die vr_die, *scopes;
11a1ca35 686 char buf[32], *ptr;
b7dcb857 687 int ret, nscopes;
4ea42b18 688
48481938 689 if (pf->pvar->name)
02b95dad 690 pf->tvar->name = strdup(pf->pvar->name);
48481938 691 else {
02b95dad
MH
692 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
693 if (ret < 0)
694 return ret;
11a1ca35
MH
695 ptr = strchr(buf, ':'); /* Change type separator to _ */
696 if (ptr)
697 *ptr = '_';
02b95dad 698 pf->tvar->name = strdup(buf);
48481938 699 }
02b95dad
MH
700 if (pf->tvar->name == NULL)
701 return -ENOMEM;
48481938
MH
702
703 if (!is_c_varname(pf->pvar->var)) {
4235b045 704 /* Copy raw parameters */
02b95dad
MH
705 pf->tvar->value = strdup(pf->pvar->var);
706 if (pf->tvar->value == NULL)
707 return -ENOMEM;
58432e1f
MH
708 if (pf->pvar->type) {
709 pf->tvar->type = strdup(pf->pvar->type);
710 if (pf->tvar->type == NULL)
711 return -ENOMEM;
712 }
713 return 0;
4ea42b18 714 }
b55a87ad
MH
715
716 pr_debug("Searching '%s' variable in context.\n",
717 pf->pvar->var);
718 /* Search child die for local variables and parameters. */
b7dcb857
MH
719 if (die_find_variable(sp_die, pf->pvar->var, &vr_die))
720 ret = convert_variable(&vr_die, pf);
721 else {
722 /* Search upper class */
723 nscopes = dwarf_getscopes_die(sp_die, &scopes);
724 if (nscopes > 0) {
725 ret = dwarf_getscopevar(scopes, nscopes, pf->pvar->var,
726 0, NULL, 0, 0, &vr_die);
727 if (ret >= 0)
728 ret = convert_variable(&vr_die, pf);
729 else
730 ret = -ENOENT;
731 free(scopes);
732 } else
733 ret = -ENOENT;
734 }
735 if (ret < 0)
b55a87ad
MH
736 pr_warning("Failed to find '%s' in this function.\n",
737 pf->pvar->var);
b7dcb857 738 return ret;
4ea42b18
MH
739}
740
4ea42b18 741/* Show a probe point to output buffer */
b55a87ad 742static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
4ea42b18 743{
0e60836b 744 struct probe_trace_event *tev;
e92b85e1
MH
745 Dwarf_Addr eaddr;
746 Dwarf_Die die_mem;
804b3606 747 const char *name;
4235b045 748 int ret, i;
804b3606
MH
749 Dwarf_Attribute fb_attr;
750 size_t nops;
4ea42b18 751
ef4a3565
MH
752 if (pf->ntevs == pf->max_tevs) {
753 pr_warning("Too many( > %d) probe point found.\n",
754 pf->max_tevs);
b55a87ad
MH
755 return -ERANGE;
756 }
4235b045
MH
757 tev = &pf->tevs[pf->ntevs++];
758
e92b85e1
MH
759 /* If no real subprogram, find a real one */
760 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
95a3e4c4 761 sp_die = die_find_real_subprogram(&pf->cu_die,
e92b85e1 762 pf->addr, &die_mem);
b55a87ad
MH
763 if (!sp_die) {
764 pr_warning("Failed to find probe point in any "
765 "functions.\n");
766 return -ENOENT;
767 }
e92b85e1
MH
768 }
769
4235b045 770 /* Copy the name of probe point */
804b3606
MH
771 name = dwarf_diename(sp_die);
772 if (name) {
b55a87ad
MH
773 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
774 pr_warning("Failed to get entry pc of %s\n",
775 dwarf_diename(sp_die));
776 return -ENOENT;
777 }
02b95dad
MH
778 tev->point.symbol = strdup(name);
779 if (tev->point.symbol == NULL)
780 return -ENOMEM;
4235b045
MH
781 tev->point.offset = (unsigned long)(pf->addr - eaddr);
782 } else
4ea42b18 783 /* This function has no name. */
4235b045
MH
784 tev->point.offset = (unsigned long)pf->addr;
785
786 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
787 tev->point.offset);
4ea42b18 788
804b3606
MH
789 /* Get the frame base attribute/ops */
790 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
d0cb4260 791 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
a34a9854 792 if (ret <= 0 || nops == 0) {
804b3606 793 pf->fb_ops = NULL;
7752f1b0 794#if _ELFUTILS_PREREQ(0, 142)
a34a9854
MH
795 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
796 pf->cfi != NULL) {
797 Dwarf_Frame *frame;
b55a87ad
MH
798 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
799 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
800 pr_warning("Failed to get CFA on 0x%jx\n",
801 (uintmax_t)pf->addr);
802 return -ENOENT;
803 }
7752f1b0 804#endif
a34a9854 805 }
804b3606 806
4ea42b18 807 /* Find each argument */
4235b045 808 tev->nargs = pf->pev->nargs;
0e60836b 809 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
e334016f
MH
810 if (tev->args == NULL)
811 return -ENOMEM;
4235b045
MH
812 for (i = 0; i < pf->pev->nargs; i++) {
813 pf->pvar = &pf->pev->args[i];
814 pf->tvar = &tev->args[i];
b55a87ad
MH
815 ret = find_variable(sp_die, pf);
816 if (ret != 0)
817 return ret;
4ea42b18 818 }
804b3606
MH
819
820 /* *pf->fb_ops will be cached in libdw. Don't free it. */
821 pf->fb_ops = NULL;
b55a87ad 822 return 0;
4ea42b18
MH
823}
824
4ea42b18 825/* Find probe point from its line number */
b55a87ad 826static int find_probe_point_by_line(struct probe_finder *pf)
4ea42b18 827{
804b3606
MH
828 Dwarf_Lines *lines;
829 Dwarf_Line *line;
830 size_t nlines, i;
e92b85e1 831 Dwarf_Addr addr;
804b3606 832 int lineno;
b55a87ad 833 int ret = 0;
4ea42b18 834
b55a87ad
MH
835 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
836 pr_warning("No source lines found in this CU.\n");
837 return -ENOENT;
838 }
4ea42b18 839
b55a87ad 840 for (i = 0; i < nlines && ret == 0; i++) {
804b3606 841 line = dwarf_onesrcline(lines, i);
b55a87ad
MH
842 if (dwarf_lineno(line, &lineno) != 0 ||
843 lineno != pf->lno)
4ea42b18
MH
844 continue;
845
804b3606
MH
846 /* TODO: Get fileno from line, but how? */
847 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
848 continue;
b0ef0732 849
b55a87ad
MH
850 if (dwarf_lineaddr(line, &addr) != 0) {
851 pr_warning("Failed to get the address of the line.\n");
852 return -ENOENT;
853 }
804b3606
MH
854 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
855 (int)i, lineno, (uintmax_t)addr);
4ea42b18 856 pf->addr = addr;
804b3606 857
b55a87ad 858 ret = convert_probe_point(NULL, pf);
4ea42b18
MH
859 /* Continuing, because target line might be inlined. */
860 }
b55a87ad 861 return ret;
4ea42b18
MH
862}
863
2a9c8c36
MH
864/* Find lines which match lazy pattern */
865static int find_lazy_match_lines(struct list_head *head,
866 const char *fname, const char *pat)
867{
868 char *fbuf, *p1, *p2;
b448c4b6 869 int fd, line, nlines = -1;
2a9c8c36
MH
870 struct stat st;
871
872 fd = open(fname, O_RDONLY);
b55a87ad
MH
873 if (fd < 0) {
874 pr_warning("Failed to open %s: %s\n", fname, strerror(-fd));
b448c4b6 875 return -errno;
b55a87ad
MH
876 }
877
b448c4b6 878 if (fstat(fd, &st) < 0) {
b55a87ad
MH
879 pr_warning("Failed to get the size of %s: %s\n",
880 fname, strerror(errno));
b448c4b6
ACM
881 nlines = -errno;
882 goto out_close;
b55a87ad 883 }
b448c4b6
ACM
884
885 nlines = -ENOMEM;
886 fbuf = malloc(st.st_size + 2);
887 if (fbuf == NULL)
888 goto out_close;
889 if (read(fd, fbuf, st.st_size) < 0) {
b55a87ad 890 pr_warning("Failed to read %s: %s\n", fname, strerror(errno));
b448c4b6
ACM
891 nlines = -errno;
892 goto out_free_fbuf;
b55a87ad 893 }
2a9c8c36
MH
894 fbuf[st.st_size] = '\n'; /* Dummy line */
895 fbuf[st.st_size + 1] = '\0';
896 p1 = fbuf;
897 line = 1;
b448c4b6 898 nlines = 0;
2a9c8c36
MH
899 while ((p2 = strchr(p1, '\n')) != NULL) {
900 *p2 = '\0';
901 if (strlazymatch(p1, pat)) {
902 line_list__add_line(head, line);
903 nlines++;
904 }
905 line++;
906 p1 = p2 + 1;
907 }
b448c4b6 908out_free_fbuf:
2a9c8c36 909 free(fbuf);
b448c4b6
ACM
910out_close:
911 close(fd);
2a9c8c36
MH
912 return nlines;
913}
914
915/* Find probe points from lazy pattern */
b55a87ad 916static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
2a9c8c36
MH
917{
918 Dwarf_Lines *lines;
919 Dwarf_Line *line;
920 size_t nlines, i;
921 Dwarf_Addr addr;
922 Dwarf_Die die_mem;
923 int lineno;
b55a87ad 924 int ret = 0;
2a9c8c36
MH
925
926 if (list_empty(&pf->lcache)) {
927 /* Matching lazy line pattern */
928 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
4235b045 929 pf->pev->point.lazy_line);
b55a87ad
MH
930 if (ret == 0) {
931 pr_debug("No matched lines found in %s.\n", pf->fname);
932 return 0;
933 } else if (ret < 0)
934 return ret;
2a9c8c36
MH
935 }
936
b55a87ad
MH
937 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
938 pr_warning("No source lines found in this CU.\n");
939 return -ENOENT;
940 }
941
942 for (i = 0; i < nlines && ret >= 0; i++) {
2a9c8c36
MH
943 line = dwarf_onesrcline(lines, i);
944
b55a87ad
MH
945 if (dwarf_lineno(line, &lineno) != 0 ||
946 !line_list__has_line(&pf->lcache, lineno))
2a9c8c36
MH
947 continue;
948
949 /* TODO: Get fileno from line, but how? */
950 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
951 continue;
952
b55a87ad
MH
953 if (dwarf_lineaddr(line, &addr) != 0) {
954 pr_debug("Failed to get the address of line %d.\n",
955 lineno);
956 continue;
957 }
2a9c8c36
MH
958 if (sp_die) {
959 /* Address filtering 1: does sp_die include addr? */
960 if (!dwarf_haspc(sp_die, addr))
961 continue;
962 /* Address filtering 2: No child include addr? */
95a3e4c4 963 if (die_find_inlinefunc(sp_die, addr, &die_mem))
2a9c8c36
MH
964 continue;
965 }
966
967 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
968 (int)i, lineno, (unsigned long long)addr);
969 pf->addr = addr;
970
b55a87ad 971 ret = convert_probe_point(sp_die, pf);
2a9c8c36
MH
972 /* Continuing, because target line might be inlined. */
973 }
974 /* TODO: deallocate lines, but how? */
b55a87ad 975 return ret;
2a9c8c36
MH
976}
977
b55a87ad
MH
978/* Callback parameter with return value */
979struct dwarf_callback_param {
980 void *data;
981 int retval;
982};
983
e92b85e1
MH
984static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
985{
b55a87ad
MH
986 struct dwarf_callback_param *param = data;
987 struct probe_finder *pf = param->data;
4235b045 988 struct perf_probe_point *pp = &pf->pev->point;
b55a87ad 989 Dwarf_Addr addr;
e92b85e1 990
2a9c8c36 991 if (pp->lazy_line)
b55a87ad 992 param->retval = find_probe_point_lazy(in_die, pf);
2a9c8c36
MH
993 else {
994 /* Get probe address */
b55a87ad
MH
995 if (dwarf_entrypc(in_die, &addr) != 0) {
996 pr_warning("Failed to get entry pc of %s.\n",
997 dwarf_diename(in_die));
998 param->retval = -ENOENT;
999 return DWARF_CB_ABORT;
1000 }
1001 pf->addr = addr;
2a9c8c36
MH
1002 pf->addr += pp->offset;
1003 pr_debug("found inline addr: 0x%jx\n",
1004 (uintmax_t)pf->addr);
1005
b55a87ad 1006 param->retval = convert_probe_point(in_die, pf);
5d1ee041
MH
1007 if (param->retval < 0)
1008 return DWARF_CB_ABORT;
2a9c8c36 1009 }
e92b85e1 1010
e92b85e1
MH
1011 return DWARF_CB_OK;
1012}
804b3606 1013
4ea42b18 1014/* Search function from function name */
e92b85e1 1015static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
4ea42b18 1016{
b55a87ad
MH
1017 struct dwarf_callback_param *param = data;
1018 struct probe_finder *pf = param->data;
4235b045 1019 struct perf_probe_point *pp = &pf->pev->point;
4ea42b18 1020
e92b85e1
MH
1021 /* Check tag and diename */
1022 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
82175633 1023 !die_compare_name(sp_die, pp->function))
b55a87ad 1024 return DWARF_CB_OK;
e92b85e1 1025
2a9c8c36 1026 pf->fname = dwarf_decl_file(sp_die);
e92b85e1 1027 if (pp->line) { /* Function relative line */
e92b85e1
MH
1028 dwarf_decl_line(sp_die, &pf->lno);
1029 pf->lno += pp->line;
b55a87ad 1030 param->retval = find_probe_point_by_line(pf);
e92b85e1
MH
1031 } else if (!dwarf_func_inline(sp_die)) {
1032 /* Real function */
2a9c8c36 1033 if (pp->lazy_line)
b55a87ad 1034 param->retval = find_probe_point_lazy(sp_die, pf);
2a9c8c36 1035 else {
b55a87ad
MH
1036 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
1037 pr_warning("Failed to get entry pc of %s.\n",
1038 dwarf_diename(sp_die));
1039 param->retval = -ENOENT;
1040 return DWARF_CB_ABORT;
1041 }
2a9c8c36
MH
1042 pf->addr += pp->offset;
1043 /* TODO: Check the address in this function */
b55a87ad 1044 param->retval = convert_probe_point(sp_die, pf);
2a9c8c36 1045 }
b55a87ad
MH
1046 } else {
1047 struct dwarf_callback_param _param = {.data = (void *)pf,
1048 .retval = 0};
e92b85e1 1049 /* Inlined function: search instances */
b55a87ad
MH
1050 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
1051 &_param);
1052 param->retval = _param.retval;
1053 }
e92b85e1 1054
b55a87ad 1055 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
4ea42b18
MH
1056}
1057
b55a87ad 1058static int find_probe_point_by_func(struct probe_finder *pf)
4ea42b18 1059{
b55a87ad
MH
1060 struct dwarf_callback_param _param = {.data = (void *)pf,
1061 .retval = 0};
1062 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
1063 return _param.retval;
4ea42b18
MH
1064}
1065
0e60836b
SD
1066/* Find probe_trace_events specified by perf_probe_event from debuginfo */
1067int find_probe_trace_events(int fd, struct perf_probe_event *pev,
1068 struct probe_trace_event **tevs, int max_tevs)
4ea42b18 1069{
ef4a3565 1070 struct probe_finder pf = {.pev = pev, .max_tevs = max_tevs};
4235b045 1071 struct perf_probe_point *pp = &pev->point;
804b3606
MH
1072 Dwarf_Off off, noff;
1073 size_t cuhl;
1074 Dwarf_Die *diep;
1075 Dwarf *dbg;
b55a87ad 1076 int ret = 0;
804b3606 1077
0e60836b 1078 pf.tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs);
e334016f
MH
1079 if (pf.tevs == NULL)
1080 return -ENOMEM;
4235b045
MH
1081 *tevs = pf.tevs;
1082 pf.ntevs = 0;
1083
804b3606 1084 dbg = dwarf_begin(fd, DWARF_C_READ);
b55a87ad
MH
1085 if (!dbg) {
1086 pr_warning("No dwarf info found in the vmlinux - "
1087 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
b448c4b6
ACM
1088 free(pf.tevs);
1089 *tevs = NULL;
b55a87ad
MH
1090 return -EBADF;
1091 }
4ea42b18 1092
7752f1b0 1093#if _ELFUTILS_PREREQ(0, 142)
a34a9854
MH
1094 /* Get the call frame information from this dwarf */
1095 pf.cfi = dwarf_getcfi(dbg);
7752f1b0 1096#endif
a34a9854 1097
804b3606 1098 off = 0;
2a9c8c36 1099 line_list__init(&pf.lcache);
804b3606 1100 /* Loop on CUs (Compilation Unit) */
b55a87ad
MH
1101 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) &&
1102 ret >= 0) {
4ea42b18 1103 /* Get the DIE(Debugging Information Entry) of this CU */
804b3606
MH
1104 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
1105 if (!diep)
1106 continue;
4ea42b18
MH
1107
1108 /* Check if target file is included. */
1109 if (pp->file)
2a9c8c36 1110 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
804b3606 1111 else
2a9c8c36 1112 pf.fname = NULL;
4ea42b18 1113
2a9c8c36 1114 if (!pp->file || pf.fname) {
4ea42b18 1115 if (pp->function)
b55a87ad 1116 ret = find_probe_point_by_func(&pf);
2a9c8c36 1117 else if (pp->lazy_line)
b55a87ad 1118 ret = find_probe_point_lazy(NULL, &pf);
b0ef0732
MH
1119 else {
1120 pf.lno = pp->line;
b55a87ad 1121 ret = find_probe_point_by_line(&pf);
b0ef0732 1122 }
4ea42b18 1123 }
804b3606 1124 off = noff;
4ea42b18 1125 }
2a9c8c36 1126 line_list__free(&pf.lcache);
804b3606 1127 dwarf_end(dbg);
4ea42b18 1128
b55a87ad 1129 return (ret < 0) ? ret : pf.ntevs;
4ea42b18
MH
1130}
1131
fb1587d8
MH
1132/* Reverse search */
1133int find_perf_probe_point(int fd, unsigned long addr,
1134 struct perf_probe_point *ppt)
1135{
1136 Dwarf_Die cudie, spdie, indie;
1137 Dwarf *dbg;
1138 Dwarf_Line *line;
1139 Dwarf_Addr laddr, eaddr;
1140 const char *tmp;
1141 int lineno, ret = 0;
b55a87ad 1142 bool found = false;
fb1587d8
MH
1143
1144 dbg = dwarf_begin(fd, DWARF_C_READ);
1145 if (!dbg)
b55a87ad 1146 return -EBADF;
fb1587d8
MH
1147
1148 /* Find cu die */
75ec5a24
MH
1149 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie)) {
1150 ret = -EINVAL;
1151 goto end;
1152 }
fb1587d8
MH
1153
1154 /* Find a corresponding line */
1155 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1156 if (line) {
b55a87ad
MH
1157 if (dwarf_lineaddr(line, &laddr) == 0 &&
1158 (Dwarf_Addr)addr == laddr &&
1159 dwarf_lineno(line, &lineno) == 0) {
fb1587d8 1160 tmp = dwarf_linesrc(line, NULL, NULL);
b55a87ad
MH
1161 if (tmp) {
1162 ppt->line = lineno;
02b95dad
MH
1163 ppt->file = strdup(tmp);
1164 if (ppt->file == NULL) {
1165 ret = -ENOMEM;
1166 goto end;
1167 }
b55a87ad
MH
1168 found = true;
1169 }
fb1587d8
MH
1170 }
1171 }
1172
1173 /* Find a corresponding function */
1174 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1175 tmp = dwarf_diename(&spdie);
b55a87ad 1176 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
fb1587d8
MH
1177 goto end;
1178
b55a87ad
MH
1179 if (ppt->line) {
1180 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr,
1181 &indie)) {
1182 /* addr in an inline function */
1183 tmp = dwarf_diename(&indie);
1184 if (!tmp)
1185 goto end;
1186 ret = dwarf_decl_line(&indie, &lineno);
1187 } else {
1188 if (eaddr == addr) { /* Function entry */
1189 lineno = ppt->line;
1190 ret = 0;
1191 } else
1192 ret = dwarf_decl_line(&spdie, &lineno);
1193 }
1194 if (ret == 0) {
1195 /* Make a relative line number */
1196 ppt->line -= lineno;
1197 goto found;
1198 }
fb1587d8 1199 }
b55a87ad
MH
1200 /* We don't have a line number, let's use offset */
1201 ppt->offset = addr - (unsigned long)eaddr;
1202found:
02b95dad
MH
1203 ppt->function = strdup(tmp);
1204 if (ppt->function == NULL) {
1205 ret = -ENOMEM;
1206 goto end;
1207 }
b55a87ad 1208 found = true;
fb1587d8
MH
1209 }
1210
1211end:
1212 dwarf_end(dbg);
b55a87ad
MH
1213 if (ret >= 0)
1214 ret = found ? 1 : 0;
fb1587d8
MH
1215 return ret;
1216}
1217
f6c903f5
MH
1218/* Add a line and store the src path */
1219static int line_range_add_line(const char *src, unsigned int lineno,
1220 struct line_range *lr)
1221{
7cf0b79e 1222 /* Copy source path */
f6c903f5 1223 if (!lr->path) {
7cf0b79e
MH
1224 lr->path = strdup(src);
1225 if (lr->path == NULL)
1226 return -ENOMEM;
f6c903f5
MH
1227 }
1228 return line_list__add_line(&lr->line_list, lineno);
1229}
1230
1231/* Search function declaration lines */
1232static int line_range_funcdecl_cb(Dwarf_Die *sp_die, void *data)
1233{
1234 struct dwarf_callback_param *param = data;
1235 struct line_finder *lf = param->data;
1236 const char *src;
1237 int lineno;
1238
1239 src = dwarf_decl_file(sp_die);
1240 if (src && strtailcmp(src, lf->fname) != 0)
1241 return DWARF_CB_OK;
1242
1243 if (dwarf_decl_line(sp_die, &lineno) != 0 ||
1244 (lf->lno_s > lineno || lf->lno_e < lineno))
1245 return DWARF_CB_OK;
1246
1247 param->retval = line_range_add_line(src, lineno, lf->lr);
5d1ee041
MH
1248 if (param->retval < 0)
1249 return DWARF_CB_ABORT;
f6c903f5
MH
1250 return DWARF_CB_OK;
1251}
1252
1253static int find_line_range_func_decl_lines(struct line_finder *lf)
1254{
1255 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1256 dwarf_getfuncs(&lf->cu_die, line_range_funcdecl_cb, &param, 0);
1257 return param.retval;
1258}
fb1587d8 1259
631c9def 1260/* Find line range from its line number */
b55a87ad 1261static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
631c9def 1262{
804b3606
MH
1263 Dwarf_Lines *lines;
1264 Dwarf_Line *line;
1265 size_t nlines, i;
631c9def 1266 Dwarf_Addr addr;
f6c903f5 1267 int lineno, ret = 0;
804b3606 1268 const char *src;
161a26b0 1269 Dwarf_Die die_mem;
631c9def 1270
2a9c8c36 1271 line_list__init(&lf->lr->line_list);
b55a87ad
MH
1272 if (dwarf_getsrclines(&lf->cu_die, &lines, &nlines) != 0) {
1273 pr_warning("No source lines found in this CU.\n");
1274 return -ENOENT;
1275 }
631c9def 1276
f6c903f5 1277 /* Search probable lines on lines list */
804b3606
MH
1278 for (i = 0; i < nlines; i++) {
1279 line = dwarf_onesrcline(lines, i);
b55a87ad
MH
1280 if (dwarf_lineno(line, &lineno) != 0 ||
1281 (lf->lno_s > lineno || lf->lno_e < lineno))
631c9def
MH
1282 continue;
1283
161a26b0
MH
1284 if (sp_die) {
1285 /* Address filtering 1: does sp_die include addr? */
b55a87ad
MH
1286 if (dwarf_lineaddr(line, &addr) != 0 ||
1287 !dwarf_haspc(sp_die, addr))
161a26b0
MH
1288 continue;
1289
1290 /* Address filtering 2: No child include addr? */
95a3e4c4 1291 if (die_find_inlinefunc(sp_die, addr, &die_mem))
161a26b0
MH
1292 continue;
1293 }
1294
804b3606
MH
1295 /* TODO: Get fileno from line, but how? */
1296 src = dwarf_linesrc(line, NULL, NULL);
1297 if (strtailcmp(src, lf->fname) != 0)
631c9def
MH
1298 continue;
1299
f6c903f5
MH
1300 ret = line_range_add_line(src, lineno, lf->lr);
1301 if (ret < 0)
1302 return ret;
631c9def 1303 }
f6c903f5
MH
1304
1305 /*
1306 * Dwarf lines doesn't include function declarations. We have to
1307 * check functions list or given function.
1308 */
1309 if (sp_die) {
1310 src = dwarf_decl_file(sp_die);
1311 if (src && dwarf_decl_line(sp_die, &lineno) == 0 &&
1312 (lf->lno_s <= lineno && lf->lno_e >= lineno))
1313 ret = line_range_add_line(src, lineno, lf->lr);
1314 } else
1315 ret = find_line_range_func_decl_lines(lf);
1316
804b3606 1317 /* Update status */
f6c903f5
MH
1318 if (ret >= 0)
1319 if (!list_empty(&lf->lr->line_list))
1320 ret = lf->found = 1;
1321 else
1322 ret = 0; /* Lines are not found */
804b3606
MH
1323 else {
1324 free(lf->lr->path);
1325 lf->lr->path = NULL;
1326 }
f6c903f5 1327 return ret;
631c9def
MH
1328}
1329
161a26b0
MH
1330static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1331{
b55a87ad
MH
1332 struct dwarf_callback_param *param = data;
1333
1334 param->retval = find_line_range_by_line(in_die, param->data);
161a26b0
MH
1335 return DWARF_CB_ABORT; /* No need to find other instances */
1336}
1337
631c9def 1338/* Search function from function name */
e92b85e1 1339static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
631c9def 1340{
b55a87ad
MH
1341 struct dwarf_callback_param *param = data;
1342 struct line_finder *lf = param->data;
631c9def 1343 struct line_range *lr = lf->lr;
631c9def 1344
e92b85e1 1345 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
82175633 1346 die_compare_name(sp_die, lr->function)) {
e92b85e1
MH
1347 lf->fname = dwarf_decl_file(sp_die);
1348 dwarf_decl_line(sp_die, &lr->offset);
804b3606 1349 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
631c9def 1350 lf->lno_s = lr->offset + lr->start;
d3b63d7a
MH
1351 if (lf->lno_s < 0) /* Overflow */
1352 lf->lno_s = INT_MAX;
1353 lf->lno_e = lr->offset + lr->end;
1354 if (lf->lno_e < 0) /* Overflow */
804b3606 1355 lf->lno_e = INT_MAX;
d3b63d7a 1356 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
631c9def
MH
1357 lr->start = lf->lno_s;
1358 lr->end = lf->lno_e;
b55a87ad
MH
1359 if (dwarf_func_inline(sp_die)) {
1360 struct dwarf_callback_param _param;
1361 _param.data = (void *)lf;
1362 _param.retval = 0;
161a26b0 1363 dwarf_func_inline_instances(sp_die,
b55a87ad
MH
1364 line_range_inline_cb,
1365 &_param);
1366 param->retval = _param.retval;
1367 } else
1368 param->retval = find_line_range_by_line(sp_die, lf);
1369 return DWARF_CB_ABORT;
631c9def 1370 }
b55a87ad 1371 return DWARF_CB_OK;
631c9def
MH
1372}
1373
b55a87ad 1374static int find_line_range_by_func(struct line_finder *lf)
631c9def 1375{
b55a87ad
MH
1376 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1377 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1378 return param.retval;
631c9def
MH
1379}
1380
1381int find_line_range(int fd, struct line_range *lr)
1382{
804b3606 1383 struct line_finder lf = {.lr = lr, .found = 0};
b55a87ad 1384 int ret = 0;
804b3606
MH
1385 Dwarf_Off off = 0, noff;
1386 size_t cuhl;
1387 Dwarf_Die *diep;
1388 Dwarf *dbg;
6a330a3c 1389 const char *comp_dir;
804b3606
MH
1390
1391 dbg = dwarf_begin(fd, DWARF_C_READ);
b55a87ad
MH
1392 if (!dbg) {
1393 pr_warning("No dwarf info found in the vmlinux - "
1394 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1395 return -EBADF;
1396 }
631c9def 1397
804b3606 1398 /* Loop on CUs (Compilation Unit) */
b55a87ad
MH
1399 while (!lf.found && ret >= 0) {
1400 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
631c9def
MH
1401 break;
1402
1403 /* Get the DIE(Debugging Information Entry) of this CU */
804b3606
MH
1404 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1405 if (!diep)
1406 continue;
631c9def
MH
1407
1408 /* Check if target file is included. */
1409 if (lr->file)
2a9c8c36 1410 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
804b3606 1411 else
2a9c8c36 1412 lf.fname = 0;
631c9def 1413
2a9c8c36 1414 if (!lr->file || lf.fname) {
631c9def 1415 if (lr->function)
b55a87ad 1416 ret = find_line_range_by_func(&lf);
631c9def
MH
1417 else {
1418 lf.lno_s = lr->start;
d3b63d7a 1419 lf.lno_e = lr->end;
b55a87ad 1420 ret = find_line_range_by_line(NULL, &lf);
631c9def 1421 }
631c9def 1422 }
804b3606 1423 off = noff;
631c9def 1424 }
6a330a3c
MH
1425
1426 /* Store comp_dir */
1427 if (lf.found) {
1428 comp_dir = cu_get_comp_dir(&lf.cu_die);
1429 if (comp_dir) {
1430 lr->comp_dir = strdup(comp_dir);
1431 if (!lr->comp_dir)
1432 ret = -ENOMEM;
1433 }
1434 }
1435
7cf0b79e 1436 pr_debug("path: %s\n", lr->path);
804b3606 1437 dwarf_end(dbg);
b55a87ad
MH
1438
1439 return (ret < 0) ? ret : lf.found;
631c9def
MH
1440}
1441
This page took 0.195671 seconds and 5 git commands to generate.