perf probe: Rename some die_get_* functions
[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>
074fc0e4 34
2a9c8c36 35#include "string.h"
89c69c0e
MH
36#include "event.h"
37#include "debug.h"
074fc0e4 38#include "util.h"
4ea42b18
MH
39#include "probe-finder.h"
40
41
4ea42b18
MH
42/*
43 * Generic dwarf analysis helpers
44 */
45
46#define X86_32_MAX_REGS 8
47const char *x86_32_regs_table[X86_32_MAX_REGS] = {
48 "%ax",
49 "%cx",
50 "%dx",
51 "%bx",
52 "$stack", /* Stack address instead of %sp */
53 "%bp",
54 "%si",
55 "%di",
56};
57
58#define X86_64_MAX_REGS 16
59const char *x86_64_regs_table[X86_64_MAX_REGS] = {
60 "%ax",
61 "%dx",
62 "%cx",
63 "%bx",
64 "%si",
65 "%di",
66 "%bp",
67 "%sp",
68 "%r8",
69 "%r9",
70 "%r10",
71 "%r11",
72 "%r12",
73 "%r13",
74 "%r14",
75 "%r15",
76};
77
78/* TODO: switching by dwarf address size */
79#ifdef __x86_64__
80#define ARCH_MAX_REGS X86_64_MAX_REGS
81#define arch_regs_table x86_64_regs_table
82#else
83#define ARCH_MAX_REGS X86_32_MAX_REGS
84#define arch_regs_table x86_32_regs_table
85#endif
86
87/* Return architecture dependent register string (for kprobe-tracer) */
88static const char *get_arch_regstr(unsigned int n)
89{
90 return (n <= ARCH_MAX_REGS) ? arch_regs_table[n] : NULL;
91}
92
93/*
94 * Compare the tail of two strings.
95 * Return 0 if whole of either string is same as another's tail part.
96 */
97static int strtailcmp(const char *s1, const char *s2)
98{
99 int i1 = strlen(s1);
100 int i2 = strlen(s2);
d56728b8 101 while (--i1 >= 0 && --i2 >= 0) {
4ea42b18
MH
102 if (s1[i1] != s2[i2])
103 return s1[i1] - s2[i2];
104 }
105 return 0;
106}
107
2a9c8c36
MH
108/* Line number list operations */
109
110/* Add a line to line number list */
111static void line_list__add_line(struct list_head *head, unsigned int line)
112{
113 struct line_node *ln;
114 struct list_head *p;
115
116 /* Reverse search, because new line will be the last one */
117 list_for_each_entry_reverse(ln, head, list) {
118 if (ln->line < line) {
119 p = &ln->list;
120 goto found;
121 } else if (ln->line == line) /* Already exist */
122 return ;
123 }
124 /* List is empty, or the smallest entry */
125 p = head;
126found:
127 pr_debug("line list: add a line %u\n", line);
31facc5f 128 ln = xzalloc(sizeof(struct line_node));
2a9c8c36
MH
129 ln->line = line;
130 INIT_LIST_HEAD(&ln->list);
131 list_add(&ln->list, p);
132}
133
134/* Check if the line in line number list */
135static int line_list__has_line(struct list_head *head, unsigned int line)
136{
137 struct line_node *ln;
138
139 /* Reverse search, because new line will be the last one */
140 list_for_each_entry(ln, head, list)
141 if (ln->line == line)
142 return 1;
143
144 return 0;
145}
146
147/* Init line number list */
148static void line_list__init(struct list_head *head)
149{
150 INIT_LIST_HEAD(head);
151}
152
153/* Free line number list */
154static void line_list__free(struct list_head *head)
155{
156 struct line_node *ln;
157 while (!list_empty(head)) {
158 ln = list_first_entry(head, struct line_node, list);
159 list_del(&ln->list);
160 free(ln);
161 }
162}
163
164/* Dwarf wrappers */
165
166/* Find the realpath of the target file. */
167static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
4ea42b18 168{
804b3606
MH
169 Dwarf_Files *files;
170 size_t nfiles, i;
accd3cc4 171 const char *src = NULL;
4ea42b18
MH
172 int ret;
173
174 if (!fname)
2a9c8c36 175 return NULL;
4ea42b18 176
804b3606 177 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
2a9c8c36
MH
178 if (ret != 0)
179 return NULL;
180
181 for (i = 0; i < nfiles; i++) {
182 src = dwarf_filesrc(files, i, NULL, NULL);
183 if (strtailcmp(src, fname) == 0)
184 break;
4ea42b18 185 }
2a9c8c36 186 return src;
4ea42b18
MH
187}
188
804b3606
MH
189struct __addr_die_search_param {
190 Dwarf_Addr addr;
191 Dwarf_Die *die_mem;
192};
193
194static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
631c9def 195{
804b3606 196 struct __addr_die_search_param *ad = data;
631c9def 197
804b3606
MH
198 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
199 dwarf_haspc(fn_die, ad->addr)) {
200 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
201 return DWARF_CB_ABORT;
202 }
203 return DWARF_CB_OK;
204}
631c9def 205
804b3606 206/* Search a real subprogram including this line, */
95a3e4c4
MH
207static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
208 Dwarf_Die *die_mem)
804b3606
MH
209{
210 struct __addr_die_search_param ad;
211 ad.addr = addr;
212 ad.die_mem = die_mem;
213 /* dwarf_getscopes can't find subprogram. */
214 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
215 return NULL;
216 else
217 return die_mem;
631c9def
MH
218}
219
161a26b0 220/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
95a3e4c4
MH
221static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
222 Dwarf_Die *die_mem)
161a26b0
MH
223{
224 Dwarf_Die child_die;
225 int ret;
226
227 ret = dwarf_child(sp_die, die_mem);
228 if (ret != 0)
229 return NULL;
230
231 do {
232 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
233 dwarf_haspc(die_mem, addr))
234 return die_mem;
235
95a3e4c4 236 if (die_find_inlinefunc(die_mem, addr, &child_die)) {
161a26b0
MH
237 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
238 return die_mem;
239 }
240 } while (dwarf_siblingof(die_mem, die_mem) == 0);
241
242 return NULL;
243}
244
4ea42b18 245/* Compare diename and tname */
804b3606 246static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
4ea42b18 247{
804b3606
MH
248 const char *name;
249 name = dwarf_diename(dw_die);
250 DIE_IF(name == NULL);
251 return strcmp(tname, name);
4ea42b18
MH
252}
253
804b3606
MH
254/* Get entry pc(or low pc, 1st entry of ranges) of the die */
255static Dwarf_Addr die_get_entrypc(Dwarf_Die *dw_die)
4ea42b18 256{
804b3606 257 Dwarf_Addr epc;
4ea42b18
MH
258 int ret;
259
804b3606
MH
260 ret = dwarf_entrypc(dw_die, &epc);
261 DIE_IF(ret == -1);
262 return epc;
4ea42b18
MH
263}
264
e92b85e1
MH
265/* Get a variable die */
266static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
267 Dwarf_Die *die_mem)
4ea42b18 268{
e92b85e1
MH
269 Dwarf_Die child_die;
270 int tag;
4ea42b18
MH
271 int ret;
272
e92b85e1
MH
273 ret = dwarf_child(sp_die, die_mem);
274 if (ret != 0)
275 return NULL;
4ea42b18 276
e92b85e1
MH
277 do {
278 tag = dwarf_tag(die_mem);
279 if ((tag == DW_TAG_formal_parameter ||
280 tag == DW_TAG_variable) &&
281 (die_compare_name(die_mem, name) == 0))
282 return die_mem;
4ea42b18 283
e92b85e1
MH
284 if (die_find_variable(die_mem, name, &child_die)) {
285 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
286 return die_mem;
287 }
288 } while (dwarf_siblingof(die_mem, die_mem) == 0);
4ea42b18 289
e92b85e1 290 return NULL;
4ea42b18
MH
291}
292
4ea42b18
MH
293/*
294 * Probe finder related functions
295 */
296
297/* Show a location */
804b3606 298static void show_location(Dwarf_Op *op, struct probe_finder *pf)
4ea42b18 299{
804b3606
MH
300 unsigned int regn;
301 Dwarf_Word offs = 0;
4ea42b18
MH
302 int deref = 0, ret;
303 const char *regs;
304
804b3606 305 /* TODO: support CFA */
4ea42b18 306 /* If this is based on frame buffer, set the offset */
804b3606
MH
307 if (op->atom == DW_OP_fbreg) {
308 if (pf->fb_ops == NULL)
309 die("The attribute of frame base is not supported.\n");
4ea42b18 310 deref = 1;
804b3606
MH
311 offs = op->number;
312 op = &pf->fb_ops[0];
313 }
4ea42b18 314
804b3606
MH
315 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
316 regn = op->atom - DW_OP_breg0;
317 offs += op->number;
4ea42b18 318 deref = 1;
804b3606
MH
319 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
320 regn = op->atom - DW_OP_reg0;
321 } else if (op->atom == DW_OP_bregx) {
322 regn = op->number;
323 offs += op->number2;
4ea42b18 324 deref = 1;
804b3606
MH
325 } else if (op->atom == DW_OP_regx) {
326 regn = op->number;
4ea42b18 327 } else
804b3606 328 die("DW_OP %d is not supported.", op->atom);
4ea42b18
MH
329
330 regs = get_arch_regstr(regn);
331 if (!regs)
804b3606 332 die("%u exceeds max register number.", regn);
4ea42b18
MH
333
334 if (deref)
67c7ff7c
MH
335 ret = snprintf(pf->buf, pf->len, " %s=%+jd(%s)",
336 pf->var, (intmax_t)offs, regs);
4ea42b18
MH
337 else
338 ret = snprintf(pf->buf, pf->len, " %s=%s", pf->var, regs);
9769833b
MH
339 DIE_IF(ret < 0);
340 DIE_IF(ret >= pf->len);
4ea42b18
MH
341}
342
343/* Show a variables in kprobe event format */
804b3606 344static void show_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
4ea42b18
MH
345{
346 Dwarf_Attribute attr;
804b3606
MH
347 Dwarf_Op *expr;
348 size_t nexpr;
4ea42b18
MH
349 int ret;
350
804b3606 351 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
4ea42b18 352 goto error;
804b3606 353 /* TODO: handle more than 1 exprs */
d0cb4260 354 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
804b3606 355 if (ret <= 0 || nexpr == 0)
4ea42b18 356 goto error;
804b3606
MH
357
358 show_location(expr, pf);
359 /* *expr will be cached in libdw. Don't free it. */
4ea42b18
MH
360 return ;
361error:
804b3606 362 /* TODO: Support const_value */
074fc0e4 363 die("Failed to find the location of %s at this address.\n"
bbaa46fa 364 " Perhaps, it has been optimized out.", pf->var);
4ea42b18
MH
365}
366
4ea42b18 367/* Find a variable in a subprogram die */
804b3606 368static void find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
4ea42b18
MH
369{
370 int ret;
e92b85e1 371 Dwarf_Die vr_die;
4ea42b18 372
e92b85e1 373 /* TODO: Support struct members and arrays */
4ea42b18
MH
374 if (!is_c_varname(pf->var)) {
375 /* Output raw parameters */
376 ret = snprintf(pf->buf, pf->len, " %s", pf->var);
9769833b
MH
377 DIE_IF(ret < 0);
378 DIE_IF(ret >= pf->len);
4ea42b18
MH
379 return ;
380 }
381
b7cb10e7 382 pr_debug("Searching '%s' variable in context.\n", pf->var);
4ea42b18 383 /* Search child die for local variables and parameters. */
e92b85e1 384 if (!die_find_variable(sp_die, pf->var, &vr_die))
bbaa46fa 385 die("Failed to find '%s' in this function.", pf->var);
e92b85e1
MH
386
387 show_variable(&vr_die, pf);
4ea42b18
MH
388}
389
4ea42b18 390/* Show a probe point to output buffer */
e92b85e1 391static void show_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
4ea42b18
MH
392{
393 struct probe_point *pp = pf->pp;
e92b85e1
MH
394 Dwarf_Addr eaddr;
395 Dwarf_Die die_mem;
804b3606 396 const char *name;
4ea42b18
MH
397 char tmp[MAX_PROBE_BUFFER];
398 int ret, i, len;
804b3606
MH
399 Dwarf_Attribute fb_attr;
400 size_t nops;
4ea42b18 401
e92b85e1
MH
402 /* If no real subprogram, find a real one */
403 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
95a3e4c4 404 sp_die = die_find_real_subprogram(&pf->cu_die,
e92b85e1
MH
405 pf->addr, &die_mem);
406 if (!sp_die)
407 die("Probe point is not found in subprograms.");
408 }
409
4ea42b18 410 /* Output name of probe point */
804b3606
MH
411 name = dwarf_diename(sp_die);
412 if (name) {
e92b85e1
MH
413 dwarf_entrypc(sp_die, &eaddr);
414 ret = snprintf(tmp, MAX_PROBE_BUFFER, "%s+%lu", name,
415 (unsigned long)(pf->addr - eaddr));
253977b0
MH
416 /* Copy the function name if possible */
417 if (!pp->function) {
31facc5f 418 pp->function = xstrdup(name);
e92b85e1 419 pp->offset = (size_t)(pf->addr - eaddr);
253977b0 420 }
4ea42b18
MH
421 } else {
422 /* This function has no name. */
804b3606
MH
423 ret = snprintf(tmp, MAX_PROBE_BUFFER, "0x%jx",
424 (uintmax_t)pf->addr);
253977b0
MH
425 if (!pp->function) {
426 /* TODO: Use _stext */
31facc5f 427 pp->function = xstrdup("");
804b3606 428 pp->offset = (size_t)pf->addr;
253977b0 429 }
4ea42b18 430 }
9769833b
MH
431 DIE_IF(ret < 0);
432 DIE_IF(ret >= MAX_PROBE_BUFFER);
4ea42b18 433 len = ret;
b0ef0732 434 pr_debug("Probe point found: %s\n", tmp);
4ea42b18 435
804b3606
MH
436 /* Get the frame base attribute/ops */
437 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
d0cb4260 438 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
804b3606
MH
439 if (ret <= 0 || nops == 0)
440 pf->fb_ops = NULL;
441
4ea42b18 442 /* Find each argument */
804b3606 443 /* TODO: use dwarf_cfi_addrframe */
4ea42b18
MH
444 for (i = 0; i < pp->nr_args; i++) {
445 pf->var = pp->args[i];
446 pf->buf = &tmp[len];
447 pf->len = MAX_PROBE_BUFFER - len;
448 find_variable(sp_die, pf);
449 len += strlen(pf->buf);
450 }
804b3606
MH
451
452 /* *pf->fb_ops will be cached in libdw. Don't free it. */
453 pf->fb_ops = NULL;
4ea42b18 454
594087a0
MH
455 if (pp->found == MAX_PROBES)
456 die("Too many( > %d) probe point found.\n", MAX_PROBES);
457
31facc5f 458 pp->probes[pp->found] = xstrdup(tmp);
4ea42b18
MH
459 pp->found++;
460}
461
4ea42b18 462/* Find probe point from its line number */
631c9def 463static void find_probe_point_by_line(struct probe_finder *pf)
4ea42b18 464{
804b3606
MH
465 Dwarf_Lines *lines;
466 Dwarf_Line *line;
467 size_t nlines, i;
e92b85e1 468 Dwarf_Addr addr;
804b3606 469 int lineno;
4ea42b18
MH
470 int ret;
471
804b3606
MH
472 ret = dwarf_getsrclines(&pf->cu_die, &lines, &nlines);
473 DIE_IF(ret != 0);
4ea42b18 474
804b3606
MH
475 for (i = 0; i < nlines; i++) {
476 line = dwarf_onesrcline(lines, i);
477 dwarf_lineno(line, &lineno);
b0ef0732 478 if (lineno != pf->lno)
4ea42b18
MH
479 continue;
480
804b3606
MH
481 /* TODO: Get fileno from line, but how? */
482 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
483 continue;
b0ef0732 484
804b3606
MH
485 ret = dwarf_lineaddr(line, &addr);
486 DIE_IF(ret != 0);
487 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
488 (int)i, lineno, (uintmax_t)addr);
4ea42b18 489 pf->addr = addr;
804b3606 490
e92b85e1 491 show_probe_point(NULL, pf);
4ea42b18
MH
492 /* Continuing, because target line might be inlined. */
493 }
4ea42b18
MH
494}
495
2a9c8c36
MH
496/* Find lines which match lazy pattern */
497static int find_lazy_match_lines(struct list_head *head,
498 const char *fname, const char *pat)
499{
500 char *fbuf, *p1, *p2;
501 int fd, line, nlines = 0;
502 struct stat st;
503
504 fd = open(fname, O_RDONLY);
505 if (fd < 0)
506 die("failed to open %s", fname);
507 DIE_IF(fstat(fd, &st) < 0);
31facc5f 508 fbuf = xmalloc(st.st_size + 2);
2a9c8c36
MH
509 DIE_IF(read(fd, fbuf, st.st_size) < 0);
510 close(fd);
511 fbuf[st.st_size] = '\n'; /* Dummy line */
512 fbuf[st.st_size + 1] = '\0';
513 p1 = fbuf;
514 line = 1;
515 while ((p2 = strchr(p1, '\n')) != NULL) {
516 *p2 = '\0';
517 if (strlazymatch(p1, pat)) {
518 line_list__add_line(head, line);
519 nlines++;
520 }
521 line++;
522 p1 = p2 + 1;
523 }
524 free(fbuf);
525 return nlines;
526}
527
528/* Find probe points from lazy pattern */
529static void find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
530{
531 Dwarf_Lines *lines;
532 Dwarf_Line *line;
533 size_t nlines, i;
534 Dwarf_Addr addr;
535 Dwarf_Die die_mem;
536 int lineno;
537 int ret;
538
539 if (list_empty(&pf->lcache)) {
540 /* Matching lazy line pattern */
541 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
542 pf->pp->lazy_line);
543 if (ret <= 0)
544 die("No matched lines found in %s.", pf->fname);
545 }
546
547 ret = dwarf_getsrclines(&pf->cu_die, &lines, &nlines);
548 DIE_IF(ret != 0);
549 for (i = 0; i < nlines; i++) {
550 line = dwarf_onesrcline(lines, i);
551
552 dwarf_lineno(line, &lineno);
553 if (!line_list__has_line(&pf->lcache, lineno))
554 continue;
555
556 /* TODO: Get fileno from line, but how? */
557 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
558 continue;
559
560 ret = dwarf_lineaddr(line, &addr);
561 DIE_IF(ret != 0);
562 if (sp_die) {
563 /* Address filtering 1: does sp_die include addr? */
564 if (!dwarf_haspc(sp_die, addr))
565 continue;
566 /* Address filtering 2: No child include addr? */
95a3e4c4 567 if (die_find_inlinefunc(sp_die, addr, &die_mem))
2a9c8c36
MH
568 continue;
569 }
570
571 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
572 (int)i, lineno, (unsigned long long)addr);
573 pf->addr = addr;
574
575 show_probe_point(sp_die, pf);
576 /* Continuing, because target line might be inlined. */
577 }
578 /* TODO: deallocate lines, but how? */
579}
580
e92b85e1
MH
581static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
582{
583 struct probe_finder *pf = (struct probe_finder *)data;
584 struct probe_point *pp = pf->pp;
585
2a9c8c36
MH
586 if (pp->lazy_line)
587 find_probe_point_lazy(in_die, pf);
588 else {
589 /* Get probe address */
590 pf->addr = die_get_entrypc(in_die);
591 pf->addr += pp->offset;
592 pr_debug("found inline addr: 0x%jx\n",
593 (uintmax_t)pf->addr);
594
595 show_probe_point(in_die, pf);
596 }
e92b85e1 597
e92b85e1
MH
598 return DWARF_CB_OK;
599}
804b3606 600
4ea42b18 601/* Search function from function name */
e92b85e1 602static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
4ea42b18
MH
603{
604 struct probe_finder *pf = (struct probe_finder *)data;
605 struct probe_point *pp = pf->pp;
4ea42b18 606
e92b85e1
MH
607 /* Check tag and diename */
608 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
609 die_compare_name(sp_die, pp->function) != 0)
610 return 0;
611
2a9c8c36 612 pf->fname = dwarf_decl_file(sp_die);
e92b85e1 613 if (pp->line) { /* Function relative line */
e92b85e1
MH
614 dwarf_decl_line(sp_die, &pf->lno);
615 pf->lno += pp->line;
616 find_probe_point_by_line(pf);
617 } else if (!dwarf_func_inline(sp_die)) {
618 /* Real function */
2a9c8c36
MH
619 if (pp->lazy_line)
620 find_probe_point_lazy(sp_die, pf);
621 else {
622 pf->addr = die_get_entrypc(sp_die);
623 pf->addr += pp->offset;
624 /* TODO: Check the address in this function */
625 show_probe_point(sp_die, pf);
626 }
e92b85e1
MH
627 } else
628 /* Inlined function: search instances */
629 dwarf_func_inline_instances(sp_die, probe_point_inline_cb, pf);
630
631 return 1; /* Exit; no same symbol in this CU. */
4ea42b18
MH
632}
633
631c9def 634static void find_probe_point_by_func(struct probe_finder *pf)
4ea42b18 635{
e92b85e1 636 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, pf, 0);
4ea42b18
MH
637}
638
639/* Find a probe point */
81cb8aa3 640int find_probe_point(int fd, struct probe_point *pp)
4ea42b18 641{
4ea42b18 642 struct probe_finder pf = {.pp = pp};
804b3606
MH
643 Dwarf_Off off, noff;
644 size_t cuhl;
645 Dwarf_Die *diep;
646 Dwarf *dbg;
804b3606
MH
647
648 dbg = dwarf_begin(fd, DWARF_C_READ);
649 if (!dbg)
a225a1d9 650 return -ENOENT;
4ea42b18
MH
651
652 pp->found = 0;
804b3606 653 off = 0;
2a9c8c36 654 line_list__init(&pf.lcache);
804b3606
MH
655 /* Loop on CUs (Compilation Unit) */
656 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL)) {
4ea42b18 657 /* Get the DIE(Debugging Information Entry) of this CU */
804b3606
MH
658 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
659 if (!diep)
660 continue;
4ea42b18
MH
661
662 /* Check if target file is included. */
663 if (pp->file)
2a9c8c36 664 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
804b3606 665 else
2a9c8c36 666 pf.fname = NULL;
4ea42b18 667
2a9c8c36 668 if (!pp->file || pf.fname) {
4ea42b18 669 if (pp->function)
631c9def 670 find_probe_point_by_func(&pf);
2a9c8c36
MH
671 else if (pp->lazy_line)
672 find_probe_point_lazy(NULL, &pf);
b0ef0732
MH
673 else {
674 pf.lno = pp->line;
631c9def 675 find_probe_point_by_line(&pf);
b0ef0732 676 }
4ea42b18 677 }
804b3606 678 off = noff;
4ea42b18 679 }
2a9c8c36 680 line_list__free(&pf.lcache);
804b3606 681 dwarf_end(dbg);
4ea42b18
MH
682
683 return pp->found;
684}
685
631c9def 686/* Find line range from its line number */
161a26b0 687static void find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
631c9def 688{
804b3606
MH
689 Dwarf_Lines *lines;
690 Dwarf_Line *line;
691 size_t nlines, i;
631c9def 692 Dwarf_Addr addr;
804b3606 693 int lineno;
631c9def 694 int ret;
804b3606 695 const char *src;
161a26b0 696 Dwarf_Die die_mem;
631c9def 697
2a9c8c36 698 line_list__init(&lf->lr->line_list);
804b3606
MH
699 ret = dwarf_getsrclines(&lf->cu_die, &lines, &nlines);
700 DIE_IF(ret != 0);
631c9def 701
804b3606
MH
702 for (i = 0; i < nlines; i++) {
703 line = dwarf_onesrcline(lines, i);
161a26b0
MH
704 ret = dwarf_lineno(line, &lineno);
705 DIE_IF(ret != 0);
804b3606 706 if (lf->lno_s > lineno || lf->lno_e < lineno)
631c9def
MH
707 continue;
708
161a26b0
MH
709 if (sp_die) {
710 /* Address filtering 1: does sp_die include addr? */
711 ret = dwarf_lineaddr(line, &addr);
712 DIE_IF(ret != 0);
713 if (!dwarf_haspc(sp_die, addr))
714 continue;
715
716 /* Address filtering 2: No child include addr? */
95a3e4c4 717 if (die_find_inlinefunc(sp_die, addr, &die_mem))
161a26b0
MH
718 continue;
719 }
720
804b3606
MH
721 /* TODO: Get fileno from line, but how? */
722 src = dwarf_linesrc(line, NULL, NULL);
723 if (strtailcmp(src, lf->fname) != 0)
631c9def
MH
724 continue;
725
804b3606
MH
726 /* Copy real path */
727 if (!lf->lr->path)
31facc5f 728 lf->lr->path = xstrdup(src);
2a9c8c36 729 line_list__add_line(&lf->lr->line_list, (unsigned int)lineno);
631c9def 730 }
804b3606 731 /* Update status */
631c9def
MH
732 if (!list_empty(&lf->lr->line_list))
733 lf->found = 1;
804b3606
MH
734 else {
735 free(lf->lr->path);
736 lf->lr->path = NULL;
737 }
631c9def
MH
738}
739
161a26b0
MH
740static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
741{
742 find_line_range_by_line(in_die, (struct line_finder *)data);
743 return DWARF_CB_ABORT; /* No need to find other instances */
744}
745
631c9def 746/* Search function from function name */
e92b85e1 747static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
631c9def
MH
748{
749 struct line_finder *lf = (struct line_finder *)data;
750 struct line_range *lr = lf->lr;
631c9def 751
e92b85e1
MH
752 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
753 die_compare_name(sp_die, lr->function) == 0) {
e92b85e1
MH
754 lf->fname = dwarf_decl_file(sp_die);
755 dwarf_decl_line(sp_die, &lr->offset);
804b3606 756 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
631c9def
MH
757 lf->lno_s = lr->offset + lr->start;
758 if (!lr->end)
804b3606 759 lf->lno_e = INT_MAX;
631c9def
MH
760 else
761 lf->lno_e = lr->offset + lr->end;
762 lr->start = lf->lno_s;
763 lr->end = lf->lno_e;
161a26b0
MH
764 if (dwarf_func_inline(sp_die))
765 dwarf_func_inline_instances(sp_die,
766 line_range_inline_cb, lf);
767 else
768 find_line_range_by_line(sp_die, lf);
631c9def
MH
769 return 1;
770 }
771 return 0;
772}
773
774static void find_line_range_by_func(struct line_finder *lf)
775{
e92b85e1 776 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, lf, 0);
631c9def
MH
777}
778
779int find_line_range(int fd, struct line_range *lr)
780{
804b3606 781 struct line_finder lf = {.lr = lr, .found = 0};
631c9def 782 int ret;
804b3606
MH
783 Dwarf_Off off = 0, noff;
784 size_t cuhl;
785 Dwarf_Die *diep;
786 Dwarf *dbg;
804b3606
MH
787
788 dbg = dwarf_begin(fd, DWARF_C_READ);
789 if (!dbg)
631c9def
MH
790 return -ENOENT;
791
804b3606 792 /* Loop on CUs (Compilation Unit) */
631c9def 793 while (!lf.found) {
804b3606
MH
794 ret = dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL);
795 if (ret != 0)
631c9def
MH
796 break;
797
798 /* Get the DIE(Debugging Information Entry) of this CU */
804b3606
MH
799 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
800 if (!diep)
801 continue;
631c9def
MH
802
803 /* Check if target file is included. */
804 if (lr->file)
2a9c8c36 805 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
804b3606 806 else
2a9c8c36 807 lf.fname = 0;
631c9def 808
2a9c8c36 809 if (!lr->file || lf.fname) {
631c9def
MH
810 if (lr->function)
811 find_line_range_by_func(&lf);
812 else {
813 lf.lno_s = lr->start;
814 if (!lr->end)
804b3606 815 lf.lno_e = INT_MAX;
631c9def
MH
816 else
817 lf.lno_e = lr->end;
161a26b0 818 find_line_range_by_line(NULL, &lf);
631c9def 819 }
631c9def 820 }
804b3606 821 off = noff;
631c9def 822 }
804b3606
MH
823 pr_debug("path: %lx\n", (unsigned long)lr->path);
824 dwarf_end(dbg);
631c9def
MH
825 return lf.found;
826}
827
This page took 0.081562 seconds and 5 git commands to generate.