blob: 0d795bc3e1a8a91bd0683e4c15a23a434dc84451 [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"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040040#include "probe-finder.h"
41
Masami Hiramatsu49849122010-04-12 13:17:15 -040042/* Kprobe tracer basic type is up to u64 */
43#define MAX_BASIC_TYPE_BITS 64
44
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040045/*
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);
Juha Leppanend56728b2009-12-07 12:00:40 -050053 while (--i1 >= 0 && --i2 >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040054 if (s1[i1] != s2[i2])
55 return s1[i1] - s2[i2];
56 }
57 return 0;
58}
59
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050060/* Line number list operations */
61
62/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040063static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050064{
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 */
Masami Hiramatsue334016f12010-04-12 13:17:49 -040074 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050075 }
76 /* List is empty, or the smallest entry */
77 p = head;
78found:
79 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040080 ln = zalloc(sizeof(struct line_node));
81 if (ln == NULL)
82 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050083 ln->line = line;
84 INIT_LIST_HEAD(&ln->list);
85 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -040086 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050087}
88
89/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -040090static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050091{
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)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400123{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500124 Dwarf_Files *files;
125 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300126 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400127 int ret;
128
129 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500130 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500131
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500132 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500133 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;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500140 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400141 if (i == nfiles)
142 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500143 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500144}
145
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400146/* Compare diename and tname */
147static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
148{
149 const char *name;
150 name = dwarf_diename(dw_die);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400151 return name ? strcmp(tname, name) : -1;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400152}
153
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400154/* Get type die, but skip qualifiers and typedef */
155static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
156{
157 Dwarf_Attribute attr;
158 int tag;
159
160 do {
161 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
162 dwarf_formref_die(&attr, die_mem) == NULL)
163 return NULL;
164
165 tag = dwarf_tag(die_mem);
166 vr_die = die_mem;
167 } while (tag == DW_TAG_const_type ||
168 tag == DW_TAG_restrict_type ||
169 tag == DW_TAG_volatile_type ||
170 tag == DW_TAG_shared_type ||
171 tag == DW_TAG_typedef);
172
173 return die_mem;
174}
175
Masami Hiramatsu49849122010-04-12 13:17:15 -0400176static bool die_is_signed_type(Dwarf_Die *tp_die)
177{
178 Dwarf_Attribute attr;
179 Dwarf_Word ret;
180
181 if (dwarf_attr(tp_die, DW_AT_encoding, &attr) == NULL ||
182 dwarf_formudata(&attr, &ret) != 0)
183 return false;
184
185 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
186 ret == DW_ATE_signed_fixed);
187}
188
189static int die_get_byte_size(Dwarf_Die *tp_die)
190{
191 Dwarf_Attribute attr;
192 Dwarf_Word ret;
193
194 if (dwarf_attr(tp_die, DW_AT_byte_size, &attr) == NULL ||
195 dwarf_formudata(&attr, &ret) != 0)
196 return 0;
197
198 return (int)ret;
199}
200
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300201/* Get data_member_location offset */
202static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
203{
204 Dwarf_Attribute attr;
205 Dwarf_Op *expr;
206 size_t nexpr;
207 int ret;
208
209 if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
210 return -ENOENT;
211
212 if (dwarf_formudata(&attr, offs) != 0) {
213 /* DW_AT_data_member_location should be DW_OP_plus_uconst */
214 ret = dwarf_getlocation(&attr, &expr, &nexpr);
215 if (ret < 0 || nexpr == 0)
216 return -ENOENT;
217
218 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
219 pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
220 expr[0].atom, nexpr);
221 return -ENOTSUP;
222 }
223 *offs = (Dwarf_Word)expr[0].number;
224 }
225 return 0;
226}
227
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400228/* Return values for die_find callbacks */
229enum {
230 DIE_FIND_CB_FOUND = 0, /* End of Search */
231 DIE_FIND_CB_CHILD = 1, /* Search only children */
232 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
233 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
234};
235
236/* Search a child die */
237static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
238 int (*callback)(Dwarf_Die *, void *),
239 void *data, Dwarf_Die *die_mem)
240{
241 Dwarf_Die child_die;
242 int ret;
243
244 ret = dwarf_child(rt_die, die_mem);
245 if (ret != 0)
246 return NULL;
247
248 do {
249 ret = callback(die_mem, data);
250 if (ret == DIE_FIND_CB_FOUND)
251 return die_mem;
252
253 if ((ret & DIE_FIND_CB_CHILD) &&
254 die_find_child(die_mem, callback, data, &child_die)) {
255 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
256 return die_mem;
257 }
258 } while ((ret & DIE_FIND_CB_SIBLING) &&
259 dwarf_siblingof(die_mem, die_mem) == 0);
260
261 return NULL;
262}
263
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500264struct __addr_die_search_param {
265 Dwarf_Addr addr;
266 Dwarf_Die *die_mem;
267};
268
269static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
270{
271 struct __addr_die_search_param *ad = data;
272
273 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
274 dwarf_haspc(fn_die, ad->addr)) {
275 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
276 return DWARF_CB_ABORT;
277 }
278 return DWARF_CB_OK;
279}
280
281/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400282static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
283 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500284{
285 struct __addr_die_search_param ad;
286 ad.addr = addr;
287 ad.die_mem = die_mem;
288 /* dwarf_getscopes can't find subprogram. */
289 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
290 return NULL;
291 else
292 return die_mem;
293}
294
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400295/* die_find callback for inline function search */
296static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
297{
298 Dwarf_Addr *addr = data;
299
300 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
301 dwarf_haspc(die_mem, *addr))
302 return DIE_FIND_CB_FOUND;
303
304 return DIE_FIND_CB_CONTINUE;
305}
306
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500307/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400308static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
309 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500310{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400311 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500312}
313
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400314static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400315{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400316 const char *name = data;
317 int tag;
318
319 tag = dwarf_tag(die_mem);
320 if ((tag == DW_TAG_formal_parameter ||
321 tag == DW_TAG_variable) &&
322 (die_compare_name(die_mem, name) == 0))
323 return DIE_FIND_CB_FOUND;
324
325 return DIE_FIND_CB_CONTINUE;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400326}
327
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400328/* Find a variable called 'name' */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500329static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
330 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500331{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400332 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
333 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400334}
335
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400336static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
337{
338 const char *name = data;
339
340 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
341 (die_compare_name(die_mem, name) == 0))
342 return DIE_FIND_CB_FOUND;
343
344 return DIE_FIND_CB_SIBLING;
345}
346
347/* Find a member called 'name' */
348static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
349 Dwarf_Die *die_mem)
350{
351 return die_find_child(st_die, __die_find_member_cb, (void *)name,
352 die_mem);
353}
354
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400355/*
356 * Probe finder related functions
357 */
358
359/* Show a location */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400360static int convert_location(Dwarf_Op *op, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400361{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500362 unsigned int regn;
363 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400364 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400365 const char *regs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400366 struct kprobe_trace_arg *tvar = pf->tvar;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400367
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400368 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500369 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400370 if (pf->fb_ops == NULL) {
371 pr_warning("The attribute of frame base is not "
372 "supported.\n");
373 return -ENOTSUP;
374 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400375 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500376 offs = op->number;
377 op = &pf->fb_ops[0];
378 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400379
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500380 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
381 regn = op->atom - DW_OP_breg0;
382 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400383 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500384 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
385 regn = op->atom - DW_OP_reg0;
386 } else if (op->atom == DW_OP_bregx) {
387 regn = op->number;
388 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400389 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500390 } else if (op->atom == DW_OP_regx) {
391 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400392 } else {
393 pr_warning("DW_OP %x is not supported.\n", op->atom);
394 return -ENOTSUP;
395 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400396
397 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400398 if (!regs) {
Ian Munsiecd932c52010-04-20 16:58:32 +1000399 pr_warning("Mapping for DWARF register number %u missing on this architecture.", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400400 return -ERANGE;
401 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400402
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400403 tvar->value = strdup(regs);
404 if (tvar->value == NULL)
405 return -ENOMEM;
406
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400407 if (ref) {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400408 tvar->ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
409 if (tvar->ref == NULL)
410 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400411 tvar->ref->offset = (long)offs;
412 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400413 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400414}
415
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400416static int convert_variable_type(Dwarf_Die *vr_die,
417 struct kprobe_trace_arg *targ)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400418{
419 Dwarf_Die type;
420 char buf[16];
421 int ret;
422
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400423 if (die_get_real_type(vr_die, &type) == NULL) {
424 pr_warning("Failed to get a type information of %s.\n",
425 dwarf_diename(vr_die));
426 return -ENOENT;
427 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400428
429 ret = die_get_byte_size(&type) * 8;
430 if (ret) {
431 /* Check the bitwidth */
432 if (ret > MAX_BASIC_TYPE_BITS) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400433 pr_info("%s exceeds max-bitwidth."
434 " Cut down to %d bits.\n",
435 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400436 ret = MAX_BASIC_TYPE_BITS;
437 }
438
439 ret = snprintf(buf, 16, "%c%d",
440 die_is_signed_type(&type) ? 's' : 'u', ret);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400441 if (ret < 0 || ret >= 16) {
442 if (ret >= 16)
443 ret = -E2BIG;
444 pr_warning("Failed to convert variable type: %s\n",
445 strerror(-ret));
446 return ret;
447 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400448 targ->type = strdup(buf);
449 if (targ->type == NULL)
450 return -ENOMEM;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400451 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400452 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400453}
454
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400455static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400456 struct perf_probe_arg_field *field,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400457 struct kprobe_trace_arg_ref **ref_ptr,
458 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400459{
460 struct kprobe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400461 Dwarf_Die type;
462 Dwarf_Word offs;
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300463 int ret;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400464
465 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400466 if (die_get_real_type(vr_die, &type) == NULL) {
467 pr_warning("Failed to get the type of %s.\n", varname);
468 return -ENOENT;
469 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400470
471 /* Check the pointer and dereference */
472 if (dwarf_tag(&type) == DW_TAG_pointer_type) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400473 if (!field->ref) {
474 pr_err("Semantic error: %s must be referred by '->'\n",
475 field->name);
476 return -EINVAL;
477 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400478 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400479 if (die_get_real_type(&type, &type) == NULL) {
480 pr_warning("Failed to get the type of %s.\n", varname);
481 return -ENOENT;
482 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400483 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400484 if (dwarf_tag(&type) != DW_TAG_structure_type) {
485 pr_warning("%s is not a data structure.\n", varname);
486 return -EINVAL;
487 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400488
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400489 ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
490 if (ref == NULL)
491 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400492 if (*ref_ptr)
493 (*ref_ptr)->next = ref;
494 else
495 *ref_ptr = ref;
496 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400497 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400498 if (dwarf_tag(&type) != DW_TAG_structure_type) {
499 pr_warning("%s is not a data structure.\n", varname);
500 return -EINVAL;
501 }
502 if (field->ref) {
503 pr_err("Semantic error: %s must be referred by '.'\n",
504 field->name);
505 return -EINVAL;
506 }
507 if (!ref) {
508 pr_warning("Structure on a register is not "
509 "supported yet.\n");
510 return -ENOTSUP;
511 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400512 }
513
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400514 if (die_find_member(&type, field->name, die_mem) == NULL) {
515 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
516 dwarf_diename(&type), field->name);
517 return -EINVAL;
518 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400519
520 /* Get the offset of the field */
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300521 ret = die_get_data_member_location(die_mem, &offs);
522 if (ret < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400523 pr_warning("Failed to get the offset of %s.\n", field->name);
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300524 return ret;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400525 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400526 ref->offset += (long)offs;
527
528 /* Converting next field */
529 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400530 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300531 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400532 else
533 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400534}
535
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400536/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400537static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400538{
539 Dwarf_Attribute attr;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400540 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500541 Dwarf_Op *expr;
542 size_t nexpr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400543 int ret;
544
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500545 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400546 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500547 /* TODO: handle more than 1 exprs */
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400548 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500549 if (ret <= 0 || nexpr == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400550 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500551
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400552 ret = convert_location(expr, pf);
553 if (ret == 0 && pf->pvar->field) {
554 ret = convert_variable_fields(vr_die, pf->pvar->var,
555 pf->pvar->field, &pf->tvar->ref,
556 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400557 vr_die = &die_mem;
558 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400559 if (ret == 0) {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400560 if (pf->pvar->type) {
561 pf->tvar->type = strdup(pf->pvar->type);
562 if (pf->tvar->type == NULL)
563 ret = -ENOMEM;
564 } else
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400565 ret = convert_variable_type(vr_die, pf->tvar);
566 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500567 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400568 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400569error:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500570 /* TODO: Support const_value */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400571 pr_err("Failed to find the location of %s at this address.\n"
572 " Perhaps, it has been optimized out.\n", pf->pvar->var);
573 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400574}
575
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400576/* Find a variable in a subprogram die */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400577static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400578{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500579 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400580 char buf[32], *ptr;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400581 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400582
Masami Hiramatsu48481932010-04-12 13:16:53 -0400583 /* TODO: Support arrays */
584 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400585 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400586 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400587 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
588 if (ret < 0)
589 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400590 ptr = strchr(buf, ':'); /* Change type separator to _ */
591 if (ptr)
592 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400593 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400594 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400595 if (pf->tvar->name == NULL)
596 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400597
598 if (!is_c_varname(pf->pvar->var)) {
599 /* Copy raw parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400600 pf->tvar->value = strdup(pf->pvar->var);
601 if (pf->tvar->value == NULL)
602 return -ENOMEM;
603 else
604 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400605 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400606
607 pr_debug("Searching '%s' variable in context.\n",
608 pf->pvar->var);
609 /* Search child die for local variables and parameters. */
610 if (!die_find_variable(sp_die, pf->pvar->var, &vr_die)) {
611 pr_warning("Failed to find '%s' in this function.\n",
612 pf->pvar->var);
613 return -ENOENT;
614 }
615 return convert_variable(&vr_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400616}
617
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400618/* Show a probe point to output buffer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400619static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400620{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400621 struct kprobe_trace_event *tev;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500622 Dwarf_Addr eaddr;
623 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500624 const char *name;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400625 int ret, i;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500626 Dwarf_Attribute fb_attr;
627 size_t nops;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400628
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400629 if (pf->ntevs == MAX_PROBES) {
630 pr_warning("Too many( > %d) probe point found.\n", MAX_PROBES);
631 return -ERANGE;
632 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400633 tev = &pf->tevs[pf->ntevs++];
634
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500635 /* If no real subprogram, find a real one */
636 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400637 sp_die = die_find_real_subprogram(&pf->cu_die,
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500638 pf->addr, &die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400639 if (!sp_die) {
640 pr_warning("Failed to find probe point in any "
641 "functions.\n");
642 return -ENOENT;
643 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500644 }
645
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400646 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500647 name = dwarf_diename(sp_die);
648 if (name) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400649 if (dwarf_entrypc(sp_die, &eaddr) != 0) {
650 pr_warning("Failed to get entry pc of %s\n",
651 dwarf_diename(sp_die));
652 return -ENOENT;
653 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400654 tev->point.symbol = strdup(name);
655 if (tev->point.symbol == NULL)
656 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400657 tev->point.offset = (unsigned long)(pf->addr - eaddr);
658 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400659 /* This function has no name. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400660 tev->point.offset = (unsigned long)pf->addr;
661
662 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
663 tev->point.offset);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400664
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500665 /* Get the frame base attribute/ops */
666 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400667 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400668 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500669 pf->fb_ops = NULL;
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400670 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
671 pf->cfi != NULL) {
672 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400673 if (dwarf_cfi_addrframe(pf->cfi, pf->addr, &frame) != 0 ||
674 dwarf_frame_cfa(frame, &pf->fb_ops, &nops) != 0) {
675 pr_warning("Failed to get CFA on 0x%jx\n",
676 (uintmax_t)pf->addr);
677 return -ENOENT;
678 }
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400679 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500680
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400681 /* Find each argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400682 tev->nargs = pf->pev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400683 tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
684 if (tev->args == NULL)
685 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400686 for (i = 0; i < pf->pev->nargs; i++) {
687 pf->pvar = &pf->pev->args[i];
688 pf->tvar = &tev->args[i];
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400689 ret = find_variable(sp_die, pf);
690 if (ret != 0)
691 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400692 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500693
694 /* *pf->fb_ops will be cached in libdw. Don't free it. */
695 pf->fb_ops = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400696 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400697}
698
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400699/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400700static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400701{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500702 Dwarf_Lines *lines;
703 Dwarf_Line *line;
704 size_t nlines, i;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500705 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500706 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400707 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400708
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400709 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
710 pr_warning("No source lines found in this CU.\n");
711 return -ENOENT;
712 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400713
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400714 for (i = 0; i < nlines && ret == 0; i++) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500715 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400716 if (dwarf_lineno(line, &lineno) != 0 ||
717 lineno != pf->lno)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400718 continue;
719
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500720 /* TODO: Get fileno from line, but how? */
721 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
722 continue;
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400723
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400724 if (dwarf_lineaddr(line, &addr) != 0) {
725 pr_warning("Failed to get the address of the line.\n");
726 return -ENOENT;
727 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500728 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
729 (int)i, lineno, (uintmax_t)addr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400730 pf->addr = addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500731
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400732 ret = convert_probe_point(NULL, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400733 /* Continuing, because target line might be inlined. */
734 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400735 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400736}
737
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500738/* Find lines which match lazy pattern */
739static int find_lazy_match_lines(struct list_head *head,
740 const char *fname, const char *pat)
741{
742 char *fbuf, *p1, *p2;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400743 int fd, ret, line, nlines = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500744 struct stat st;
745
746 fd = open(fname, O_RDONLY);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400747 if (fd < 0) {
748 pr_warning("Failed to open %s: %s\n", fname, strerror(-fd));
749 return fd;
750 }
751
752 ret = fstat(fd, &st);
753 if (ret < 0) {
754 pr_warning("Failed to get the size of %s: %s\n",
755 fname, strerror(errno));
756 return ret;
757 }
Masami Hiramatsu31facc52010-03-16 18:05:30 -0400758 fbuf = xmalloc(st.st_size + 2);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400759 ret = read(fd, fbuf, st.st_size);
760 if (ret < 0) {
761 pr_warning("Failed to read %s: %s\n", fname, strerror(errno));
762 return ret;
763 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500764 close(fd);
765 fbuf[st.st_size] = '\n'; /* Dummy line */
766 fbuf[st.st_size + 1] = '\0';
767 p1 = fbuf;
768 line = 1;
769 while ((p2 = strchr(p1, '\n')) != NULL) {
770 *p2 = '\0';
771 if (strlazymatch(p1, pat)) {
772 line_list__add_line(head, line);
773 nlines++;
774 }
775 line++;
776 p1 = p2 + 1;
777 }
778 free(fbuf);
779 return nlines;
780}
781
782/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400783static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500784{
785 Dwarf_Lines *lines;
786 Dwarf_Line *line;
787 size_t nlines, i;
788 Dwarf_Addr addr;
789 Dwarf_Die die_mem;
790 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400791 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500792
793 if (list_empty(&pf->lcache)) {
794 /* Matching lazy line pattern */
795 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400796 pf->pev->point.lazy_line);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400797 if (ret == 0) {
798 pr_debug("No matched lines found in %s.\n", pf->fname);
799 return 0;
800 } else if (ret < 0)
801 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500802 }
803
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400804 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
805 pr_warning("No source lines found in this CU.\n");
806 return -ENOENT;
807 }
808
809 for (i = 0; i < nlines && ret >= 0; i++) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500810 line = dwarf_onesrcline(lines, i);
811
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400812 if (dwarf_lineno(line, &lineno) != 0 ||
813 !line_list__has_line(&pf->lcache, lineno))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500814 continue;
815
816 /* TODO: Get fileno from line, but how? */
817 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
818 continue;
819
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400820 if (dwarf_lineaddr(line, &addr) != 0) {
821 pr_debug("Failed to get the address of line %d.\n",
822 lineno);
823 continue;
824 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500825 if (sp_die) {
826 /* Address filtering 1: does sp_die include addr? */
827 if (!dwarf_haspc(sp_die, addr))
828 continue;
829 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400830 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500831 continue;
832 }
833
834 pr_debug("Probe line found: line[%d]:%d addr:0x%llx\n",
835 (int)i, lineno, (unsigned long long)addr);
836 pf->addr = addr;
837
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400838 ret = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500839 /* Continuing, because target line might be inlined. */
840 }
841 /* TODO: deallocate lines, but how? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400842 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500843}
844
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400845/* Callback parameter with return value */
846struct dwarf_callback_param {
847 void *data;
848 int retval;
849};
850
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500851static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400852{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400853 struct dwarf_callback_param *param = data;
854 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400855 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400856 Dwarf_Addr addr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400857
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500858 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400859 param->retval = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500860 else {
861 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400862 if (dwarf_entrypc(in_die, &addr) != 0) {
863 pr_warning("Failed to get entry pc of %s.\n",
864 dwarf_diename(in_die));
865 param->retval = -ENOENT;
866 return DWARF_CB_ABORT;
867 }
868 pf->addr = addr;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500869 pf->addr += pp->offset;
870 pr_debug("found inline addr: 0x%jx\n",
871 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500872
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400873 param->retval = convert_probe_point(in_die, pf);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -0400874 if (param->retval < 0)
875 return DWARF_CB_ABORT;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500876 }
877
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500878 return DWARF_CB_OK;
879}
880
881/* Search function from function name */
882static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
883{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400884 struct dwarf_callback_param *param = data;
885 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400886 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500887
888 /* Check tag and diename */
889 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
890 die_compare_name(sp_die, pp->function) != 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400891 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500892
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500893 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500894 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500895 dwarf_decl_line(sp_die, &pf->lno);
896 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400897 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500898 } else if (!dwarf_func_inline(sp_die)) {
899 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500900 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400901 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500902 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400903 if (dwarf_entrypc(sp_die, &pf->addr) != 0) {
904 pr_warning("Failed to get entry pc of %s.\n",
905 dwarf_diename(sp_die));
906 param->retval = -ENOENT;
907 return DWARF_CB_ABORT;
908 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500909 pf->addr += pp->offset;
910 /* TODO: Check the address in this function */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400911 param->retval = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500912 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400913 } else {
914 struct dwarf_callback_param _param = {.data = (void *)pf,
915 .retval = 0};
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500916 /* Inlined function: search instances */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400917 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
918 &_param);
919 param->retval = _param.retval;
920 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500921
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400922 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400923}
924
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400925static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400926{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400927 struct dwarf_callback_param _param = {.data = (void *)pf,
928 .retval = 0};
929 dwarf_getfuncs(&pf->cu_die, probe_point_search_cb, &_param, 0);
930 return _param.retval;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400931}
932
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400933/* Find kprobe_trace_events specified by perf_probe_event from debuginfo */
934int find_kprobe_trace_events(int fd, struct perf_probe_event *pev,
935 struct kprobe_trace_event **tevs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400936{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400937 struct probe_finder pf = {.pev = pev};
938 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500939 Dwarf_Off off, noff;
940 size_t cuhl;
941 Dwarf_Die *diep;
942 Dwarf *dbg;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400943 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400944
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400945 pf.tevs = zalloc(sizeof(struct kprobe_trace_event) * MAX_PROBES);
946 if (pf.tevs == NULL)
947 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400948 *tevs = pf.tevs;
949 pf.ntevs = 0;
950
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500951 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400952 if (!dbg) {
953 pr_warning("No dwarf info found in the vmlinux - "
954 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
955 return -EBADF;
956 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400957
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400958 /* Get the call frame information from this dwarf */
959 pf.cfi = dwarf_getcfi(dbg);
960
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500961 off = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500962 line_list__init(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500963 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400964 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) &&
965 ret >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400966 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500967 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
968 if (!diep)
969 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400970
971 /* Check if target file is included. */
972 if (pp->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500973 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500974 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500975 pf.fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400976
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500977 if (!pp->file || pf.fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400978 if (pp->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400979 ret = find_probe_point_by_func(&pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500980 else if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400981 ret = find_probe_point_lazy(NULL, &pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400982 else {
983 pf.lno = pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400984 ret = find_probe_point_by_line(&pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400985 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400986 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500987 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400988 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500989 line_list__free(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500990 dwarf_end(dbg);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400991
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400992 return (ret < 0) ? ret : pf.ntevs;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400993}
994
Masami Hiramatsufb1587d2010-03-16 18:06:19 -0400995/* Reverse search */
996int find_perf_probe_point(int fd, unsigned long addr,
997 struct perf_probe_point *ppt)
998{
999 Dwarf_Die cudie, spdie, indie;
1000 Dwarf *dbg;
1001 Dwarf_Line *line;
1002 Dwarf_Addr laddr, eaddr;
1003 const char *tmp;
1004 int lineno, ret = 0;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001005 bool found = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001006
1007 dbg = dwarf_begin(fd, DWARF_C_READ);
1008 if (!dbg)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001009 return -EBADF;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001010
1011 /* Find cu die */
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001012 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie)) {
1013 ret = -EINVAL;
1014 goto end;
1015 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001016
1017 /* Find a corresponding line */
1018 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1019 if (line) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001020 if (dwarf_lineaddr(line, &laddr) == 0 &&
1021 (Dwarf_Addr)addr == laddr &&
1022 dwarf_lineno(line, &lineno) == 0) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001023 tmp = dwarf_linesrc(line, NULL, NULL);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001024 if (tmp) {
1025 ppt->line = lineno;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001026 ppt->file = strdup(tmp);
1027 if (ppt->file == NULL) {
1028 ret = -ENOMEM;
1029 goto end;
1030 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001031 found = true;
1032 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001033 }
1034 }
1035
1036 /* Find a corresponding function */
1037 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1038 tmp = dwarf_diename(&spdie);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001039 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001040 goto end;
1041
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001042 if (ppt->line) {
1043 if (die_find_inlinefunc(&spdie, (Dwarf_Addr)addr,
1044 &indie)) {
1045 /* addr in an inline function */
1046 tmp = dwarf_diename(&indie);
1047 if (!tmp)
1048 goto end;
1049 ret = dwarf_decl_line(&indie, &lineno);
1050 } else {
1051 if (eaddr == addr) { /* Function entry */
1052 lineno = ppt->line;
1053 ret = 0;
1054 } else
1055 ret = dwarf_decl_line(&spdie, &lineno);
1056 }
1057 if (ret == 0) {
1058 /* Make a relative line number */
1059 ppt->line -= lineno;
1060 goto found;
1061 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001062 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001063 /* We don't have a line number, let's use offset */
1064 ppt->offset = addr - (unsigned long)eaddr;
1065found:
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001066 ppt->function = strdup(tmp);
1067 if (ppt->function == NULL) {
1068 ret = -ENOMEM;
1069 goto end;
1070 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001071 found = true;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001072 }
1073
1074end:
1075 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001076 if (ret >= 0)
1077 ret = found ? 1 : 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001078 return ret;
1079}
1080
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001081/* Add a line and store the src path */
1082static int line_range_add_line(const char *src, unsigned int lineno,
1083 struct line_range *lr)
1084{
1085 /* Copy real path */
1086 if (!lr->path) {
1087 lr->path = strdup(src);
1088 if (lr->path == NULL)
1089 return -ENOMEM;
1090 }
1091 return line_list__add_line(&lr->line_list, lineno);
1092}
1093
1094/* Search function declaration lines */
1095static int line_range_funcdecl_cb(Dwarf_Die *sp_die, void *data)
1096{
1097 struct dwarf_callback_param *param = data;
1098 struct line_finder *lf = param->data;
1099 const char *src;
1100 int lineno;
1101
1102 src = dwarf_decl_file(sp_die);
1103 if (src && strtailcmp(src, lf->fname) != 0)
1104 return DWARF_CB_OK;
1105
1106 if (dwarf_decl_line(sp_die, &lineno) != 0 ||
1107 (lf->lno_s > lineno || lf->lno_e < lineno))
1108 return DWARF_CB_OK;
1109
1110 param->retval = line_range_add_line(src, lineno, lf->lr);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -04001111 if (param->retval < 0)
1112 return DWARF_CB_ABORT;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001113 return DWARF_CB_OK;
1114}
1115
1116static int find_line_range_func_decl_lines(struct line_finder *lf)
1117{
1118 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1119 dwarf_getfuncs(&lf->cu_die, line_range_funcdecl_cb, &param, 0);
1120 return param.retval;
1121}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001122
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001123/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001124static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001125{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001126 Dwarf_Lines *lines;
1127 Dwarf_Line *line;
1128 size_t nlines, i;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001129 Dwarf_Addr addr;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001130 int lineno, ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001131 const char *src;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001132 Dwarf_Die die_mem;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001133
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001134 line_list__init(&lf->lr->line_list);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001135 if (dwarf_getsrclines(&lf->cu_die, &lines, &nlines) != 0) {
1136 pr_warning("No source lines found in this CU.\n");
1137 return -ENOENT;
1138 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001139
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001140 /* Search probable lines on lines list */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001141 for (i = 0; i < nlines; i++) {
1142 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001143 if (dwarf_lineno(line, &lineno) != 0 ||
1144 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001145 continue;
1146
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001147 if (sp_die) {
1148 /* Address filtering 1: does sp_die include addr? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001149 if (dwarf_lineaddr(line, &addr) != 0 ||
1150 !dwarf_haspc(sp_die, addr))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001151 continue;
1152
1153 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -04001154 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001155 continue;
1156 }
1157
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001158 /* TODO: Get fileno from line, but how? */
1159 src = dwarf_linesrc(line, NULL, NULL);
1160 if (strtailcmp(src, lf->fname) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001161 continue;
1162
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001163 ret = line_range_add_line(src, lineno, lf->lr);
1164 if (ret < 0)
1165 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001166 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001167
1168 /*
1169 * Dwarf lines doesn't include function declarations. We have to
1170 * check functions list or given function.
1171 */
1172 if (sp_die) {
1173 src = dwarf_decl_file(sp_die);
1174 if (src && dwarf_decl_line(sp_die, &lineno) == 0 &&
1175 (lf->lno_s <= lineno && lf->lno_e >= lineno))
1176 ret = line_range_add_line(src, lineno, lf->lr);
1177 } else
1178 ret = find_line_range_func_decl_lines(lf);
1179
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001180 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001181 if (ret >= 0)
1182 if (!list_empty(&lf->lr->line_list))
1183 ret = lf->found = 1;
1184 else
1185 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001186 else {
1187 free(lf->lr->path);
1188 lf->lr->path = NULL;
1189 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001190 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001191}
1192
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001193static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1194{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001195 struct dwarf_callback_param *param = data;
1196
1197 param->retval = find_line_range_by_line(in_die, param->data);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001198 return DWARF_CB_ABORT; /* No need to find other instances */
1199}
1200
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001201/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001202static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001203{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001204 struct dwarf_callback_param *param = data;
1205 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001206 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001207
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001208 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
1209 die_compare_name(sp_die, lr->function) == 0) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001210 lf->fname = dwarf_decl_file(sp_die);
1211 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001212 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001213 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001214 if (lf->lno_s < 0) /* Overflow */
1215 lf->lno_s = INT_MAX;
1216 lf->lno_e = lr->offset + lr->end;
1217 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001218 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001219 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001220 lr->start = lf->lno_s;
1221 lr->end = lf->lno_e;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001222 if (dwarf_func_inline(sp_die)) {
1223 struct dwarf_callback_param _param;
1224 _param.data = (void *)lf;
1225 _param.retval = 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001226 dwarf_func_inline_instances(sp_die,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001227 line_range_inline_cb,
1228 &_param);
1229 param->retval = _param.retval;
1230 } else
1231 param->retval = find_line_range_by_line(sp_die, lf);
1232 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001233 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001234 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001235}
1236
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001237static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001238{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001239 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1240 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1241 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001242}
1243
1244int find_line_range(int fd, struct line_range *lr)
1245{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001246 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001247 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001248 Dwarf_Off off = 0, noff;
1249 size_t cuhl;
1250 Dwarf_Die *diep;
1251 Dwarf *dbg;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001252
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001253 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001254 if (!dbg) {
1255 pr_warning("No dwarf info found in the vmlinux - "
1256 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1257 return -EBADF;
1258 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001259
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001260 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001261 while (!lf.found && ret >= 0) {
1262 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001263 break;
1264
1265 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001266 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1267 if (!diep)
1268 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001269
1270 /* Check if target file is included. */
1271 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001272 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001273 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001274 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001275
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001276 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001277 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001278 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001279 else {
1280 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001281 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001282 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001283 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001284 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001285 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001286 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001287 pr_debug("path: %lx\n", (unsigned long)lr->path);
1288 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001289
1290 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001291}
1292