]> git.pld-linux.org Git - packages/gdb.git/blobdiff - gdb-6.6-buildid-locate.patch
- updated to 11.2
[packages/gdb.git] / gdb-6.6-buildid-locate.patch
index bc440b38bb6236a59b5cb9d8f1170f44e0c5341c..a463e37b5de2c9fd6008181483140fb23939cb86 100644 (file)
-Index: gdb-6.8.50.20090302/gdb/corelow.c
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/corelow.c     2009-02-23 01:03:48.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/corelow.c  2009-03-07 17:04:57.000000000 +0100
-@@ -45,6 +45,10 @@
- #include "exceptions.h"
- #include "solib.h"
- #include "filenames.h"
-+#include "auxv.h"
+From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
+From: Fedora GDB patches <invalid@email.com>
+Date: Fri, 27 Oct 2017 21:07:50 +0200
+Subject: gdb-6.6-buildid-locate.patch
+
+;; New locating of the matching binaries from the pure core file (build-id).
+;;=push+jan
+
+diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h
+--- a/bfd/libbfd-in.h
++++ b/bfd/libbfd-in.h
+@@ -115,7 +115,7 @@ static inline char *
+ bfd_strdup (const char *str)
+ {
+   size_t len = strlen (str) + 1;
+-  char *buf = bfd_malloc (len);
++  char *buf = (char *) bfd_malloc (len);
+   if (buf != NULL)
+     memcpy (buf, str, len);
+   return buf;
+diff --git a/bfd/libbfd.h b/bfd/libbfd.h
+--- a/bfd/libbfd.h
++++ b/bfd/libbfd.h
+@@ -120,7 +120,7 @@ static inline char *
+ bfd_strdup (const char *str)
+ {
+   size_t len = strlen (str) + 1;
+-  char *buf = bfd_malloc (len);
++  char *buf = (char *) bfd_malloc (len);
+   if (buf != NULL)
+     memcpy (buf, str, len);
+   return buf;
+diff --git a/gdb/build-id.c b/gdb/build-id.c
+--- a/gdb/build-id.c
++++ b/gdb/build-id.c
+@@ -24,13 +24,70 @@
+ #include "gdbsupport/gdb_vecs.h"
+ #include "symfile.h"
+ #include "objfiles.h"
++#include <sys/stat.h>
++#include "elf-bfd.h"
 +#include "elf/common.h"
-+#include "objfiles.h"
++#include "elf/external.h"
++#include "elf/internal.h"
+ #include "filenames.h"
++#include "gdb_bfd.h"
 +#include "gdbcmd.h"
- #ifndef O_LARGEFILE
-@@ -267,6 +271,56 @@ add_to_thread_list (bfd *abfd, asection 
-     inferior_ptid = ptid;                      /* Yes, make it current */
- }
-+static int build_id_core_loads = 1;
-+
-+static void
-+build_id_locate_exec (int from_tty)
-+{
-+  CORE_ADDR at_entry;
-+  struct build_id *build_id;
-+  char *exec_filename, *debug_filename;
-+  char *build_id_filename;
-+
-+  if (exec_bfd != NULL)
-+    return;
-+
-+  if (target_auxv_search (&current_target, AT_ENTRY, &at_entry) <= 0)
-+    return;
-+
-+  build_id = build_id_addr_get (at_entry);
-+  if (build_id == NULL)
-+    return;
-+
-+  exec_filename = build_id_to_filename (build_id, &build_id_filename, 0);
-+  if (exec_filename != NULL)
-+    exec_file_attach (exec_filename, from_tty);
-+  else
-+    debug_print_missing (_("the main executable file"), build_id_filename);
-+  xfree (build_id_filename);
-+
-+  /* `.note.gnu.build-id' section exists even for files without a separate
-+     debuginfo.  */
-+  debug_filename = build_id_to_filename (build_id, &build_id_filename, 1);
-+  if (debug_filename != NULL)
-+    {
-+      symbol_file_add_main (debug_filename, from_tty);
-+      xfree (debug_filename);
-+    }
-+  else
-+    {
-+      if (exec_filename != NULL)
-+      symbol_file_add_main (exec_filename, from_tty);
-+      /* For EXEC_FILENAME NULL we were already complaining above.  */
-+      if (symfile_objfile == NULL && exec_filename != NULL)
-+      debug_print_missing (exec_filename, build_id_filename);
-+    }
-+  xfree (build_id_filename);
-+
-+  xfree (exec_filename);
-+
-+  /* No automatic SOLIB_ADD as the libraries would get read twice.  */
-+}
-+
- /* This routine opens and sets up the core file bfd.  */
- static void
-@@ -363,6 +417,12 @@ core_open (char *filename, int from_tty)
-   push_target (&core_ops);
-   discard_cleanups (old_chain);
-+  /* Find the build_id identifiers.  If it gets executed after
-+     POST_CREATE_INFERIOR we would clash with asking to discard the already
-+     loaded VDSO symbols.  */
-+  if (build_id_core_loads != 0)
-+    build_id_locate_exec (from_tty);
-+
-   add_inferior_silent (corelow_pid);
-   /* Do this before acknowledging the inferior, so if
-@@ -751,4 +811,11 @@ _initialize_corelow (void)
-   init_core_ops ();
-   add_target (&core_ops);
-+
-+  add_setshow_boolean_cmd ("build-id-core-loads", class_files,
-+                         &build_id_core_loads, _("\
-+Set whether CORE-FILE loads the build-id associated files automatically."), _("\
-+Show whether CORE-FILE loads the build-id associated files automatically.."),
-+                         NULL, NULL, NULL,
-+                         &setlist, &showlist);
- }
-Index: gdb-6.8.50.20090302/gdb/doc/gdb.texinfo
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/doc/gdb.texinfo       2009-03-07 17:04:56.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/doc/gdb.texinfo    2009-03-07 17:04:57.000000000 +0100
-@@ -13294,6 +13294,27 @@ information files.
- @end table
-+You can also adjust the current verbosity of the @dfn{build id} locating.
-+
-+@table @code
-+
-+@kindex set build-id-verbose
-+@item set build-id-verbose 0
-+No additional messages are printed.
-+
-+@item set build-id-verbose 1
-+Missing separate debug filenames are printed.
-+
-+@item set build-id-verbose 2
-+Missing separate debug filenames are printed and also all the parsing of the
-+binaries to find their @dfn{build id} content is printed.
-+
-+@kindex show build-id-verbose
-+@item show build-id-verbose
-+Show the current verbosity value for the @dfn{build id} content locating.
-+
-+@end table
-+
- @cindex @code{.gnu_debuglink} sections
- @cindex debug link sections
- A debug link is a special section of the executable file named
-Index: gdb-6.8.50.20090302/gdb/solib-svr4.c
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/solib-svr4.c  2009-03-07 17:04:52.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/solib-svr4.c       2009-03-07 17:04:57.000000000 +0100
-@@ -1000,9 +1000,33 @@ svr4_current_sos (void)
-                    safe_strerror (errcode));
-         else
-           {
--            strncpy (new->so_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
--            new->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
--            strcpy (new->so_original_name, new->so_name);
-+            struct build_id *build_id;
-+
-+            strncpy (new->so_original_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
-+            new->so_original_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
-+            /* May get overwritten below.  */
-+            strcpy (new->so_name, new->so_original_name);
-+
-+            build_id = build_id_addr_get (LM_DYNAMIC_FROM_LINK_MAP (new));
-+            if (build_id != NULL)
-+              {
-+                char *name, *build_id_filename;
-+
-+                /* Missing the build-id matching separate debug info file
-+                   would be handled while SO_NAME gets loaded.  */
-+                name = build_id_to_filename (build_id, &build_id_filename, 0);
-+                if (name != NULL)
-+                  {
-+                    strncpy (new->so_name, name, SO_NAME_MAX_PATH_SIZE - 1);
-+                    new->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
-+                    xfree (name);
-+                  }
-+                else
-+                  debug_print_missing (new->so_name, build_id_filename);
-+
-+                xfree (build_id_filename);
-+                xfree (build_id);
-+              }
-           }
-         xfree (buffer);
-Index: gdb-6.8.50.20090302/gdb/symfile.c
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/symfile.c     2009-03-07 17:04:53.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/symfile.c  2009-03-07 17:22:21.000000000 +0100
-@@ -54,6 +54,7 @@
- #include "elf-bfd.h"
- #include "solib.h"
- #include "remote.h"
-+#include "libbfd.h"
- #include <sys/types.h>
- #include <fcntl.h>
-@@ -1185,16 +1186,65 @@ symbol_file_clear (int from_tty)
-       printf_unfiltered (_("No symbol file now.\n"));
- }
-+/* Locate NT_GNU_BUILD_ID and return its matching debug filename.
-+   FIXME: NOTE decoding should be unified with the BFD core notes decoding.  */
+ #include "gdbcore.h"
++#include "objfiles.h"
++#include "observable.h"
++#include "symfile.h"
 +
 +#define BUILD_ID_VERBOSE_NONE 0
 +#define BUILD_ID_VERBOSE_FILENAMES 1
