Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:jcejka:branches:SUSE:SLE-15-SP2:Update
gdb
0001-PR-gdb-27570-missing-support-for-debuginfo...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-PR-gdb-27570-missing-support-for-debuginfod-in-core_.patch of Package gdb
From b91f93a02c9c32e55073c0f18b330a6a9c5cfa34 Mon Sep 17 00:00:00 2001 From: Aaron Merey <amerey@redhat.com> Date: Wed, 2 Mar 2022 20:00:59 -0500 Subject: [PATCH] PR gdb/27570: missing support for debuginfod in core_target::build_file_mappings Add debuginfod support to core_target::build_file_mappings and locate_exec_from_corefile_build_id to enable the downloading of missing executables and shared libraries referenced in core files. Also add debuginfod support to solib_map_sections so that previously downloaded shared libraries can be retrieved from the local debuginfod cache. When core file shared libraries are found locally, verify that their build-ids match the corresponding build-ids found in the core file. If there is a mismatch, attempt to query debuginfod for the correct build and print a warning if unsuccessful: warning: Build-id of /lib64/libc.so.6 does not match core file. Also disable debuginfod when gcore invokes gdb. Debuginfo is not needed for core file generation so debuginfod queries will slow down gcore unnecessarily. --- gdb/corelow.c | 28 ++++++++++ gdb/debuginfod-support.c | 51 +++++++++++++++++++ gdb/debuginfod-support.h | 17 +++++++ gdb/gcore.in | 2 +- gdb/solib.c | 32 ++++++++++++ .../gdb.debuginfod/fetch_src_and_symbols.exp | 22 ++++++++ 6 files changed, 151 insertions(+), 1 deletion(-) Index: gdb-11.1/gdb/corelow.c =================================================================== --- gdb-11.1.orig/gdb/corelow.c +++ gdb-11.1/gdb/corelow.c @@ -50,6 +50,8 @@ #include "gdbsupport/filestuff.h" #include "build-id.h" #include "gdbsupport/pathstuff.h" +#include "gdbsupport/scoped_fd.h" +#include "debuginfod-support.h" #include <unordered_map> #include <unordered_set> #include "gdbcmd.h" @@ -233,6 +235,11 @@ core_target::build_file_mappings () canonical) pathname will be provided. */ gdb::unique_xmalloc_ptr<char> expanded_fname = exec_file_find (filename, NULL); + + if (expanded_fname == nullptr && build_id != nullptr) + debuginfod_exec_query (build_id->data, build_id->size, + filename, &expanded_fname); + if (expanded_fname == nullptr) { m_core_unavailable_mappings.emplace_back (start, end - start); @@ -418,6 +425,27 @@ locate_exec_from_corefile_build_id (bfd = build_id_to_exec_bfd (build_id->size, build_id->data, &build_id_filename); + if (execbfd == nullptr) + { + /* Attempt to query debuginfod for the executable. */ + gdb::unique_xmalloc_ptr<char> execpath; + scoped_fd fd = debuginfod_exec_query (build_id->data, build_id->size, + abfd->filename, &execpath); + + if (fd.get () >= 0) + { + execbfd = gdb_bfd_open (execpath.get (), gnutarget); + + if (execbfd == nullptr) + warning (_("\"%s\" from debuginfod cannot be opened as bfd: %s"), + execpath.get (), + gdb_bfd_errmsg (bfd_get_error (), nullptr).c_str ()); + else if (!build_id_verify (execbfd.get (), build_id->size, + build_id->data)) + execbfd.reset (nullptr); + } + } + if (execbfd != nullptr) { exec_file_attach (bfd_get_filename (execbfd.get ()), from_tty); Index: gdb-11.1/gdb/debuginfod-support.c =================================================================== --- gdb-11.1.orig/gdb/debuginfod-support.c +++ gdb-11.1/gdb/debuginfod-support.c @@ -41,6 +41,17 @@ debuginfod_debuginfo_query (const unsign { return scoped_fd (-ENOSYS); } + +scoped_fd +debuginfod_exec_query (const unsigned char *build_id, + int build_id_len, + const char *filename, + gdb::unique_xmalloc_ptr<char> *destname) +{ + return scoped_fd (-ENOSYS); +} + + #else #include <elfutils/debuginfod.h> @@ -189,6 +200,43 @@ debuginfod_debuginfo_query (const unsign safe_strerror (-fd.get ()), styled_string (file_name_style.style (), filename)); + if (fd.get () >= 0) + destname->reset (dname); + + return fd; +} + +/* See debuginfod-support.h */ + +scoped_fd +debuginfod_exec_query (const unsigned char *build_id, + int build_id_len, + const char *filename, + gdb::unique_xmalloc_ptr<char> *destname) +{ + const char *urls_env_var = getenv (DEBUGINFOD_URLS_ENV_VAR); + if (urls_env_var == NULL || urls_env_var[0] == '\0') + return scoped_fd (-ENOSYS); + + debuginfod_client *c = get_debuginfod_client (); + + if (c == nullptr) + return scoped_fd (-ENOMEM); + + char *dname = nullptr; + user_data data ("executable for", filename); + + debuginfod_set_user_data (c, &data); + + scoped_fd fd (debuginfod_find_executable (c, build_id, build_id_len, &dname)); + debuginfod_set_user_data (c, nullptr); + + if (fd.get () < 0 && fd.get () != -ENOENT) + printf_filtered (_("Download failed: %s. " \ + "Continuing without executable for %ps.\n"), + safe_strerror (-fd.get ()), + styled_string (file_name_style.style (), filename)); + if (fd.get () >= 0) destname->reset (dname); Index: gdb-11.1/gdb/debuginfod-support.h =================================================================== --- gdb-11.1.orig/gdb/debuginfod-support.h +++ gdb-11.1/gdb/debuginfod-support.h @@ -61,4 +61,21 @@ debuginfod_debuginfo_query (const unsign const char *filename, gdb::unique_xmalloc_ptr<char> *destname); +/* Query debuginfod servers for an executable file with BUILD_ID. + BUILD_ID can be given as a binary blob or a null-terminated string. + If given as a binary blob, BUILD_ID_LEN should be the number of bytes. + If given as a null-terminated string, BUILD_ID_LEN should be 0. + + FILENAME should be the name or path associated with the executable. + It is used for printing messages to the user. + + If the file is successfully retrieved, its path on the local machine + is stored in DESTNAME. If GDB is not built with debuginfod, this + function returns -ENOSYS. */ + +extern scoped_fd debuginfod_exec_query (const unsigned char *build_id, + int build_id_len, + const char *filename, + gdb::unique_xmalloc_ptr<char> + *destname); #endif /* DEBUGINFOD_SUPPORT_H */ Index: gdb-11.1/gdb/gcore.in =================================================================== --- gdb-11.1.orig/gdb/gcore.in +++ gdb-11.1/gdb/gcore.in @@ -98,7 +98,7 @@ do # `</dev/null' to avoid touching interactive terminal if it is # available but not accessible as GDB would get stopped on SIGTTIN. "$binary_path/@GDB_TRANSFORM_NAME@" </dev/null \ - --nx --batch --readnever \ + --nx --batch --readnever -iex 'set debuginfod enabled off' \ -ex "set pagination off" -ex "set height 0" -ex "set width 0" \ "${dump_all_cmds[@]}" \ -ex "attach $pid" -ex "gcore $prefix.$pid" -ex detach -ex quit Index: gdb-11.1/gdb/solib.c =================================================================== --- gdb-11.1.orig/gdb/solib.c +++ gdb-11.1/gdb/solib.c @@ -21,6 +21,7 @@ #include <sys/types.h> #include <fcntl.h> +#include <unordered_map> #include "symtab.h" #include "bfd.h" #include "build-id.h" @@ -47,6 +48,8 @@ #include "filesystem.h" #include "gdb_bfd.h" #include "gdbsupport/filestuff.h" +#include "gdbsupport/scoped_fd.h" +#include "debuginfod-support.h" #include "source.h" #include "cli/cli-style.h" @@ -585,6 +588,36 @@ solib_map_sections (struct so_list *so) gdb::unique_xmalloc_ptr<char> filename (tilde_expand (so->so_name)); gdb_bfd_ref_ptr abfd (ops->bfd_open (filename.get ())); + gdb::unique_xmalloc_ptr<char> build_id_hexstr + = get_cbfd_soname_build_id (current_program_space->cbfd, so->so_name); + + /* If we already know the build-id of this solib from a core file, verify + it matches ABFD's build-id. If there is a mismatch or the solib wasn't + found, attempt to query debuginfod for the correct solib. */ + if (build_id_hexstr.get () != nullptr) + { + bool mismatch = false; + + if (abfd != nullptr && abfd->build_id != nullptr) + { + std::string build_id = build_id_to_string (abfd->build_id); + + if (build_id != build_id_hexstr.get ()) + mismatch = true; + } + if (abfd == nullptr || mismatch) + { + scoped_fd fd = debuginfod_exec_query ((const unsigned char*) + build_id_hexstr.get (), + 0, so->so_name, &filename); + + if (fd.get () >= 0) + abfd = ops->bfd_open (filename.get ()); + else if (mismatch) + warning (_("Build-id of %ps does not match core file."), + styled_string (file_name_style.style (), filename.get ())); + } + } if (abfd == NULL) return 0; Index: gdb-11.1/gdb/testsuite/gdb.debuginfod/fetch_src_and_symbols.exp =================================================================== --- gdb-11.1.orig/gdb/testsuite/gdb.debuginfod/fetch_src_and_symbols.exp +++ gdb-11.1/gdb/testsuite/gdb.debuginfod/fetch_src_and_symbols.exp @@ -58,6 +58,11 @@ if { [gdb_compile "$sourcetmp" "$binfile return -1 } +if { [gdb_compile "$sourcetmp" "${binfile}2" executable {debug}] != "" } { + fail "compile" + return -1 +} + # Write some assembly that just has a .gnu_debugaltlink section. # Copied from testsuite/gdb.dwarf2/dwzbuildid.exp. proc write_just_debugaltlink {filename dwzname buildid} { @@ -109,6 +114,8 @@ proc write_dwarf_file {filename buildid } } +set corefile [standard_output_file "corefile"] + proc no_url { } { global binfile outputdir debugdir @@ -162,6 +169,16 @@ proc no_url { } { gdb_test "file ${binfile}_alt.o" \ ".*could not find '.gnu_debugaltlink'.*" \ "file [file tail ${binfile}_alt.o]" + + # Generate a core file and test that gdb cannot find the executable + clean_restart ${binfile}2 + gdb_test "start" "Temporary breakpoint.*" + gdb_test "generate-core-file $::corefile" "Saved corefile $::corefile" \ + "file [file tail $::corefile] gen" + file rename -force ${binfile}2 $debugdir + + clean_restart + gdb_test "core $::corefile" ".*in ?? ().*" "file [file tail $::corefile]" } proc local_url { } { @@ -228,6 +245,11 @@ proc local_url { } { gdb_test "br main" "Breakpoint 1 at.*file.*" gdb_test "l" ".*This program is distributed in the hope.*" + # gdb should now find the executable file + clean_restart + gdb_test "core $::corefile" ".*return 0.*" "file [file tail $::corefile]" \ + "Enable debuginfod?.*" "y" + # gdb should now find the debugaltlink file clean_restart gdb_test "file ${binfile}_alt.o" \
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor