Refactor offset string printing out of ELF and DWARF lookups
[babeltrace.git] / lib / so-info.c
CommitLineData
b5a8598f
AB
1/*
2 * so-info.c
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>
40#include <babeltrace/so-info.h>
41#include <babeltrace/crc32.h>
42#include <babeltrace/babeltrace-internal.h>
beef86dc 43#include <babeltrace/utils.h>
b5a8598f
AB
44
45/*
46 * An address printed in hex is at most 20 bytes (16 for 64-bits +
47 * leading 0x + optional leading '+' if addr is an offset + null
48 * character).
49 */
50#define ADDR_STR_LEN 20
51
52BT_HIDDEN
53int so_info_init(void)
54{
55 int ret = 0;
56
57 if (elf_version(EV_CURRENT) == EV_NONE) {
58 fprintf(stderr, "ELF library initialization failed: %s\n",
59 elf_errmsg(-1));
60 ret = -1;
61 }
62
63 return ret;
64}
65
66BT_HIDDEN
67struct so_info *so_info_create(const char *path, uint64_t low_addr,
1a4a1345 68 uint64_t memsz, bool is_pic)
b5a8598f
AB
69{
70 struct so_info *so = NULL;
b5a8598f
AB
71
72 if (!path) {
73 goto error;
74 }
75
76 so = g_new0(struct so_info, 1);
77 if (!so) {
78 goto error;
79 }
80
81 so->elf_path = strdup(path);
82 if (!so->elf_path) {
83 goto error;
84 }
85
1a4a1345 86 so->is_pic = is_pic;
b5a8598f
AB
87 so->memsz = memsz;
88 so->low_addr = low_addr;
89 so->high_addr = so->low_addr + so->memsz;
90
b5a8598f
AB
91 return so;
92
93error:
b5a8598f
AB
94 so_info_destroy(so);
95 return NULL;
96}
97
98BT_HIDDEN
99void so_info_destroy(struct so_info *so)
100{
101 if (!so) {
102 return;
103 }
104
105 dwarf_end(so->dwarf_info);
106
107 free(so->elf_path);
108 free(so->dwarf_path);
109 free(so->build_id);
110 free(so->dbg_link_filename);
111
112 elf_end(so->elf_file);
113
114 close(so->elf_fd);
115 close(so->dwarf_fd);
116
117 g_free(so);
118}
119
b8652b58 120
b5a8598f
AB
121BT_HIDDEN
122int so_info_set_build_id(struct so_info *so, uint8_t *build_id,
123 size_t build_id_len)
124{
125 if (!so || !build_id) {
126 goto error;
127 }
128
129 so->build_id = malloc(build_id_len);
130 if (!so->build_id) {
131 goto error;
132 }
133
134 memcpy(so->build_id, build_id, build_id_len);
135 so->build_id_len = build_id_len;
136
137 /*
138 * Reset the is_elf_only flag in case it had been set
139 * previously, because we might find separate debug info using
140 * the new build id information.
141 */
142 so->is_elf_only = false;
143
144 return 0;
145
146error:
147
148 return -1;
149}
150
151BT_HIDDEN
152int so_info_set_debug_link(struct so_info *so, char *filename, uint32_t crc)
153{
154 if (!so || !filename) {
155 goto error;
156 }
157
158 so->dbg_link_filename = strdup(filename);
159 if (!so->dbg_link_filename) {
160 goto error;
161 }
162
163 so->dbg_link_crc = crc;
164
165 /*
166 * Reset the is_elf_only flag in case it had been set
167 * previously, because we might find separate debug info using
168 * the new build id information.
169 */
170 so->is_elf_only = false;
171
172 return 0;
173
174error:
175
176 return -1;
177}
178
179/**
180 * Tries to read DWARF info from the location given by path, and
181 * attach it to the given so_info instance if it exists.
182 *
183 * @param so so_info instance for which to set DWARF info
184 * @param path Presumed location of the DWARF info
185 * @returns 0 on success, -1 on failure
186 */
187static
188int so_info_set_dwarf_info_from_path(struct so_info *so, char *path)
189{
190 int fd = -1, ret = 0;
191 struct bt_dwarf_cu *cu = NULL;
192 Dwarf *dwarf_info = NULL;
193
194 if (!so || !path) {
195 goto error;
196 }
197
198 fd = open(path, O_RDONLY);
199 if (fd < 0) {
200 goto error;
201 }
202
203 dwarf_info = dwarf_begin(fd, DWARF_C_READ);
204 if (!dwarf_info) {
205 goto error;
206 }
207
208 /*
209 * Check if the dwarf info has any CU. If not, the SO's object
210 * file contains no DWARF info.
211 */
212 cu = bt_dwarf_cu_create(dwarf_info);
213 if (!cu) {
214 goto error;
215 }
216
217 ret = bt_dwarf_cu_next(cu);
218 if (ret) {
219 goto error;
220 }
221
222 so->dwarf_fd = fd;
223 so->dwarf_path = strdup(path);
224 if (!so->dwarf_path) {
225 goto error;
226 }
227 so->dwarf_info = dwarf_info;
228 free(cu);
229
230 return 0;
231
232error:
233 close(fd);
234 dwarf_end(dwarf_info);
235 g_free(dwarf_info);
236 free(cu);
237
238 return -1;
239}
240
241/**
242 * Try to set the dwarf_info for a given so_info instance via the
243 * build ID method.
244 *
245 * @param so so_info instance for which to retrieve the
246 * DWARF info via build ID
247 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
248 */
249static
250int so_info_set_dwarf_info_build_id(struct so_info *so)
251{
252 int i = 0, ret = 0, dbg_dir_trailing_slash = 0;
253 char *path = NULL, *build_id_file = NULL;
254 const char *dbg_dir = NULL;
255 size_t build_id_file_len, path_len;
256
257 if (!so || !so->build_id) {
258 goto error;
259 }
260
3be1e3c9 261 dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR;
b5a8598f
AB
262
263 dbg_dir_trailing_slash = dbg_dir[strlen(dbg_dir) - 1] == '/';
264
265 /* 2 characters per byte printed in hex, +2 for '/' and '\0' */
266 build_id_file_len = (2 * so->build_id_len) + 2;
267 build_id_file = malloc(build_id_file_len);
268 if (!build_id_file) {
269 goto error;
270 }
271
272 snprintf(build_id_file, 4, "%02x/", so->build_id[0]);
273 for (i = 1; i < so->build_id_len; ++i) {
274 int path_idx = 3 + 2 * (i - 1);
275
276 snprintf(&build_id_file[path_idx], 3, "%02x", so->build_id[i]);
277 }
278
279 path_len = strlen(dbg_dir) + strlen(BUILD_ID_SUBDIR) +
280 strlen(build_id_file) + strlen(BUILD_ID_SUFFIX) + 1;
281 if (!dbg_dir_trailing_slash) {
282 path_len += 1;
283 }
284
285 path = malloc(path_len);
286 if (!path) {
287 goto error;
288 }
289
290 strcpy(path, dbg_dir);
291 if (!dbg_dir_trailing_slash) {
292 strcat(path, "/");
293 }
294 strcat(path, BUILD_ID_SUBDIR);
295 strcat(path, build_id_file);
296 strcat(path, BUILD_ID_SUFFIX);
297
298 ret = so_info_set_dwarf_info_from_path(so, path);
299 if (ret) {
300 goto error;
301 }
302
303 goto end;
304
305error:
306 ret = -1;
307end:
308 free(build_id_file);
309 free(path);
310
311 return ret;
312}
313
314/**
315 * Tests whether the file located at path exists and has the expected
316 * checksum.
317 *
318 * This predicate is used when looking up separate debug info via the
319 * GNU debuglink method. The expected crc can be found .gnu_debuglink
320 * section in the original ELF file, along with the filename for the
321 * file containing the debug info.
322 *
323 * @param path Full path at which to look for the debug file
324 * @param crc Expected checksum for the debug file
325 * @returns 1 if the file exists and has the correct checksum,
326 * 0 otherwise
327 */
328static
329int is_valid_debug_file(char *path, uint32_t crc)
330{
331 int ret = 0, fd = -1;
332 uint32_t _crc = 0;
333
334 if (!path) {
335 goto end;
336 }
337
338 fd = open(path, O_RDONLY);
339 if (fd < 0) {
340 goto end;
341 }
342
343 ret = crc32(fd, &_crc);
344 if (ret) {
345 ret = 0;
346 goto end;
347 }
348
349 ret = (crc == _crc);
350
351end:
352 close(fd);
353 return ret;
354}
355
356/**
357 * Try to set the dwarf_info for a given so_info instance via the
358 * build ID method.
359 *
360 * @param so so_info instance for which to retrieve the
361 * DWARF info via debug link
362 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
363 */
364static
365int so_info_set_dwarf_info_debug_link(struct so_info *so)
366{
367 int ret = 0;
368 const char *dbg_dir = NULL;
369 char *dir_name = NULL, *so_dir = NULL, *path = NULL;
370 size_t max_path_len = 0;
371
372 if (!so || !so->dbg_link_filename) {
373 goto error;
374 }
375
3be1e3c9 376 dbg_dir = opt_debug_info_dir ? : DEFAULT_DEBUG_DIR;
b5a8598f
AB
377
378 dir_name = dirname(so->elf_path);
379 if (!dir_name) {
380 goto error;
381 }
382
383 /* so_dir is just dir_name with a trailing slash */
384 so_dir = malloc(strlen(dir_name) + 2);
385 if (!so_dir) {
386 goto error;
387 }
388
389 strcpy(so_dir, dir_name);
390 strcat(so_dir, "/");
391
392 max_path_len = strlen(dbg_dir) + strlen(so_dir) +
393 strlen(DEBUG_SUBDIR) + strlen(so->dbg_link_filename)
394 + 1;
395 path = malloc(max_path_len);
396 if (!path) {
397 goto error;
398 }
399
400 /* First look in the SO's dir */
401 strcpy(path, so_dir);
402 strcat(path, so->dbg_link_filename);
403
404 if (is_valid_debug_file(path, so->dbg_link_crc)) {
405 goto found;
406 }
407
408 /* If not found, look in .debug subdir */
409 strcpy(path, so_dir);
410 strcat(path, DEBUG_SUBDIR);
411 strcat(path, so->dbg_link_filename);
412
413 if (is_valid_debug_file(path, so->dbg_link_crc)) {
414 goto found;
415 }
416
417 /* Lastly, look under the global debug directory */
418 strcpy(path, dbg_dir);
419 strcat(path, so_dir);
420 strcat(path, so->dbg_link_filename);
421
422 if (is_valid_debug_file(path, so->dbg_link_crc)) {
423 goto found;
424 }
425
426error:
427 ret = -1;
428end:
429 free(path);
430 free(so_dir);
431
432 return ret;
433
434found:
435 ret = so_info_set_dwarf_info_from_path(so, path);
436 if (ret) {
437 goto error;
438 }
439
440 goto end;
441}
442
443/**
444 * Initialize the DWARF info for a given executable.
445 *
446 * @param so so_info instance
447 * @returns 0 on success, -1 on failure
448 */
449static
450int so_info_set_dwarf_info(struct so_info *so)
451{
452 int ret = 0;
453
454 if (!so) {
455 goto error;
456 }
457
458 /* First try to set the DWARF info from the ELF file */
459 ret = so_info_set_dwarf_info_from_path(so, so->elf_path);
460 if (!ret) {
461 goto end;
462 }
463
464 /*
465 * If that fails, try to find separate debug info via build ID
466 * and debug link.
467 */
468 ret = so_info_set_dwarf_info_build_id(so);
469 if (!ret) {
470 goto end;
471 }
472
473 ret = so_info_set_dwarf_info_debug_link(so);
474 if (!ret) {
475 goto end;
476 }
477
478error:
479 ret = -1;
480end:
481 return ret;
482}
483
b8652b58
AB
484/**
485 * Initialize the ELF file for a given executable.
486 *
487 * @param so so_info instance
488 * @returns 0 on success, -1 on failure
489 */
490static
491int so_info_set_elf_file(struct so_info *so)
492{
493 int elf_fd;
e362dc93 494 Elf *elf_file = NULL;
b8652b58
AB
495
496 if (!so) {
497 goto error;
498 }
499
500 elf_fd = open(so->elf_path, O_RDONLY);
501 if (elf_fd < 0) {
502 fprintf(stderr, "Failed to open %s\n", so->elf_path);
503 goto error;
504 }
505
506 elf_file = elf_begin(elf_fd, ELF_C_READ, NULL);
507 if (!elf_file) {
508 fprintf(stderr, "elf_begin failed: %s\n", elf_errmsg(-1));
509 goto error;
510 }
511
512 if (elf_kind(elf_file) != ELF_K_ELF) {
513 fprintf(stderr, "Error: %s is not an ELF object\n",
514 so->elf_path);
515 goto error;
516 }
517
518 so->elf_fd = elf_fd;
519 so->elf_file = elf_file;
520 return 0;
521
522error:
523 close(elf_fd);
524 elf_end(elf_file);
525 return -1;
526}
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}
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
556int so_info_append_offset_str(const char *base_str, uint64_t low_addr,
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
609int so_info_get_nearest_symbol_from_section(Elf_Scn *scn, uint64_t addr,
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 *
701 * @param so so_info instance for the executable containing
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
709int so_info_lookup_elf_function_name(struct so_info *so, uint64_t addr,
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
AB
724 /* Set ELF file if it hasn't been accessed yet. */
725 if (!so->elf_file) {
726 ret = so_info_set_elf_file(so);
727 if (ret) {
728 /* Failed to set ELF file. */
729 goto error;
730 }
731 }
732
b5a8598f
AB
733 scn = elf_nextscn(so->elf_file, scn);
734 if (!scn) {
735 goto error;
736 }
737
738 while (scn && !sym) {
739 ret = so_info_get_nearest_symbol_from_section(
740 scn, addr, &sym, &shdr);
741 if (ret) {
742 goto error;
743 }
744
745 scn = elf_nextscn(so->elf_file, scn);
746 }
747
748 if (sym) {
749 sym_name = elf_strptr(so->elf_file, shdr->sh_link,
750 sym->st_name);
751 if (!sym_name) {
752 goto error;
753 }
754
1c47ec6c
AB
755 ret = so_info_append_offset_str(sym_name, sym->st_value, addr,
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);
b5a8598f
AB
769 return -1;
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
786int so_info_lookup_cu_function_name(struct bt_dwarf_cu *cu, uint64_t addr,
787 char **func_name)
788{
789 int ret = 0, found = 0;
b5a8598f
AB
790 struct bt_dwarf_die *die = NULL;
791
792 if (!cu || !func_name) {
793 goto error;
794 }
795
796 die = bt_dwarf_die_create(cu);
797 if (!die) {
798 goto error;
799 }
800
801 while (bt_dwarf_die_next(die) == 0) {
802 int tag;
803
804 ret = bt_dwarf_die_get_tag(die, &tag);
805 if (ret) {
806 goto error;
807 }
808
809 if (tag == DW_TAG_subprogram) {
810 ret = bt_dwarf_die_contains_addr(die, addr, &found);
811 if (ret) {
812 goto error;
813 }
814
815 if (found) {
816 break;
817 }
818 }
819 }
820
821 if (found) {
1c47ec6c
AB
822 uint64_t low_addr = 0;
823 char *die_name = NULL;
824
d3c33bc6
AB
825 ret = bt_dwarf_die_get_name(die, &die_name);
826 if (ret) {
827 goto error;
828 }
829
830 ret = dwarf_lowpc(die->dwarf_die, &low_addr);
b5a8598f
AB
831 if (ret) {
832 goto error;
833 }
834
1c47ec6c
AB
835 ret = so_info_append_offset_str(die_name, low_addr, addr,
836 func_name);
837 if (ret) {
d3c33bc6
AB
838 goto error;
839 }
b5a8598f
AB
840 }
841
842 bt_dwarf_die_destroy(die);
843 return 0;
844
845error:
846 bt_dwarf_die_destroy(die);
847 return -1;
848}
849
850/**
851 * Get the name of the function containing a given address within an
852 * executable using DWARF debug info.
853 *
854 * If found, the out parameter `func_name` is set on success. On
855 * failure, it remains unchanged.
856 *
857 * @param so so_info instance for the executable containing
858 * the address
859 * @param addr Virtual memory address for which to find the
860 * function name
861 * @param func_name Out parameter, the function name
862 * @returns 0 on success, -1 on failure
863 */
864static
865int so_info_lookup_dwarf_function_name(struct so_info *so, uint64_t addr,
866 char **func_name)
867{
868 int ret = 0;
869 char *_func_name = NULL;
870 struct bt_dwarf_cu *cu = NULL;
871
872 if (!so || !func_name) {
873 goto error;
874 }
875
876 cu = bt_dwarf_cu_create(so->dwarf_info);
877 if (!cu) {
878 goto error;
879 }
880
881 while (bt_dwarf_cu_next(cu) == 0) {
882 ret = so_info_lookup_cu_function_name(cu, addr, &_func_name);
883 if (ret) {
884 goto error;
885 }
886
887 if (_func_name) {
888 break;
889 }
890 }
891
892 if (_func_name) {
893 *func_name = _func_name;
894 }
895
896 bt_dwarf_cu_destroy(cu);
897 return 0;
898
899error:
900 bt_dwarf_cu_destroy(cu);
901 return -1;
902}
903
904BT_HIDDEN
dc419b6c 905int so_info_lookup_function_name(struct so_info *so, uint64_t addr,
b5a8598f
AB
906 char **func_name)
907{
908 int ret = 0;
909 char *_func_name = NULL;
910
911 if (!so || !func_name) {
912 goto error;
913 }
914
915 /* Set DWARF info if it hasn't been accessed yet. */
916 if (!so->dwarf_info && !so->is_elf_only) {
917 ret = so_info_set_dwarf_info(so);
918 if (ret) {
919 /* Failed to set DWARF info, fallback to ELF. */
920 so->is_elf_only = true;
921 }
922 }
923
dc419b6c 924 if (!so_info_has_address(so, addr)) {
b5a8598f
AB
925 goto error;
926 }
927
928 /*
929 * Addresses in ELF and DWARF are relative to base address for
930 * PIC, so make the address argument relative too if needed.
931 */
dc419b6c
AB
932 if (so->is_pic) {
933 addr -= so->low_addr;
934 }
935
b5a8598f 936 if (so->is_elf_only) {
dc419b6c 937 ret = so_info_lookup_elf_function_name(so, addr, &_func_name);
b5a8598f 938 } else {
dc419b6c 939 ret = so_info_lookup_dwarf_function_name(so, addr, &_func_name);
b5a8598f
AB
940 }
941
dc419b6c 942 if (ret || !_func_name) {
b5a8598f
AB
943 goto error;
944 }
945
dc419b6c
AB
946 *func_name = _func_name;
947 return 0;
beef86dc 948
dc419b6c
AB
949error:
950 return -1;
951}
952
953BT_HIDDEN
954int so_info_get_bin_loc(struct so_info *so, uint64_t addr, char **bin_loc)
955{
956 int ret = 0;
957 char *_bin_loc = NULL;
958
959 if (!so || !bin_loc) {
960 goto error;
b5a8598f
AB
961 }
962
dc419b6c
AB
963 if (so->is_pic) {
964 addr -= so->low_addr;
965 ret = asprintf(&_bin_loc, "+%#0" PRIx64, addr);
966 } else {
967 ret = asprintf(&_bin_loc, "@%#0" PRIx64, addr);
968 }
969
970 if (ret == -1 || !_bin_loc) {
971 goto error;
972 }
973
974 *bin_loc = _bin_loc;
b5a8598f
AB
975 return 0;
976
977error:
978 return -1;
979}
980
981/**
982 * Predicate used to determine whether the children of a given DIE
983 * contain a specific address.
984 *
985 * More specifically, the parameter `die` is expected to be a
986 * subprogram (function) DIE, and this predicate tells whether any
987 * subroutines are inlined within this function and would contain
988 * `addr`.
989 *
990 * Do note that this function advances the position of `die`. If the
991 * address is found within one of its children, `die` will be pointing
992 * to that child upon returning from the function, allowing to extract
993 * the information deemed necessary.
994 *
995 * @param die The parent DIE in whose children the address will be
996 * looked for
997 * @param addr The address for which to look for in the DIEs
998 * @returns Returns 1 if the address was found, 0 if not
999 */
1000static
1001int so_info_child_die_has_address(struct bt_dwarf_die *die, uint64_t addr)
1002{
1003 int ret = 0, contains = 0;
1004
1005 if (!die) {
1006 goto error;
1007 }
1008
1009 ret = bt_dwarf_die_child(die);
1010 if (ret) {
1011 goto error;
1012 }
1013
1014 do {
1015 int tag;
1016
1017 ret = bt_dwarf_die_get_tag(die, &tag);
1018 if (ret) {
1019 goto error;
1020 }
1021
1022 if (tag == DW_TAG_inlined_subroutine) {
1023 ret = bt_dwarf_die_contains_addr(die, addr, &contains);
1024 if (ret) {
1025 goto error;
1026 }
1027
1028 if (contains) {
1029 ret = 1;
1030 goto end;
1031 }
1032 }
1033 } while (bt_dwarf_die_next(die) == 0);
1034
1035end:
1036 return ret;
1037
1038error:
1039 ret = 0;
1040 goto end;
1041}
1042
1043/**
1044 * Lookup the source location for a given address within a CU, making
1045 * the assumption that it is contained within an inline routine in a
1046 * function.
1047 *
1048 * @param cu bt_dwarf_cu instance in which to look for the address
1049 * @param addr The address for which to look for
1050 * @param src_loc Out parameter, the source location (filename and
1051 * line number) for the address
1052 * @returns 0 on success, -1 on failure
1053 */
1054static
1055int so_info_lookup_cu_src_loc_inl(struct bt_dwarf_cu *cu, uint64_t addr,
1056 struct source_location **src_loc)
1057{
1058 int ret = 0, found = 0;
1059 struct bt_dwarf_die *die = NULL;
1060 struct source_location *_src_loc = NULL;
1061
1062 if (!cu || !src_loc) {
1063 goto error;
1064 }
1065
1066 die = bt_dwarf_die_create(cu);
1067 if (!die) {
1068 goto error;
1069 }
1070
1071 while (bt_dwarf_die_next(die) == 0) {
1072 int tag;
1073
1074 ret = bt_dwarf_die_get_tag(die, &tag);
1075 if (ret) {
1076 goto error;
1077 }
1078
1079 if (tag == DW_TAG_subprogram) {
1080 int contains = 0;
1081
1082 ret = bt_dwarf_die_contains_addr(die, addr, &contains);
1083 if (ret) {
1084 goto error;
1085 }
1086
1087 if (contains) {
1088 /*
1089 * Try to find an inlined subroutine
1090 * child of this DIE containing addr.
1091 */
1092 found = so_info_child_die_has_address(
1093 die, addr);
1094 goto end;
1095 }
1096 }
1097 }
1098
1099end:
1100 if (found) {
1101 char *filename = NULL;
1102 uint64_t line_no;
1103
1104 _src_loc = g_new0(struct source_location, 1);
1105 if (!_src_loc) {
1106 goto error;
1107 }
1108
1109 ret = bt_dwarf_die_get_call_file(die, &filename);
1110 if (ret) {
1111 goto error;
1112 }
1113 ret = bt_dwarf_die_get_call_line(die, &line_no);
1114 if (ret) {
1115 free(filename);
1116 goto error;
1117 }
1118
1119 _src_loc->filename = filename;
1120 _src_loc->line_no = line_no;
1121 *src_loc = _src_loc;
1122 }
1123
1124 bt_dwarf_die_destroy(die);
1125 return 0;
1126
1127error:
1128 source_location_destroy(_src_loc);
1129 bt_dwarf_die_destroy(die);
1130 return -1;
1131}
1132
1133/**
1134 * Lookup the source location for a given address within a CU,
1135 * assuming that it is contained within an inlined function.
1136 *
1137 * A source location can be found regardless of inlining status for
1138 * this method, but in the case of an inlined function, the returned
1139 * source location will point not to the callsite but rather to the
1140 * definition site of the inline function.
1141 *
1142 * @param cu bt_dwarf_cu instance in which to look for the address
1143 * @param addr The address for which to look for
1144 * @param src_loc Out parameter, the source location (filename and
1145 * line number) for the address
1146 * @returns 0 on success, -1 on failure
1147 */
1148static
1149int so_info_lookup_cu_src_loc_no_inl(struct bt_dwarf_cu *cu, uint64_t addr,
1150 struct source_location **src_loc)
1151{
1152 struct source_location *_src_loc = NULL;
1153 struct bt_dwarf_die *die = NULL;
1154 const char *filename = NULL;
1155 Dwarf_Line *line = NULL;
1156 Dwarf_Addr line_addr;
1157 int ret, line_no;
1158
1159 if (!cu || !src_loc) {
1160 goto error;
1161 }
1162
1163 die = bt_dwarf_die_create(cu);
1164 if (!die) {
1165 goto error;
1166 }
1167
1168 line = dwarf_getsrc_die(die->dwarf_die, addr);
1169 if (!line) {
1170 goto error;
1171 }
1172
1173 ret = dwarf_lineaddr(line, &line_addr);
1174 if (ret) {
1175 goto error;
1176 }
1177
1178 filename = dwarf_linesrc(line, NULL, NULL);
1179 if (!filename) {
1180 goto error;
1181 }
1182
1183 if (addr == line_addr) {
1184 _src_loc = g_new0(struct source_location, 1);
1185 if (!_src_loc) {
1186 goto error;
1187 }
1188
1189 ret = dwarf_lineno(line, &line_no);
1190 if (ret) {
1191 goto error;
1192 }
1193
1194 _src_loc->line_no = line_no;
1195 _src_loc->filename = strdup(filename);
1196 }
1197
1198 bt_dwarf_die_destroy(die);
1199
1200 if (_src_loc) {
1201 *src_loc = _src_loc;
1202 }
1203
1204 return 0;
1205
1206error:
1207 source_location_destroy(_src_loc);
1208 bt_dwarf_die_destroy(die);
1209 return -1;
1210}
1211
1212/**
1213 * Get the source location (file name and line number) for a given
1214 * address within a compile unit (CU).
1215 *
1216 * On success, the out parameter `src_loc` is set if found. On
1217 * failure, it remains unchanged.
1218 *
1219 * @param so bt_dwarf_cu instance for the compile unit which
1220 * may contain the address
1221 * @param addr Virtual memory address for which to find the
1222 * source location
1223 * @param src_loc Out parameter, the source location
1224 * @returns 0 on success, -1 on failure
1225 */
1226static
1227int so_info_lookup_cu_src_loc(struct bt_dwarf_cu *cu, uint64_t addr,
1228 struct source_location **src_loc)
1229{
1230 int ret = 0;
1231 struct source_location *_src_loc = NULL;
1232
1233 if (!cu || !src_loc) {
1234 goto error;
1235 }
1236
1237 ret = so_info_lookup_cu_src_loc_inl(cu, addr, &_src_loc);
1238 if (ret) {
1239 goto error;
1240 }
1241
1242 if (_src_loc) {
1243 goto end;
1244 }
1245
1246 ret = so_info_lookup_cu_src_loc_no_inl(cu, addr, &_src_loc);
1247 if (ret) {
1248 goto error;
1249 }
1250
1251 if (_src_loc) {
1252 goto end;
1253 }
1254
1255end:
1256 if (_src_loc) {
1257 *src_loc = _src_loc;
1258 }
1259
1260 return 0;
1261
1262error:
1263 source_location_destroy(_src_loc);
1264 return -1;
1265}
1266
1267BT_HIDDEN
1268int so_info_lookup_source_location(struct so_info *so, uint64_t addr,
1269 struct source_location **src_loc)
1270{
1271 struct bt_dwarf_cu *cu = NULL;
1272 struct source_location *_src_loc = NULL;
1273
1274 if (!so || !src_loc) {
1275 goto error;
1276 }
1277
1278 /* Set DWARF info if it hasn't been accessed yet. */
1279 if (!so->dwarf_info && !so->is_elf_only) {
1280 if (so_info_set_dwarf_info(so)) {
1281 /* Failed to set DWARF info. */
1282 so->is_elf_only = true;
1283 }
1284 }
1285
1286 if (so->is_elf_only) {
1287 /* We cannot lookup source location without DWARF info. */
1288 goto error;
1289 }
1290
1291 if (!so_info_has_address(so, addr)) {
1292 goto error;
1293 }
1294
1295 /*
1296 * Addresses in ELF and DWARF are relative to base address for
1297 * PIC, so make the address argument relative too if needed.
1298 */
1299 if (so->is_pic) {
1300 addr -= so->low_addr;
1301 }
1302
1303 cu = bt_dwarf_cu_create(so->dwarf_info);
1304 if (!cu) {
1305 goto error;
1306 }
1307
1308 while (bt_dwarf_cu_next(cu) == 0) {
1309 int ret;
1310
1311 ret = so_info_lookup_cu_src_loc(cu, addr, &_src_loc);
1312 if (ret) {
1313 goto error;
1314 }
1315
1316 if (_src_loc) {
1317 break;
1318 }
1319 }
1320
1321 bt_dwarf_cu_destroy(cu);
1322 if (_src_loc) {
1323 *src_loc = _src_loc;
1324 }
1325
1326 return 0;
1327
1328error:
1329 source_location_destroy(_src_loc);
1330 bt_dwarf_cu_destroy(cu);
1331 return -1;
1332}
This page took 0.072545 seconds and 4 git commands to generate.