Fix: Free die_name in bin_info_lookup_cu_function_name
[babeltrace.git] / lib / bin-info.c
CommitLineData
b5a8598f 1/*
dae52e76 2 * bin-info.c
b5a8598f
AB
3 *
4 * Babeltrace - Executable and Shared Object Debug Info Reader
5 *
6 * Copyright 2015 Antoine Busque <abusque@efficios.com>
7 *
8 * Author: Antoine Busque <abusque@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29#include <fcntl.h>
30#include <math.h>
31#include <libgen.h>
32#include <stdio.h>
33#include <inttypes.h>
34#include <stdlib.h>
35#include <string.h>
36#include <unistd.h>
37#include <dwarf.h>
38#include <glib.h>
39#include <babeltrace/dwarf.h>
dae52e76 40#include <babeltrace/bin-info.h>
b5a8598f
AB
41#include <babeltrace/crc32.h>
42#include <babeltrace/babeltrace-internal.h>
beef86dc 43#include <babeltrace/utils.h>
6a2908b2 44#include <errno.h>
b5a8598f
AB
45
46/*
47 * An address printed in hex is at most 20 bytes (16 for 64-bits +
48 * leading 0x + optional leading '+' if addr is an offset + null
49 * character).
50 */
51#define ADDR_STR_LEN 20
52
53BT_HIDDEN
dae52e76 54int bin_info_init(void)
b5a8598f
AB
55{
56 int ret = 0;
57
58 if (elf_version(EV_CURRENT) == EV_NONE) {
1036949d
AB
59 printf_debug("ELF library initialization failed: %s\n",
60 elf_errmsg(-1));
b5a8598f
AB
61 ret = -1;
62 }
63
64 return ret;
65}
66
67BT_HIDDEN
dae52e76 68struct bin_info *bin_info_create(const char *path, uint64_t low_addr,
1a4a1345 69 uint64_t memsz, bool is_pic)
b5a8598f 70{
dae52e76 71 struct bin_info *bin = NULL;
b5a8598f
AB
72
73 if (!path) {
74 goto error;
75 }
76
dae52e76
AB
77 bin = g_new0(struct bin_info, 1);
78 if (!bin) {
b5a8598f
AB
79 goto error;
80 }
81
b7b61ced 82 if (opt_debug_info_target_prefix) {
dae52e76 83 bin->elf_path = g_build_path("/", opt_debug_info_target_prefix,
b7b61ced
AB
84 path, NULL);
85 } else {
dae52e76 86 bin->elf_path = strdup(path);
b7b61ced
AB
87 }
88
dae52e76 89 if (!bin->elf_path) {
b5a8598f
AB
90 goto error;
91 }
92
dae52e76
AB
93 bin->is_pic = is_pic;
94 bin->memsz = memsz;
95 bin->low_addr = low_addr;
96 bin->high_addr = bin->low_addr + bin->memsz;
b5a8598f 97
dae52e76 98 return bin;
b5a8598f
AB
99
100error:
dae52e76 101 bin_info_destroy(bin);
b5a8598f
AB
102 return NULL;
103}
104
105BT_HIDDEN
dae52e76 106void bin_info_destroy(struct bin_info *bin)
b5a8598f 107{
dae52e76 108 if (!bin) {
b5a8598f
AB
109 return;
110 }
111
dae52e76 112 dwarf_end(bin->dwarf_info);
b5a8598f 113
dae52e76
AB
114 free(bin->elf_path);
115 free(bin->dwarf_path);
116 free(bin->build_id);
117 free(bin->dbg_link_filename);
b5a8598f 118
dae52e76 119 elf_end(bin->elf_file);
b5a8598f 120
dae52e76
AB
121 close(bin->elf_fd);
122 close(bin->dwarf_fd);
b5a8598f 123
dae52e76 124 g_free(bin);
b5a8598f
AB
125}
126
b8652b58 127
b5a8598f 128BT_HIDDEN
dae52e76 129int bin_info_set_build_id(struct bin_info *bin, uint8_t *build_id,
b5a8598f
AB
130 size_t build_id_len)
131{
dae52e76 132 if (!bin || !build_id) {
b5a8598f
AB
133 goto error;
134 }
135
dae52e76
AB
136 bin->build_id = malloc(build_id_len);
137 if (!bin->build_id) {
b5a8598f
AB
138 goto error;
139 }
140
dae52e76
AB
141 memcpy(bin->build_id, build_id, build_id_len);
142 bin->build_id_len = build_id_len;
b5a8598f
AB
143
144 /*
145 * Reset the is_elf_only flag in case it had been set
146 * previously, because we might find separate debug info using
147 * the new build id information.
148 */
dae52e76 149 bin->is_elf_only = false;
b5a8598f
AB
150
151 return 0;
152
153error:
154
155 return -1;
156}
157
158BT_HIDDEN
dae52e76 159int bin_info_set_debug_link(struct bin_info *bin, char *filename, uint32_t crc)
b5a8598f 160{
dae52e76 161 if (!bin || !filename) {
b5a8598f
AB
162 goto error;
163 }
164
dae52e76
AB
165 bin->dbg_link_filename = strdup(filename);
166 if (!bin->dbg_link_filename) {
b5a8598f
AB
167 goto error;
168 }
169
dae52e76 170 bin->dbg_link_crc = crc;
b5a8598f
AB
171
172 /*
173 * Reset the is_elf_only flag in case it had been set
174 * previously, because we might find separate debug info using
175 * the new build id information.
176 */
dae52e76 177 bin->is_elf_only = false;
b5a8598f
AB
178
179 return 0;
180
181error:
182
183 return -1;
184}
185
186/**
187 * Tries to read DWARF info from the location given by path, and
dae52e76 188 * attach it to the given bin_info instance if it exists.
b5a8598f 189 *
dae52e76 190 * @param bin bin_info instance for which to set DWARF info
b5a8598f 191 * @param path Presumed location of the DWARF info
6a2908b2 192 * @returns 0 on success, negative value on failure
b5a8598f
AB
193 */
194static
dae52e76 195int bin_info_set_dwarf_info_from_path(struct bin_info *bin, char *path)
b5a8598f
AB
196{
197 int fd = -1, ret = 0;
198 struct bt_dwarf_cu *cu = NULL;
199 Dwarf *dwarf_info = NULL;
200
dae52e76 201 if (!bin || !path) {
b5a8598f
AB
202 goto error;
203 }
204
205 fd = open(path, O_RDONLY);
206 if (fd < 0) {
6a2908b2 207 fd = -errno;
b5a8598f
AB
208 goto error;
209 }
210
211 dwarf_info = dwarf_begin(fd, DWARF_C_READ);
212 if (!dwarf_info) {
213 goto error;
214 }
215
216 /*
dae52e76
AB
217 * Check if the dwarf info has any CU. If not, the
218 * executable's object file contains no DWARF info.
b5a8598f
AB
219 */
220 cu = bt_dwarf_cu_create(dwarf_info);
221 if (!cu) {
222 goto error;
223 }
224
225 ret = bt_dwarf_cu_next(cu);
226 if (ret) {
227 goto error;
228 }
229
dae52e76
AB
230 bin->dwarf_fd = fd;
231 bin->dwarf_path = strdup(path);
232 if (!bin->dwarf_path) {
b5a8598f
AB
233 goto error;
234 }
dae52e76 235 bin->dwarf_info = dwarf_info;
b5a8598f
AB
236 free(cu);
237
238 return 0;
239
240error:
6a2908b2
JG
241 if (fd >= 0) {
242 close(fd);
243 fd = -1;
244 }
b5a8598f
AB
245 dwarf_end(dwarf_info);
246 g_free(dwarf_info);
247 free(cu);
248
6a2908b2 249 return fd;
b5a8598f
AB
250}
251
252/**
dae52e76 253 * Try to set the dwarf_info for a given bin_info instance via the
b5a8598f
AB
254 * build ID method.
255 *
dae52e76 256 * @param bin bin_info instance for which to retrieve the
b5a8598f
AB
257 * DWARF info via build ID
258 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
259 */
260static
dae52e76 261int bin_info_set_dwarf_info_build_id(struct bin_info *bin)
b5a8598f 262{
1b3f6ee3 263 int i = 0, ret = 0;
b5a8598f
AB
264 char *path = NULL, *build_id_file = NULL;
265 const char *dbg_dir = NULL;
1b3f6ee3 266 size_t build_id_file_len;
b5a8598f 267
dae52e76 268 if (!bin || !bin->build_id) {
b5a8598f
AB
269 goto error;
270 }
271
3be1e3c9 272 dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR;
b5a8598f 273
5f07b6ce 274 /* 2 characters per byte printed in hex, +1 for '/' and +1 for '\0' */
dae52e76 275 build_id_file_len = (2 * bin->build_id_len) + 1 +
1b3f6ee3 276 strlen(BUILD_ID_SUFFIX) + 1;
b5a8598f
AB
277 build_id_file = malloc(build_id_file_len);
278 if (!build_id_file) {
279 goto error;
280 }
281
dae52e76
AB
282 snprintf(build_id_file, 4, "%02x/", bin->build_id[0]);
283 for (i = 1; i < bin->build_id_len; ++i) {
b5a8598f
AB
284 int path_idx = 3 + 2 * (i - 1);
285
dae52e76 286 snprintf(&build_id_file[path_idx], 3, "%02x", bin->build_id[i]);
b5a8598f 287 }
1b3f6ee3 288 strcat(build_id_file, BUILD_ID_SUFFIX);
b5a8598f 289
1b3f6ee3 290 path = g_build_path("/", dbg_dir, BUILD_ID_SUBDIR, build_id_file, NULL);
b5a8598f
AB
291 if (!path) {
292 goto error;
293 }
294
dae52e76 295 ret = bin_info_set_dwarf_info_from_path(bin, path);
b5a8598f
AB
296 if (ret) {
297 goto error;
298 }
299
300 goto end;
301
302error:
303 ret = -1;
304end:
305 free(build_id_file);
306 free(path);
307
308 return ret;
309}
310
311/**
312 * Tests whether the file located at path exists and has the expected
313 * checksum.
314 *
315 * This predicate is used when looking up separate debug info via the
316 * GNU debuglink method. The expected crc can be found .gnu_debuglink
317 * section in the original ELF file, along with the filename for the
318 * file containing the debug info.
319 *
320 * @param path Full path at which to look for the debug file
321 * @param crc Expected checksum for the debug file
322 * @returns 1 if the file exists and has the correct checksum,
323 * 0 otherwise
324 */
325static
326int is_valid_debug_file(char *path, uint32_t crc)
327{
328 int ret = 0, fd = -1;
329 uint32_t _crc = 0;
330
331 if (!path) {
332 goto end;
333 }
334
335 fd = open(path, O_RDONLY);
336 if (fd < 0) {
337 goto end;
338 }
339
340 ret = crc32(fd, &_crc);
341 if (ret) {
342 ret = 0;
343 goto end;
344 }
345
346 ret = (crc == _crc);
347
348end:
349 close(fd);
350 return ret;
351}
352
353/**
dae52e76 354 * Try to set the dwarf_info for a given bin_info instance via the
b5a8598f
AB
355 * build ID method.
356 *
dae52e76 357 * @param bin bin_info instance for which to retrieve the
b5a8598f
AB
358 * DWARF info via debug link
359 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
360 */
361static
dae52e76 362int bin_info_set_dwarf_info_debug_link(struct bin_info *bin)
b5a8598f
AB
363{
364 int ret = 0;
365 const char *dbg_dir = NULL;
dae52e76 366 char *dir_name = NULL, *bin_dir = NULL, *path = NULL;
b5a8598f
AB
367 size_t max_path_len = 0;
368
dae52e76 369 if (!bin || !bin->dbg_link_filename) {
b5a8598f
AB
370 goto error;
371 }
372
3be1e3c9 373 dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR;
b5a8598f 374
dae52e76 375 dir_name = dirname(bin->elf_path);
b5a8598f
AB
376 if (!dir_name) {
377 goto error;
378 }
379
dae52e76
AB
380 /* bin_dir is just dir_name with a trailing slash */
381 bin_dir = malloc(strlen(dir_name) + 2);
382 if (!bin_dir) {
b5a8598f
AB
383 goto error;
384 }
385
dae52e76
AB
386 strcpy(bin_dir, dir_name);
387 strcat(bin_dir, "/");
b5a8598f 388
dae52e76
AB
389 max_path_len = strlen(dbg_dir) + strlen(bin_dir) +
390 strlen(DEBUG_SUBDIR) + strlen(bin->dbg_link_filename)
b5a8598f
AB
391 + 1;
392 path = malloc(max_path_len);
393 if (!path) {
394 goto error;
395 }
396
dae52e76
AB
397 /* First look in the executable's dir */
398 strcpy(path, bin_dir);
399 strcat(path, bin->dbg_link_filename);
b5a8598f 400
dae52e76 401 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
402 goto found;
403 }
404
405 /* If not found, look in .debug subdir */
dae52e76 406 strcpy(path, bin_dir);
b5a8598f 407 strcat(path, DEBUG_SUBDIR);
dae52e76 408 strcat(path, bin->dbg_link_filename);
b5a8598f 409
dae52e76 410 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
411 goto found;
412 }
413
414 /* Lastly, look under the global debug directory */
415 strcpy(path, dbg_dir);
dae52e76
AB
416 strcat(path, bin_dir);
417 strcat(path, bin->dbg_link_filename);
b5a8598f 418
dae52e76 419 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
420 goto found;
421 }
422
423error:
424 ret = -1;
425end:
426 free(path);
dae52e76 427 free(bin_dir);
b5a8598f
AB
428
429 return ret;
430
431found:
dae52e76 432 ret = bin_info_set_dwarf_info_from_path(bin, path);
b5a8598f
AB
433 if (ret) {
434 goto error;
435 }
436
437 goto end;
438}
439
440/**
441 * Initialize the DWARF info for a given executable.
442 *
dae52e76 443 * @param bin bin_info instance
6a2908b2 444 * @returns 0 on success, negative value on failure
b5a8598f
AB
445 */
446static
dae52e76 447int bin_info_set_dwarf_info(struct bin_info *bin)
b5a8598f
AB
448{
449 int ret = 0;
450
dae52e76 451 if (!bin) {
6a2908b2
JG
452 ret = -1;
453 goto end;
b5a8598f
AB
454 }
455
456 /* First try to set the DWARF info from the ELF file */
dae52e76 457 ret = bin_info_set_dwarf_info_from_path(bin, bin->elf_path);
b5a8598f
AB
458 if (!ret) {
459 goto end;
460 }
461
462 /*
463 * If that fails, try to find separate debug info via build ID
464 * and debug link.
465 */
dae52e76 466 ret = bin_info_set_dwarf_info_build_id(bin);
b5a8598f
AB
467 if (!ret) {
468 goto end;
469 }
470
dae52e76 471 ret = bin_info_set_dwarf_info_debug_link(bin);
b5a8598f
AB
472 if (!ret) {
473 goto end;
474 }
475
b5a8598f
AB
476end:
477 return ret;
478}
479
b8652b58
AB
480/**
481 * Initialize the ELF file for a given executable.
482 *
dae52e76 483 * @param bin bin_info instance
6a2908b2 484 * @returns 0 on success, negative value on error.
b8652b58
AB
485 */
486static
dae52e76 487int bin_info_set_elf_file(struct bin_info *bin)
b8652b58 488{
bfadaf12 489 int elf_fd = -1;
e362dc93 490 Elf *elf_file = NULL;
b8652b58 491
dae52e76 492 if (!bin) {
b8652b58
AB
493 goto error;
494 }
495
dae52e76 496 elf_fd = open(bin->elf_path, O_RDONLY);
b8652b58 497 if (elf_fd < 0) {
6a2908b2 498 elf_fd = -errno;
dae52e76 499 printf_verbose("Failed to open %s\n", bin->elf_path);
b8652b58
AB
500 goto error;
501 }
502
503 elf_file = elf_begin(elf_fd, ELF_C_READ, NULL);
504 if (!elf_file) {
1036949d 505 printf_debug("elf_begin failed: %s\n", elf_errmsg(-1));
b8652b58
AB
506 goto error;
507 }
508
509 if (elf_kind(elf_file) != ELF_K_ELF) {
1036949d 510 printf_verbose("Error: %s is not an ELF object\n",
dae52e76 511 bin->elf_path);
b8652b58
AB
512 goto error;
513 }
514
dae52e76
AB
515 bin->elf_fd = elf_fd;
516 bin->elf_file = elf_file;
b8652b58
AB
517 return 0;
518
519error:
bfadaf12
JG
520 if (elf_fd >= 0) {
521 close(elf_fd);
6a2908b2 522 elf_fd = -1;
bfadaf12 523 }
b8652b58 524 elf_end(elf_file);
6a2908b2 525 return elf_fd;
b8652b58
AB
526}
527
b5a8598f
AB
528BT_HIDDEN
529void source_location_destroy(struct source_location *src_loc)
530{
531 if (!src_loc) {
532 return;
533 }
534
535 free(src_loc->filename);
536 g_free(src_loc);
537}
483791a5 538
1c47ec6c
AB
539/**
540 * Append a string representation of an address offset to an existing
541 * string.
542 *
543 * On success, the out parameter `result` will contain the base string
544 * followed by the offset string of the form "+0x1234". On failure,
545 * `result` remains unchanged.
546 *
547 * @param base_str The string to which to append an offset string
548 * @param low_addr The lower virtual memory address, the base from
549 * which the offset is computed
550 * @param high_addr The higher virtual memory address
551 * @param result Out parameter, the base string followed by the
552 * offset string
553 * @returns 0 on success, -1 on failure
554 */
555static
dae52e76 556int bin_info_append_offset_str(const char *base_str, uint64_t low_addr,
1c47ec6c
AB
557 uint64_t high_addr, char **result)
558{
559 int ret;
560 uint64_t offset;
561 char *_result = NULL;
562 char offset_str[ADDR_STR_LEN];
563
564 if (!base_str || !result) {
565 goto error;
566 }
567
568 offset = high_addr - low_addr;
569
570 _result = malloc(strlen(base_str) + ADDR_STR_LEN);
571 if (!_result) {
572 goto error;
573 }
574
575 ret = snprintf(offset_str, ADDR_STR_LEN, "+%#0" PRIx64, offset);
576 if (ret < 0) {
577 goto error;
578 }
579 strcpy(_result, base_str);
580 strcat(_result, offset_str);
581 *result = _result;
582
583 return 0;
584
585error:
586 free(_result);
587 return -1;
588}
b5a8598f
AB
589
590/**
591 * Try to find the symbol closest to an address within a given ELF
592 * section.
593 *
594 * Only function symbols are taken into account. The symbol's address
595 * must precede `addr`. A symbol with a closer address might exist
596 * after `addr` but is irrelevant because it cannot encompass `addr`.
597 *
598 * On success, if found, the out parameters `sym` and `shdr` are
599 * set. On failure or if none are found, they remain unchanged.
600 *
601 * @param scn ELF section in which to look for the address
602 * @param addr Virtual memory address for which to find the
603 * nearest function symbol
604 * @param sym Out parameter, the nearest function symbol
605 * @param shdr Out parameter, the section header for scn
606 * @returns 0 on success, -1 on failure
607 */
608static
dae52e76 609int bin_info_get_nearest_symbol_from_section(Elf_Scn *scn, uint64_t addr,
b5a8598f
AB
610 GElf_Sym **sym, GElf_Shdr **shdr)
611{
612 int i;
613 size_t symbol_count;
614 Elf_Data *data = NULL;
615 GElf_Shdr *_shdr = NULL;
616 GElf_Sym *nearest_sym = NULL;
617
618 if (!scn || !sym || !shdr) {
619 goto error;
620 }
621
622 _shdr = g_new0(GElf_Shdr, 1);
623 if (!_shdr) {
624 goto error;
625 }
626
627 _shdr = gelf_getshdr(scn, _shdr);
628 if (!_shdr) {
629 goto error;
630 }
631
632 if (_shdr->sh_type != SHT_SYMTAB) {
633 /*
634 * We are only interested in symbol table (symtab)
635 * sections, skip this one.
636 */
637 goto end;
638 }
639
640 data = elf_getdata(scn, NULL);
641 if (!data) {
642 goto error;
643 }
644
645 symbol_count = _shdr->sh_size / _shdr->sh_entsize;
646
647 for (i = 0; i < symbol_count; ++i) {
648 GElf_Sym *cur_sym = NULL;
649
650 cur_sym = g_new0(GElf_Sym, 1);
651 if (!cur_sym) {
652 goto error;
653 }
654 cur_sym = gelf_getsym(data, i, cur_sym);
655 if (!cur_sym) {
656 goto error;
657 }
658 if (GELF_ST_TYPE(cur_sym->st_info) != STT_FUNC) {
659 /* We're only interested in the functions. */
660 g_free(cur_sym);
661 continue;
662 }
663
664 if (cur_sym->st_value <= addr &&
665 (!nearest_sym ||
666 cur_sym->st_value > nearest_sym->st_value)) {
667 g_free(nearest_sym);
668 nearest_sym = cur_sym;
669 } else {
670 g_free(cur_sym);
671 }
672 }
673
674end:
675 if (nearest_sym) {
676 *sym = nearest_sym;
677 *shdr = _shdr;
678 } else {
679 g_free(_shdr);
680 }
681
682 return 0;
683
684error:
685 g_free(nearest_sym);
686 g_free(_shdr);
687 return -1;
688}
689
690/**
691 * Get the name of the function containing a given address within an
692 * executable using ELF symbols.
693 *
694 * The function name is in fact the name of the nearest ELF symbol,
695 * followed by the offset in bytes between the address and the symbol
696 * (in hex), separated by a '+' character.
697 *
698 * If found, the out parameter `func_name` is set on success. On failure,
699 * it remains unchanged.
700 *
dae52e76 701 * @param bin bin_info instance for the executable containing
b5a8598f
AB
702 * the address
703 * @param addr Virtual memory address for which to find the
704 * function name
705 * @param func_name Out parameter, the function name
706 * @returns 0 on success, -1 on failure
707 */
708static
dae52e76 709int bin_info_lookup_elf_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
710 char **func_name)
711{
712 /*
713 * TODO (possible optimisation): if an ELF has no symtab
714 * section, it has been stripped. Therefore, it would be wise
715 * to store a flag indicating the stripped status after the
716 * first iteration to prevent subsequent ones.
717 */
718 int ret = 0;
719 Elf_Scn *scn = NULL;
720 GElf_Sym *sym = NULL;
721 GElf_Shdr *shdr = NULL;
722 char *sym_name = NULL;
b5a8598f 723
b8652b58 724 /* Set ELF file if it hasn't been accessed yet. */
dae52e76
AB
725 if (!bin->elf_file) {
726 ret = bin_info_set_elf_file(bin);
b8652b58
AB
727 if (ret) {
728 /* Failed to set ELF file. */
729 goto error;
730 }
731 }
732
dae52e76 733 scn = elf_nextscn(bin->elf_file, scn);
b5a8598f
AB
734 if (!scn) {
735 goto error;
736 }
737
738 while (scn && !sym) {
dae52e76 739 ret = bin_info_get_nearest_symbol_from_section(
b5a8598f
AB
740 scn, addr, &sym, &shdr);
741 if (ret) {
742 goto error;
743 }
744
dae52e76 745 scn = elf_nextscn(bin->elf_file, scn);
b5a8598f
AB
746 }
747
748 if (sym) {
dae52e76 749 sym_name = elf_strptr(bin->elf_file, shdr->sh_link,
b5a8598f
AB
750 sym->st_name);
751 if (!sym_name) {
752 goto error;
753 }
754
dae52e76 755 ret = bin_info_append_offset_str(sym_name, sym->st_value, addr,
1c47ec6c
AB
756 func_name);
757 if (ret) {
b5a8598f
AB
758 goto error;
759 }
b5a8598f
AB
760 }
761
762 g_free(shdr);
763 g_free(sym);
764 return 0;
765
766error:
767 g_free(shdr);
768 g_free(sym);
6a2908b2 769 return ret;
b5a8598f
AB
770}
771
772/**
773 * Get the name of the function containing a given address within a
774 * given compile unit (CU).
775 *
776 * If found, the out parameter `func_name` is set on success. On
777 * failure, it remains unchanged.
778 *
779 * @param cu bt_dwarf_cu instance which may contain the address
780 * @param addr Virtual memory address for which to find the
781 * function name
782 * @param func_name Out parameter, the function name
783 * @returns 0 on success, -1 on failure
784 */
785static
dae52e76 786int bin_info_lookup_cu_function_name(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
787 char **func_name)
788{
302314ec
AB
789 int ret = 0;
790 bool found = false;
b5a8598f
AB
791 struct bt_dwarf_die *die = NULL;
792
793 if (!cu || !func_name) {
794 goto error;
795 }
796
797 die = bt_dwarf_die_create(cu);
798 if (!die) {
799 goto error;
800 }
801
802 while (bt_dwarf_die_next(die) == 0) {
803 int tag;
804
805 ret = bt_dwarf_die_get_tag(die, &tag);
806 if (ret) {
807 goto error;
808 }
809
810 if (tag == DW_TAG_subprogram) {
811 ret = bt_dwarf_die_contains_addr(die, addr, &found);
812 if (ret) {
813 goto error;
814 }
815
816 if (found) {
817 break;
818 }
819 }
820 }
821
822 if (found) {
1c47ec6c
AB
823 uint64_t low_addr = 0;
824 char *die_name = NULL;
825
d3c33bc6
AB
826 ret = bt_dwarf_die_get_name(die, &die_name);
827 if (ret) {
828 goto error;
829 }
830
831 ret = dwarf_lowpc(die->dwarf_die, &low_addr);
b5a8598f 832 if (ret) {
c862350b 833 free(die_name);
b5a8598f
AB
834 goto error;
835 }
836
dae52e76 837 ret = bin_info_append_offset_str(die_name, low_addr, addr,
1c47ec6c 838 func_name);
c862350b 839 free(die_name);
1c47ec6c 840 if (ret) {
d3c33bc6
AB
841 goto error;
842 }
b5a8598f
AB
843 }
844
845 bt_dwarf_die_destroy(die);
846 return 0;
847
848error:
849 bt_dwarf_die_destroy(die);
850 return -1;
851}
852
853/**
854 * Get the name of the function containing a given address within an
855 * executable using DWARF debug info.
856 *
857 * If found, the out parameter `func_name` is set on success. On
858 * failure, it remains unchanged.
859 *
dae52e76 860 * @param bin bin_info instance for the executable containing
b5a8598f
AB
861 * the address
862 * @param addr Virtual memory address for which to find the
863 * function name
864 * @param func_name Out parameter, the function name
865 * @returns 0 on success, -1 on failure
866 */
867static
dae52e76 868int bin_info_lookup_dwarf_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
869 char **func_name)
870{
871 int ret = 0;
872 char *_func_name = NULL;
873 struct bt_dwarf_cu *cu = NULL;
874
dae52e76 875 if (!bin || !func_name) {
b5a8598f
AB
876 goto error;
877 }
878
dae52e76 879 cu = bt_dwarf_cu_create(bin->dwarf_info);
b5a8598f
AB
880 if (!cu) {
881 goto error;
882 }
883
884 while (bt_dwarf_cu_next(cu) == 0) {
dae52e76 885 ret = bin_info_lookup_cu_function_name(cu, addr, &_func_name);
b5a8598f
AB
886 if (ret) {
887 goto error;
888 }
889
890 if (_func_name) {
891 break;
892 }
893 }
894
895 if (_func_name) {
896 *func_name = _func_name;
fcd94e37
JG
897 } else {
898 goto error;
b5a8598f
AB
899 }
900
901 bt_dwarf_cu_destroy(cu);
902 return 0;
903
904error:
905 bt_dwarf_cu_destroy(cu);
906 return -1;
907}
908
909BT_HIDDEN
dae52e76 910int bin_info_lookup_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
911 char **func_name)
912{
913 int ret = 0;
914 char *_func_name = NULL;
915
dae52e76 916 if (!bin || !func_name) {
b5a8598f
AB
917 goto error;
918 }
919
920 /* Set DWARF info if it hasn't been accessed yet. */
dae52e76
AB
921 if (!bin->dwarf_info && !bin->is_elf_only) {
922 ret = bin_info_set_dwarf_info(bin);
b5a8598f 923 if (ret) {
6a2908b2 924 printf_verbose("Failed to set bin dwarf info, falling back to ELF lookup.\n");
b5a8598f 925 /* Failed to set DWARF info, fallback to ELF. */
dae52e76 926 bin->is_elf_only = true;
b5a8598f
AB
927 }
928 }
929
dae52e76 930 if (!bin_info_has_address(bin, addr)) {
b5a8598f
AB
931 goto error;
932 }
933
934 /*
935 * Addresses in ELF and DWARF are relative to base address for
936 * PIC, so make the address argument relative too if needed.
937 */
dae52e76
AB
938 if (bin->is_pic) {
939 addr -= bin->low_addr;
dc419b6c
AB
940 }
941
dae52e76
AB
942 if (bin->is_elf_only) {
943 ret = bin_info_lookup_elf_function_name(bin, addr, &_func_name);
6a2908b2 944 printf_verbose("Failed to lookup function name (elf), error %i\n", ret);
b5a8598f 945 } else {
dae52e76 946 ret = bin_info_lookup_dwarf_function_name(bin, addr, &_func_name);
6a2908b2 947 printf_verbose("Failed to lookup function name (dwarf), error %i\n", ret);
b5a8598f
AB
948 }
949
dc419b6c
AB
950 *func_name = _func_name;
951 return 0;
beef86dc 952
dc419b6c
AB
953error:
954 return -1;
955}
956
957BT_HIDDEN
dae52e76 958int bin_info_get_bin_loc(struct bin_info *bin, uint64_t addr, char **bin_loc)
dc419b6c
AB
959{
960 int ret = 0;
961 char *_bin_loc = NULL;
962
dae52e76 963 if (!bin || !bin_loc) {
dc419b6c 964 goto error;
b5a8598f
AB
965 }
966
dae52e76
AB
967 if (bin->is_pic) {
968 addr -= bin->low_addr;
dc419b6c
AB
969 ret = asprintf(&_bin_loc, "+%#0" PRIx64, addr);
970 } else {
971 ret = asprintf(&_bin_loc, "@%#0" PRIx64, addr);
972 }
973
974 if (ret == -1 || !_bin_loc) {
975 goto error;
976 }
977
978 *bin_loc = _bin_loc;
b5a8598f
AB
979 return 0;
980
981error:
982 return -1;
983}
984
985/**
986 * Predicate used to determine whether the children of a given DIE
987 * contain a specific address.
988 *
989 * More specifically, the parameter `die` is expected to be a
990 * subprogram (function) DIE, and this predicate tells whether any
991 * subroutines are inlined within this function and would contain
992 * `addr`.
993 *
302314ec
AB
994 * On success, the out parameter `contains` is set with the boolean
995 * value indicating whether the DIE's range covers `addr`. On failure,
996 * it remains unchanged.
997 *
b5a8598f
AB
998 * Do note that this function advances the position of `die`. If the
999 * address is found within one of its children, `die` will be pointing
1000 * to that child upon returning from the function, allowing to extract
1001 * the information deemed necessary.
1002 *
302314ec
AB
1003 * @param die The parent DIE in whose children the address will be
1004 * looked for
1005 * @param addr The address for which to look for in the DIEs
1006 * @param contains Out parameter, true if addr is contained,
1007 * false if not
1008 * @returns Returns 0 on success, -1 on failure
b5a8598f
AB
1009 */
1010static
302314ec 1011int bin_info_child_die_has_address(struct bt_dwarf_die *die, uint64_t addr, bool *contains)
b5a8598f 1012{
302314ec
AB
1013 int ret = 0;
1014 bool _contains = false;
b5a8598f
AB
1015
1016 if (!die) {
1017 goto error;
1018 }
1019
1020 ret = bt_dwarf_die_child(die);
1021 if (ret) {
1022 goto error;
1023 }
1024
1025 do {
1026 int tag;
1027
1028 ret = bt_dwarf_die_get_tag(die, &tag);
1029 if (ret) {
1030 goto error;
1031 }
1032
1033 if (tag == DW_TAG_inlined_subroutine) {
302314ec 1034 ret = bt_dwarf_die_contains_addr(die, addr, &_contains);
b5a8598f
AB
1035 if (ret) {
1036 goto error;
1037 }
1038
1039 if (contains) {
b5a8598f
AB
1040 goto end;
1041 }
1042 }
1043 } while (bt_dwarf_die_next(die) == 0);
1044
1045end:
302314ec
AB
1046 *contains = _contains;
1047 return 0;
b5a8598f
AB
1048
1049error:
302314ec 1050 return -1;
b5a8598f
AB
1051}
1052
1053/**
1054 * Lookup the source location for a given address within a CU, making
1055 * the assumption that it is contained within an inline routine in a
1056 * function.
1057 *
1058 * @param cu bt_dwarf_cu instance in which to look for the address
1059 * @param addr The address for which to look for
1060 * @param src_loc Out parameter, the source location (filename and
1061 * line number) for the address
1062 * @returns 0 on success, -1 on failure
1063 */
1064static
dae52e76 1065int bin_info_lookup_cu_src_loc_inl(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1066 struct source_location **src_loc)
1067{
302314ec
AB
1068 int ret = 0;
1069 bool found = false;
b5a8598f
AB
1070 struct bt_dwarf_die *die = NULL;
1071 struct source_location *_src_loc = NULL;
1072
1073 if (!cu || !src_loc) {
1074 goto error;
1075 }
1076
1077 die = bt_dwarf_die_create(cu);
1078 if (!die) {
1079 goto error;
1080 }
1081
1082 while (bt_dwarf_die_next(die) == 0) {
1083 int tag;
1084
1085 ret = bt_dwarf_die_get_tag(die, &tag);
1086 if (ret) {
1087 goto error;
1088 }
1089
1090 if (tag == DW_TAG_subprogram) {
302314ec 1091 bool contains = false;
b5a8598f
AB
1092
1093 ret = bt_dwarf_die_contains_addr(die, addr, &contains);
1094 if (ret) {
1095 goto error;
1096 }
1097
1098 if (contains) {
1099 /*
1100 * Try to find an inlined subroutine
1101 * child of this DIE containing addr.
1102 */
302314ec
AB
1103 ret = bin_info_child_die_has_address(die, addr,
1104 &found);
1105 if(ret) {
1106 goto error;
1107 }
1108
b5a8598f
AB
1109 goto end;
1110 }
1111 }
1112 }
1113
1114end:
1115 if (found) {
1116 char *filename = NULL;
1117 uint64_t line_no;
1118
1119 _src_loc = g_new0(struct source_location, 1);
1120 if (!_src_loc) {
1121 goto error;
1122 }
1123
1124 ret = bt_dwarf_die_get_call_file(die, &filename);
1125 if (ret) {
1126 goto error;
1127 }
1128 ret = bt_dwarf_die_get_call_line(die, &line_no);
1129 if (ret) {
1130 free(filename);
1131 goto error;
1132 }
1133
1134 _src_loc->filename = filename;
1135 _src_loc->line_no = line_no;
1136 *src_loc = _src_loc;
1137 }
1138
1139 bt_dwarf_die_destroy(die);
1140 return 0;
1141
1142error:
1143 source_location_destroy(_src_loc);
1144 bt_dwarf_die_destroy(die);
1145 return -1;
1146}
1147
1148/**
1149 * Lookup the source location for a given address within a CU,
1150 * assuming that it is contained within an inlined function.
1151 *
1152 * A source location can be found regardless of inlining status for
1153 * this method, but in the case of an inlined function, the returned
1154 * source location will point not to the callsite but rather to the
1155 * definition site of the inline function.
1156 *
1157 * @param cu bt_dwarf_cu instance in which to look for the address
1158 * @param addr The address for which to look for
1159 * @param src_loc Out parameter, the source location (filename and
1160 * line number) for the address
1161 * @returns 0 on success, -1 on failure
1162 */
1163static
dae52e76 1164int bin_info_lookup_cu_src_loc_no_inl(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1165 struct source_location **src_loc)
1166{
1167 struct source_location *_src_loc = NULL;
1168 struct bt_dwarf_die *die = NULL;
1169 const char *filename = NULL;
1170 Dwarf_Line *line = NULL;
1171 Dwarf_Addr line_addr;
1172 int ret, line_no;
1173
1174 if (!cu || !src_loc) {
1175 goto error;
1176 }
1177
1178 die = bt_dwarf_die_create(cu);
1179 if (!die) {
1180 goto error;
1181 }
1182
1183 line = dwarf_getsrc_die(die->dwarf_die, addr);
1184 if (!line) {
1185 goto error;
1186 }
1187
1188 ret = dwarf_lineaddr(line, &line_addr);
1189 if (ret) {
1190 goto error;
1191 }
1192
1193 filename = dwarf_linesrc(line, NULL, NULL);
1194 if (!filename) {
1195 goto error;
1196 }
1197
1198 if (addr == line_addr) {
1199 _src_loc = g_new0(struct source_location, 1);
1200 if (!_src_loc) {
1201 goto error;
1202 }
1203
1204 ret = dwarf_lineno(line, &line_no);
1205 if (ret) {
1206 goto error;
1207 }
1208
1209 _src_loc->line_no = line_no;
1210 _src_loc->filename = strdup(filename);
1211 }
1212
1213 bt_dwarf_die_destroy(die);
1214
1215 if (_src_loc) {
1216 *src_loc = _src_loc;
1217 }
1218
1219 return 0;
1220
1221error:
1222 source_location_destroy(_src_loc);
1223 bt_dwarf_die_destroy(die);
1224 return -1;
1225}
1226
1227/**
1228 * Get the source location (file name and line number) for a given
1229 * address within a compile unit (CU).
1230 *
1231 * On success, the out parameter `src_loc` is set if found. On
1232 * failure, it remains unchanged.
1233 *
dae52e76 1234 * @param cu bt_dwarf_cu instance for the compile unit which
b5a8598f
AB
1235 * may contain the address
1236 * @param addr Virtual memory address for which to find the
1237 * source location
1238 * @param src_loc Out parameter, the source location
1239 * @returns 0 on success, -1 on failure
1240 */
1241static
dae52e76 1242int bin_info_lookup_cu_src_loc(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1243 struct source_location **src_loc)
1244{
1245 int ret = 0;
1246 struct source_location *_src_loc = NULL;
1247
1248 if (!cu || !src_loc) {
1249 goto error;
1250 }
1251
dae52e76 1252 ret = bin_info_lookup_cu_src_loc_inl(cu, addr, &_src_loc);
b5a8598f
AB
1253 if (ret) {
1254 goto error;
1255 }
1256
1257 if (_src_loc) {
1258 goto end;
1259 }
1260
dae52e76 1261 ret = bin_info_lookup_cu_src_loc_no_inl(cu, addr, &_src_loc);
b5a8598f
AB
1262 if (ret) {
1263 goto error;
1264 }
1265
1266 if (_src_loc) {
1267 goto end;
1268 }
1269
1270end:
1271 if (_src_loc) {
1272 *src_loc = _src_loc;
1273 }
1274
1275 return 0;
1276
1277error:
1278 source_location_destroy(_src_loc);
1279 return -1;
1280}
1281
1282BT_HIDDEN
dae52e76 1283int bin_info_lookup_source_location(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
1284 struct source_location **src_loc)
1285{
1286 struct bt_dwarf_cu *cu = NULL;
1287 struct source_location *_src_loc = NULL;
1288
dae52e76 1289 if (!bin || !src_loc) {
b5a8598f
AB
1290 goto error;
1291 }
1292
1293 /* Set DWARF info if it hasn't been accessed yet. */
dae52e76
AB
1294 if (!bin->dwarf_info && !bin->is_elf_only) {
1295 if (bin_info_set_dwarf_info(bin)) {
b5a8598f 1296 /* Failed to set DWARF info. */
dae52e76 1297 bin->is_elf_only = true;
b5a8598f
AB
1298 }
1299 }
1300
dae52e76 1301 if (bin->is_elf_only) {
b5a8598f
AB
1302 /* We cannot lookup source location without DWARF info. */
1303 goto error;
1304 }
1305
dae52e76 1306 if (!bin_info_has_address(bin, addr)) {
b5a8598f
AB
1307 goto error;
1308 }
1309
1310 /*
1311 * Addresses in ELF and DWARF are relative to base address for
1312 * PIC, so make the address argument relative too if needed.
1313 */
dae52e76
AB
1314 if (bin->is_pic) {
1315 addr -= bin->low_addr;
b5a8598f
AB
1316 }
1317
dae52e76 1318 cu = bt_dwarf_cu_create(bin->dwarf_info);
b5a8598f
AB
1319 if (!cu) {
1320 goto error;
1321 }
1322
1323 while (bt_dwarf_cu_next(cu) == 0) {
1324 int ret;
1325
dae52e76 1326 ret = bin_info_lookup_cu_src_loc(cu, addr, &_src_loc);
b5a8598f
AB
1327 if (ret) {
1328 goto error;
1329 }
1330
1331 if (_src_loc) {
1332 break;
1333 }
1334 }
1335
1336 bt_dwarf_cu_destroy(cu);
1337 if (_src_loc) {
1338 *src_loc = _src_loc;
1339 }
1340
1341 return 0;
1342
1343error:
1344 source_location_destroy(_src_loc);
1345 bt_dwarf_cu_destroy(cu);
1346 return -1;
1347}
This page took 0.080571 seconds and 4 git commands to generate.