blob: 308664deb8572999c369d711fc839f1372e29f10 [file] [log] [blame]
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001/*
2 * probe-finder.c : C expression to kprobe event converter
3 *
4 * Written by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22#include <sys/utsname.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <getopt.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <ctype.h>
Ian Munsiecd932c52010-04-20 16:58:32 +100034#include <dwarf-regs.h>
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040035
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -050036#include "string.h"
Masami Hiramatsu89c69c02009-10-16 20:08:10 -040037#include "event.h"
38#include "debug.h"
Masami Hiramatsu074fc0e2009-10-16 20:08:01 -040039#include "util.h"
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040040#include "symbol.h"
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040041#include "probe-finder.h"
42
Masami Hiramatsu49849122010-04-12 13:17:15 -040043/* Kprobe tracer basic type is up to u64 */
44#define MAX_BASIC_TYPE_BITS 64
45
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040046/*
47 * Compare the tail of two strings.
48 * Return 0 if whole of either string is same as another's tail part.
49 */
50static int strtailcmp(const char *s1, const char *s2)
51{
52 int i1 = strlen(s1);
53 int i2 = strlen(s2);
Juha Leppanend56728b2009-12-07 12:00:40 -050054 while (--i1 >= 0 && --i2 >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -040055 if (s1[i1] != s2[i2])
56 return s1[i1] - s2[i2];
57 }
58 return 0;
59}
60
Chase Douglas9ed7e1b2010-06-14 15:26:30 -040061/*
62 * Find a src file from a DWARF tag path. Prepend optional source path prefix
63 * and chop off leading directories that do not exist. Result is passed back as
64 * a newly allocated path on success.
65 * Return 0 if file was found and readable, -errno otherwise.
66 */
67static int get_real_path(const char *raw_path, char **new_path)
68{
69 if (!symbol_conf.source_prefix) {
70 if (access(raw_path, R_OK) == 0) {
71 *new_path = strdup(raw_path);
72 return 0;
73 } else
74 return -errno;
75 }
76
77 *new_path = malloc((strlen(symbol_conf.source_prefix) +
78 strlen(raw_path) + 2));
79 if (!*new_path)
80 return -ENOMEM;
81
82 for (;;) {
83 sprintf(*new_path, "%s/%s", symbol_conf.source_prefix,
84 raw_path);
85
86 if (access(*new_path, R_OK) == 0)
87 return 0;
88
89 switch (errno) {
90 case ENAMETOOLONG:
91 case ENOENT:
92 case EROFS:
93 case EFAULT:
94 raw_path = strchr(++raw_path, '/');
95 if (!raw_path) {
96 free(*new_path);
97 *new_path = NULL;
98 return -ENOENT;
99 }
100 continue;
101
102 default:
103 free(*new_path);
104 *new_path = NULL;
105 return -errno;
106 }
107 }
108}
109
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500110/* Line number list operations */
111
112/* Add a line to line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400113static int line_list__add_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500114{
115 struct line_node *ln;
116 struct list_head *p;
117
118 /* Reverse search, because new line will be the last one */
119 list_for_each_entry_reverse(ln, head, list) {
120 if (ln->line < line) {
121 p = &ln->list;
122 goto found;
123 } else if (ln->line == line) /* Already exist */
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400124 return 1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500125 }
126 /* List is empty, or the smallest entry */
127 p = head;
128found:
129 pr_debug("line list: add a line %u\n", line);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400130 ln = zalloc(sizeof(struct line_node));
131 if (ln == NULL)
132 return -ENOMEM;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500133 ln->line = line;
134 INIT_LIST_HEAD(&ln->list);
135 list_add(&ln->list, p);
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400136 return 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500137}
138
139/* Check if the line in line number list */
Masami Hiramatsud3b63d72010-04-14 18:39:42 -0400140static int line_list__has_line(struct list_head *head, int line)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500141{
142 struct line_node *ln;
143
144 /* Reverse search, because new line will be the last one */
145 list_for_each_entry(ln, head, list)
146 if (ln->line == line)
147 return 1;
148
149 return 0;
150}
151
152/* Init line number list */
153static void line_list__init(struct list_head *head)
154{
155 INIT_LIST_HEAD(head);
156}
157
158/* Free line number list */
159static void line_list__free(struct list_head *head)
160{
161 struct line_node *ln;
162 while (!list_empty(head)) {
163 ln = list_first_entry(head, struct line_node, list);
164 list_del(&ln->list);
165 free(ln);
166 }
167}
168
169/* Dwarf wrappers */
170
171/* Find the realpath of the target file. */
172static const char *cu_find_realpath(Dwarf_Die *cu_die, const char *fname)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400173{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500174 Dwarf_Files *files;
175 size_t nfiles, i;
Arnaldo Carvalho de Meloaccd3cc2010-03-05 12:51:04 -0300176 const char *src = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400177 int ret;
178
179 if (!fname)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500180 return NULL;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500181
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500182 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500183 if (ret != 0)
184 return NULL;
185
186 for (i = 0; i < nfiles; i++) {
187 src = dwarf_filesrc(files, i, NULL, NULL);
188 if (strtailcmp(src, fname) == 0)
189 break;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500190 }
Masami Hiramatsuc9e38582010-04-02 12:50:45 -0400191 if (i == nfiles)
192 return NULL;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500193 return src;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -0500194}
195
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400196/* Compare diename and tname */
197static bool die_compare_name(Dwarf_Die *dw_die, const char *tname)
198{
199 const char *name;
200 name = dwarf_diename(dw_die);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400201 return name ? strcmp(tname, name) : -1;
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400202}
203
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400204/* Get type die, but skip qualifiers and typedef */
205static Dwarf_Die *die_get_real_type(Dwarf_Die *vr_die, Dwarf_Die *die_mem)
206{
207 Dwarf_Attribute attr;
208 int tag;
209
210 do {
211 if (dwarf_attr(vr_die, DW_AT_type, &attr) == NULL ||
212 dwarf_formref_die(&attr, die_mem) == NULL)
213 return NULL;
214
215 tag = dwarf_tag(die_mem);
216 vr_die = die_mem;
217 } while (tag == DW_TAG_const_type ||
218 tag == DW_TAG_restrict_type ||
219 tag == DW_TAG_volatile_type ||
220 tag == DW_TAG_shared_type ||
221 tag == DW_TAG_typedef);
222
223 return die_mem;
224}
225
Masami Hiramatsu49849122010-04-12 13:17:15 -0400226static bool die_is_signed_type(Dwarf_Die *tp_die)
227{
228 Dwarf_Attribute attr;
229 Dwarf_Word ret;
230
231 if (dwarf_attr(tp_die, DW_AT_encoding, &attr) == NULL ||
232 dwarf_formudata(&attr, &ret) != 0)
233 return false;
234
235 return (ret == DW_ATE_signed_char || ret == DW_ATE_signed ||
236 ret == DW_ATE_signed_fixed);
237}
238
239static int die_get_byte_size(Dwarf_Die *tp_die)
240{
241 Dwarf_Attribute attr;
242 Dwarf_Word ret;
243
244 if (dwarf_attr(tp_die, DW_AT_byte_size, &attr) == NULL ||
245 dwarf_formudata(&attr, &ret) != 0)
246 return 0;
247
248 return (int)ret;
249}
250
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300251/* Get data_member_location offset */
252static int die_get_data_member_location(Dwarf_Die *mb_die, Dwarf_Word *offs)
253{
254 Dwarf_Attribute attr;
255 Dwarf_Op *expr;
256 size_t nexpr;
257 int ret;
258
259 if (dwarf_attr(mb_die, DW_AT_data_member_location, &attr) == NULL)
260 return -ENOENT;
261
262 if (dwarf_formudata(&attr, offs) != 0) {
263 /* DW_AT_data_member_location should be DW_OP_plus_uconst */
264 ret = dwarf_getlocation(&attr, &expr, &nexpr);
265 if (ret < 0 || nexpr == 0)
266 return -ENOENT;
267
268 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
269 pr_debug("Unable to get offset:Unexpected OP %x (%zd)\n",
270 expr[0].atom, nexpr);
271 return -ENOTSUP;
272 }
273 *offs = (Dwarf_Word)expr[0].number;
274 }
275 return 0;
276}
277
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400278/* Return values for die_find callbacks */
279enum {
280 DIE_FIND_CB_FOUND = 0, /* End of Search */
281 DIE_FIND_CB_CHILD = 1, /* Search only children */
282 DIE_FIND_CB_SIBLING = 2, /* Search only siblings */
283 DIE_FIND_CB_CONTINUE = 3, /* Search children and siblings */
284};
285
286/* Search a child die */
287static Dwarf_Die *die_find_child(Dwarf_Die *rt_die,
288 int (*callback)(Dwarf_Die *, void *),
289 void *data, Dwarf_Die *die_mem)
290{
291 Dwarf_Die child_die;
292 int ret;
293
294 ret = dwarf_child(rt_die, die_mem);
295 if (ret != 0)
296 return NULL;
297
298 do {
299 ret = callback(die_mem, data);
300 if (ret == DIE_FIND_CB_FOUND)
301 return die_mem;
302
303 if ((ret & DIE_FIND_CB_CHILD) &&
304 die_find_child(die_mem, callback, data, &child_die)) {
305 memcpy(die_mem, &child_die, sizeof(Dwarf_Die));
306 return die_mem;
307 }
308 } while ((ret & DIE_FIND_CB_SIBLING) &&
309 dwarf_siblingof(die_mem, die_mem) == 0);
310
311 return NULL;
312}
313
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500314struct __addr_die_search_param {
315 Dwarf_Addr addr;
316 Dwarf_Die *die_mem;
317};
318
319static int __die_search_func_cb(Dwarf_Die *fn_die, void *data)
320{
321 struct __addr_die_search_param *ad = data;
322
323 if (dwarf_tag(fn_die) == DW_TAG_subprogram &&
324 dwarf_haspc(fn_die, ad->addr)) {
325 memcpy(ad->die_mem, fn_die, sizeof(Dwarf_Die));
326 return DWARF_CB_ABORT;
327 }
328 return DWARF_CB_OK;
329}
330
331/* Search a real subprogram including this line, */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400332static Dwarf_Die *die_find_real_subprogram(Dwarf_Die *cu_die, Dwarf_Addr addr,
333 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500334{
335 struct __addr_die_search_param ad;
336 ad.addr = addr;
337 ad.die_mem = die_mem;
338 /* dwarf_getscopes can't find subprogram. */
339 if (!dwarf_getfuncs(cu_die, __die_search_func_cb, &ad, 0))
340 return NULL;
341 else
342 return die_mem;
343}
344
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400345/* die_find callback for inline function search */
346static int __die_find_inline_cb(Dwarf_Die *die_mem, void *data)
347{
348 Dwarf_Addr *addr = data;
349
350 if (dwarf_tag(die_mem) == DW_TAG_inlined_subroutine &&
351 dwarf_haspc(die_mem, *addr))
352 return DIE_FIND_CB_FOUND;
353
354 return DIE_FIND_CB_CONTINUE;
355}
356
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500357/* Similar to dwarf_getfuncs, but returns inlined_subroutine if exists. */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400358static Dwarf_Die *die_find_inlinefunc(Dwarf_Die *sp_die, Dwarf_Addr addr,
359 Dwarf_Die *die_mem)
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500360{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400361 return die_find_child(sp_die, __die_find_inline_cb, &addr, die_mem);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -0500362}
363
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400364static int __die_find_variable_cb(Dwarf_Die *die_mem, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400365{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400366 const char *name = data;
367 int tag;
368
369 tag = dwarf_tag(die_mem);
370 if ((tag == DW_TAG_formal_parameter ||
371 tag == DW_TAG_variable) &&
372 (die_compare_name(die_mem, name) == 0))
373 return DIE_FIND_CB_FOUND;
374
375 return DIE_FIND_CB_CONTINUE;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400376}
377
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400378/* Find a variable called 'name' */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500379static Dwarf_Die *die_find_variable(Dwarf_Die *sp_die, const char *name,
380 Dwarf_Die *die_mem)
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500381{
Masami Hiramatsu016f2622010-03-16 18:05:58 -0400382 return die_find_child(sp_die, __die_find_variable_cb, (void *)name,
383 die_mem);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400384}
385
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400386static int __die_find_member_cb(Dwarf_Die *die_mem, void *data)
387{
388 const char *name = data;
389
390 if ((dwarf_tag(die_mem) == DW_TAG_member) &&
391 (die_compare_name(die_mem, name) == 0))
392 return DIE_FIND_CB_FOUND;
393
394 return DIE_FIND_CB_SIBLING;
395}
396
397/* Find a member called 'name' */
398static Dwarf_Die *die_find_member(Dwarf_Die *st_die, const char *name,
399 Dwarf_Die *die_mem)
400{
401 return die_find_child(st_die, __die_find_member_cb, (void *)name,
402 die_mem);
403}
404
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400405/*
406 * Probe finder related functions
407 */
408
409/* Show a location */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400410static int convert_location(Dwarf_Op *op, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400411{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500412 unsigned int regn;
413 Dwarf_Word offs = 0;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400414 bool ref = false;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400415 const char *regs;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400416 struct kprobe_trace_arg *tvar = pf->tvar;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400417
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400418 /* If this is based on frame buffer, set the offset */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500419 if (op->atom == DW_OP_fbreg) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400420 if (pf->fb_ops == NULL) {
421 pr_warning("The attribute of frame base is not "
422 "supported.\n");
423 return -ENOTSUP;
424 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400425 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500426 offs = op->number;
427 op = &pf->fb_ops[0];
428 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400429
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500430 if (op->atom >= DW_OP_breg0 && op->atom <= DW_OP_breg31) {
431 regn = op->atom - DW_OP_breg0;
432 offs += op->number;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400433 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500434 } else if (op->atom >= DW_OP_reg0 && op->atom <= DW_OP_reg31) {
435 regn = op->atom - DW_OP_reg0;
436 } else if (op->atom == DW_OP_bregx) {
437 regn = op->number;
438 offs += op->number2;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400439 ref = true;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500440 } else if (op->atom == DW_OP_regx) {
441 regn = op->number;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400442 } else {
443 pr_warning("DW_OP %x is not supported.\n", op->atom);
444 return -ENOTSUP;
445 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400446
447 regs = get_arch_regstr(regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400448 if (!regs) {
Ian Munsiecd932c52010-04-20 16:58:32 +1000449 pr_warning("Mapping for DWARF register number %u missing on this architecture.", regn);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400450 return -ERANGE;
451 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400452
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400453 tvar->value = strdup(regs);
454 if (tvar->value == NULL)
455 return -ENOMEM;
456
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400457 if (ref) {
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400458 tvar->ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
459 if (tvar->ref == NULL)
460 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400461 tvar->ref->offset = (long)offs;
462 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400463 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400464}
465
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400466static int convert_variable_type(Dwarf_Die *vr_die,
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400467 struct kprobe_trace_arg *tvar,
468 const char *cast)
Masami Hiramatsu49849122010-04-12 13:17:15 -0400469{
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400470 struct kprobe_trace_arg_ref **ref_ptr = &tvar->ref;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400471 Dwarf_Die type;
472 char buf[16];
473 int ret;
474
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400475 /* TODO: check all types */
476 if (cast && strcmp(cast, "string") != 0) {
477 /* Non string type is OK */
478 tvar->type = strdup(cast);
479 return (tvar->type == NULL) ? -ENOMEM : 0;
480 }
481
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400482 if (die_get_real_type(vr_die, &type) == NULL) {
483 pr_warning("Failed to get a type information of %s.\n",
484 dwarf_diename(vr_die));
485 return -ENOENT;
486 }
Masami Hiramatsu49849122010-04-12 13:17:15 -0400487
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400488 pr_debug("%s type is %s.\n",
489 dwarf_diename(vr_die), dwarf_diename(&type));
490
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400491 if (cast && strcmp(cast, "string") == 0) { /* String type */
492 ret = dwarf_tag(&type);
493 if (ret != DW_TAG_pointer_type &&
494 ret != DW_TAG_array_type) {
495 pr_warning("Failed to cast into string: "
496 "%s(%s) is not a pointer nor array.",
497 dwarf_diename(vr_die), dwarf_diename(&type));
498 return -EINVAL;
499 }
500 if (ret == DW_TAG_pointer_type) {
501 if (die_get_real_type(&type, &type) == NULL) {
502 pr_warning("Failed to get a type information.");
503 return -ENOENT;
504 }
505 while (*ref_ptr)
506 ref_ptr = &(*ref_ptr)->next;
507 /* Add new reference with offset +0 */
508 *ref_ptr = zalloc(sizeof(struct kprobe_trace_arg_ref));
509 if (*ref_ptr == NULL) {
510 pr_warning("Out of memory error\n");
511 return -ENOMEM;
512 }
513 }
514 if (die_compare_name(&type, "char") != 0 &&
515 die_compare_name(&type, "unsigned char") != 0) {
516 pr_warning("Failed to cast into string: "
517 "%s is not (unsigned) char *.",
518 dwarf_diename(vr_die));
519 return -EINVAL;
520 }
521 tvar->type = strdup(cast);
522 return (tvar->type == NULL) ? -ENOMEM : 0;
523 }
524
Masami Hiramatsu49849122010-04-12 13:17:15 -0400525 ret = die_get_byte_size(&type) * 8;
526 if (ret) {
527 /* Check the bitwidth */
528 if (ret > MAX_BASIC_TYPE_BITS) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400529 pr_info("%s exceeds max-bitwidth."
530 " Cut down to %d bits.\n",
531 dwarf_diename(&type), MAX_BASIC_TYPE_BITS);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400532 ret = MAX_BASIC_TYPE_BITS;
533 }
534
535 ret = snprintf(buf, 16, "%c%d",
536 die_is_signed_type(&type) ? 's' : 'u', ret);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400537 if (ret < 0 || ret >= 16) {
538 if (ret >= 16)
539 ret = -E2BIG;
540 pr_warning("Failed to convert variable type: %s\n",
541 strerror(-ret));
542 return ret;
543 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400544 tvar->type = strdup(buf);
545 if (tvar->type == NULL)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400546 return -ENOMEM;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400547 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400548 return 0;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400549}
550
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400551static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400552 struct perf_probe_arg_field *field,
Masami Hiramatsu49849122010-04-12 13:17:15 -0400553 struct kprobe_trace_arg_ref **ref_ptr,
554 Dwarf_Die *die_mem)
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400555{
556 struct kprobe_trace_arg_ref *ref = *ref_ptr;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400557 Dwarf_Die type;
558 Dwarf_Word offs;
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400559 int ret, tag;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400560
561 pr_debug("converting %s in %s\n", field->name, varname);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400562 if (die_get_real_type(vr_die, &type) == NULL) {
563 pr_warning("Failed to get the type of %s.\n", varname);
564 return -ENOENT;
565 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400566 pr_debug2("Var real type: (%x)\n", (unsigned)dwarf_dieoffset(&type));
567 tag = dwarf_tag(&type);
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400568
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400569 if (field->name[0] == '[' &&
570 (tag == DW_TAG_array_type || tag == DW_TAG_pointer_type)) {
571 if (field->next)
572 /* Save original type for next field */
573 memcpy(die_mem, &type, sizeof(*die_mem));
574 /* Get the type of this array */
575 if (die_get_real_type(&type, &type) == NULL) {
576 pr_warning("Failed to get the type of %s.\n", varname);
577 return -ENOENT;
578 }
579 pr_debug2("Array real type: (%x)\n",
580 (unsigned)dwarf_dieoffset(&type));
581 if (tag == DW_TAG_pointer_type) {
582 ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
583 if (ref == NULL)
584 return -ENOMEM;
585 if (*ref_ptr)
586 (*ref_ptr)->next = ref;
587 else
588 *ref_ptr = ref;
589 }
590 ref->offset += die_get_byte_size(&type) * field->index;
591 if (!field->next)
592 /* Save vr_die for converting types */
593 memcpy(die_mem, vr_die, sizeof(*die_mem));
594 goto next;
595 } else if (tag == DW_TAG_pointer_type) {
596 /* Check the pointer and dereference */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400597 if (!field->ref) {
598 pr_err("Semantic error: %s must be referred by '->'\n",
599 field->name);
600 return -EINVAL;
601 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400602 /* Get the type pointed by this pointer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400603 if (die_get_real_type(&type, &type) == NULL) {
604 pr_warning("Failed to get the type of %s.\n", varname);
605 return -ENOENT;
606 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400607 /* Verify it is a data structure */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400608 if (dwarf_tag(&type) != DW_TAG_structure_type) {
609 pr_warning("%s is not a data structure.\n", varname);
610 return -EINVAL;
611 }
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400612
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400613 ref = zalloc(sizeof(struct kprobe_trace_arg_ref));
614 if (ref == NULL)
615 return -ENOMEM;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400616 if (*ref_ptr)
617 (*ref_ptr)->next = ref;
618 else
619 *ref_ptr = ref;
620 } else {
Masami Hiramatsu12e5a7a2010-04-02 12:50:53 -0400621 /* Verify it is a data structure */
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400622 if (tag != DW_TAG_structure_type) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400623 pr_warning("%s is not a data structure.\n", varname);
624 return -EINVAL;
625 }
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400626 if (field->name[0] == '[') {
627 pr_err("Semantic error: %s is not a pointor nor array.",
628 varname);
629 return -EINVAL;
630 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400631 if (field->ref) {
632 pr_err("Semantic error: %s must be referred by '.'\n",
633 field->name);
634 return -EINVAL;
635 }
636 if (!ref) {
637 pr_warning("Structure on a register is not "
638 "supported yet.\n");
639 return -ENOTSUP;
640 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400641 }
642
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400643 if (die_find_member(&type, field->name, die_mem) == NULL) {
644 pr_warning("%s(tyep:%s) has no member %s.\n", varname,
645 dwarf_diename(&type), field->name);
646 return -EINVAL;
647 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400648
649 /* Get the offset of the field */
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300650 ret = die_get_data_member_location(die_mem, &offs);
651 if (ret < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400652 pr_warning("Failed to get the offset of %s.\n", field->name);
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300653 return ret;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400654 }
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400655 ref->offset += (long)offs;
656
Masami Hiramatsub2a3c122010-05-19 15:57:42 -0400657next:
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400658 /* Converting next field */
659 if (field->next)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400660 return convert_variable_fields(die_mem, field->name,
Masami Hiramatsude1439d2010-04-14 17:44:00 -0300661 field->next, &ref, die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400662 else
663 return 0;
Masami Hiramatsu7df2f322010-03-16 18:06:26 -0400664}
665
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400666/* Show a variables in kprobe event format */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400667static int convert_variable(Dwarf_Die *vr_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400668{
669 Dwarf_Attribute attr;
Masami Hiramatsu49849122010-04-12 13:17:15 -0400670 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500671 Dwarf_Op *expr;
672 size_t nexpr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400673 int ret;
674
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500675 if (dwarf_attr(vr_die, DW_AT_location, &attr) == NULL)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400676 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500677 /* TODO: handle more than 1 exprs */
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400678 ret = dwarf_getlocation_addr(&attr, pf->addr, &expr, &nexpr, 1);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500679 if (ret <= 0 || nexpr == 0)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400680 goto error;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500681
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400682 ret = convert_location(expr, pf);
683 if (ret == 0 && pf->pvar->field) {
684 ret = convert_variable_fields(vr_die, pf->pvar->var,
685 pf->pvar->field, &pf->tvar->ref,
686 &die_mem);
Masami Hiramatsu49849122010-04-12 13:17:15 -0400687 vr_die = &die_mem;
688 }
Masami Hiramatsu73317b92010-05-19 15:57:35 -0400689 if (ret == 0)
690 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type);
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500691 /* *expr will be cached in libdw. Don't free it. */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400692 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400693error:
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500694 /* TODO: Support const_value */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400695 pr_err("Failed to find the location of %s at this address.\n"
696 " Perhaps, it has been optimized out.\n", pf->pvar->var);
697 return -ENOENT;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400698}
699
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400700/* Find a variable in a subprogram die */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400701static int find_variable(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400702{
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500703 Dwarf_Die vr_die;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400704 char buf[32], *ptr;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400705 int ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400706
Masami Hiramatsu48481932010-04-12 13:16:53 -0400707 if (pf->pvar->name)
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400708 pf->tvar->name = strdup(pf->pvar->name);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400709 else {
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400710 ret = synthesize_perf_probe_arg(pf->pvar, buf, 32);
711 if (ret < 0)
712 return ret;
Masami Hiramatsu11a1ca32010-04-12 13:17:22 -0400713 ptr = strchr(buf, ':'); /* Change type separator to _ */
714 if (ptr)
715 *ptr = '_';
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400716 pf->tvar->name = strdup(buf);
Masami Hiramatsu48481932010-04-12 13:16:53 -0400717 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400718 if (pf->tvar->name == NULL)
719 return -ENOMEM;
Masami Hiramatsu48481932010-04-12 13:16:53 -0400720
721 if (!is_c_varname(pf->pvar->var)) {
722 /* Copy raw parameters */
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400723 pf->tvar->value = strdup(pf->pvar->var);
724 if (pf->tvar->value == NULL)
725 return -ENOMEM;
726 else
727 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400728 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400729
730 pr_debug("Searching '%s' variable in context.\n",
731 pf->pvar->var);
732 /* Search child die for local variables and parameters. */
733 if (!die_find_variable(sp_die, pf->pvar->var, &vr_die)) {
734 pr_warning("Failed to find '%s' in this function.\n",
735 pf->pvar->var);
736 return -ENOENT;
737 }
738 return convert_variable(&vr_die, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400739}
740
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400741/* Show a probe point to output buffer */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400742static int convert_probe_point(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400743{
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400744 struct kprobe_trace_event *tev;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500745 Dwarf_Addr eaddr;
746 Dwarf_Die die_mem;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500747 const char *name;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400748 int ret, i;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500749 Dwarf_Attribute fb_attr;
750 size_t nops;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400751
Masami Hiramatsuef4a3562010-04-21 15:56:40 -0400752 if (pf->ntevs == pf->max_tevs) {
753 pr_warning("Too many( > %d) probe point found.\n",
754 pf->max_tevs);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400755 return -ERANGE;
756 }
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400757 tev = &pf->tevs[pf->ntevs++];
758
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500759 /* If no real subprogram, find a real one */
760 if (!sp_die || dwarf_tag(sp_die) != DW_TAG_subprogram) {
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400761 sp_die = die_find_real_subprogram(&pf->cu_die,
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500762 pf->addr, &die_mem);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400763 if (!sp_die) {
764 pr_warning("Failed to find probe point in any "
765 "functions.\n");
766 return -ENOENT;
767 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500768 }
769
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400770 /* Copy the name of probe point */
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500771 name = dwarf_diename(sp_die);
772 if (name) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400773 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 }
Masami Hiramatsu02b95da2010-04-12 13:17:56 -0400778 tev->point.symbol = strdup(name);
779 if (tev->point.symbol == NULL)
780 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400781 tev->point.offset = (unsigned long)(pf->addr - eaddr);
782 } else
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400783 /* This function has no name. */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400784 tev->point.offset = (unsigned long)pf->addr;
785
786 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol,
787 tev->point.offset);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400788
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500789 /* Get the frame base attribute/ops */
790 dwarf_attr(sp_die, DW_AT_frame_base, &fb_attr);
Masami Hiramatsud0cb4262010-03-15 13:02:35 -0400791 ret = dwarf_getlocation_addr(&fb_attr, pf->addr, &pf->fb_ops, &nops, 1);
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400792 if (ret <= 0 || nops == 0) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500793 pf->fb_ops = NULL;
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400794#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400795 } else if (nops == 1 && pf->fb_ops[0].atom == DW_OP_call_frame_cfa &&
796 pf->cfi != NULL) {
797 Dwarf_Frame *frame;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400798 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 }
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -0400804#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -0400805 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500806
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400807 /* Find each argument */
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400808 tev->nargs = pf->pev->nargs;
Masami Hiramatsue334016f12010-04-12 13:17:49 -0400809 tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
810 if (tev->args == NULL)
811 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400812 for (i = 0; i < pf->pev->nargs; i++) {
813 pf->pvar = &pf->pev->args[i];
814 pf->tvar = &tev->args[i];
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400815 ret = find_variable(sp_die, pf);
816 if (ret != 0)
817 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400818 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500819
820 /* *pf->fb_ops will be cached in libdw. Don't free it. */
821 pf->fb_ops = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400822 return 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400823}
824
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400825/* Find probe point from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400826static int find_probe_point_by_line(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400827{
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500828 Dwarf_Lines *lines;
829 Dwarf_Line *line;
830 size_t nlines, i;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500831 Dwarf_Addr addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500832 int lineno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400833 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400834
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400835 if (dwarf_getsrclines(&pf->cu_die, &lines, &nlines) != 0) {
836 pr_warning("No source lines found in this CU.\n");
837 return -ENOENT;
838 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400839
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400840 for (i = 0; i < nlines && ret == 0; i++) {
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500841 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400842 if (dwarf_lineno(line, &lineno) != 0 ||
843 lineno != pf->lno)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400844 continue;
845
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500846 /* TODO: Get fileno from line, but how? */
847 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
848 continue;
Masami Hiramatsub0ef0732009-10-27 16:43:19 -0400849
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400850 if (dwarf_lineaddr(line, &addr) != 0) {
851 pr_warning("Failed to get the address of the line.\n");
852 return -ENOENT;
853 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500854 pr_debug("Probe line found: line[%d]:%d addr:0x%jx\n",
855 (int)i, lineno, (uintmax_t)addr);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400856 pf->addr = addr;
Masami Hiramatsu804b3602010-02-25 08:35:42 -0500857
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400858 ret = convert_probe_point(NULL, pf);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400859 /* Continuing, because target line might be inlined. */
860 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400861 return ret;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400862}
863
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500864/* 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;
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300869 int fd, line, nlines = -1;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500870 struct stat st;
871
872 fd = open(fname, O_RDONLY);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400873 if (fd < 0) {
874 pr_warning("Failed to open %s: %s\n", fname, strerror(-fd));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300875 return -errno;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400876 }
877
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300878 if (fstat(fd, &st) < 0) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400879 pr_warning("Failed to get the size of %s: %s\n",
880 fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300881 nlines = -errno;
882 goto out_close;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400883 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300884
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) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400890 pr_warning("Failed to read %s: %s\n", fname, strerror(errno));
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300891 nlines = -errno;
892 goto out_free_fbuf;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400893 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500894 fbuf[st.st_size] = '\n'; /* Dummy line */
895 fbuf[st.st_size + 1] = '\0';
896 p1 = fbuf;
897 line = 1;
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300898 nlines = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500899 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 }
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300908out_free_fbuf:
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500909 free(fbuf);
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -0300910out_close:
911 close(fd);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500912 return nlines;
913}
914
915/* Find probe points from lazy pattern */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400916static int find_probe_point_lazy(Dwarf_Die *sp_die, struct probe_finder *pf)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500917{
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;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400924 int ret = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500925
926 if (list_empty(&pf->lcache)) {
927 /* Matching lazy line pattern */
928 ret = find_lazy_match_lines(&pf->lcache, pf->fname,
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400929 pf->pev->point.lazy_line);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400930 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;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500935 }
936
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400937 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++) {
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500943 line = dwarf_onesrcline(lines, i);
944
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400945 if (dwarf_lineno(line, &lineno) != 0 ||
946 !line_list__has_line(&pf->lcache, lineno))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500947 continue;
948
949 /* TODO: Get fileno from line, but how? */
950 if (strtailcmp(dwarf_linesrc(line, NULL, NULL), pf->fname) != 0)
951 continue;
952
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400953 if (dwarf_lineaddr(line, &addr) != 0) {
954 pr_debug("Failed to get the address of line %d.\n",
955 lineno);
956 continue;
957 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500958 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? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -0400963 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500964 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
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400971 ret = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500972 /* Continuing, because target line might be inlined. */
973 }
974 /* TODO: deallocate lines, but how? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400975 return ret;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500976}
977
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400978/* Callback parameter with return value */
979struct dwarf_callback_param {
980 void *data;
981 int retval;
982};
983
Masami Hiramatsue92b85e2010-02-25 08:35:50 -0500984static int probe_point_inline_cb(Dwarf_Die *in_die, void *data)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400985{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400986 struct dwarf_callback_param *param = data;
987 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -0400988 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400989 Dwarf_Addr addr;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -0400990
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500991 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400992 param->retval = find_probe_point_lazy(in_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -0500993 else {
994 /* Get probe address */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -0400995 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;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001002 pf->addr += pp->offset;
1003 pr_debug("found inline addr: 0x%jx\n",
1004 (uintmax_t)pf->addr);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001005
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001006 param->retval = convert_probe_point(in_die, pf);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -04001007 if (param->retval < 0)
1008 return DWARF_CB_ABORT;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001009 }
1010
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001011 return DWARF_CB_OK;
1012}
1013
1014/* Search function from function name */
1015static int probe_point_search_cb(Dwarf_Die *sp_die, void *data)
1016{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001017 struct dwarf_callback_param *param = data;
1018 struct probe_finder *pf = param->data;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001019 struct perf_probe_point *pp = &pf->pev->point;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001020
1021 /* Check tag and diename */
1022 if (dwarf_tag(sp_die) != DW_TAG_subprogram ||
1023 die_compare_name(sp_die, pp->function) != 0)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001024 return DWARF_CB_OK;
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001025
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001026 pf->fname = dwarf_decl_file(sp_die);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001027 if (pp->line) { /* Function relative line */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001028 dwarf_decl_line(sp_die, &pf->lno);
1029 pf->lno += pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001030 param->retval = find_probe_point_by_line(pf);
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001031 } else if (!dwarf_func_inline(sp_die)) {
1032 /* Real function */
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001033 if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001034 param->retval = find_probe_point_lazy(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001035 else {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001036 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 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001042 pf->addr += pp->offset;
1043 /* TODO: Check the address in this function */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001044 param->retval = convert_probe_point(sp_die, pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001045 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001046 } else {
1047 struct dwarf_callback_param _param = {.data = (void *)pf,
1048 .retval = 0};
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001049 /* Inlined function: search instances */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001050 dwarf_func_inline_instances(sp_die, probe_point_inline_cb,
1051 &_param);
1052 param->retval = _param.retval;
1053 }
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001054
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001055 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. */
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001056}
1057
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001058static int find_probe_point_by_func(struct probe_finder *pf)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001059{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001060 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;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001064}
1065
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001066/* Find kprobe_trace_events specified by perf_probe_event from debuginfo */
1067int find_kprobe_trace_events(int fd, struct perf_probe_event *pev,
Masami Hiramatsuef4a3562010-04-21 15:56:40 -04001068 struct kprobe_trace_event **tevs, int max_tevs)
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001069{
Masami Hiramatsuef4a3562010-04-21 15:56:40 -04001070 struct probe_finder pf = {.pev = pev, .max_tevs = max_tevs};
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001071 struct perf_probe_point *pp = &pev->point;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001072 Dwarf_Off off, noff;
1073 size_t cuhl;
1074 Dwarf_Die *diep;
1075 Dwarf *dbg;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001076 int ret = 0;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001077
Masami Hiramatsuef4a3562010-04-21 15:56:40 -04001078 pf.tevs = zalloc(sizeof(struct kprobe_trace_event) * max_tevs);
Masami Hiramatsue334016f12010-04-12 13:17:49 -04001079 if (pf.tevs == NULL)
1080 return -ENOMEM;
Masami Hiramatsu4235b042010-03-16 18:06:12 -04001081 *tevs = pf.tevs;
1082 pf.ntevs = 0;
1083
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001084 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001085 if (!dbg) {
1086 pr_warning("No dwarf info found in the vmlinux - "
1087 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
Arnaldo Carvalho de Melob448c4b2010-05-18 23:04:28 -03001088 free(pf.tevs);
1089 *tevs = NULL;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001090 return -EBADF;
1091 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001092
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001093#if _ELFUTILS_PREREQ(0, 142)
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001094 /* Get the call frame information from this dwarf */
1095 pf.cfi = dwarf_getcfi(dbg);
Masami Hiramatsu7752f1b2010-05-10 13:12:07 -04001096#endif
Masami Hiramatsua34a9852010-04-12 13:17:29 -04001097
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001098 off = 0;
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001099 line_list__init(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001100 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001101 while (!dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) &&
1102 ret >= 0) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001103 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001104 diep = dwarf_offdie(dbg, off + cuhl, &pf.cu_die);
1105 if (!diep)
1106 continue;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001107
1108 /* Check if target file is included. */
1109 if (pp->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001110 pf.fname = cu_find_realpath(&pf.cu_die, pp->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001111 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001112 pf.fname = NULL;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001113
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001114 if (!pp->file || pf.fname) {
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001115 if (pp->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001116 ret = find_probe_point_by_func(&pf);
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001117 else if (pp->lazy_line)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001118 ret = find_probe_point_lazy(NULL, &pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001119 else {
1120 pf.lno = pp->line;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001121 ret = find_probe_point_by_line(&pf);
Masami Hiramatsub0ef0732009-10-27 16:43:19 -04001122 }
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001123 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001124 off = noff;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001125 }
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001126 line_list__free(&pf.lcache);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001127 dwarf_end(dbg);
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001128
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001129 return (ret < 0) ? ret : pf.ntevs;
Masami Hiramatsu4ea42b12009-10-08 17:17:38 -04001130}
1131
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001132/* 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;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001142 bool found = false;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001143
1144 dbg = dwarf_begin(fd, DWARF_C_READ);
1145 if (!dbg)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001146 return -EBADF;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001147
1148 /* Find cu die */
Masami Hiramatsu75ec5a22010-04-02 12:50:59 -04001149 if (!dwarf_addrdie(dbg, (Dwarf_Addr)addr, &cudie)) {
1150 ret = -EINVAL;
1151 goto end;
1152 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001153
1154 /* Find a corresponding line */
1155 line = dwarf_getsrc_die(&cudie, (Dwarf_Addr)addr);
1156 if (line) {
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001157 if (dwarf_lineaddr(line, &laddr) == 0 &&
1158 (Dwarf_Addr)addr == laddr &&
1159 dwarf_lineno(line, &lineno) == 0) {
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001160 tmp = dwarf_linesrc(line, NULL, NULL);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001161 if (tmp) {
1162 ppt->line = lineno;
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001163 ppt->file = strdup(tmp);
1164 if (ppt->file == NULL) {
1165 ret = -ENOMEM;
1166 goto end;
1167 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001168 found = true;
1169 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001170 }
1171 }
1172
1173 /* Find a corresponding function */
1174 if (die_find_real_subprogram(&cudie, (Dwarf_Addr)addr, &spdie)) {
1175 tmp = dwarf_diename(&spdie);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001176 if (!tmp || dwarf_entrypc(&spdie, &eaddr) != 0)
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001177 goto end;
1178
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001179 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 }
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001199 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001200 /* We don't have a line number, let's use offset */
1201 ppt->offset = addr - (unsigned long)eaddr;
1202found:
Masami Hiramatsu02b95da2010-04-12 13:17:56 -04001203 ppt->function = strdup(tmp);
1204 if (ppt->function == NULL) {
1205 ret = -ENOMEM;
1206 goto end;
1207 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001208 found = true;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001209 }
1210
1211end:
1212 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001213 if (ret >= 0)
1214 ret = found ? 1 : 0;
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001215 return ret;
1216}
1217
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001218/* 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{
Chase Douglas9ed7e1b2010-06-14 15:26:30 -04001222 int ret;
1223
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001224 /* Copy real path */
1225 if (!lr->path) {
Chase Douglas9ed7e1b2010-06-14 15:26:30 -04001226 ret = get_real_path(src, &lr->path);
1227 if (ret != 0)
1228 return ret;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001229 }
1230 return line_list__add_line(&lr->line_list, lineno);
1231}
1232
1233/* Search function declaration lines */
1234static int line_range_funcdecl_cb(Dwarf_Die *sp_die, void *data)
1235{
1236 struct dwarf_callback_param *param = data;
1237 struct line_finder *lf = param->data;
1238 const char *src;
1239 int lineno;
1240
1241 src = dwarf_decl_file(sp_die);
1242 if (src && strtailcmp(src, lf->fname) != 0)
1243 return DWARF_CB_OK;
1244
1245 if (dwarf_decl_line(sp_die, &lineno) != 0 ||
1246 (lf->lno_s > lineno || lf->lno_e < lineno))
1247 return DWARF_CB_OK;
1248
1249 param->retval = line_range_add_line(src, lineno, lf->lr);
Masami Hiramatsu5d1ee042010-04-21 15:56:32 -04001250 if (param->retval < 0)
1251 return DWARF_CB_ABORT;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001252 return DWARF_CB_OK;
1253}
1254
1255static int find_line_range_func_decl_lines(struct line_finder *lf)
1256{
1257 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1258 dwarf_getfuncs(&lf->cu_die, line_range_funcdecl_cb, &param, 0);
1259 return param.retval;
1260}
Masami Hiramatsufb1587d2010-03-16 18:06:19 -04001261
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001262/* Find line range from its line number */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001263static int find_line_range_by_line(Dwarf_Die *sp_die, struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001264{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001265 Dwarf_Lines *lines;
1266 Dwarf_Line *line;
1267 size_t nlines, i;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001268 Dwarf_Addr addr;
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001269 int lineno, ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001270 const char *src;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001271 Dwarf_Die die_mem;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001272
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001273 line_list__init(&lf->lr->line_list);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001274 if (dwarf_getsrclines(&lf->cu_die, &lines, &nlines) != 0) {
1275 pr_warning("No source lines found in this CU.\n");
1276 return -ENOENT;
1277 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001278
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001279 /* Search probable lines on lines list */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001280 for (i = 0; i < nlines; i++) {
1281 line = dwarf_onesrcline(lines, i);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001282 if (dwarf_lineno(line, &lineno) != 0 ||
1283 (lf->lno_s > lineno || lf->lno_e < lineno))
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001284 continue;
1285
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001286 if (sp_die) {
1287 /* Address filtering 1: does sp_die include addr? */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001288 if (dwarf_lineaddr(line, &addr) != 0 ||
1289 !dwarf_haspc(sp_die, addr))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001290 continue;
1291
1292 /* Address filtering 2: No child include addr? */
Masami Hiramatsu95a3e4c2010-03-16 18:05:51 -04001293 if (die_find_inlinefunc(sp_die, addr, &die_mem))
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001294 continue;
1295 }
1296
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001297 /* TODO: Get fileno from line, but how? */
1298 src = dwarf_linesrc(line, NULL, NULL);
1299 if (strtailcmp(src, lf->fname) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001300 continue;
1301
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001302 ret = line_range_add_line(src, lineno, lf->lr);
1303 if (ret < 0)
1304 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001305 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001306
1307 /*
1308 * Dwarf lines doesn't include function declarations. We have to
1309 * check functions list or given function.
1310 */
1311 if (sp_die) {
1312 src = dwarf_decl_file(sp_die);
1313 if (src && dwarf_decl_line(sp_die, &lineno) == 0 &&
1314 (lf->lno_s <= lineno && lf->lno_e >= lineno))
1315 ret = line_range_add_line(src, lineno, lf->lr);
1316 } else
1317 ret = find_line_range_func_decl_lines(lf);
1318
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001319 /* Update status */
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001320 if (ret >= 0)
1321 if (!list_empty(&lf->lr->line_list))
1322 ret = lf->found = 1;
1323 else
1324 ret = 0; /* Lines are not found */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001325 else {
1326 free(lf->lr->path);
1327 lf->lr->path = NULL;
1328 }
Masami Hiramatsuf6c903f2010-04-14 18:40:07 -04001329 return ret;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001330}
1331
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001332static int line_range_inline_cb(Dwarf_Die *in_die, void *data)
1333{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001334 struct dwarf_callback_param *param = data;
1335
1336 param->retval = find_line_range_by_line(in_die, param->data);
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001337 return DWARF_CB_ABORT; /* No need to find other instances */
1338}
1339
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001340/* Search function from function name */
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001341static int line_range_search_cb(Dwarf_Die *sp_die, void *data)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001342{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001343 struct dwarf_callback_param *param = data;
1344 struct line_finder *lf = param->data;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001345 struct line_range *lr = lf->lr;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001346
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001347 if (dwarf_tag(sp_die) == DW_TAG_subprogram &&
1348 die_compare_name(sp_die, lr->function) == 0) {
Masami Hiramatsue92b85e2010-02-25 08:35:50 -05001349 lf->fname = dwarf_decl_file(sp_die);
1350 dwarf_decl_line(sp_die, &lr->offset);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001351 pr_debug("fname: %s, lineno:%d\n", lf->fname, lr->offset);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001352 lf->lno_s = lr->offset + lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001353 if (lf->lno_s < 0) /* Overflow */
1354 lf->lno_s = INT_MAX;
1355 lf->lno_e = lr->offset + lr->end;
1356 if (lf->lno_e < 0) /* Overflow */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001357 lf->lno_e = INT_MAX;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001358 pr_debug("New line range: %d to %d\n", lf->lno_s, lf->lno_e);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001359 lr->start = lf->lno_s;
1360 lr->end = lf->lno_e;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001361 if (dwarf_func_inline(sp_die)) {
1362 struct dwarf_callback_param _param;
1363 _param.data = (void *)lf;
1364 _param.retval = 0;
Masami Hiramatsu161a26b2010-02-25 08:35:57 -05001365 dwarf_func_inline_instances(sp_die,
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001366 line_range_inline_cb,
1367 &_param);
1368 param->retval = _param.retval;
1369 } else
1370 param->retval = find_line_range_by_line(sp_die, lf);
1371 return DWARF_CB_ABORT;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001372 }
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001373 return DWARF_CB_OK;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001374}
1375
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001376static int find_line_range_by_func(struct line_finder *lf)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001377{
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001378 struct dwarf_callback_param param = {.data = (void *)lf, .retval = 0};
1379 dwarf_getfuncs(&lf->cu_die, line_range_search_cb, &param, 0);
1380 return param.retval;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001381}
1382
1383int find_line_range(int fd, struct line_range *lr)
1384{
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001385 struct line_finder lf = {.lr = lr, .found = 0};
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001386 int ret = 0;
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001387 Dwarf_Off off = 0, noff;
1388 size_t cuhl;
1389 Dwarf_Die *diep;
1390 Dwarf *dbg;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001391
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001392 dbg = dwarf_begin(fd, DWARF_C_READ);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001393 if (!dbg) {
1394 pr_warning("No dwarf info found in the vmlinux - "
1395 "please rebuild with CONFIG_DEBUG_INFO=y.\n");
1396 return -EBADF;
1397 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001398
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001399 /* Loop on CUs (Compilation Unit) */
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001400 while (!lf.found && ret >= 0) {
1401 if (dwarf_nextcu(dbg, off, &noff, &cuhl, NULL, NULL, NULL) != 0)
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001402 break;
1403
1404 /* Get the DIE(Debugging Information Entry) of this CU */
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001405 diep = dwarf_offdie(dbg, off + cuhl, &lf.cu_die);
1406 if (!diep)
1407 continue;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001408
1409 /* Check if target file is included. */
1410 if (lr->file)
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001411 lf.fname = cu_find_realpath(&lf.cu_die, lr->file);
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001412 else
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001413 lf.fname = 0;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001414
Masami Hiramatsu2a9c8c32010-02-25 08:36:12 -05001415 if (!lr->file || lf.fname) {
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001416 if (lr->function)
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001417 ret = find_line_range_by_func(&lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001418 else {
1419 lf.lno_s = lr->start;
Masami Hiramatsud3b63d72010-04-14 18:39:42 -04001420 lf.lno_e = lr->end;
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001421 ret = find_line_range_by_line(NULL, &lf);
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001422 }
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001423 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001424 off = noff;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001425 }
Masami Hiramatsu804b3602010-02-25 08:35:42 -05001426 pr_debug("path: %lx\n", (unsigned long)lr->path);
1427 dwarf_end(dbg);
Masami Hiramatsub55a87a2010-04-12 13:17:35 -04001428
1429 return (ret < 0) ? ret : lf.found;
Masami Hiramatsu631c9de2010-01-06 09:45:34 -05001430}
1431