Fix: Wrong variable checked in bin_info_child_die_has_address
[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) {
6ce6949a 332 goto end_noclose;
b5a8598f
AB
333 }
334
335 fd = open(path, O_RDONLY);
336 if (fd < 0) {
6ce6949a 337 goto end_noclose;
b5a8598f
AB
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);
6ce6949a 350end_noclose:
b5a8598f
AB
351 return ret;
352}
353
354/**
dae52e76 355 * Try to set the dwarf_info for a given bin_info instance via the
b5a8598f
AB
356 * build ID method.
357 *
dae52e76 358 * @param bin bin_info instance for which to retrieve the
b5a8598f
AB
359 * DWARF info via debug link
360 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
361 */
362static
dae52e76 363int bin_info_set_dwarf_info_debug_link(struct bin_info *bin)
b5a8598f
AB
364{
365 int ret = 0;
366 const char *dbg_dir = NULL;
dae52e76 367 char *dir_name = NULL, *bin_dir = NULL, *path = NULL;
b5a8598f
AB
368 size_t max_path_len = 0;
369
dae52e76 370 if (!bin || !bin->dbg_link_filename) {
b5a8598f
AB
371 goto error;
372 }
373
3be1e3c9 374 dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR;
b5a8598f 375
dae52e76 376 dir_name = dirname(bin->elf_path);
b5a8598f
AB
377 if (!dir_name) {
378 goto error;
379 }
380
dae52e76
AB
381 /* bin_dir is just dir_name with a trailing slash */
382 bin_dir = malloc(strlen(dir_name) + 2);
383 if (!bin_dir) {
b5a8598f
AB
384 goto error;
385 }
386
dae52e76
AB
387 strcpy(bin_dir, dir_name);
388 strcat(bin_dir, "/");
b5a8598f 389
dae52e76
AB
390 max_path_len = strlen(dbg_dir) + strlen(bin_dir) +
391 strlen(DEBUG_SUBDIR) + strlen(bin->dbg_link_filename)
b5a8598f
AB
392 + 1;
393 path = malloc(max_path_len);
394 if (!path) {
395 goto error;
396 }
397
dae52e76
AB
398 /* First look in the executable's dir */
399 strcpy(path, bin_dir);
400 strcat(path, bin->dbg_link_filename);
b5a8598f 401
dae52e76 402 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
403 goto found;
404 }
405
406 /* If not found, look in .debug subdir */
dae52e76 407 strcpy(path, bin_dir);
b5a8598f 408 strcat(path, DEBUG_SUBDIR);
dae52e76 409 strcat(path, bin->dbg_link_filename);
b5a8598f 410
dae52e76 411 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
412 goto found;
413 }
414
415 /* Lastly, look under the global debug directory */
416 strcpy(path, dbg_dir);
dae52e76
AB
417 strcat(path, bin_dir);
418 strcat(path, bin->dbg_link_filename);
b5a8598f 419
dae52e76 420 if (is_valid_debug_file(path, bin->dbg_link_crc)) {
b5a8598f
AB
421 goto found;
422 }
423
424error:
425 ret = -1;
426end:
427 free(path);
dae52e76 428 free(bin_dir);
b5a8598f
AB
429
430 return ret;
431
432found:
dae52e76 433 ret = bin_info_set_dwarf_info_from_path(bin, path);
b5a8598f
AB
434 if (ret) {
435 goto error;
436 }
437
438 goto end;
439}
440
441/**
442 * Initialize the DWARF info for a given executable.
443 *
dae52e76 444 * @param bin bin_info instance
6a2908b2 445 * @returns 0 on success, negative value on failure
b5a8598f
AB
446 */
447static
dae52e76 448int bin_info_set_dwarf_info(struct bin_info *bin)
b5a8598f
AB
449{
450 int ret = 0;
451
dae52e76 452 if (!bin) {
6a2908b2
JG
453 ret = -1;
454 goto end;
b5a8598f
AB
455 }
456
457 /* First try to set the DWARF info from the ELF file */
dae52e76 458 ret = bin_info_set_dwarf_info_from_path(bin, bin->elf_path);
b5a8598f
AB
459 if (!ret) {
460 goto end;
461 }
462
463 /*
464 * If that fails, try to find separate debug info via build ID
465 * and debug link.
466 */
dae52e76 467 ret = bin_info_set_dwarf_info_build_id(bin);
b5a8598f
AB
468 if (!ret) {
469 goto end;
470 }
471
dae52e76 472 ret = bin_info_set_dwarf_info_debug_link(bin);
b5a8598f
AB
473 if (!ret) {
474 goto end;
475 }
476
b5a8598f
AB
477end:
478 return ret;
479}
480
b8652b58
AB
481/**
482 * Initialize the ELF file for a given executable.
483 *
dae52e76 484 * @param bin bin_info instance
6a2908b2 485 * @returns 0 on success, negative value on error.
b8652b58
AB
486 */
487static
dae52e76 488int bin_info_set_elf_file(struct bin_info *bin)
b8652b58 489{
bfadaf12 490 int elf_fd = -1;
e362dc93 491 Elf *elf_file = NULL;
b8652b58 492
dae52e76 493 if (!bin) {
b8652b58
AB
494 goto error;
495 }
496
dae52e76 497 elf_fd = open(bin->elf_path, O_RDONLY);
b8652b58 498 if (elf_fd < 0) {
6a2908b2 499 elf_fd = -errno;
dae52e76 500 printf_verbose("Failed to open %s\n", bin->elf_path);
b8652b58
AB
501 goto error;
502 }
503
504 elf_file = elf_begin(elf_fd, ELF_C_READ, NULL);
505 if (!elf_file) {
1036949d 506 printf_debug("elf_begin failed: %s\n", elf_errmsg(-1));
b8652b58
AB
507 goto error;
508 }
509
510 if (elf_kind(elf_file) != ELF_K_ELF) {
1036949d 511 printf_verbose("Error: %s is not an ELF object\n",
dae52e76 512 bin->elf_path);
b8652b58
AB
513 goto error;
514 }
515
dae52e76
AB
516 bin->elf_fd = elf_fd;
517 bin->elf_file = elf_file;
b8652b58
AB
518 return 0;
519
520error:
bfadaf12
JG
521 if (elf_fd >= 0) {
522 close(elf_fd);
6a2908b2 523 elf_fd = -1;
bfadaf12 524 }
b8652b58 525 elf_end(elf_file);
6a2908b2 526 return elf_fd;
b8652b58
AB
527}
528
b5a8598f
AB
529BT_HIDDEN
530void source_location_destroy(struct source_location *src_loc)
531{
532 if (!src_loc) {
533 return;
534 }
535
536 free(src_loc->filename);
537 g_free(src_loc);
538}
483791a5 539
1c47ec6c
AB
540/**
541 * Append a string representation of an address offset to an existing
542 * string.
543 *
544 * On success, the out parameter `result` will contain the base string
545 * followed by the offset string of the form "+0x1234". On failure,
546 * `result` remains unchanged.
547 *
548 * @param base_str The string to which to append an offset string
549 * @param low_addr The lower virtual memory address, the base from
550 * which the offset is computed
551 * @param high_addr The higher virtual memory address
552 * @param result Out parameter, the base string followed by the
553 * offset string
554 * @returns 0 on success, -1 on failure
555 */
556static
dae52e76 557int bin_info_append_offset_str(const char *base_str, uint64_t low_addr,
1c47ec6c
AB
558 uint64_t high_addr, char **result)
559{
560 int ret;
561 uint64_t offset;
562 char *_result = NULL;
563 char offset_str[ADDR_STR_LEN];
564
565 if (!base_str || !result) {
566 goto error;
567 }
568
569 offset = high_addr - low_addr;
570
571 _result = malloc(strlen(base_str) + ADDR_STR_LEN);
572 if (!_result) {
573 goto error;
574 }
575
576 ret = snprintf(offset_str, ADDR_STR_LEN, "+%#0" PRIx64, offset);
577 if (ret < 0) {
578 goto error;
579 }
580 strcpy(_result, base_str);
581 strcat(_result, offset_str);
582 *result = _result;
583
584 return 0;
585
586error:
587 free(_result);
588 return -1;
589}
b5a8598f
AB
590
591/**
592 * Try to find the symbol closest to an address within a given ELF
593 * section.
594 *
595 * Only function symbols are taken into account. The symbol's address
596 * must precede `addr`. A symbol with a closer address might exist
597 * after `addr` but is irrelevant because it cannot encompass `addr`.
598 *
599 * On success, if found, the out parameters `sym` and `shdr` are
600 * set. On failure or if none are found, they remain unchanged.
601 *
602 * @param scn ELF section in which to look for the address
603 * @param addr Virtual memory address for which to find the
604 * nearest function symbol
605 * @param sym Out parameter, the nearest function symbol
606 * @param shdr Out parameter, the section header for scn
607 * @returns 0 on success, -1 on failure
608 */
609static
dae52e76 610int bin_info_get_nearest_symbol_from_section(Elf_Scn *scn, uint64_t addr,
b5a8598f
AB
611 GElf_Sym **sym, GElf_Shdr **shdr)
612{
613 int i;
614 size_t symbol_count;
615 Elf_Data *data = NULL;
616 GElf_Shdr *_shdr = NULL;
617 GElf_Sym *nearest_sym = NULL;
618
619 if (!scn || !sym || !shdr) {
620 goto error;
621 }
622
623 _shdr = g_new0(GElf_Shdr, 1);
624 if (!_shdr) {
625 goto error;
626 }
627
628 _shdr = gelf_getshdr(scn, _shdr);
629 if (!_shdr) {
630 goto error;
631 }
632
633 if (_shdr->sh_type != SHT_SYMTAB) {
634 /*
635 * We are only interested in symbol table (symtab)
636 * sections, skip this one.
637 */
638 goto end;
639 }
640
641 data = elf_getdata(scn, NULL);
642 if (!data) {
643 goto error;
644 }
645
646 symbol_count = _shdr->sh_size / _shdr->sh_entsize;
647
648 for (i = 0; i < symbol_count; ++i) {
649 GElf_Sym *cur_sym = NULL;
650
651 cur_sym = g_new0(GElf_Sym, 1);
652 if (!cur_sym) {
653 goto error;
654 }
655 cur_sym = gelf_getsym(data, i, cur_sym);
656 if (!cur_sym) {
657 goto error;
658 }
659 if (GELF_ST_TYPE(cur_sym->st_info) != STT_FUNC) {
660 /* We're only interested in the functions. */
661 g_free(cur_sym);
662 continue;
663 }
664
665 if (cur_sym->st_value <= addr &&
666 (!nearest_sym ||
667 cur_sym->st_value > nearest_sym->st_value)) {
668 g_free(nearest_sym);
669 nearest_sym = cur_sym;
670 } else {
671 g_free(cur_sym);
672 }
673 }
674
675end:
676 if (nearest_sym) {
677 *sym = nearest_sym;
678 *shdr = _shdr;
679 } else {
680 g_free(_shdr);
681 }
682
683 return 0;
684
685error:
686 g_free(nearest_sym);
687 g_free(_shdr);
688 return -1;
689}
690
691/**
692 * Get the name of the function containing a given address within an
693 * executable using ELF symbols.
694 *
695 * The function name is in fact the name of the nearest ELF symbol,
696 * followed by the offset in bytes between the address and the symbol
697 * (in hex), separated by a '+' character.
698 *
699 * If found, the out parameter `func_name` is set on success. On failure,
700 * it remains unchanged.
701 *
dae52e76 702 * @param bin bin_info instance for the executable containing
b5a8598f
AB
703 * the address
704 * @param addr Virtual memory address for which to find the
705 * function name
706 * @param func_name Out parameter, the function name
707 * @returns 0 on success, -1 on failure
708 */
709static
dae52e76 710int bin_info_lookup_elf_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
711 char **func_name)
712{
713 /*
714 * TODO (possible optimisation): if an ELF has no symtab
715 * section, it has been stripped. Therefore, it would be wise
716 * to store a flag indicating the stripped status after the
717 * first iteration to prevent subsequent ones.
718 */
719 int ret = 0;
720 Elf_Scn *scn = NULL;
721 GElf_Sym *sym = NULL;
722 GElf_Shdr *shdr = NULL;
723 char *sym_name = NULL;
b5a8598f 724
b8652b58 725 /* Set ELF file if it hasn't been accessed yet. */
dae52e76
AB
726 if (!bin->elf_file) {
727 ret = bin_info_set_elf_file(bin);
b8652b58
AB
728 if (ret) {
729 /* Failed to set ELF file. */
730 goto error;
731 }
732 }
733
dae52e76 734 scn = elf_nextscn(bin->elf_file, scn);
b5a8598f
AB
735 if (!scn) {
736 goto error;
737 }
738
739 while (scn && !sym) {
dae52e76 740 ret = bin_info_get_nearest_symbol_from_section(
b5a8598f
AB
741 scn, addr, &sym, &shdr);
742 if (ret) {
743 goto error;
744 }
745
dae52e76 746 scn = elf_nextscn(bin->elf_file, scn);
b5a8598f
AB
747 }
748
749 if (sym) {
dae52e76 750 sym_name = elf_strptr(bin->elf_file, shdr->sh_link,
b5a8598f
AB
751 sym->st_name);
752 if (!sym_name) {
753 goto error;
754 }
755
dae52e76 756 ret = bin_info_append_offset_str(sym_name, sym->st_value, addr,
1c47ec6c
AB
757 func_name);
758 if (ret) {
b5a8598f
AB
759 goto error;
760 }
b5a8598f
AB
761 }
762
763 g_free(shdr);
764 g_free(sym);
765 return 0;
766
767error:
768 g_free(shdr);
769 g_free(sym);
6a2908b2 770 return ret;
b5a8598f
AB
771}
772
773/**
774 * Get the name of the function containing a given address within a
775 * given compile unit (CU).
776 *
777 * If found, the out parameter `func_name` is set on success. On
778 * failure, it remains unchanged.
779 *
780 * @param cu bt_dwarf_cu instance which may contain the address
781 * @param addr Virtual memory address for which to find the
782 * function name
783 * @param func_name Out parameter, the function name
784 * @returns 0 on success, -1 on failure
785 */
786static
dae52e76 787int bin_info_lookup_cu_function_name(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
788 char **func_name)
789{
302314ec
AB
790 int ret = 0;
791 bool found = false;
b5a8598f
AB
792 struct bt_dwarf_die *die = NULL;
793
794 if (!cu || !func_name) {
795 goto error;
796 }
797
798 die = bt_dwarf_die_create(cu);
799 if (!die) {
800 goto error;
801 }
802
803 while (bt_dwarf_die_next(die) == 0) {
804 int tag;
805
806 ret = bt_dwarf_die_get_tag(die, &tag);
807 if (ret) {
808 goto error;
809 }
810
811 if (tag == DW_TAG_subprogram) {
812 ret = bt_dwarf_die_contains_addr(die, addr, &found);
813 if (ret) {
814 goto error;
815 }
816
817 if (found) {
818 break;
819 }
820 }
821 }
822
823 if (found) {
1c47ec6c
AB
824 uint64_t low_addr = 0;
825 char *die_name = NULL;
826
d3c33bc6
AB
827 ret = bt_dwarf_die_get_name(die, &die_name);
828 if (ret) {
829 goto error;
830 }
831
832 ret = dwarf_lowpc(die->dwarf_die, &low_addr);
b5a8598f 833 if (ret) {
c862350b 834 free(die_name);
b5a8598f
AB
835 goto error;
836 }
837
dae52e76 838 ret = bin_info_append_offset_str(die_name, low_addr, addr,
1c47ec6c 839 func_name);
c862350b 840 free(die_name);
1c47ec6c 841 if (ret) {
d3c33bc6
AB
842 goto error;
843 }
b5a8598f
AB
844 }
845
846 bt_dwarf_die_destroy(die);
847 return 0;
848
849error:
850 bt_dwarf_die_destroy(die);
851 return -1;
852}
853
854/**
855 * Get the name of the function containing a given address within an
856 * executable using DWARF debug info.
857 *
858 * If found, the out parameter `func_name` is set on success. On
859 * failure, it remains unchanged.
860 *
dae52e76 861 * @param bin bin_info instance for the executable containing
b5a8598f
AB
862 * the address
863 * @param addr Virtual memory address for which to find the
864 * function name
865 * @param func_name Out parameter, the function name
866 * @returns 0 on success, -1 on failure
867 */
868static
dae52e76 869int bin_info_lookup_dwarf_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
870 char **func_name)
871{
872 int ret = 0;
873 char *_func_name = NULL;
874 struct bt_dwarf_cu *cu = NULL;
875
dae52e76 876 if (!bin || !func_name) {
b5a8598f
AB
877 goto error;
878 }
879
dae52e76 880 cu = bt_dwarf_cu_create(bin->dwarf_info);
b5a8598f
AB
881 if (!cu) {
882 goto error;
883 }
884
885 while (bt_dwarf_cu_next(cu) == 0) {
dae52e76 886 ret = bin_info_lookup_cu_function_name(cu, addr, &_func_name);
b5a8598f
AB
887 if (ret) {
888 goto error;
889 }
890
891 if (_func_name) {
892 break;
893 }
894 }
895
896 if (_func_name) {
897 *func_name = _func_name;
fcd94e37
JG
898 } else {
899 goto error;
b5a8598f
AB
900 }
901
902 bt_dwarf_cu_destroy(cu);
903 return 0;
904
905error:
906 bt_dwarf_cu_destroy(cu);
907 return -1;
908}
909
910BT_HIDDEN
dae52e76 911int bin_info_lookup_function_name(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
912 char **func_name)
913{
914 int ret = 0;
915 char *_func_name = NULL;
916
dae52e76 917 if (!bin || !func_name) {
b5a8598f
AB
918 goto error;
919 }
920
921 /* Set DWARF info if it hasn't been accessed yet. */
dae52e76
AB
922 if (!bin->dwarf_info && !bin->is_elf_only) {
923 ret = bin_info_set_dwarf_info(bin);
b5a8598f 924 if (ret) {
6a2908b2 925 printf_verbose("Failed to set bin dwarf info, falling back to ELF lookup.\n");
b5a8598f 926 /* Failed to set DWARF info, fallback to ELF. */
dae52e76 927 bin->is_elf_only = true;
b5a8598f
AB
928 }
929 }
930
dae52e76 931 if (!bin_info_has_address(bin, addr)) {
b5a8598f
AB
932 goto error;
933 }
934
935 /*
936 * Addresses in ELF and DWARF are relative to base address for
937 * PIC, so make the address argument relative too if needed.
938 */
dae52e76
AB
939 if (bin->is_pic) {
940 addr -= bin->low_addr;
dc419b6c
AB
941 }
942
dae52e76
AB
943 if (bin->is_elf_only) {
944 ret = bin_info_lookup_elf_function_name(bin, addr, &_func_name);
6a2908b2 945 printf_verbose("Failed to lookup function name (elf), error %i\n", ret);
b5a8598f 946 } else {
dae52e76 947 ret = bin_info_lookup_dwarf_function_name(bin, addr, &_func_name);
6a2908b2 948 printf_verbose("Failed to lookup function name (dwarf), error %i\n", ret);
b5a8598f
AB
949 }
950
dc419b6c
AB
951 *func_name = _func_name;
952 return 0;
beef86dc 953
dc419b6c
AB
954error:
955 return -1;
956}
957
958BT_HIDDEN
dae52e76 959int bin_info_get_bin_loc(struct bin_info *bin, uint64_t addr, char **bin_loc)
dc419b6c
AB
960{
961 int ret = 0;
962 char *_bin_loc = NULL;
963
dae52e76 964 if (!bin || !bin_loc) {
dc419b6c 965 goto error;
b5a8598f
AB
966 }
967
dae52e76
AB
968 if (bin->is_pic) {
969 addr -= bin->low_addr;
dc419b6c
AB
970 ret = asprintf(&_bin_loc, "+%#0" PRIx64, addr);
971 } else {
972 ret = asprintf(&_bin_loc, "@%#0" PRIx64, addr);
973 }
974
975 if (ret == -1 || !_bin_loc) {
976 goto error;
977 }
978
979 *bin_loc = _bin_loc;
b5a8598f
AB
980 return 0;
981
982error:
983 return -1;
984}
985
986/**
987 * Predicate used to determine whether the children of a given DIE
988 * contain a specific address.
989 *
990 * More specifically, the parameter `die` is expected to be a
991 * subprogram (function) DIE, and this predicate tells whether any
992 * subroutines are inlined within this function and would contain
993 * `addr`.
994 *
302314ec
AB
995 * On success, the out parameter `contains` is set with the boolean
996 * value indicating whether the DIE's range covers `addr`. On failure,
997 * it remains unchanged.
998 *
b5a8598f
AB
999 * Do note that this function advances the position of `die`. If the
1000 * address is found within one of its children, `die` will be pointing
1001 * to that child upon returning from the function, allowing to extract
1002 * the information deemed necessary.
1003 *
302314ec
AB
1004 * @param die The parent DIE in whose children the address will be
1005 * looked for
1006 * @param addr The address for which to look for in the DIEs
1007 * @param contains Out parameter, true if addr is contained,
1008 * false if not
1009 * @returns Returns 0 on success, -1 on failure
b5a8598f
AB
1010 */
1011static
302314ec 1012int bin_info_child_die_has_address(struct bt_dwarf_die *die, uint64_t addr, bool *contains)
b5a8598f 1013{
302314ec
AB
1014 int ret = 0;
1015 bool _contains = false;
b5a8598f
AB
1016
1017 if (!die) {
1018 goto error;
1019 }
1020
1021 ret = bt_dwarf_die_child(die);
1022 if (ret) {
1023 goto error;
1024 }
1025
1026 do {
1027 int tag;
1028
1029 ret = bt_dwarf_die_get_tag(die, &tag);
1030 if (ret) {
1031 goto error;
1032 }
1033
1034 if (tag == DW_TAG_inlined_subroutine) {
302314ec 1035 ret = bt_dwarf_die_contains_addr(die, addr, &_contains);
b5a8598f
AB
1036 if (ret) {
1037 goto error;
1038 }
1039
182e96a1 1040 if (_contains) {
b5a8598f
AB
1041 goto end;
1042 }
1043 }
1044 } while (bt_dwarf_die_next(die) == 0);
1045
1046end:
302314ec
AB
1047 *contains = _contains;
1048 return 0;
b5a8598f
AB
1049
1050error:
302314ec 1051 return -1;
b5a8598f
AB
1052}
1053
1054/**
1055 * Lookup the source location for a given address within a CU, making
1056 * the assumption that it is contained within an inline routine in a
1057 * function.
1058 *
1059 * @param cu bt_dwarf_cu instance in which to look for the address
1060 * @param addr The address for which to look for
1061 * @param src_loc Out parameter, the source location (filename and
1062 * line number) for the address
1063 * @returns 0 on success, -1 on failure
1064 */
1065static
dae52e76 1066int bin_info_lookup_cu_src_loc_inl(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1067 struct source_location **src_loc)
1068{
302314ec
AB
1069 int ret = 0;
1070 bool found = false;
b5a8598f
AB
1071 struct bt_dwarf_die *die = NULL;
1072 struct source_location *_src_loc = NULL;
1073
1074 if (!cu || !src_loc) {
1075 goto error;
1076 }
1077
1078 die = bt_dwarf_die_create(cu);
1079 if (!die) {
1080 goto error;
1081 }
1082
1083 while (bt_dwarf_die_next(die) == 0) {
1084 int tag;
1085
1086 ret = bt_dwarf_die_get_tag(die, &tag);
1087 if (ret) {
1088 goto error;
1089 }
1090
1091 if (tag == DW_TAG_subprogram) {
302314ec 1092 bool contains = false;
b5a8598f
AB
1093
1094 ret = bt_dwarf_die_contains_addr(die, addr, &contains);
1095 if (ret) {
1096 goto error;
1097 }
1098
1099 if (contains) {
1100 /*
1101 * Try to find an inlined subroutine
1102 * child of this DIE containing addr.
1103 */
302314ec
AB
1104 ret = bin_info_child_die_has_address(die, addr,
1105 &found);
1106 if(ret) {
1107 goto error;
1108 }
1109
b5a8598f
AB
1110 goto end;
1111 }
1112 }
1113 }
1114
1115end:
1116 if (found) {
1117 char *filename = NULL;
1118 uint64_t line_no;
1119
1120 _src_loc = g_new0(struct source_location, 1);
1121 if (!_src_loc) {
1122 goto error;
1123 }
1124
1125 ret = bt_dwarf_die_get_call_file(die, &filename);
1126 if (ret) {
1127 goto error;
1128 }
1129 ret = bt_dwarf_die_get_call_line(die, &line_no);
1130 if (ret) {
1131 free(filename);
1132 goto error;
1133 }
1134
1135 _src_loc->filename = filename;
1136 _src_loc->line_no = line_no;
1137 *src_loc = _src_loc;
1138 }
1139
1140 bt_dwarf_die_destroy(die);
1141 return 0;
1142
1143error:
1144 source_location_destroy(_src_loc);
1145 bt_dwarf_die_destroy(die);
1146 return -1;
1147}
1148
1149/**
1150 * Lookup the source location for a given address within a CU,
1151 * assuming that it is contained within an inlined function.
1152 *
1153 * A source location can be found regardless of inlining status for
1154 * this method, but in the case of an inlined function, the returned
1155 * source location will point not to the callsite but rather to the
1156 * definition site of the inline function.
1157 *
1158 * @param cu bt_dwarf_cu instance in which to look for the address
1159 * @param addr The address for which to look for
1160 * @param src_loc Out parameter, the source location (filename and
1161 * line number) for the address
1162 * @returns 0 on success, -1 on failure
1163 */
1164static
dae52e76 1165int bin_info_lookup_cu_src_loc_no_inl(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1166 struct source_location **src_loc)
1167{
1168 struct source_location *_src_loc = NULL;
1169 struct bt_dwarf_die *die = NULL;
1170 const char *filename = NULL;
1171 Dwarf_Line *line = NULL;
1172 Dwarf_Addr line_addr;
1173 int ret, line_no;
1174
1175 if (!cu || !src_loc) {
1176 goto error;
1177 }
1178
1179 die = bt_dwarf_die_create(cu);
1180 if (!die) {
1181 goto error;
1182 }
1183
1184 line = dwarf_getsrc_die(die->dwarf_die, addr);
1185 if (!line) {
1186 goto error;
1187 }
1188
1189 ret = dwarf_lineaddr(line, &line_addr);
1190 if (ret) {
1191 goto error;
1192 }
1193
1194 filename = dwarf_linesrc(line, NULL, NULL);
1195 if (!filename) {
1196 goto error;
1197 }
1198
1199 if (addr == line_addr) {
1200 _src_loc = g_new0(struct source_location, 1);
1201 if (!_src_loc) {
1202 goto error;
1203 }
1204
1205 ret = dwarf_lineno(line, &line_no);
1206 if (ret) {
1207 goto error;
1208 }
1209
1210 _src_loc->line_no = line_no;
1211 _src_loc->filename = strdup(filename);
1212 }
1213
1214 bt_dwarf_die_destroy(die);
1215
1216 if (_src_loc) {
1217 *src_loc = _src_loc;
1218 }
1219
1220 return 0;
1221
1222error:
1223 source_location_destroy(_src_loc);
1224 bt_dwarf_die_destroy(die);
1225 return -1;
1226}
1227
1228/**
1229 * Get the source location (file name and line number) for a given
1230 * address within a compile unit (CU).
1231 *
1232 * On success, the out parameter `src_loc` is set if found. On
1233 * failure, it remains unchanged.
1234 *
dae52e76 1235 * @param cu bt_dwarf_cu instance for the compile unit which
b5a8598f
AB
1236 * may contain the address
1237 * @param addr Virtual memory address for which to find the
1238 * source location
1239 * @param src_loc Out parameter, the source location
1240 * @returns 0 on success, -1 on failure
1241 */
1242static
dae52e76 1243int bin_info_lookup_cu_src_loc(struct bt_dwarf_cu *cu, uint64_t addr,
b5a8598f
AB
1244 struct source_location **src_loc)
1245{
1246 int ret = 0;
1247 struct source_location *_src_loc = NULL;
1248
1249 if (!cu || !src_loc) {
1250 goto error;
1251 }
1252
dae52e76 1253 ret = bin_info_lookup_cu_src_loc_inl(cu, addr, &_src_loc);
b5a8598f
AB
1254 if (ret) {
1255 goto error;
1256 }
1257
1258 if (_src_loc) {
1259 goto end;
1260 }
1261
dae52e76 1262 ret = bin_info_lookup_cu_src_loc_no_inl(cu, addr, &_src_loc);
b5a8598f
AB
1263 if (ret) {
1264 goto error;
1265 }
1266
1267 if (_src_loc) {
1268 goto end;
1269 }
1270
1271end:
1272 if (_src_loc) {
1273 *src_loc = _src_loc;
1274 }
1275
1276 return 0;
1277
1278error:
1279 source_location_destroy(_src_loc);
1280 return -1;
1281}
1282
1283BT_HIDDEN
dae52e76 1284int bin_info_lookup_source_location(struct bin_info *bin, uint64_t addr,
b5a8598f
AB
1285 struct source_location **src_loc)
1286{
1287 struct bt_dwarf_cu *cu = NULL;
1288 struct source_location *_src_loc = NULL;
1289
dae52e76 1290 if (!bin || !src_loc) {
b5a8598f
AB
1291 goto error;
1292 }
1293
1294 /* Set DWARF info if it hasn't been accessed yet. */
dae52e76
AB
1295 if (!bin->dwarf_info && !bin->is_elf_only) {
1296 if (bin_info_set_dwarf_info(bin)) {
b5a8598f 1297 /* Failed to set DWARF info. */
dae52e76 1298 bin->is_elf_only = true;
b5a8598f
AB
1299 }
1300 }
1301
dae52e76 1302 if (bin->is_elf_only) {
b5a8598f
AB
1303 /* We cannot lookup source location without DWARF info. */
1304 goto error;
1305 }
1306
dae52e76 1307 if (!bin_info_has_address(bin, addr)) {
b5a8598f
AB
1308 goto error;
1309 }
1310
1311 /*
1312 * Addresses in ELF and DWARF are relative to base address for
1313 * PIC, so make the address argument relative too if needed.
1314 */
dae52e76
AB
1315 if (bin->is_pic) {
1316 addr -= bin->low_addr;
b5a8598f
AB
1317 }
1318
dae52e76 1319 cu = bt_dwarf_cu_create(bin->dwarf_info);
b5a8598f
AB
1320 if (!cu) {
1321 goto error;
1322 }
1323
1324 while (bt_dwarf_cu_next(cu) == 0) {
1325 int ret;
1326
dae52e76 1327 ret = bin_info_lookup_cu_src_loc(cu, addr, &_src_loc);
b5a8598f
AB
1328 if (ret) {
1329 goto error;
1330 }
1331
1332 if (_src_loc) {
1333 break;
1334 }
1335 }
1336
1337 bt_dwarf_cu_destroy(cu);
1338 if (_src_loc) {
1339 *src_loc = _src_loc;
1340 }
1341
1342 return 0;
1343
1344error:
1345 source_location_destroy(_src_loc);
1346 bt_dwarf_cu_destroy(cu);
1347 return -1;
1348}
This page took 0.08024 seconds and 4 git commands to generate.