@@ -198,15 +61,10 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +  fprintf_filtered (file, _("Verbosity level of the build-id locator is %s.\n"),
 +                  value);
 +}
++/* Locate NT_GNU_BUILD_ID and return its matching debug filename.
++   FIXME: NOTE decoding should be unified with the BFD core notes decoding.  */
 +
- struct build_id
-   {
-     size_t size;
-     gdb_byte data[1];
-   };
--/* Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
-+struct build_id *
++static struct bfd_build_id *
 +build_id_buf_get (bfd *templ, gdb_byte *buf, bfd_size_type size)
 +{
 +  bfd_byte *p;
@@ -218,19 +76,19 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +      Elf_External_Note *xnp = (Elf_External_Note *) p;
 +      size_t namesz = H_GET_32 (templ, xnp->namesz);
 +      size_t descsz = H_GET_32 (templ, xnp->descsz);
-+      bfd_byte *descdata = xnp->name + BFD_ALIGN (namesz, 4);
++      bfd_byte *descdata = (gdb_byte *) xnp->name + BFD_ALIGN (namesz, 4);
 +
 +      if (H_GET_32 (templ, xnp->type) == NT_GNU_BUILD_ID
 +        && namesz == sizeof "GNU"
 +        && memcmp (xnp->name, "GNU", sizeof "GNU") == 0)
 +      {
-+        size_t size = descsz;
-+        gdb_byte *data = (void *) descdata;
-+        struct build_id *retval;
++        size_t sz = descsz;
++        gdb_byte *data = (gdb_byte *) descdata;
++        struct bfd_build_id *retval;
 +
-+        retval = xmalloc (sizeof *retval - 1 + size);
-+        retval->size = size;
-+        memcpy (retval->data, data, size);
++        retval = (struct bfd_build_id *) xmalloc (sizeof *retval - 1 + sz);
++        retval->size = sz;
++        memcpy (retval->data, data, sz);
 +
 +        return retval;
 +      }
@@ -238,30 +96,29 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +    }
 +  return NULL;
 +}
-+
-+/* Separate debuginfo files have corrupted PHDR but SHDR is correct there.
-+   Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
  
- static struct build_id *
+ /* See build-id.h.  */
+ const struct bfd_build_id *
 -build_id_bfd_get (bfd *abfd)
 +build_id_bfd_shdr_get (bfd *abfd)
  {
-   struct build_id *retval;
-@@ -1210,6 +1260,348 @@ build_id_bfd_get (bfd *abfd)
-   return retval;
+   if (!bfd_check_format (abfd, bfd_object)
+       && !bfd_check_format (abfd, bfd_core))
+@@ -43,6 +100,348 @@ build_id_bfd_get (bfd *abfd)
+   return NULL;
  }
  
 +/* Core files may have missing (corrupt) SHDR but PDHR is correct there.
 +   bfd_elf_bfd_from_remote_memory () has too much overhead by
 +   allocating/reading all the available ELF PT_LOADs.  */
 +
