From: Mark Wielaard Date: Sat, 6 Jun 2015 13:06:22 +0000 (+0200) Subject: libdwfl: Report core module segment even when NT_FILE build-id doesn't match. X-Git-Tag: elfutils-0.162~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5022e5e3b74d579d44fcf599577e2a2a4c93f15;p=thirdparty%2Felfutils.git libdwfl: Report core module segment even when NT_FILE build-id doesn't match. dwfl_segment_report_module can take the NT_FILE note contents to find the matching file for the module on the file system from the core file. If the file exists but the build-id didn't match we would not report the module. But we should just report the module anyway, ignore the file, and try to match the ELF image another way. This issue can be replicated by building and running make check in /tmp/elfutils with run-backtrace-core-aarch64.sh since that core file includes a NT_FILE note pointing to /tmp/elfutils/tests/backtrace-child. Which won't match if it was just recompiled. Signed-off-by: Mark Wielaard --- diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 4de383246..0daf893c2 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,9 @@ +2015-06-05 Mark Wielaard + + * dwfl_segment_report_module.c (dwfl_segment_report_module): + If the note_file exists, but the build_id doesn't match discard + the file and continue reporting. + 2015-06-01 Mark Wielaard * dwfl_build_id_find_elf.c (__libdwfl_open_by_build_id): Copy path diff --git a/libdwfl/dwfl_segment_report_module.c b/libdwfl/dwfl_segment_report_module.c index 705639d26..a0f07ada7 100644 --- a/libdwfl/dwfl_segment_report_module.c +++ b/libdwfl/dwfl_segment_report_module.c @@ -696,8 +696,13 @@ dwfl_segment_report_module (Dwfl *dwfl, int ndx, const char *name, } if (invalid) { - free (build_id); - return finish (); + /* The file was there, but the build_id didn't match. We + still want to report the module, but need to get the ELF + some other way if possible. */ + close (fd); + fd = -1; + elf_end (elf); + elf = NULL; } }