Fix: flt.lttng-utils.debug-info: build id comparison
[babeltrace.git] / plugins / lttng-utils / debug-info / bin-info.c
CommitLineData
c40a57e5 1/*
d5ddf820 2 * bin-info.c
c40a57e5
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
b4565e8b
PP
29#define BT_LOG_TAG "PLUGIN-CTF-LTTNG-UTILS-DEBUG-INFO-FLT-BIN-INFO"
30#include "logging.h"
31
1e638f98
FD
32#include <dwarf.h>
33#include <errno.h>
c40a57e5 34#include <fcntl.h>
1e638f98 35#include <inttypes.h>
c40a57e5 36#include <libgen.h>
1e638f98 37#include <math.h>
c40a57e5 38#include <stdio.h>
c40a57e5
AB
39#include <stdlib.h>
40#include <string.h>
41#include <unistd.h>
1e638f98 42
c40a57e5 43#include <glib.h>
1e638f98 44
af54bd18
FD
45#include <babeltrace/common-internal.h>
46
4f45f9bb
JD
47#include "bin-info.h"
48#include "crc32.h"
1e638f98 49#include "dwarf.h"
4f45f9bb 50#include "utils.h"
c40a57e5
AB
51
52/*
53 * An address printed in hex is at most 20 bytes (16 for 64-bits +
54 * leading 0x + optional leading '+' if addr is an offset + null
55 * character).
56 */
57#define ADDR_STR_LEN 20
ca9f27f3 58#define BUILD_ID_NOTE_NAME "GNU"
c40a57e5
AB
59
60BT_HIDDEN
d5ddf820 61int bin_info_init(void)
c40a57e5
AB
62{
63 int ret = 0;
64
65 if (elf_version(EV_CURRENT) == EV_NONE) {
b4565e8b
PP
66 BT_LOGD("ELF library initialization failed: %s.",
67 elf_errmsg(-1));
c40a57e5
AB
68 ret = -1;
69 }
70
71 return ret;
72}
73
74BT_HIDDEN
1e638f98
FD
75struct bin_info *bin_info_create(struct bt_fd_cache *fdc, const char *path,
76 uint64_t low_addr, uint64_t memsz, bool is_pic,
77 const char *debug_info_dir, const char *target_prefix)
c40a57e5 78{
d5ddf820 79 struct bin_info *bin = NULL;
c40a57e5 80
1e638f98
FD
81 BT_ASSERT(fdc);
82
c40a57e5
AB
83 if (!path) {
84 goto error;
85 }
86
d5ddf820
AB
87 bin = g_new0(struct bin_info, 1);
88 if (!bin) {
c40a57e5
AB
89 goto error;
90 }
91
9d325e17 92 if (target_prefix) {
0cf9d412 93 bin->elf_path = g_build_filename(target_prefix, path, NULL);
5cde0dc1 94 } else {
ca9f27f3 95 bin->elf_path = g_strdup(path);
5cde0dc1
AB
96 }
97
d5ddf820 98 if (!bin->elf_path) {
c40a57e5
AB
99 goto error;
100 }
101
9d325e17 102 if (debug_info_dir) {
06d1cf5d 103 bin->debug_info_dir = g_strdup(debug_info_dir);
9d325e17
PP
104 if (!bin->debug_info_dir) {
105 goto error;
106 }
107 }
108
d5ddf820
AB
109 bin->is_pic = is_pic;
110 bin->memsz = memsz;
111 bin->low_addr = low_addr;
112 bin->high_addr = bin->low_addr + bin->memsz;
ca9f27f3
FD
113 bin->build_id = NULL;
114 bin->build_id_len = 0;
115 bin->file_build_id_matches = false;
1e638f98 116 bin->fd_cache = fdc;
c40a57e5 117
d5ddf820 118 return bin;
c40a57e5
AB
119
120error:
d5ddf820 121 bin_info_destroy(bin);
c40a57e5
AB
122 return NULL;
123}
124
125BT_HIDDEN
d5ddf820 126void bin_info_destroy(struct bin_info *bin)
c40a57e5 127{
d5ddf820 128 if (!bin) {
c40a57e5
AB
129 return;
130 }
131
d5ddf820 132 dwarf_end(bin->dwarf_info);
c40a57e5 133
06d1cf5d
FD
134 g_free(bin->debug_info_dir);
135 g_free(bin->elf_path);
136 g_free(bin->dwarf_path);
4f45f9bb 137 g_free(bin->build_id);
06d1cf5d 138 g_free(bin->dbg_link_filename);
c40a57e5 139
d5ddf820 140 elf_end(bin->elf_file);
c40a57e5 141
1e638f98
FD
142 bt_fd_cache_put_handle(bin->fd_cache, bin->elf_handle);
143 bt_fd_cache_put_handle(bin->fd_cache, bin->dwarf_handle);
c40a57e5 144
d5ddf820 145 g_free(bin);
c40a57e5
AB
146}
147
ca9f27f3
FD
148/**
149 * Initialize the ELF file for a given executable.
150 *
151 * @param bin bin_info instance
152 * @returns 0 on success, negative value on error.
153 */
154static
155int bin_info_set_elf_file(struct bin_info *bin)
156{
1e638f98 157 struct bt_fd_cache_handle *elf_handle = NULL;
ca9f27f3
FD
158 Elf *elf_file = NULL;
159
160 if (!bin) {
161 goto error;
162 }
163
1e638f98
FD
164 elf_handle = bt_fd_cache_get_handle(bin->fd_cache, bin->elf_path);
165 if (!elf_handle) {
166 BT_LOGD("Failed to open %s", bin->elf_path);
ca9f27f3
FD
167 goto error;
168 }
af54bd18
FD
169 bin->elf_handle = elf_handle;
170
af54bd18 171 elf_file = elf_begin(bt_fd_cache_handle_get_fd(bin->elf_handle),
1e638f98 172 ELF_C_READ, NULL);
ca9f27f3 173 if (!elf_file) {
1e638f98 174 BT_LOGE("elf_begin failed: %s", elf_errmsg(-1));
ca9f27f3
FD
175 goto error;
176 }
177
af54bd18
FD
178 bin->elf_file = elf_file;
179
ca9f27f3 180 if (elf_kind(elf_file) != ELF_K_ELF) {
1e638f98 181 BT_LOGE("Error: %s is not an ELF object", bin->elf_path);
ca9f27f3
FD
182 goto error;
183 }
184
ca9f27f3
FD
185 return 0;
186
187error:
1e638f98 188 bt_fd_cache_put_handle(bin->fd_cache, elf_handle);
ca9f27f3 189 elf_end(elf_file);
1e638f98 190 return -1;
ca9f27f3
FD
191}
192
193/**
9b1d6816 194 * From a note section data struct, check if it is a build id note.
ca9f27f3 195 *
9b1d6816 196 * @param note_data Pointer to a note section
ca9f27f3
FD
197 *
198 * @returns 1 on match, 0 if `buf` does not contain a
199 * valid build id note
200 */
201static
9b1d6816 202int is_build_id_note_section(Elf_Data *note_data)
ca9f27f3 203{
9b1d6816
FD
204 size_t name_offset, desc_offset;
205 GElf_Nhdr note_header;
ca9f27f3 206 int ret = 0;
ca9f27f3 207
9b1d6816
FD
208 /*
209 * Discard the return value as it contains the size of the note section
210 * and we don't need it.
ca9f27f3 211 */
9b1d6816
FD
212 (void) gelf_getnote(note_data, 0, &note_header, &name_offset,
213 &desc_offset);
233b228c
FD
214
215 /*
216 * Check the note name length. The name_sz field includes the
217 * terminating null byte.
218 */
9b1d6816 219 if (note_header.n_namesz != sizeof(BUILD_ID_NOTE_NAME)) {
233b228c
FD
220 goto invalid;
221 }
222
ca9f27f3 223 /* Check the note type. */
9b1d6816 224 if (note_header.n_type != NT_GNU_BUILD_ID) {
ca9f27f3
FD
225 goto invalid;
226 }
227
228 /* Check the note name. */
9b1d6816
FD
229 if (memcmp(note_data->d_buf + name_offset, BUILD_ID_NOTE_NAME,
230 note_header.n_namesz) != 0) {
ca9f27f3
FD
231 goto invalid;
232 }
233
234 ret = 1;
235
236invalid:
237 return ret;
238}
239
240/**
9b1d6816 241 * From a build id note section data struct, check if the build id it contains
ca9f27f3
FD
242 * is identical to the build id passed as parameter.
243 *
9b1d6816 244 * @param note_data Pointer to the file build id note section.
ca9f27f3
FD
245 * @param build_id Pointer to a build id to compare to.
246 * @param build_id_len length of the build id.
247 *
248 * @returns 1 on match, 0 otherwise.
249 */
250static
9b1d6816 251int is_build_id_note_section_matching(Elf_Data *note_data,
ca9f27f3
FD
252 uint8_t *build_id, size_t build_id_len)
253{
9b1d6816
FD
254 size_t name_offset, desc_offset;
255 GElf_Nhdr note_header;
ca9f27f3
FD
256
257 if (build_id_len <= 0) {
258 goto end;
259 }
260
ca9f27f3 261 /*
9b1d6816
FD
262 * Discard the return value as it contains the size of the note section
263 * and we don't need it.
ca9f27f3 264 */
9b1d6816
FD
265 (void) gelf_getnote(note_data, 0, &note_header, &name_offset,
266 &desc_offset);
ca9f27f3
FD
267
268 /*
269 * Compare the binary build id with the supplied build id.
270 */
9b1d6816
FD
271 if (memcmp(build_id, note_data->d_buf + desc_offset,
272 build_id_len) == 0) {
ca9f27f3
FD
273 return 1;
274 }
275end:
276 return 0;
277}
278
279/**
280 * Checks if the build id stored in `bin` (bin->build_id) is matching the build
281 * id of the ondisk file (bin->elf_file).
282 *
283 * @param bin bin_info instance
284 * @param build_id build id to compare ot the on disk file
285 * @param build_id_len length of the build id
286 *
287 * @returns 1 on if the build id of stored in `bin` matches
288 * the build id of the ondisk file.
289 * 0 on if they are different or an error occured.
290 */
291static
292int is_build_id_matching(struct bin_info *bin)
293{
294 int ret, is_build_id, is_matching = 0;
295 Elf_Scn *curr_section = NULL, *next_section = NULL;
bfe42dac 296 GElf_Shdr curr_section_hdr;
ca9f27f3
FD
297
298 if (!bin->build_id) {
299 goto error;
300 }
301
302 /* Set ELF file if it hasn't been accessed yet. */
303 if (!bin->elf_file) {
304 ret = bin_info_set_elf_file(bin);
305 if (ret) {
306 /* Failed to set ELF file. */
307 goto error;
308 }
309 }
310
ca9f27f3
FD
311 next_section = elf_nextscn(bin->elf_file, curr_section);
312 if (!next_section) {
313 goto error;
314 }
315
316 while (next_section) {
9b1d6816 317 Elf_Data *note_data = NULL;
af54bd18 318
ca9f27f3
FD
319 curr_section = next_section;
320 next_section = elf_nextscn(bin->elf_file, curr_section);
321
bfe42dac 322 if (!gelf_getshdr(curr_section, &curr_section_hdr)) {
ca9f27f3
FD
323 goto error;
324 }
325
bfe42dac 326 if (curr_section_hdr.sh_type != SHT_NOTE) {
ca9f27f3
FD
327 continue;
328 }
329
af54bd18 330 /*
9b1d6816 331 * elf_getdata() translates the data to native byte order.
af54bd18 332 */
9b1d6816
FD
333 note_data = elf_getdata(curr_section, NULL);
334 if (!note_data) {
335 goto error;
336 }
af54bd18 337
ca9f27f3 338 /* Check if the note is of the build-id type. */
9b1d6816 339 is_build_id = is_build_id_note_section(note_data);
ca9f27f3
FD
340 if (!is_build_id) {
341 continue;
342 }
343
344 /*
345 * Compare the build id of the on-disk file and
346 * the build id recorded in the trace.
347 */
af54bd18 348 is_matching = is_build_id_note_section_matching(
9b1d6816 349 note_data, bin->build_id, bin->build_id_len);
ca9f27f3
FD
350 if (!is_matching) {
351 break;
352 }
353 }
354error:
ca9f27f3
FD
355 return is_matching;
356}
357
c40a57e5 358BT_HIDDEN
d5ddf820 359int bin_info_set_build_id(struct bin_info *bin, uint8_t *build_id,
c40a57e5
AB
360 size_t build_id_len)
361{
d5ddf820 362 if (!bin || !build_id) {
c40a57e5
AB
363 goto error;
364 }
365
ca9f27f3
FD
366 /* Set the build id. */
367 bin->build_id = g_new0(uint8_t, build_id_len);
d5ddf820 368 if (!bin->build_id) {
c40a57e5
AB
369 goto error;
370 }
371
d5ddf820
AB
372 memcpy(bin->build_id, build_id, build_id_len);
373 bin->build_id_len = build_id_len;
c40a57e5 374
ca9f27f3
FD
375 /*
376 * Check if the file found on the file system has the same build id
377 * that what was recorded in the trace.
378 */
379 bin->file_build_id_matches = is_build_id_matching(bin);
380 if (!bin->file_build_id_matches) {
381 BT_LOGD_STR("Supplied Build ID does not match Build ID of the "
382 "binary or library found on the file system.");
383 goto error;
384 }
385
c40a57e5
AB
386 /*
387 * Reset the is_elf_only flag in case it had been set
388 * previously, because we might find separate debug info using
389 * the new build id information.
390 */
d5ddf820 391 bin->is_elf_only = false;
c40a57e5
AB
392
393 return 0;
394
395error:
c40a57e5
AB
396 return -1;
397}
398
399BT_HIDDEN
4f45f9bb
JD
400int bin_info_set_debug_link(struct bin_info *bin, const char *filename,
401 uint32_t crc)
c40a57e5 402{
d5ddf820 403 if (!bin || !filename) {
c40a57e5
AB
404 goto error;
405 }
406
06d1cf5d 407 bin->dbg_link_filename = g_strdup(filename);
d5ddf820 408 if (!bin->dbg_link_filename) {
c40a57e5
AB
409 goto error;
410 }
411
d5ddf820 412 bin->dbg_link_crc = crc;
c40a57e5
AB
413
414 /*
415 * Reset the is_elf_only flag in case it had been set
416 * previously, because we might find separate debug info using
417 * the new build id information.
418 */
d5ddf820 419 bin->is_elf_only = false;
c40a57e5
AB
420
421 return 0;
422
423error:
424
425 return -1;
426}
427
428/**
429 * Tries to read DWARF info from the location given by path, and
d5ddf820 430 * attach it to the given bin_info instance if it exists.
c40a57e5 431 *
d5ddf820 432 * @param bin bin_info instance for which to set DWARF info
c40a57e5 433 * @param path Presumed location of the DWARF info
545e1e92 434 * @returns 0 on success, negative value on failure
c40a57e5
AB
435 */
436static
d5ddf820 437int bin_info_set_dwarf_info_from_path(struct bin_info *bin, char *path)
c40a57e5 438{
1e638f98
FD
439 int ret = 0;
440 struct bt_fd_cache_handle *dwarf_handle = NULL;
c40a57e5
AB
441 struct bt_dwarf_cu *cu = NULL;
442 Dwarf *dwarf_info = NULL;
443
d5ddf820 444 if (!bin || !path) {
c40a57e5
AB
445 goto error;
446 }
447
1e638f98
FD
448 dwarf_handle = bt_fd_cache_get_handle(bin->fd_cache, path);
449 if (!dwarf_handle) {
c40a57e5
AB
450 goto error;
451 }
452
1e638f98
FD
453 dwarf_info = dwarf_begin(bt_fd_cache_handle_get_fd(dwarf_handle),
454 DWARF_C_READ);
c40a57e5
AB
455 if (!dwarf_info) {
456 goto error;
457 }
458
459 /*
d5ddf820
AB
460 * Check if the dwarf info has any CU. If not, the
461 * executable's object file contains no DWARF info.
c40a57e5
AB
462 */
463 cu = bt_dwarf_cu_create(dwarf_info);
464 if (!cu) {
465 goto error;
466 }
467
468 ret = bt_dwarf_cu_next(cu);
469 if (ret) {
470 goto error;
471 }
472
1e638f98 473 bin->dwarf_handle = dwarf_handle;
06d1cf5d 474 bin->dwarf_path = g_strdup(path);
d5ddf820 475 if (!bin->dwarf_path) {
c40a57e5
AB
476 goto error;
477 }
d5ddf820 478 bin->dwarf_info = dwarf_info;
c40a57e5
AB
479 free(cu);
480
481 return 0;
482
483error:
1e638f98 484 bt_fd_cache_put_handle(bin->fd_cache, dwarf_handle);
c40a57e5
AB
485 dwarf_end(dwarf_info);
486 g_free(dwarf_info);
487 free(cu);
488
1e638f98 489 return -1;
c40a57e5
AB
490}
491
492/**
d5ddf820 493 * Try to set the dwarf_info for a given bin_info instance via the
c40a57e5
AB
494 * build ID method.
495 *
d5ddf820 496 * @param bin bin_info instance for which to retrieve the
c40a57e5
AB
497 * DWARF info via build ID
498 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
499 */
500static
d5ddf820 501int bin_info_set_dwarf_info_build_id(struct bin_info *bin)
c40a57e5 502{
f06ce5e5 503 int i = 0, ret = 0;
c40a57e5
AB
504 char *path = NULL, *build_id_file = NULL;
505 const char *dbg_dir = NULL;
8486e87a 506 size_t build_id_char_len, build_id_suffix_char_len, build_id_file_len;
c40a57e5 507
d5ddf820 508 if (!bin || !bin->build_id) {
c40a57e5
AB
509 goto error;
510 }
511
06d1cf5d 512 dbg_dir = bin->debug_info_dir ? bin->debug_info_dir : DEFAULT_DEBUG_DIR;
c40a57e5 513
b3599eb3 514 /* 2 characters per byte printed in hex, +1 for '/' and +1 for '\0' */
8486e87a
FD
515 build_id_char_len = (2 * bin->build_id_len) + 1;
516 build_id_suffix_char_len = strlen(BUILD_ID_SUFFIX) + 1;
517 build_id_file_len = build_id_char_len + build_id_suffix_char_len;
06d1cf5d 518 build_id_file = g_new0(gchar, build_id_file_len);
c40a57e5
AB
519 if (!build_id_file) {
520 goto error;
521 }
522
06d1cf5d 523 g_snprintf(build_id_file, 4, "%02x/", bin->build_id[0]);
d5ddf820 524 for (i = 1; i < bin->build_id_len; ++i) {
c40a57e5
AB
525 int path_idx = 3 + 2 * (i - 1);
526
06d1cf5d 527 g_snprintf(&build_id_file[path_idx], 3, "%02x", bin->build_id[i]);
c40a57e5 528 }
8486e87a
FD
529 g_snprintf(&build_id_file[build_id_char_len], build_id_suffix_char_len,
530 BUILD_ID_SUFFIX);
c40a57e5 531
0cf9d412 532 path = g_build_filename(dbg_dir, BUILD_ID_SUBDIR, build_id_file, NULL);
c40a57e5
AB
533 if (!path) {
534 goto error;
535 }
536
d5ddf820 537 ret = bin_info_set_dwarf_info_from_path(bin, path);
c40a57e5
AB
538 if (ret) {
539 goto error;
540 }
541
542 goto end;
543
544error:
545 ret = -1;
546end:
547 free(build_id_file);
548 free(path);
549
550 return ret;
551}
552
553/**
554 * Tests whether the file located at path exists and has the expected
555 * checksum.
556 *
557 * This predicate is used when looking up separate debug info via the
558 * GNU debuglink method. The expected crc can be found .gnu_debuglink
559 * section in the original ELF file, along with the filename for the
560 * file containing the debug info.
561 *
562 * @param path Full path at which to look for the debug file
563 * @param crc Expected checksum for the debug file
564 * @returns 1 if the file exists and has the correct checksum,
565 * 0 otherwise
566 */
567static
1e638f98 568int is_valid_debug_file(struct bin_info *bin, char *path, uint32_t crc)
c40a57e5 569{
1e638f98
FD
570 int ret = 0;
571 struct bt_fd_cache_handle *debug_handle = NULL;
c40a57e5
AB
572 uint32_t _crc = 0;
573
574 if (!path) {
1e638f98 575 goto end;
c40a57e5
AB
576 }
577
1e638f98
FD
578 debug_handle = bt_fd_cache_get_handle(bin->fd_cache, path);
579 if (!debug_handle) {
580 goto end;
c40a57e5
AB
581 }
582
1e638f98 583 ret = crc32(bt_fd_cache_handle_get_fd(debug_handle), &_crc);
c40a57e5
AB
584 if (ret) {
585 ret = 0;
586 goto end;
587 }
588
589 ret = (crc == _crc);
590
591end:
1e638f98 592 bt_fd_cache_put_handle(bin->fd_cache, debug_handle);
c40a57e5
AB
593 return ret;
594}
595
596/**
d5ddf820 597 * Try to set the dwarf_info for a given bin_info instance via the
ca9f27f3 598 * debug-link method.
c40a57e5 599 *
d5ddf820 600 * @param bin bin_info instance for which to retrieve the
c40a57e5
AB
601 * DWARF info via debug link
602 * @returns 0 on success (i.e. dwarf_info set), -1 on failure
603 */
604static
d5ddf820 605int bin_info_set_dwarf_info_debug_link(struct bin_info *bin)
c40a57e5
AB
606{
607 int ret = 0;
06d1cf5d
FD
608 const gchar *dbg_dir = NULL;
609 gchar *bin_dir = NULL, *dir_name = NULL, *path = NULL;
c40a57e5 610
d5ddf820 611 if (!bin || !bin->dbg_link_filename) {
c40a57e5
AB
612 goto error;
613 }
614
06d1cf5d 615 dbg_dir = bin->debug_info_dir ? bin->debug_info_dir : DEFAULT_DEBUG_DIR;
85cf9985 616 dir_name = g_path_get_dirname(bin->elf_path);
c40a57e5
AB
617 if (!dir_name) {
618 goto error;
619 }
620
06d1cf5d 621 bin_dir = g_strconcat(dir_name, "/", NULL);
c40a57e5 622
d5ddf820 623 /* First look in the executable's dir */
06d1cf5d 624 path = g_strconcat(bin_dir, bin->dbg_link_filename, NULL);
c40a57e5 625
1e638f98 626 if (is_valid_debug_file(bin, path, bin->dbg_link_crc)) {
c40a57e5
AB
627 goto found;
628 }
629
630 /* If not found, look in .debug subdir */
06d1cf5d
FD
631 g_free(path);
632 path = g_strconcat(bin_dir, DEBUG_SUBDIR, bin->dbg_link_filename, NULL);
c40a57e5 633
1e638f98 634 if (is_valid_debug_file(bin, path, bin->dbg_link_crc)) {
c40a57e5
AB
635 goto found;
636 }
637
638 /* Lastly, look under the global debug directory */
06d1cf5d 639 g_free(path);
c40a57e5 640
06d1cf5d 641 path = g_strconcat(dbg_dir, bin_dir, bin->dbg_link_filename, NULL);
1e638f98 642 if (is_valid_debug_file(bin, path, bin->dbg_link_crc)) {
c40a57e5
AB
643 goto found;
644 }
645
646error:
647 ret = -1;
648end:
39588a20 649 g_free(bin_dir);
85cf9985
FD
650 g_free(dir_name);
651 g_free(path);
c40a57e5
AB
652
653 return ret;
654
655found:
d5ddf820 656 ret = bin_info_set_dwarf_info_from_path(bin, path);
c40a57e5
AB
657 if (ret) {
658 goto error;
659 }
660
661 goto end;
662}
663
664/**
665 * Initialize the DWARF info for a given executable.
666 *
d5ddf820 667 * @param bin bin_info instance
545e1e92 668 * @returns 0 on success, negative value on failure
c40a57e5
AB
669 */
670static
d5ddf820 671int bin_info_set_dwarf_info(struct bin_info *bin)
c40a57e5
AB
672{
673 int ret = 0;
674
d5ddf820 675 if (!bin) {
545e1e92
JG
676 ret = -1;
677 goto end;
c40a57e5
AB
678 }
679
680 /* First try to set the DWARF info from the ELF file */
d5ddf820 681 ret = bin_info_set_dwarf_info_from_path(bin, bin->elf_path);
c40a57e5
AB
682 if (!ret) {
683 goto end;
684 }
685
686 /*
687 * If that fails, try to find separate debug info via build ID
688 * and debug link.
689 */
d5ddf820 690 ret = bin_info_set_dwarf_info_build_id(bin);
c40a57e5
AB
691 if (!ret) {
692 goto end;
693 }
694
d5ddf820 695 ret = bin_info_set_dwarf_info_debug_link(bin);
c40a57e5
AB
696 if (!ret) {
697 goto end;
698 }
699
c40a57e5
AB
700end:
701 return ret;
702}
703
704BT_HIDDEN
705void source_location_destroy(struct source_location *src_loc)
706{
707 if (!src_loc) {
708 return;
709 }
710
711 free(src_loc->filename);
712 g_free(src_loc);
713}
d6d3f4e8 714
d2ac1099
AB
715/**
716 * Append a string representation of an address offset to an existing
717 * string.
718 *
719 * On success, the out parameter `result` will contain the base string
720 * followed by the offset string of the form "+0x1234". On failure,
721 * `result` remains unchanged.
722 *
723 * @param base_str The string to which to append an offset string
724 * @param low_addr The lower virtual memory address, the base from
725 * which the offset is computed
726 * @param high_addr The higher virtual memory address
727 * @param result Out parameter, the base string followed by the
728 * offset string
729 * @returns 0 on success, -1 on failure
730 */
731static
d5ddf820 732int bin_info_append_offset_str(const char *base_str, uint64_t low_addr,
d2ac1099
AB
733 uint64_t high_addr, char **result)
734{
d2ac1099
AB
735 uint64_t offset;
736 char *_result = NULL;
06d1cf5d 737
d2ac1099
AB
738 if (!base_str || !result) {
739 goto error;
740 }
741
742 offset = high_addr - low_addr;
743
06d1cf5d 744 _result = g_strdup_printf("%s+%#0" PRIx64, base_str, offset);
d2ac1099
AB
745 if (!_result) {
746 goto error;
747 }
d2ac1099
AB
748 *result = _result;
749
750 return 0;
751
752error:
753 free(_result);
754 return -1;
755}
c40a57e5
AB
756
757/**
758 * Try to find the symbol closest to an address within a given ELF
759 * section.
760 *
761 * Only function symbols are taken into account. The symbol's address
762 * must precede `addr`. A symbol with a closer address might exist
763 * after `addr` but is irrelevant because it cannot encompass `addr`.
764 *
765 * On success, if found, the out parameters `sym` and `shdr` are
766 * set. On failure or if none are found, they remain unchanged.
767 *
768 * @param scn ELF section in which to look for the address
769 * @param addr Virtual memory address for which to find the
770 * nearest function symbol
771 * @param sym Out parameter, the nearest function symbol
772 * @param shdr Out parameter, the section header for scn
773 * @returns 0 on success, -1 on failure
774 */
775static
d5ddf820 776int bin_info_get_nearest_symbol_from_section(Elf_Scn *scn, uint64_t addr,
c40a57e5
AB
777 GElf_Sym **sym, GElf_Shdr **shdr)
778{
779 int i;
780 size_t symbol_count;
781 Elf_Data *data = NULL;
782 GElf_Shdr *_shdr = NULL;
783 GElf_Sym *nearest_sym = NULL;
784
785 if (!scn || !sym || !shdr) {
786 goto error;
787 }
788
789 _shdr = g_new0(GElf_Shdr, 1);
790 if (!_shdr) {
791 goto error;
792 }
793
794 _shdr = gelf_getshdr(scn, _shdr);
795 if (!_shdr) {
796 goto error;
797 }
798
799 if (_shdr->sh_type != SHT_SYMTAB) {
800 /*
801 * We are only interested in symbol table (symtab)
802 * sections, skip this one.
803 */
804 goto end;
805 }
806
807 data = elf_getdata(scn, NULL);
808 if (!data) {
809 goto error;
810 }
811
812 symbol_count = _shdr->sh_size / _shdr->sh_entsize;
813
814 for (i = 0; i < symbol_count; ++i) {
815 GElf_Sym *cur_sym = NULL;
816
817 cur_sym = g_new0(GElf_Sym, 1);
818 if (!cur_sym) {
819 goto error;
820 }
821 cur_sym = gelf_getsym(data, i, cur_sym);
822 if (!cur_sym) {
823 goto error;
824 }
825 if (GELF_ST_TYPE(cur_sym->st_info) != STT_FUNC) {
826 /* We're only interested in the functions. */
827 g_free(cur_sym);
828 continue;
829 }
830
831 if (cur_sym->st_value <= addr &&
832 (!nearest_sym ||
833 cur_sym->st_value > nearest_sym->st_value)) {
834 g_free(nearest_sym);
835 nearest_sym = cur_sym;
836 } else {
837 g_free(cur_sym);
838 }
839 }
840
841end:
842 if (nearest_sym) {
843 *sym = nearest_sym;
844 *shdr = _shdr;
845 } else {
846 g_free(_shdr);
847 }
848
849 return 0;
850
851error:
852 g_free(nearest_sym);
853 g_free(_shdr);
854 return -1;
855}
856
857/**
858 * Get the name of the function containing a given address within an
859 * executable using ELF symbols.
860 *
861 * The function name is in fact the name of the nearest ELF symbol,
862 * followed by the offset in bytes between the address and the symbol
863 * (in hex), separated by a '+' character.
864 *
865 * If found, the out parameter `func_name` is set on success. On failure,
866 * it remains unchanged.
867 *
d5ddf820 868 * @param bin bin_info instance for the executable containing
c40a57e5
AB
869 * the address
870 * @param addr Virtual memory address for which to find the
871 * function name
872 * @param func_name Out parameter, the function name
873 * @returns 0 on success, -1 on failure
874 */
875static
d5ddf820 876int bin_info_lookup_elf_function_name(struct bin_info *bin, uint64_t addr,
c40a57e5
AB
877 char **func_name)
878{
879 /*
880 * TODO (possible optimisation): if an ELF has no symtab
881 * section, it has been stripped. Therefore, it would be wise
882 * to store a flag indicating the stripped status after the
883 * first iteration to prevent subsequent ones.
884 */
885 int ret = 0;
886 Elf_Scn *scn = NULL;
887 GElf_Sym *sym = NULL;
888 GElf_Shdr *shdr = NULL;
889 char *sym_name = NULL;
c40a57e5 890
49824faa 891 /* Set ELF file if it hasn't been accessed yet. */
d5ddf820
AB
892 if (!bin->elf_file) {
893 ret = bin_info_set_elf_file(bin);
49824faa
AB
894 if (ret) {
895 /* Failed to set ELF file. */
896 goto error;
897 }
898 }
899
d5ddf820 900 scn = elf_nextscn(bin->elf_file, scn);
c40a57e5
AB
901 if (!scn) {
902 goto error;
903 }
904
905 while (scn && !sym) {
d5ddf820 906 ret = bin_info_get_nearest_symbol_from_section(
c40a57e5
AB
907 scn, addr, &sym, &shdr);
908 if (ret) {
909 goto error;
910 }
911
d5ddf820 912 scn = elf_nextscn(bin->elf_file, scn);
c40a57e5
AB
913 }
914
915 if (sym) {
d5ddf820 916 sym_name = elf_strptr(bin->elf_file, shdr->sh_link,
c40a57e5
AB
917 sym->st_name);
918 if (!sym_name) {
919 goto error;
920 }
921
d5ddf820 922 ret = bin_info_append_offset_str(sym_name, sym->st_value, addr,
d2ac1099
AB
923 func_name);
924 if (ret) {
c40a57e5
AB
925 goto error;
926 }
c40a57e5
AB
927 }
928
929 g_free(shdr);
930 g_free(sym);
931 return 0;
932
933error:
934 g_free(shdr);
935 g_free(sym);
545e1e92 936 return ret;
c40a57e5
AB
937}
938
939/**
940 * Get the name of the function containing a given address within a
941 * given compile unit (CU).
942 *
943 * If found, the out parameter `func_name` is set on success. On
944 * failure, it remains unchanged.
945 *
946 * @param cu bt_dwarf_cu instance which may contain the address
947 * @param addr Virtual memory address for which to find the
948 * function name
949 * @param func_name Out parameter, the function name
950 * @returns 0 on success, -1 on failure
951 */
952static
d5ddf820 953int bin_info_lookup_cu_function_name(struct bt_dwarf_cu *cu, uint64_t addr,
c40a57e5
AB
954 char **func_name)
955{
a54aa699
AB
956 int ret = 0;
957 bool found = false;
c40a57e5
AB
958 struct bt_dwarf_die *die = NULL;
959
960 if (!cu || !func_name) {
961 goto error;
962 }
963
964 die = bt_dwarf_die_create(cu);
965 if (!die) {
966 goto error;
967 }
968
969 while (bt_dwarf_die_next(die) == 0) {
970 int tag;
971
972 ret = bt_dwarf_die_get_tag(die, &tag);
973 if (ret) {
974 goto error;
975 }
976
977 if (tag == DW_TAG_subprogram) {
978 ret = bt_dwarf_die_contains_addr(die, addr, &found);
979 if (ret) {
980 goto error;
981 }
982
983 if (found) {
984 break;
985 }
986 }
987 }
988
989 if (found) {
d2ac1099
AB
990 uint64_t low_addr = 0;
991 char *die_name = NULL;
992
7935ee7a
AB
993 ret = bt_dwarf_die_get_name(die, &die_name);
994 if (ret) {
995 goto error;
996 }
997
998 ret = dwarf_lowpc(die->dwarf_die, &low_addr);
c40a57e5 999 if (ret) {
7d41a84b 1000 free(die_name);
c40a57e5
AB
1001 goto error;
1002 }
1003
d5ddf820 1004 ret = bin_info_append_offset_str(die_name, low_addr, addr,
d2ac1099 1005 func_name);
7d41a84b 1006 free(die_name);
d2ac1099 1007 if (ret) {
7935ee7a
AB
1008 goto error;
1009 }
c40a57e5
AB
1010 }
1011
1012 bt_dwarf_die_destroy(die);
1013 return 0;
1014
1015error:
1016 bt_dwarf_die_destroy(die);
1017 return -1;
1018}
1019
1020/**
1021 * Get the name of the function containing a given address within an
1022 * executable using DWARF debug info.
1023 *
1024 * If found, the out parameter `func_name` is set on success. On
1025 * failure, it remains unchanged.
1026 *
d5ddf820 1027 * @param bin bin_info instance for the executable containing
c40a57e5
AB
1028 * the address
1029 * @param addr Virtual memory address for which to find the
1030 * function name
1031 * @param func_name Out parameter, the function name
1032 * @returns 0 on success, -1 on failure
1033 */
1034static
d5ddf820 1035int bin_info_lookup_dwarf_function_name(struct bin_info *bin, uint64_t addr,
c40a57e5
AB
1036 char **func_name)
1037{
1038 int ret = 0;
1039 char *_func_name = NULL;
1040 struct bt_dwarf_cu *cu = NULL;
1041
d5ddf820 1042 if (!bin || !func_name) {
c40a57e5
AB
1043 goto error;
1044 }
1045
d5ddf820 1046 cu = bt_dwarf_cu_create(bin->dwarf_info);
c40a57e5
AB
1047 if (!cu) {
1048 goto error;
1049 }
1050
1051 while (bt_dwarf_cu_next(cu) == 0) {
d5ddf820 1052 ret = bin_info_lookup_cu_function_name(cu, addr, &_func_name);
c40a57e5
AB
1053 if (ret) {
1054 goto error;
1055 }
1056
1057 if (_func_name) {
1058 break;
1059 }
1060 }
1061
1062 if (_func_name) {
1063 *func_name = _func_name;
93d65223
JG
1064 } else {
1065 goto error;
c40a57e5
AB
1066 }
1067
1068 bt_dwarf_cu_destroy(cu);
1069 return 0;
1070
1071error:
1072 bt_dwarf_cu_destroy(cu);
1073 return -1;
1074}
1075
1076BT_HIDDEN
9d325e17
PP
1077int bin_info_lookup_function_name(struct bin_info *bin,
1078 uint64_t addr, char **func_name)
c40a57e5
AB
1079{
1080 int ret = 0;
1081 char *_func_name = NULL;
1082
d5ddf820 1083 if (!bin || !func_name) {
c40a57e5
AB
1084 goto error;
1085 }
1086
ca9f27f3
FD
1087 /*
1088 * If the bin_info has a build id but it does not match the build id
1089 * that was found on the file system, return an error.
1090 */
1091 if (bin->build_id && !bin->file_build_id_matches) {
1092 goto error;
1093 }
1094
c40a57e5 1095 /* Set DWARF info if it hasn't been accessed yet. */
d5ddf820
AB
1096 if (!bin->dwarf_info && !bin->is_elf_only) {
1097 ret = bin_info_set_dwarf_info(bin);
c40a57e5 1098 if (ret) {
1e638f98
FD
1099 BT_LOGD_STR("Failed to set bin dwarf info, falling "
1100 "back to ELF lookup.");
c40a57e5 1101 /* Failed to set DWARF info, fallback to ELF. */
d5ddf820 1102 bin->is_elf_only = true;
c40a57e5
AB
1103 }
1104 }
1105
d5ddf820 1106 if (!bin_info_has_address(bin, addr)) {
c40a57e5
AB
1107 goto error;
1108 }
1109
1110 /*
1111 * Addresses in ELF and DWARF are relative to base address for
1112 * PIC, so make the address argument relative too if needed.
1113 */
d5ddf820
AB
1114 if (bin->is_pic) {
1115 addr -= bin->low_addr;
36ae9941
AB
1116 }
1117
d5ddf820 1118 if (bin->is_elf_only) {
b223415b
FD
1119 ret = bin_info_lookup_elf_function_name(bin, addr,
1120 &_func_name);
1121 if (ret) {
1122 BT_LOGD("Failed to lookup function name (ELF): "
1123 "ret=%d", ret);
1124 }
c40a57e5 1125 } else {
b223415b
FD
1126 ret = bin_info_lookup_dwarf_function_name(bin, addr,
1127 &_func_name);
1128 if (ret) {
1129 BT_LOGD("Failed to lookup function name (DWARF): "
1130 "ret=%d", ret);
1131 }
c40a57e5
AB
1132 }
1133
36ae9941
AB
1134 *func_name = _func_name;
1135 return 0;
55cd033d 1136
36ae9941
AB
1137error:
1138 return -1;
1139}
1140
1141BT_HIDDEN
d5ddf820 1142int bin_info_get_bin_loc(struct bin_info *bin, uint64_t addr, char **bin_loc)
36ae9941 1143{
06d1cf5d 1144 gchar *_bin_loc = NULL;
36ae9941 1145
d5ddf820 1146 if (!bin || !bin_loc) {
36ae9941 1147 goto error;
c40a57e5
AB
1148 }
1149
ca9f27f3
FD
1150 /*
1151 * If the bin_info has a build id but it does not match the build id
1152 * that was found on the file system, return an error.
1153 */
1154 if (bin->build_id && !bin->file_build_id_matches) {
1155 goto error;
1156 }
1157
d5ddf820
AB
1158 if (bin->is_pic) {
1159 addr -= bin->low_addr;
06d1cf5d 1160 _bin_loc = g_strdup_printf("+%#0" PRIx64, addr);
36ae9941 1161 } else {
06d1cf5d 1162 _bin_loc = g_strdup_printf("@%#0" PRIx64, addr);
36ae9941
AB
1163 }
1164
06d1cf5d 1165 if (!_bin_loc) {
36ae9941
AB
1166 goto error;
1167 }
1168
1169 *bin_loc = _bin_loc;
c40a57e5
AB
1170 return 0;
1171
1172error:
1173 return -1;
1174}
1175
1176/**
1177 * Predicate used to determine whether the children of a given DIE
1178 * contain a specific address.
1179 *
1180 * More specifically, the parameter `die` is expected to be a
1181 * subprogram (function) DIE, and this predicate tells whether any
1182 * subroutines are inlined within this function and would contain
1183 * `addr`.
1184 *
a54aa699
AB
1185 * On success, the out parameter `contains` is set with the boolean
1186 * value indicating whether the DIE's range covers `addr`. On failure,
1187 * it remains unchanged.
1188 *
c40a57e5
AB
1189 * Do note that this function advances the position of `die`. If the
1190 * address is found within one of its children, `die` will be pointing
1191 * to that child upon returning from the function, allowing to extract
1192 * the information deemed necessary.
1193 *
a54aa699
AB
1194 * @param die The parent DIE in whose children the address will be
1195 * looked for
1196 * @param addr The address for which to look for in the DIEs
1197 * @param contains Out parameter, true if addr is contained,
1198 * false if not
1199 * @returns Returns 0 on success, -1 on failure
c40a57e5
AB
1200 */
1201static
a54aa699 1202int bin_info_child_die_has_address(struct bt_dwarf_die *die, uint64_t addr, bool *contains)
c40a57e5 1203{
a54aa699
AB
1204 int ret = 0;
1205 bool _contains = false;
c40a57e5
AB
1206
1207 if (!die) {
1208 goto error;
1209 }
1210
1211 ret = bt_dwarf_die_child(die);
1212 if (ret) {
1213 goto error;
1214 }
1215
1216 do {
e6365242 1217 ret = bt_dwarf_die_contains_addr(die, addr, &_contains);
c40a57e5
AB
1218 if (ret) {
1219 goto error;
1220 }
1221
e6365242
FD
1222 if (_contains) {
1223 /*
1224 * The address is within the range of the current DIE
1225 * or its children.
1226 */
1227 int tag;
1228
1229 ret = bt_dwarf_die_get_tag(die, &tag);
c40a57e5
AB
1230 if (ret) {
1231 goto error;
1232 }
1233
e6365242
FD
1234 if (tag == DW_TAG_inlined_subroutine) {
1235 /* Found the tracepoint. */
c40a57e5
AB
1236 goto end;
1237 }
e6365242
FD
1238
1239 if (bt_dwarf_die_has_children(die)) {
1240 /*
1241 * Look for the address in the children DIEs.
1242 */
1243 ret = bt_dwarf_die_child(die);
1244 if (ret) {
1245 goto error;
1246 }
1247 }
c40a57e5
AB
1248 }
1249 } while (bt_dwarf_die_next(die) == 0);
1250
1251end:
a54aa699
AB
1252 *contains = _contains;
1253 return 0;
c40a57e5
AB
1254
1255error:
a54aa699 1256 return -1;
c40a57e5
AB
1257}
1258
1259/**
1260 * Lookup the source location for a given address within a CU, making
1261 * the assumption that it is contained within an inline routine in a
1262 * function.
1263 *
1264 * @param cu bt_dwarf_cu instance in which to look for the address
1265 * @param addr The address for which to look for
1266 * @param src_loc Out parameter, the source location (filename and
1267 * line number) for the address
1268 * @returns 0 on success, -1 on failure
1269 */
1270static
d5ddf820 1271int bin_info_lookup_cu_src_loc_inl(struct bt_dwarf_cu *cu, uint64_t addr,
c40a57e5
AB
1272 struct source_location **src_loc)
1273{
a54aa699
AB
1274 int ret = 0;
1275 bool found = false;
c40a57e5
AB
1276 struct bt_dwarf_die *die = NULL;
1277 struct source_location *_src_loc = NULL;
1278
1279 if (!cu || !src_loc) {
1280 goto error;
1281 }
1282
1283 die = bt_dwarf_die_create(cu);
1284 if (!die) {
1285 goto error;
1286 }
1287
1288 while (bt_dwarf_die_next(die) == 0) {
1289 int tag;
1290
1291 ret = bt_dwarf_die_get_tag(die, &tag);
1292 if (ret) {
1293 goto error;
1294 }
1295
1296 if (tag == DW_TAG_subprogram) {
a54aa699 1297 bool contains = false;
c40a57e5
AB
1298
1299 ret = bt_dwarf_die_contains_addr(die, addr, &contains);
1300 if (ret) {
1301 goto error;
1302 }
1303
1304 if (contains) {
1305 /*
1306 * Try to find an inlined subroutine
1307 * child of this DIE containing addr.
1308 */
a54aa699
AB
1309 ret = bin_info_child_die_has_address(die, addr,
1310 &found);
1311 if(ret) {
1312 goto error;
1313 }
1314
c40a57e5
AB
1315 goto end;
1316 }
1317 }
1318 }
1319
1320end:
1321 if (found) {
1322 char *filename = NULL;
1323 uint64_t line_no;
1324
1325 _src_loc = g_new0(struct source_location, 1);
1326 if (!_src_loc) {
1327 goto error;
1328 }
1329
1330 ret = bt_dwarf_die_get_call_file(die, &filename);
1331 if (ret) {
1332 goto error;
1333 }
1334 ret = bt_dwarf_die_get_call_line(die, &line_no);
1335 if (ret) {
1336 free(filename);
1337 goto error;
1338 }
1339
1340 _src_loc->filename = filename;
1341 _src_loc->line_no = line_no;
1342 *src_loc = _src_loc;
1343 }
1344
1345 bt_dwarf_die_destroy(die);
1346 return 0;
1347
1348error:
1349 source_location_destroy(_src_loc);
1350 bt_dwarf_die_destroy(die);
1351 return -1;
1352}
1353
1354/**
1355 * Lookup the source location for a given address within a CU,
1356 * assuming that it is contained within an inlined function.
1357 *
1358 * A source location can be found regardless of inlining status for
1359 * this method, but in the case of an inlined function, the returned
1360 * source location will point not to the callsite but rather to the
1361 * definition site of the inline function.
1362 *
1363 * @param cu bt_dwarf_cu instance in which to look for the address
1364 * @param addr The address for which to look for
1365 * @param src_loc Out parameter, the source location (filename and
1ed6d0cc
FD
1366 * line number) for the address. Set only if the address
1367 * is found and resolved successfully
1368 *
c40a57e5
AB
1369 * @returns 0 on success, -1 on failure
1370 */
1371static
d5ddf820 1372int bin_info_lookup_cu_src_loc_no_inl(struct bt_dwarf_cu *cu, uint64_t addr,
c40a57e5
AB
1373 struct source_location **src_loc)
1374{
1375 struct source_location *_src_loc = NULL;
1376 struct bt_dwarf_die *die = NULL;
1377 const char *filename = NULL;
1378 Dwarf_Line *line = NULL;
1379 Dwarf_Addr line_addr;
1380 int ret, line_no;
1381
1382 if (!cu || !src_loc) {
1383 goto error;
1384 }
1385
1386 die = bt_dwarf_die_create(cu);
1387 if (!die) {
1388 goto error;
1389 }
1390
1391 line = dwarf_getsrc_die(die->dwarf_die, addr);
1392 if (!line) {
1ed6d0cc
FD
1393 /* This is not an error. The caller needs to keep looking. */
1394 goto end;
c40a57e5
AB
1395 }
1396
1397 ret = dwarf_lineaddr(line, &line_addr);
1398 if (ret) {
1399 goto error;
1400 }
1401
1402 filename = dwarf_linesrc(line, NULL, NULL);
1403 if (!filename) {
1404 goto error;
1405 }
1406
1407 if (addr == line_addr) {
1408 _src_loc = g_new0(struct source_location, 1);
1409 if (!_src_loc) {
1410 goto error;
1411 }
1412
1413 ret = dwarf_lineno(line, &line_no);
1414 if (ret) {
1415 goto error;
1416 }
1417
1418 _src_loc->line_no = line_no;
06d1cf5d 1419 _src_loc->filename = g_strdup(filename);
c40a57e5
AB
1420 }
1421
1422 bt_dwarf_die_destroy(die);
1423
1424 if (_src_loc) {
1425 *src_loc = _src_loc;
1426 }
1427
1ed6d0cc 1428end:
c40a57e5
AB
1429 return 0;
1430
1431error:
1432 source_location_destroy(_src_loc);
1433 bt_dwarf_die_destroy(die);
1434 return -1;
1435}
1436
1437/**
1438 * Get the source location (file name and line number) for a given
1439 * address within a compile unit (CU).
1440 *
1441 * On success, the out parameter `src_loc` is set if found. On
1442 * failure, it remains unchanged.
1443 *
d5ddf820 1444 * @param cu bt_dwarf_cu instance for the compile unit which
c40a57e5
AB
1445 * may contain the address
1446 * @param addr Virtual memory address for which to find the
1447 * source location
1448 * @param src_loc Out parameter, the source location
1449 * @returns 0 on success, -1 on failure
1450 */
1451static
d5ddf820 1452int bin_info_lookup_cu_src_loc(struct bt_dwarf_cu *cu, uint64_t addr,
c40a57e5
AB
1453 struct source_location **src_loc)
1454{
1455 int ret = 0;
1456 struct source_location *_src_loc = NULL;
1457
1458 if (!cu || !src_loc) {
1459 goto error;
1460 }
1461
d5ddf820 1462 ret = bin_info_lookup_cu_src_loc_inl(cu, addr, &_src_loc);
c40a57e5
AB
1463 if (ret) {
1464 goto error;
1465 }
1466
1467 if (_src_loc) {
1468 goto end;
1469 }
1470
d5ddf820 1471 ret = bin_info_lookup_cu_src_loc_no_inl(cu, addr, &_src_loc);
c40a57e5
AB
1472 if (ret) {
1473 goto error;
1474 }
1475
1476 if (_src_loc) {
1477 goto end;
1478 }
1479
1480end:
1481 if (_src_loc) {
1482 *src_loc = _src_loc;
1483 }
1484
1485 return 0;
1486
1487error:
1488 source_location_destroy(_src_loc);
1489 return -1;
1490}
1491
1492BT_HIDDEN
d5ddf820 1493int bin_info_lookup_source_location(struct bin_info *bin, uint64_t addr,
c40a57e5
AB
1494 struct source_location **src_loc)
1495{
1496 struct bt_dwarf_cu *cu = NULL;
1497 struct source_location *_src_loc = NULL;
1498
d5ddf820 1499 if (!bin || !src_loc) {
c40a57e5
AB
1500 goto error;
1501 }
1502
ca9f27f3
FD
1503 /*
1504 * If the bin_info has a build id but it does not match the build id
1505 * that was found on the file system, return an error.
1506 */
1507 if (bin->build_id && !bin->file_build_id_matches) {
1508 goto error;
1509 }
1510
c40a57e5 1511 /* Set DWARF info if it hasn't been accessed yet. */
d5ddf820
AB
1512 if (!bin->dwarf_info && !bin->is_elf_only) {
1513 if (bin_info_set_dwarf_info(bin)) {
c40a57e5 1514 /* Failed to set DWARF info. */
d5ddf820 1515 bin->is_elf_only = true;
c40a57e5
AB
1516 }
1517 }
1518
d5ddf820 1519 if (bin->is_elf_only) {
c40a57e5
AB
1520 /* We cannot lookup source location without DWARF info. */
1521 goto error;
1522 }
1523
d5ddf820 1524 if (!bin_info_has_address(bin, addr)) {
c40a57e5
AB
1525 goto error;
1526 }
1527
1528 /*
1529 * Addresses in ELF and DWARF are relative to base address for
1530 * PIC, so make the address argument relative too if needed.
1531 */
d5ddf820
AB
1532 if (bin->is_pic) {
1533 addr -= bin->low_addr;
c40a57e5
AB
1534 }
1535
d5ddf820 1536 cu = bt_dwarf_cu_create(bin->dwarf_info);
c40a57e5
AB
1537 if (!cu) {
1538 goto error;
1539 }
1540
1541 while (bt_dwarf_cu_next(cu) == 0) {
1542 int ret;
1543
d5ddf820 1544 ret = bin_info_lookup_cu_src_loc(cu, addr, &_src_loc);
c40a57e5
AB
1545 if (ret) {
1546 goto error;
1547 }
1548
1549 if (_src_loc) {
1550 break;
1551 }
1552 }
1553
1554 bt_dwarf_cu_destroy(cu);
1555 if (_src_loc) {
1556 *src_loc = _src_loc;
1557 }
1558
1559 return 0;
1560
1561error:
1562 source_location_destroy(_src_loc);
1563 bt_dwarf_cu_destroy(cu);
1564 return -1;
1565}
This page took 0.114372 seconds and 4 git commands to generate.