-+static struct build_id *
++static struct bfd_build_id *
 +build_id_phdr_get (bfd *templ, bfd_vma loadbase, unsigned e_phnum,
 +                 Elf_Internal_Phdr *i_phdr)
 +{
 +  int i;
-+  struct build_id *retval = NULL;
++  struct bfd_build_id *retval = NULL;
 +
 +  for (i = 0; i < e_phnum; i++)
 +    if (i_phdr[i].p_type == PT_NOTE && i_phdr[i].p_filesz > 0)
@@ -270,7 +127,7 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +      gdb_byte *buf;
 +      int err;
 +
-+      buf = xmalloc (hdr->p_filesz);
++      buf = (gdb_byte *) xmalloc (hdr->p_filesz);
 +      err = target_read_memory (loadbase + i_phdr[i].p_vaddr, buf,
 +                                hdr->p_filesz);
 +      if (err == 0)
@@ -344,7 +201,7 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +/* Translate an ELF program header table entry in external format into an
 +   ELF program header table entry in internal format.  */
 +
-+void
++static void
 +elf_swap_phdr_in (bfd *abfd,
 +                const Elf64_External_Phdr *src64,
 +                Elf_Internal_Phdr *dst)
@@ -474,8 +331,8 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +  x_phdrs_size = (bfd_get_arch_size (templ) == 64 ? sizeof (Elf64_External_Phdr)
 +                                              : sizeof (Elf32_External_Phdr));
 +
-+  i_phdrs = xmalloc (i_ehdr.e_phnum * (sizeof *i_phdrs + x_phdrs_size));
-+  x_phdrs_ptr = (void *) &i_phdrs[i_ehdr.e_phnum];
++  i_phdrs = (Elf_Internal_Phdr *) xmalloc (i_ehdr.e_phnum * (sizeof *i_phdrs + x_phdrs_size));
++  x_phdrs_ptr = (gdb_byte *) &i_phdrs[i_ehdr.e_phnum];
 +  err = target_read_memory (ehdr_vma + i_ehdr.e_phoff, (bfd_byte *) x_phdrs_ptr,
 +                          i_ehdr.e_phnum * x_phdrs_size);
 +  if (err)
@@ -537,22 +394,22 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +
 +static void build_id_addr_candidate (bfd *abfd, asection *sect, void *obj)
 +{
-+  if (build_id_addr >= bfd_section_vma (abfd, sect))
++  if (build_id_addr >= bfd_section_vma (sect))
 +    {
 +      struct build_id_addr_sect *candidate;
 +
-+      candidate = xmalloc (sizeof *candidate);
++      candidate = (struct build_id_addr_sect *) xmalloc (sizeof *candidate);
 +      candidate->next = build_id_addr_sect;
 +      build_id_addr_sect = candidate;
 +      candidate->sect = sect;
 +    }
 +}
 +
-+struct build_id *
++struct bfd_build_id *
 +build_id_addr_get (CORE_ADDR addr)
 +{
 +  struct build_id_addr_sect *candidate;
-+  struct build_id *retval = NULL;
++  struct bfd_build_id *retval = NULL;
 +  Elf_Internal_Phdr *i_phdr = NULL;
 +  bfd_vma loadbase = 0;
 +  unsigned e_phnum = 0;
@@ -572,7 +429,7 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +       candidate = candidate->next)
 +    {
 +      i_phdr = elf_get_phdr (core_bfd,
-+                           bfd_section_vma (core_bfd, candidate->sect),
++                           bfd_section_vma (candidate->sect),
 +                           &e_phnum, &loadbase);
 +      if (i_phdr != NULL)
 +      break;
@@ -594,68 +451,261 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +  return retval;
 +}
 +
- /* Return if FILENAME has NT_GNU_BUILD_ID matching the CHECK value.  */
+ /* See build-id.h.  */
  
static int
-@@ -1227,7 +1619,7 @@ build_id_verify (const char *filename, s
-   if (abfd == NULL)
-     return 0;
+ int
+@@ -51,7 +450,7 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
+   const struct bfd_build_id *found;
+   int retval = 0;
  
 -  found = build_id_bfd_get (abfd);
 +  found = build_id_bfd_shdr_get (abfd);
  
    if (found == NULL)
-     warning (_("File \"%s\" has no build-id, file skipped"), filename);
-@@ -1246,8 +1638,9 @@ build_id_verify (const char *filename, s
+     warning (_("File \"%s\" has no build-id, file skipped"),
+@@ -66,56 +465,159 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
    return retval;
  }
  
--static char *
--build_id_to_debug_filename (struct build_id *build_id)
-+char *
-+build_id_to_filename (struct build_id *build_id, char **link_return,
-+                    int add_debug_suffix)
++static char *
++link_resolve (const char *symlink, int level)
++{
++  char buf[PATH_MAX + 1], *target, *retval;
++  ssize_t got;
++
++  if (level > 10)
++    return xstrdup (symlink);
++
++  got = readlink (symlink, buf, sizeof (buf));
++  if (got < 0 || got >= sizeof (buf))
++    return xstrdup (symlink);
++  buf[got] = '\0';
++
++  if (IS_ABSOLUTE_PATH (buf))
++    target = xstrdup (buf);
++  else
++    {
++      const std::string dir (ldirname (symlink));
++
++      target = xstrprintf ("%s"
++#ifndef HAVE_DOS_BASED_FILE_SYSTEM
++                         "/"
++#else /* HAVE_DOS_BASED_FILE_SYSTEM */
++                         "\\"
++#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
++                         "%s", dir.c_str(), buf);
++    }
++
++  retval = link_resolve (target, level + 1);
++  xfree (target);
++  return retval;
++}
++
+ /* Helper for build_id_to_debug_bfd.  LINK is a path to a potential
+    build-id-based separate debug file, potentially a symlink to the real file.
+    If the file exists and matches BUILD_ID, return a BFD reference to it.  */
+ static gdb_bfd_ref_ptr
+-build_id_to_debug_bfd_1 (const std::string &link, size_t build_id_len,
+-                       const bfd_byte *build_id)
++build_id_to_debug_bfd_1 (const std::string &orig_link, size_t build_id_len,
++                       const bfd_byte *build_id, char **link_return)
  {
-   char *link, *s, *retval = NULL;
-   gdb_byte *data = build_id->data;
-@@ -1255,7 +1648,9 @@ build_id_to_debug_filename (struct build
-   /* DEBUG_FILE_DIRECTORY/.build-id/ab/cdef */
-   link = xmalloc (strlen (debug_file_directory) + (sizeof "/.build-id/" - 1) + 1
--                + 2 * size + (sizeof ".debug" - 1) + 1);
-+                + 2 * size
-+                + (add_debug_suffix ? sizeof ".debug" - 1 : 0)
-+                + 1);
-   s = link + sprintf (link, "%s/.build-id/", debug_file_directory);
-   if (size > 0)
++  gdb_bfd_ref_ptr ret_bfd = {};
++  std::string ret_link;
++
+   if (separate_debug_file_debug)
      {
-@@ -1266,12 +1661,14 @@ build_id_to_debug_filename (struct build
-     *s++ = '/';
-   while (size-- > 0)
-     s += sprintf (s, "%02x", (unsigned) *data++);
--  strcpy (s, ".debug");
-+  if (add_debug_suffix)
-+    strcpy (s, ".debug");
-+  else
-+    *s = 0;
+-      printf_unfiltered (_("  Trying %s..."), link.c_str ());
++      printf_unfiltered (_("  Trying %s..."), orig_link.c_str ());
+       gdb_flush (gdb_stdout);
+     }
  
-   /* lrealpath() is expensive even for the usually non-existent files.  */
-   if (access (link, F_OK) == 0)
-     retval = lrealpath (link);
--  xfree (link);
+-  /* lrealpath() is expensive even for the usually non-existent files.  */
+-  gdb::unique_xmalloc_ptr<char> filename;
+-  if (access (link.c_str (), F_OK) == 0)
+-    filename.reset (lrealpath (link.c_str ()));
+-
+-  if (filename == NULL)
++  for (unsigned seqno = 0;; seqno++)
+     {
+-      if (separate_debug_file_debug)
+-      printf_unfiltered (_(" no, unable to compute real path\n"));
++      std::string link = orig_link;
+-      return {};
+-    }
++      if (seqno > 0)
++      {
++        /* There can be multiple build-id symlinks pointing to real files
++           with the same build-id (such as hard links).  Some of the real
++           files may not be installed.  */
++
++        string_appendf (link, ".%u", seqno);
++      }
+-  /* We expect to be silent on the non-existing files.  */
+-  gdb_bfd_ref_ptr debug_bfd = gdb_bfd_open (filename.get (), gnutarget);
++      ret_link = link;
+-  if (debug_bfd == NULL)
+-    {
+-      if (separate_debug_file_debug)
+-      printf_unfiltered (_(" no, unable to open.\n"));
++      struct stat statbuf_trash;
++
++      /* `access' automatically dereferences LINK.  */
++      if (lstat (link.c_str (), &statbuf_trash) != 0)
++      {
++        /* Stop increasing SEQNO.  */
++        break;
++      }
++
++      /* lrealpath() is expensive even for the usually non-existent files.  */
++      gdb::unique_xmalloc_ptr<char> filename;
++
++      if (access (link.c_str (), F_OK) == 0)
++      filename.reset (lrealpath (link.c_str ()));
++
++      if (filename == NULL)
++      {
++        if (separate_debug_file_debug)
++          printf_unfiltered (_(" no, unable to compute real path\n"));
++
++        continue;
++      }
++
++      /* We expect to be silent on the non-existing files.  */
++      gdb_bfd_ref_ptr debug_bfd = gdb_bfd_open (filename.get (), gnutarget, -1);
+-      return {};
++      if (debug_bfd == NULL)
++      {
++        if (separate_debug_file_debug)
++          printf_unfiltered (_(" no, unable to open.\n"));
++
++        continue;
++      }
++
++      if (!build_id_verify (debug_bfd.get(), build_id_len, build_id))
++      {
++        if (separate_debug_file_debug)
++          printf_unfiltered (_(" no, build-id does not match.\n"));
++
++        continue;
++      }
++
++      ret_bfd = debug_bfd;
++      break;
+     }
  
-   if (retval != NULL && !build_id_verify (retval, build_id))
+-  if (!build_id_verify (debug_bfd.get(), build_id_len, build_id))
++  std::string link_all;
++
++  if (ret_bfd != NULL)
      {
-@@ -1279,9 +1676,142 @@ build_id_to_debug_filename (struct build
-       retval = NULL;
+       if (separate_debug_file_debug)
+-      printf_unfiltered (_(" no, build-id does not match.\n"));
+-
+-      return {};
++      printf_unfiltered (_(" yes!\n"));
++    }
++  else
++    {
++      /* If none of the real files is found report as missing file
++       always the non-.%u-suffixed file.  */
++      std::string link0 = orig_link;
++
++      /* If the symlink has target request to install the target.
++       BASE-debuginfo.rpm contains the symlink but BASE.rpm may be missing.
++       https://bugzilla.redhat.com/show_bug.cgi?id=981154  */
++      std::string link0_resolved (link_resolve (link0.c_str (), 0));
++
++      if (link_all.empty ())
++      link_all = link0_resolved;
++      else
++      {
++        /* Use whitespace instead of DIRNAME_SEPARATOR to be compatible with
++           its possible use as an argument for installation command.  */
++        link_all += " " + link0_resolved;
++      }
      }
  
+-  if (separate_debug_file_debug)
+-    printf_unfiltered (_(" yes!\n"));
 +  if (link_return != NULL)
-+    *link_return = link;
-+  else
-+    xfree (link);
++    {
++      if (ret_bfd != NULL)
++      {
++        *link_return = xstrdup (ret_link.c_str ());
++      }
++      else
++      {
++        *link_return = xstrdup (link_all.c_str ());
++      }
++    }
+-  return debug_bfd;
++  return ret_bfd;
+ }
+ /* Common code for finding BFDs of a given build-id.  This function
+@@ -124,7 +626,7 @@ build_id_to_debug_bfd_1 (const std::string &link, size_t build_id_len,
+ static gdb_bfd_ref_ptr
+ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
+-                      const char *suffix)
++                      const char *suffix, char **link_return)
+ {
+   /* Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
+      cause "/.build-id/..." lookups.  */
+@@ -147,16 +649,17 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
+       if (size > 0)
+       {
+         size--;
+-        string_appendf (link, "%02x/", (unsigned) *data++);
++        string_appendf (link, "%02x", (unsigned) *data++);
+       }
+-
++      if (size > 0)
++      link += "/";
+       while (size-- > 0)
+       string_appendf (link, "%02x", (unsigned) *data++);
+       link += suffix;
+       gdb_bfd_ref_ptr debug_bfd
+-      = build_id_to_debug_bfd_1 (link, build_id_len, build_id);
++      = build_id_to_debug_bfd_1 (link, build_id_len, build_id, link_return);
+       if (debug_bfd != NULL)
+       return debug_bfd;
+@@ -170,7 +673,8 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
+       if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) != 0)
+       {
+         link = gdb_sysroot + link;
+-        debug_bfd = build_id_to_debug_bfd_1 (link, build_id_len, build_id);
++        debug_bfd = build_id_to_debug_bfd_1 (link, build_id_len, build_id,
++                                             link_return);
+         if (debug_bfd != NULL)
+           return debug_bfd;
+       }
+@@ -179,38 +683,208 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
+   return {};
+ }
++char *
++build_id_to_filename (const struct bfd_build_id *build_id, char **link_return)
++{
++  gdb_bfd_ref_ptr abfd;
++  char *result;
 +
-+  return retval;
++  abfd = build_id_to_exec_bfd (build_id->size, build_id->data, link_return);
++  if (abfd == NULL)
++    return NULL;
++
++  result = xstrdup (bfd_get_filename (abfd.get ()));
++  return result;
 +}
 +
 +/* This MISSING_FILEPAIR_HASH tracker is used only for the duplicite messages
@@ -680,9 +730,9 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +
 +  retval = obstack_alloc (&missing_filepair_obstack, size);
 +  memset (retval, 0, size);
-   return retval;
- }
++  return retval;
++}
++
 +static hashval_t
 +missing_filepair_hash_func (const struct missing_filepair *elem)
 +{
@@ -700,8 +750,8 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +                     const struct missing_filepair *elem2)
 +{
 +  return strcmp (elem1->binary, elem2->binary) == 0
-+         && ((elem1->debug == NULL && elem2->debug == NULL)
-+           || strcmp (elem1->debug, elem2->debug) == 0);
++         && ((elem1->debug == NULL) == (elem2->debug == NULL))
++         && (elem1->debug == NULL || strcmp (elem1->debug, elem2->debug) == 0);
 +}
 +
 +static void
@@ -732,6 +782,7 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +{
 +  size_t binary_len0 = strlen (binary) + 1;
 +  size_t debug_len0 = debug ? strlen (debug) + 1 : 0;
++  struct missing_filepair missing_filepair_find;
 +  struct missing_filepair *missing_filepair;
 +  struct missing_filepair **slot;
 +
@@ -747,22 +798,18 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +      missing_filepair_xcalloc, NULL);
 +    }
 +
-+  missing_filepair = obstack_alloc (&missing_filepair_obstack,
-+                                    sizeof (*missing_filepair) - 1
-+                                    + binary_len0 + debug_len0);
-+  missing_filepair->binary = missing_filepair->data;
-+  memcpy (missing_filepair->binary, binary, binary_len0);
-+  if (debug != NULL)
-+    {
-+      missing_filepair->debug = missing_filepair->binary + binary_len0;
-+      memcpy (missing_filepair->debug, debug, debug_len0);
-+    }
-+  else
-+    missing_filepair->debug = NULL;
++  /* Use MISSING_FILEPAIR_FIND first instead of calling obstack_alloc with
++     obstack_free in the case of a (rare) match.  The problem is ALLOC_F for
++     MISSING_FILEPAIR_HASH allocates from MISSING_FILEPAIR_OBSTACK maintenance
++     structures for MISSING_FILEPAIR_HASH.  Calling obstack_free would possibly
++     not to free only MISSING_FILEPAIR but also some such structures (allocated
++     during the htab_find_slot call).  */
 +
++  missing_filepair_find.binary = (char *) binary;
++  missing_filepair_find.debug = (char *) debug;
 +  slot = (struct missing_filepair **) htab_find_slot (missing_filepair_hash,
-+                                                      missing_filepair,
-+                                                      INSERT);
++                                                    &missing_filepair_find,
++                                                    INSERT);
 +
 +  /* While it may be still printed duplicitely with the missing debuginfo file
 +   * it is due to once printing about the binary file build-id link and once
@@ -770,10 +817,21 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +   * located in the debuginfo package.  */
 +
 +  if (*slot != NULL)
++    return;
++
++  missing_filepair = (struct missing_filepair *) obstack_alloc (&missing_filepair_obstack,
++                                                              sizeof (*missing_filepair) - 1
++                                                              + binary_len0 + debug_len0);
++  missing_filepair->binary = missing_filepair->data;
++  memcpy (missing_filepair->binary, binary, binary_len0);
++  if (debug != NULL)
 +    {
-+      obstack_free (&missing_filepair_obstack, missing_filepair);
-+      return;
++      missing_filepair->debug = missing_filepair->binary + binary_len0;
++      memcpy (missing_filepair->debug, debug, debug_len0);
 +    }
++  else
++    missing_filepair->debug = NULL;
++
 +  *slot = missing_filepair;
 +
 +  /* We do not collect and flush these messages as each such message
@@ -786,154 +844,78 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +                      debug);
 +}
 +
- static char *
- get_debug_link_info (struct objfile *objfile, unsigned long *crc32_out)
+ /* See build-id.h.  */
+ gdb_bfd_ref_ptr
+-build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id)
++build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id,
++                     char **link_return)
  {
-@@ -1364,32 +1894,36 @@ static char *
- find_separate_debug_file (struct objfile *objfile)
+-  return build_id_to_bfd_suffix (build_id_len, build_id, ".debug");
++  return build_id_to_bfd_suffix (build_id_len, build_id, ".debug",
++                               link_return);
+ }
+ /* See build-id.h.  */
+ gdb_bfd_ref_ptr
+-build_id_to_exec_bfd (size_t build_id_len, const bfd_byte *build_id)
++build_id_to_exec_bfd (size_t build_id_len, const bfd_byte *build_id,
++                    char **link_return)
  {
-   asection *sect;
--  char *basename;
--  char *dir;
--  char *debugfile;
-+  char *basename = NULL;
-+  char *dir = NULL;
-+  char *debugfile = NULL;
-   char *name_copy;
--  char *canon_name;
-+  char *canon_name = NULL;
-   bfd_size_type debuglink_size;
-   unsigned long crc32;
-   int i;
-   struct build_id *build_id;
-+  char *build_id_filename = NULL;
+-  return build_id_to_bfd_suffix (build_id_len, build_id, "");
++  return build_id_to_bfd_suffix (build_id_len, build_id, "", link_return);
+ }
+ /* See build-id.h.  */
+ std::string
+-find_separate_debug_file_by_buildid (struct objfile *objfile)
++find_separate_debug_file_by_buildid (struct objfile *objfile,
++                      gdb::unique_xmalloc_ptr<char> *build_id_filename_return)
+ {
+   const struct bfd_build_id *build_id;
  
 -  build_id = build_id_bfd_get (objfile->obfd);
++  if (build_id_filename_return)
++    *build_id_filename_return = NULL;
++
 +  build_id = build_id_bfd_shdr_get (objfile->obfd);
    if (build_id != NULL)
      {
-       char *build_id_name;
+       if (separate_debug_file_debug)
+       printf_unfiltered (_("\nLooking for separate debug info (build-id) for "
+                            "%s\n"), objfile_name (objfile));
  
--      build_id_name = build_id_to_debug_filename (build_id);
-+      build_id_name = build_id_to_filename (build_id, &build_id_filename, 1);
-       xfree (build_id);
-       /* Prevent looping on a stripped .debug file.  */
-       if (build_id_name != NULL && strcmp (build_id_name, objfile->name) == 0)
-         {
--        warning (_("\"%s\": separate debug info file has no debug info"),
-+        warning (_("\"%s\": The separate debug info file has no debug info"),
-                  build_id_name);
-         xfree (build_id_name);
-       }
-       else if (build_id_name != NULL)
--        return build_id_name;
-+        {
-+        xfree (build_id_filename);
-+        return build_id_name;
++      char *build_id_filename_cstr = NULL;
+       gdb_bfd_ref_ptr abfd (build_id_to_debug_bfd (build_id->size,
+-                                                 build_id->data));
++                                                 build_id->data,
++            (!build_id_filename_return ? NULL : &build_id_filename_cstr)));
++      if (build_id_filename_return)
++      {
++        if (!build_id_filename_cstr)
++          gdb_assert (!*build_id_filename_return);
++        else
++          {
++            *build_id_filename_return = gdb::unique_xmalloc_ptr<char> (build_id_filename_cstr);
++            build_id_filename_cstr = NULL;
++          }
 +      }
-     }
-   basename = get_debug_link_info (objfile, &crc32);
-@@ -1397,7 +1931,7 @@ find_separate_debug_file (struct objfile
-   if (basename == NULL)
-     /* There's no separate debug info, hence there's no way we could
-        load it => no warning.  */
--    return NULL;
-+    goto cleanup_return_debugfile;
-   dir = xstrdup (objfile->name);
-@@ -1413,23 +1947,19 @@ find_separate_debug_file (struct objfile
-   gdb_assert (i >= 0 && IS_DIR_SEPARATOR (dir[i]));
-   dir[i+1] = '\0';
--  debugfile = alloca (strlen (debug_file_directory) + 1
--                      + strlen (dir)
--                      + strlen (DEBUG_SUBDIRECTORY)
--                      + strlen ("/")
--                      + strlen (basename)
--                      + 1);
-+  debugfile = xmalloc (strlen (debug_file_directory) + 1
-+                     + strlen (dir)
-+                     + strlen (DEBUG_SUBDIRECTORY)
-+                     + strlen ("/")
-+                     + strlen (basename)
-+                     + 1);
-   /* First try in the same directory as the original file.  */
-   strcpy (debugfile, dir);
-   strcat (debugfile, basename);
-   if (separate_debug_file_exists (debugfile, crc32, objfile->name))
--    {
--      xfree (basename);
--      xfree (dir);
--      return xstrdup (debugfile);
--    }
-+    goto cleanup_return_debugfile;
-   /* Then try in the subdirectory named DEBUG_SUBDIRECTORY.  */
-   strcpy (debugfile, dir);
-@@ -1438,11 +1968,7 @@ find_separate_debug_file (struct objfile
-   strcat (debugfile, basename);
-   if (separate_debug_file_exists (debugfile, crc32, objfile->name))
--    {
--      xfree (basename);
--      xfree (dir);
--      return xstrdup (debugfile);
--    }
-+    goto cleanup_return_debugfile;
-   /* Then try in the global debugfile directory.  */
-   strcpy (debugfile, debug_file_directory);
-@@ -1451,11 +1977,7 @@ find_separate_debug_file (struct objfile
-   strcat (debugfile, basename);
++
+       /* Prevent looping on a stripped .debug file.  */
+       if (abfd != NULL
+         && filename_cmp (bfd_get_filename (abfd.get ()),
+@@ -223,3 +897,22 @@ find_separate_debug_file_by_buildid (struct objfile *objfile)
  
-   if (separate_debug_file_exists (debugfile, crc32, objfile->name))
--    {
--      xfree (basename);
--      xfree (dir);
--      return xstrdup (debugfile);
--    }
-+    goto cleanup_return_debugfile;
-   /* If the file is in the sysroot, try using its base path in the
-      global debugfile directory.  */
-@@ -1470,20 +1992,18 @@ find_separate_debug_file (struct objfile
-       strcat (debugfile, basename);
-       if (separate_debug_file_exists (debugfile, crc32, objfile->name))
--      {
--        xfree (canon_name);
--        xfree (basename);
--        xfree (dir);
--        return xstrdup (debugfile);
--      }
-+        goto cleanup_return_debugfile;
-     }
--  
--  if (canon_name)
--    xfree (canon_name);
-+  debugfile = NULL;
-+  debug_print_missing (objfile->name, build_id_filename);
-+
-+cleanup_return_debugfile:
-+  xfree (build_id_filename);
-+  xfree (canon_name);
-   xfree (basename);
-   xfree (dir);
--  return NULL;
-+  return debugfile;
+   return std::string ();
  }
-@@ -4216,4 +4736,16 @@ Show printing of symbol loading messages
-                            NULL,
-                            NULL,
-                            &setprintlist, &showprintlist);
 +
++extern void _initialize_build_id (void);
++
++void
++_initialize_build_id (void)
++{
 +  add_setshow_zinteger_cmd ("build-id-verbose", no_class, &build_id_verbose,
 +                          _("\
 +Set debugging level of the build-id locator."), _("\
@@ -944,34 +926,465 @@ Index: gdb-6.8.50.20090302/gdb/symfile.c
 +                          show_build_id_verbose,
 +                          &setlist, &showlist);
 +
-+  observer_attach_executable_changed (debug_print_executable_changed);
++  gdb::observers::executable_changed.attach (debug_print_executable_changed,
++                                             "build-id");
++}
+diff --git a/gdb/build-id.h b/gdb/build-id.h
+--- a/gdb/build-id.h
++++ b/gdb/build-id.h
+@@ -23,9 +23,10 @@
+ #include "gdb_bfd.h"
+ #include "gdbsupport/rsp-low.h"
+-/* Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
++/* Separate debuginfo files have corrupted PHDR but SHDR is correct there.
++   Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
+-extern const struct bfd_build_id *build_id_bfd_get (bfd *abfd);
++extern const struct bfd_build_id *build_id_bfd_shdr_get (bfd *abfd);
+ /* Return true if ABFD has NT_GNU_BUILD_ID matching the CHECK value.
+    Otherwise, issue a warning and return false.  */
+@@ -38,21 +39,26 @@ extern int build_id_verify (bfd *abfd,
+    can be found, return NULL.  */
+ extern gdb_bfd_ref_ptr build_id_to_debug_bfd (size_t build_id_len,
+-                                            const bfd_byte *build_id);
++                                            const bfd_byte *build_id,
++                                            char **link_return = NULL);
++
++extern char *build_id_to_filename (const struct bfd_build_id *build_id,
++                                 char **link_return);
+ /* Find and open a BFD for an executable file given a build-id.  If no BFD
+    can be found, return NULL.  The returned reference to the BFD must be
+    released by the caller.  */
+ extern gdb_bfd_ref_ptr build_id_to_exec_bfd (size_t build_id_len,
+-                                           const bfd_byte *build_id);
++                                           const bfd_byte *build_id,
++                                           char **link_return);
+ /* Find the separate debug file for OBJFILE, by using the build-id
+    associated with OBJFILE's BFD.  If successful, returns the file name for the
+    separate debug file, otherwise, return an empty string.  */
+-extern std::string find_separate_debug_file_by_buildid
+-  (struct objfile *objfile);
++extern std::string find_separate_debug_file_by_buildid (struct objfile *objfile,
++                     gdb::unique_xmalloc_ptr<char> *build_id_filename_return);
+ /* Return an hex-string representation of BUILD_ID.  */
+diff --git a/gdb/coffread.c b/gdb/coffread.c
+--- a/gdb/coffread.c
++++ b/gdb/coffread.c
+@@ -710,7 +710,8 @@ coff_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
+   /* Try to add separate debug file if no symbols table found.   */
+   if (!objfile->has_partial_symbols ())
+     {
+-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
++      std::string debugfile = find_separate_debug_file_by_buildid (objfile,
++                                                                 NULL);
+       if (debugfile.empty ())
+       debugfile = find_separate_debug_file_by_debuglink (objfile);
+diff --git a/gdb/corelow.c b/gdb/corelow.c
+--- a/gdb/corelow.c
++++ b/gdb/corelow.c
+@@ -22,6 +22,10 @@
+ #include <signal.h>
+ #include <fcntl.h>
+ #include "frame.h"            /* required by inferior.h */
++#include "auxv.h"
++#include "build-id.h"
++#include "elf/common.h"
++#include "gdbcmd.h"
+ #include "inferior.h"
+ #include "infrun.h"
+ #include "symtab.h"
+@@ -356,6 +360,8 @@ add_to_thread_list (asection *asect, asection *reg_sect)
+     switch_to_thread (thr);                   /* Yes, make it current.  */
  }
-Index: gdb-6.8.50.20090302/gdb/symfile.h
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/symfile.h     2009-03-07 17:04:52.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/symfile.h  2009-03-07 17:13:33.000000000 +0100
-@@ -372,6 +372,13 @@ extern int symfile_map_offsets_to_segmen
- struct symfile_segment_data *get_symfile_segment_data (bfd *abfd);
- void free_symfile_segment_data (struct symfile_segment_data *data);
++static bool build_id_core_loads = true;
++
+ /* Issue a message saying we have no core to debug, if FROM_TTY.  */
+ static void
+@@ -392,19 +398,26 @@ core_file_command (const char *filename, int from_tty)
+ static void
+ locate_exec_from_corefile_build_id (bfd *abfd, int from_tty)
+ {
+-  const bfd_build_id *build_id = build_id_bfd_get (abfd);
++  const bfd_build_id *build_id = build_id_bfd_shdr_get (abfd);
+   if (build_id == nullptr)
+     return;
++  char *build_id_filename;
+   gdb_bfd_ref_ptr execbfd
+-    = build_id_to_exec_bfd (build_id->size, build_id->data);
++    = build_id_to_exec_bfd (build_id->size, build_id->data,
++                          &build_id_filename);
+   if (execbfd != nullptr)
+     {
+       exec_file_attach (bfd_get_filename (execbfd.get ()), from_tty);
+       symbol_file_add_main (bfd_get_filename (execbfd.get ()),
+                           symfile_add_flag (from_tty ? SYMFILE_VERBOSE : 0));
++      if (current_program_space->symfile_object_file != NULL)
++      current_program_space->symfile_object_file->flags |=
++        OBJF_BUILD_ID_CORE_LOADED;
+     }
++  else
++    debug_print_missing (BUILD_ID_MAIN_EXECUTABLE_FILENAME, build_id_filename);
+ }
+ /* See gdbcore.h.  */
+@@ -1209,4 +1222,11 @@ _initialize_corelow ()
+          maintenance_print_core_file_backed_mappings,
+          _("Print core file's file-backed mappings."),
+          &maintenanceprintlist);
++
++  add_setshow_boolean_cmd ("build-id-core-loads", class_files,
++                         &build_id_core_loads, _("\
++Set whether CORE-FILE loads the build-id associated files automatically."), _("\
++Show whether CORE-FILE loads the build-id associated files automatically."),
++                         NULL, NULL, NULL,
++                         &setlist, &showlist);
+ }
+diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
+--- a/gdb/doc/gdb.texinfo
++++ b/gdb/doc/gdb.texinfo
+@@ -21415,6 +21415,27 @@ information files.
+ @end table
++You can also adjust the current verbosity of the @dfn{build id} locating.
++
++@table @code
++
++@kindex set build-id-verbose
++@item set build-id-verbose 0
++No additional messages are printed.
++
++@item set build-id-verbose 1
++Missing separate debug filenames are printed.
++
++@item set build-id-verbose 2
++Missing separate debug filenames are printed and also all the parsing of the
++binaries to find their @dfn{build id} content is printed.
++
++@kindex show build-id-verbose
++@item show build-id-verbose
++Show the current verbosity value for the @dfn{build id} content locating.
++
++@end table
++
+ @cindex @code{.gnu_debuglink} sections
+ @cindex debug link sections
+ A debug link is a special section of the executable file named
+diff --git a/gdb/dwarf2/index-cache.c b/gdb/dwarf2/index-cache.c
+--- a/gdb/dwarf2/index-cache.c
++++ b/gdb/dwarf2/index-cache.c
+@@ -95,7 +95,7 @@ index_cache::store (dwarf2_per_objfile *per_objfile)
+     return;
+   /* Get build id of objfile.  */
+-  const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
++  const bfd_build_id *build_id = build_id_bfd_shdr_get (obj->obfd);
+   if (build_id == nullptr)
+     {
+       if (debug_index_cache)
+@@ -113,7 +113,8 @@ index_cache::store (dwarf2_per_objfile *per_objfile)
+   if (dwz != nullptr)
+     {
+-      const bfd_build_id *dwz_build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
++      const bfd_build_id *dwz_build_id
++      = build_id_bfd_shdr_get (dwz->dwz_bfd.get ());
+       if (dwz_build_id == nullptr)
+       {
+diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
+--- a/gdb/dwarf2/read.c
++++ b/gdb/dwarf2/read.c
+@@ -5447,7 +5447,7 @@ get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
+ static gdb::array_view<const gdb_byte>
+ get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
+ {
+-  const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
++  const bfd_build_id *build_id = build_id_bfd_shdr_get (obj->obfd);
+   if (build_id == nullptr)
+     return {};
+@@ -5460,7 +5460,7 @@ get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
+ static gdb::array_view<const gdb_byte>
+ get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
+ {
+-  const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
++  const bfd_build_id *build_id = build_id_bfd_shdr_get (dwz->dwz_bfd.get ());
+   if (build_id == nullptr)
+     return {};
+diff --git a/gdb/elfread.c b/gdb/elfread.c
+--- a/gdb/elfread.c
++++ b/gdb/elfread.c
+@@ -1272,7 +1272,9 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
+          && objfile->separate_debug_objfile == NULL
+          && objfile->separate_debug_objfile_backlink == NULL)
+     {
+-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
++      gdb::unique_xmalloc_ptr<char> build_id_filename;
++      std::string debugfile
++      = find_separate_debug_file_by_buildid (objfile, &build_id_filename);
+       if (debugfile.empty ())
+       debugfile = find_separate_debug_file_by_debuglink (objfile);
+@@ -1287,7 +1289,7 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
+       else
+       {
+         has_dwarf2 = false;
+-        const struct bfd_build_id *build_id = build_id_bfd_get (objfile->obfd);
++        const struct bfd_build_id *build_id = build_id_bfd_shdr_get (objfile->obfd);
+         if (build_id != nullptr)
+           {
+@@ -1312,6 +1314,10 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
+                     has_dwarf2 = true;
+                   }
+               }
++              /* Check if any separate debug info has been extracted out.  */
++              else if (bfd_get_section_by_name (objfile->obfd, ".gnu_debuglink")
++                       != NULL)
++                debug_print_missing (objfile_name (objfile), build_id_filename.get ());
+           }
+       }
+     }
+diff --git a/gdb/exec.c b/gdb/exec.c
+--- a/gdb/exec.c
++++ b/gdb/exec.c
+@@ -237,7 +237,7 @@ validate_exec_file (int from_tty)
+   current_exec_file = get_exec_file (0);
+   const bfd_build_id *exec_file_build_id
+-    = build_id_bfd_get (current_program_space->exec_bfd ());
++    = build_id_bfd_shdr_get (current_program_space->exec_bfd ());
+   if (exec_file_build_id != nullptr)
+     {
+       /* Prepend the target prefix, to force gdb_bfd_open to open the
+@@ -250,7 +250,7 @@ validate_exec_file (int from_tty)
+       if (abfd != nullptr)
+       {
+         const bfd_build_id *target_exec_file_build_id
+-          = build_id_bfd_get (abfd.get ());
++          = build_id_bfd_shdr_get (abfd.get ());
+         if (target_exec_file_build_id != nullptr)
+           {
+diff --git a/gdb/objfiles.h b/gdb/objfiles.h
+--- a/gdb/objfiles.h
++++ b/gdb/objfiles.h
+@@ -812,6 +812,10 @@ struct objfile
+   bool skip_jit_symbol_lookup = false;
+ };
++/* This file was loaded according to the BUILD_ID_CORE_LOADS rules.  */
++
++#define OBJF_BUILD_ID_CORE_LOADED static_cast<enum objfile_flag>(1 << 12)
++
+ /* A deleter for objfile.  */
+ struct objfile_deleter
+diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
+--- a/gdb/python/py-objfile.c
++++ b/gdb/python/py-objfile.c
+@@ -132,7 +132,7 @@ objfpy_get_build_id (PyObject *self, void *closure)
+   try
+     {
+-      build_id = build_id_bfd_get (objfile->obfd);
++      build_id = build_id_bfd_shdr_get (objfile->obfd);
+     }
+   catch (const gdb_exception &except)
+     {
+@@ -600,7 +600,7 @@ objfpy_lookup_objfile_by_build_id (const char *build_id)
+       /* Don't return separate debug files.  */
+       if (objfile->separate_debug_objfile_backlink != NULL)
+       continue;
+-      obfd_build_id = build_id_bfd_get (objfile->obfd);
++      obfd_build_id = build_id_bfd_shdr_get (objfile->obfd);
+       if (obfd_build_id == NULL)
+       continue;
+       if (objfpy_build_id_matches (obfd_build_id, build_id))
+diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c
+--- a/gdb/solib-svr4.c
++++ b/gdb/solib-svr4.c
+@@ -45,6 +45,7 @@
+ #include "auxv.h"
+ #include "gdb_bfd.h"
+ #include "probe.h"
++#include "build-id.h"
+ static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
+ static int svr4_have_link_map_offsets (void);
+@@ -1348,9 +1349,51 @@ svr4_read_so_list (svr4_info *info, CORE_ADDR lm, CORE_ADDR prev_lm,
+         continue;
+       }
+-      strncpy (newobj->so_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
+-      newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
+-      strcpy (newobj->so_original_name, newobj->so_name);
++      {
++      struct bfd_build_id *build_id;
++
++      strncpy (newobj->so_original_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
++      newobj->so_original_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
++      /* May get overwritten below.  */
++      strcpy (newobj->so_name, newobj->so_original_name);
++
++      build_id = build_id_addr_get (((lm_info_svr4 *) newobj->lm_info)->l_ld);
++      if (build_id != NULL)
++        {
++          char *name, *build_id_filename;
++
++          /* Missing the build-id matching separate debug info file
++             would be handled while SO_NAME gets loaded.  */
++          name = build_id_to_filename (build_id, &build_id_filename);
++          if (name != NULL)
++            {
++              strncpy (newobj->so_name, name, SO_NAME_MAX_PATH_SIZE - 1);
++              newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
++              xfree (name);
++            }
++          else
++            {
++              debug_print_missing (newobj->so_name, build_id_filename);
++
++              /* In the case the main executable was found according to
++                 its build-id (from a core file) prevent loading
++                 a different build of a library with accidentally the
++                 same SO_NAME.
++
++                 It suppresses bogus backtraces (and prints "??" there
++                 instead) if the on-disk files no longer match the
++                 running program version.  */
++
++              if (current_program_space->symfile_object_file != NULL
++                  && (current_program_space->symfile_object_file->flags
++                      & OBJF_BUILD_ID_CORE_LOADED) != 0)
++                newobj->so_name[0] = 0;
++            }
++
++          xfree (build_id_filename);
++          xfree (build_id);
++        }
++      }
+       /* If this entry has no name, or its name matches the name
+        for the main executable, don't include it in the list.  */
+diff --git a/gdb/source.c b/gdb/source.c
+--- a/gdb/source.c
++++ b/gdb/source.c
+@@ -1178,7 +1178,7 @@ open_source_file (struct symtab *s)
+             srcpath += s->filename;
+           }
+-        const struct bfd_build_id *build_id = build_id_bfd_get (ofp->obfd);
++        const struct bfd_build_id *build_id = build_id_bfd_shdr_get (ofp->obfd);
+         /* Query debuginfod for the source file.  */
+         if (build_id != nullptr && !srcpath.empty ())
+diff --git a/gdb/symfile.h b/gdb/symfile.h
+--- a/gdb/symfile.h
++++ b/gdb/symfile.h
+@@ -332,12 +332,18 @@ bool expand_symtabs_matching
+ void map_symbol_filenames (gdb::function_view<symbol_filename_ftype> fun,
+                          bool need_fullname);
++
+ /* Target-agnostic function to load the sections of an executable into memory.
+    ARGS should be in the form "EXECUTABLE [OFFSET]", where OFFSET is an
+    optional offset to apply to each section.  */
+ extern void generic_load (const char *args, int from_tty);
  
 +/* build-id support.  */
-+struct build_id;
-+extern struct build_id *build_id_addr_get (CORE_ADDR addr);
-+extern char *build_id_to_filename (struct build_id *build_id,
-+                                 char **link_return, int add_debug_suffix);
++extern struct bfd_build_id *build_id_addr_get (CORE_ADDR addr);
 +extern void debug_print_missing (const char *binary, const char *debug);
++#define BUILD_ID_MAIN_EXECUTABLE_FILENAME _("the main executable file")
 +
- /* From dwarf2read.c */
+ /* From minidebug.c.  */
  
- extern int dwarf2_has_info (struct objfile *);
-Index: gdb-6.8.50.20090302/gdb/testsuite/lib/gdb.exp
-===================================================================
---- gdb-6.8.50.20090302.orig/gdb/testsuite/lib/gdb.exp 2009-03-07 17:04:52.000000000 +0100
-+++ gdb-6.8.50.20090302/gdb/testsuite/lib/gdb.exp      2009-03-07 17:13:33.000000000 +0100
-@@ -1230,6 +1230,16 @@ proc default_gdb_start { } {
-           warning "Couldn't set the width to 0."
+ extern gdb_bfd_ref_ptr find_separate_debug_file_in_section (struct objfile *);
+diff --git a/gdb/testsuite/gdb.base/corefile.exp b/gdb/testsuite/gdb.base/corefile.exp
+--- a/gdb/testsuite/gdb.base/corefile.exp
++++ b/gdb/testsuite/gdb.base/corefile.exp
+@@ -343,3 +343,33 @@ gdb_test_multiple "core-file $corefile" $test {
+       pass $test
+     }
+ }
++
++
++# Test auto-loading of binary files through build-id from the core file.
++set buildid [build_id_debug_filename_get $binfile]
++set wholetest "binfile found by build-id"
++if {$buildid == ""} {
++    untested "$wholetest (binary has no build-id)"
++} else {
++    gdb_exit
++    gdb_start
++
++    regsub {\.debug$} $buildid {} buildid
++    set debugdir [standard_output_file ${testfile}-debugdir]
++    file delete -force -- $debugdir
++    file mkdir $debugdir/[file dirname $buildid]
++    file copy $binfile $debugdir/$buildid
++
++    set test "show debug-file-directory"
++    gdb_test_multiple $test $test {
++      -re "The directory where separate debug symbols are searched for is \"(.*)\"\\.\r\n$gdb_prompt $" {
++          set debugdir_orig $expect_out(1,string)
++          pass $test
++      }
++    }
++    gdb_test_no_output "set debug-file-directory $debugdir:$debugdir_orig" "set debug-file-directory"
++    gdb_test "show build-id-core-loads" {Whether CORE-FILE loads the build-id associated files automatically is on\.}
++    gdb_test "core-file $corefile" "\r\nProgram terminated with .*" "core-file without executable"
++    gdb_test "info files" "Local exec file:\r\n\[ \t\]*`[string_to_regexp $debugdir/$buildid]', file type .*"
++    pass $wholetest
++}
+diff --git a/gdb/testsuite/gdb.base/gdbinit-history.exp b/gdb/testsuite/gdb.base/gdbinit-history.exp
+--- a/gdb/testsuite/gdb.base/gdbinit-history.exp
++++ b/gdb/testsuite/gdb.base/gdbinit-history.exp
+@@ -185,7 +185,8 @@ proc test_empty_history_filename { } {
+     global env
+     global gdb_prompt
+-    set common_history [list "set height 0" "set width 0"]
++    set common_history [list "set height 0" "set width 0" \
++                          "set build-id-verbose 0"]
+     set test_dir [standard_output_file history_test]
+     remote_exec host "mkdir -p $test_dir"
+diff --git a/gdb/testsuite/gdb.base/new-ui-pending-input.exp b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
+--- a/gdb/testsuite/gdb.base/new-ui-pending-input.exp
++++ b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
+@@ -62,6 +62,7 @@ proc test_command_line_new_ui_pending_input {} {
+     set options ""
+     append options " -iex \"set height 0\""
+     append options " -iex \"set width 0\""
++    append options " -iex \"set build-id-verbose 0\""
+     append options " -iex \"new-ui console $extra_tty_name\""
+     append options " -ex \"b $bpline\""
+     append options " -ex \"run\""
+diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
+--- a/gdb/testsuite/lib/gdb.exp
++++ b/gdb/testsuite/lib/gdb.exp
+@@ -2130,6 +2130,17 @@ proc default_gdb_start { } {
        }
      }
 +    # Turn off the missing warnings as the testsuite does not expect it.
 +    send_gdb "set build-id-verbose 0\n"
 +    gdb_expect 10 {
@@ -982,6 +1395,27 @@ Index: gdb-6.8.50.20090302/gdb/testsuite/lib/gdb.exp
 +          warning "Could not disable the missing debug infos warnings.."
 +      }
 +    }
-     return 0;
++
+     gdb_debug_init
+     return 0
  }
+diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
+--- a/gdb/testsuite/lib/mi-support.exp
++++ b/gdb/testsuite/lib/mi-support.exp
+@@ -322,6 +322,16 @@ proc default_mi_gdb_start { args } {
+           warning "Couldn't set the width to 0."
+       }
+     }
++    # Turn off the missing warnings as the testsuite does not expect it.
++    send_gdb "190-gdb-set build-id-verbose 0\n"
++    gdb_expect 10 {
++      -re ".*190-gdb-set build-id-verbose 0\r\n190\\\^done\r\n$mi_gdb_prompt$" {
++          verbose "Disabled the missing debug infos warnings." 2
++      }
++      timeout {
++          warning "Could not disable the missing debug infos warnings.."
++      }
++    }
  
+     if { $separate_inferior_pty } {
+       mi_create_inferior_pty
This page took 0.104111 seconds and 4 git commands to generate.