Blame SOURCES/gdb-6.6-buildid-locate.patch

4a80f0
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4a80f0
From: Fedora GDB patches <invalid@email.com>
4a80f0
Date: Fri, 27 Oct 2017 21:07:50 +0200
4a80f0
Subject: gdb-6.6-buildid-locate.patch
4a80f0
4a80f0
;; New locating of the matching binaries from the pure core file (build-id).
4a80f0
;;=push+jan
4a80f0
4a80f0
diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h
4a80f0
--- a/bfd/libbfd-in.h
4a80f0
+++ b/bfd/libbfd-in.h
4a80f0
@@ -121,7 +121,7 @@ static inline char *
4a80f0
 bfd_strdup (const char *str)
4a80f0
 {
4a80f0
   size_t len = strlen (str) + 1;
4a80f0
-  char *buf = bfd_malloc (len);
4a80f0
+  char *buf = (char *) bfd_malloc (len);
4a80f0
   if (buf != NULL)
4a80f0
     memcpy (buf, str, len);
4a80f0
   return buf;
4a80f0
diff --git a/bfd/libbfd.h b/bfd/libbfd.h
4a80f0
--- a/bfd/libbfd.h
4a80f0
+++ b/bfd/libbfd.h
4a80f0
@@ -126,7 +126,7 @@ static inline char *
4a80f0
 bfd_strdup (const char *str)
4a80f0
 {
4a80f0
   size_t len = strlen (str) + 1;
4a80f0
-  char *buf = bfd_malloc (len);
4a80f0
+  char *buf = (char *) bfd_malloc (len);
4a80f0
   if (buf != NULL)
4a80f0
     memcpy (buf, str, len);
4a80f0
   return buf;
4a80f0
diff --git a/gdb/build-id.c b/gdb/build-id.c
4a80f0
--- a/gdb/build-id.c
4a80f0
+++ b/gdb/build-id.c
4a80f0
@@ -24,13 +24,70 @@
4a80f0
 #include "gdbsupport/gdb_vecs.h"
4a80f0
 #include "symfile.h"
4a80f0
 #include "objfiles.h"
4a80f0
+#include <sys/stat.h>
4a80f0
+#include "elf-bfd.h"
4a80f0
+#include "elf/common.h"
4a80f0
+#include "elf/external.h"
4a80f0
+#include "elf/internal.h"
4a80f0
 #include "filenames.h"
4a80f0
+#include "gdb_bfd.h"
4a80f0
+#include "gdbcmd.h"
4a80f0
 #include "gdbcore.h"
4a80f0
+#include "objfiles.h"
4a80f0
+#include "observable.h"
4a80f0
+#include "symfile.h"
4a80f0
+
4a80f0
+#define BUILD_ID_VERBOSE_NONE 0
4a80f0
+#define BUILD_ID_VERBOSE_FILENAMES 1
4a80f0
+#define BUILD_ID_VERBOSE_BINARY_PARSE 2
4a80f0
+static int build_id_verbose = BUILD_ID_VERBOSE_FILENAMES;
4a80f0
+static void
4a80f0
+show_build_id_verbose (struct ui_file *file, int from_tty,
4a80f0
+		       struct cmd_list_element *c, const char *value)
4a80f0
+{
4a80f0
+  fprintf_filtered (file, _("Verbosity level of the build-id locator is %s.\n"),
4a80f0
+		    value);
4a80f0
+}
4a80f0
+/* Locate NT_GNU_BUILD_ID and return its matching debug filename.
4a80f0
+   FIXME: NOTE decoding should be unified with the BFD core notes decoding.  */
4a80f0
+
4a80f0
+static struct bfd_build_id *
4a80f0
+build_id_buf_get (bfd *templ, gdb_byte *buf, bfd_size_type size)
4a80f0
+{
4a80f0
+  bfd_byte *p;
4a80f0
+
4a80f0
+  p = buf;
4a80f0
+  while (p < buf + size)
4a80f0
+    {
4a80f0
+      /* FIXME: bad alignment assumption.  */
4a80f0
+      Elf_External_Note *xnp = (Elf_External_Note *) p;
4a80f0
+      size_t namesz = H_GET_32 (templ, xnp->namesz);
4a80f0
+      size_t descsz = H_GET_32 (templ, xnp->descsz);
4a80f0
+      bfd_byte *descdata = (gdb_byte *) xnp->name + BFD_ALIGN (namesz, 4);
4a80f0
+
4a80f0
+      if (H_GET_32 (templ, xnp->type) == NT_GNU_BUILD_ID
4a80f0
+	  && namesz == sizeof "GNU"
4a80f0
+	  && memcmp (xnp->name, "GNU", sizeof "GNU") == 0)
4a80f0
+	{
4a80f0
+	  size_t sz = descsz;
4a80f0
+	  gdb_byte *data = (gdb_byte *) descdata;
4a80f0
+	  struct bfd_build_id *retval;
4a80f0
+
4a80f0
+	  retval = (struct bfd_build_id *) xmalloc (sizeof *retval - 1 + sz);
4a80f0
+	  retval->size = sz;
4a80f0
+	  memcpy (retval->data, data, sz);
4a80f0
+
4a80f0
+	  return retval;
4a80f0
+	}
4a80f0
+      p = descdata + BFD_ALIGN (descsz, 4);
4a80f0
+    }
4a80f0
+  return NULL;
4a80f0
+}
4a80f0
 
4a80f0
 /* See build-id.h.  */
4a80f0
 
4a80f0
 const struct bfd_build_id *
4a80f0
-build_id_bfd_get (bfd *abfd)
4a80f0
+build_id_bfd_shdr_get (bfd *abfd)
4a80f0
 {
4a80f0
   if (!bfd_check_format (abfd, bfd_object)
4a80f0
       && !bfd_check_format (abfd, bfd_core))
4a80f0
@@ -43,6 +100,348 @@ build_id_bfd_get (bfd *abfd)
4a80f0
   return NULL;
4a80f0
 }
4a80f0
 
4a80f0
+/* Core files may have missing (corrupt) SHDR but PDHR is correct there.
4a80f0
+   bfd_elf_bfd_from_remote_memory () has too much overhead by
4a80f0
+   allocating/reading all the available ELF PT_LOADs.  */
4a80f0
+
4a80f0
+static struct bfd_build_id *
4a80f0
+build_id_phdr_get (bfd *templ, bfd_vma loadbase, unsigned e_phnum,
4a80f0
+		   Elf_Internal_Phdr *i_phdr)
4a80f0
+{
4a80f0
+  int i;
4a80f0
+  struct bfd_build_id *retval = NULL;
4a80f0
+
4a80f0
+  for (i = 0; i < e_phnum; i++)
4a80f0
+    if (i_phdr[i].p_type == PT_NOTE && i_phdr[i].p_filesz > 0)
4a80f0
+      {
4a80f0
+	Elf_Internal_Phdr *hdr = &i_phdr[i];
4a80f0
+	gdb_byte *buf;
4a80f0
+	int err;
4a80f0
+
4a80f0
+	buf = (gdb_byte *) xmalloc (hdr->p_filesz);
4a80f0
+	err = target_read_memory (loadbase + i_phdr[i].p_vaddr, buf,
4a80f0
+				  hdr->p_filesz);
4a80f0
+	if (err == 0)
4a80f0
+	  retval = build_id_buf_get (templ, buf, hdr->p_filesz);
4a80f0
+	else
4a80f0
+	  retval = NULL;
4a80f0
+	xfree (buf);
4a80f0
+	if (retval != NULL)
4a80f0
+	  break;
4a80f0
+      }
4a80f0
+  return retval;
4a80f0
+}
4a80f0
+
4a80f0
+/* First we validate the file by reading in the ELF header and checking
4a80f0
+   the magic number.  */
4a80f0
+
4a80f0
+static inline bfd_boolean
4a80f0
+elf_file_p (Elf64_External_Ehdr *x_ehdrp64)
4a80f0
+{
4a80f0
+  gdb_assert (sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr));
4a80f0
+  gdb_assert (offsetof (Elf64_External_Ehdr, e_ident)
4a80f0
+	      == offsetof (Elf32_External_Ehdr, e_ident));
4a80f0
+  gdb_assert (sizeof (((Elf64_External_Ehdr *) 0)->e_ident)
4a80f0
+	      == sizeof (((Elf32_External_Ehdr *) 0)->e_ident));
4a80f0
+
4a80f0
+  return ((x_ehdrp64->e_ident[EI_MAG0] == ELFMAG0)
4a80f0
+	  && (x_ehdrp64->e_ident[EI_MAG1] == ELFMAG1)
4a80f0
+	  && (x_ehdrp64->e_ident[EI_MAG2] == ELFMAG2)
4a80f0
+	  && (x_ehdrp64->e_ident[EI_MAG3] == ELFMAG3));
4a80f0
+}
4a80f0
+
4a80f0
+/* Translate an ELF file header in external format into an ELF file header in
4a80f0
+   internal format.  */
4a80f0
+
4a80f0
+#define H_GET_WORD(bfd, ptr) (is64 ? H_GET_64 (bfd, (ptr))		\
4a80f0
+				   : H_GET_32 (bfd, (ptr)))
4a80f0
+#define H_GET_SIGNED_WORD(bfd, ptr) (is64 ? H_GET_S64 (bfd, (ptr))	\
4a80f0
+					  : H_GET_S32 (bfd, (ptr)))
4a80f0
+
4a80f0
+static void
4a80f0
+elf_swap_ehdr_in (bfd *abfd,
4a80f0
+		  const Elf64_External_Ehdr *src64,
4a80f0
+		  Elf_Internal_Ehdr *dst)
4a80f0
+{
4a80f0
+  int is64 = bfd_get_arch_size (abfd) == 64;
4a80f0
+#define SRC(field) (is64 ? src64->field \
4a80f0
+			 : ((const Elf32_External_Ehdr *) src64)->field)
4a80f0
+
4a80f0
+  int signed_vma = get_elf_backend_data (abfd)->sign_extend_vma;
4a80f0
+  memcpy (dst->e_ident, SRC (e_ident), EI_NIDENT);
4a80f0
+  dst->e_type = H_GET_16 (abfd, SRC (e_type));
4a80f0
+  dst->e_machine = H_GET_16 (abfd, SRC (e_machine));
4a80f0
+  dst->e_version = H_GET_32 (abfd, SRC (e_version));
4a80f0
+  if (signed_vma)
4a80f0
+    dst->e_entry = H_GET_SIGNED_WORD (abfd, SRC (e_entry));
4a80f0
+  else
4a80f0
+    dst->e_entry = H_GET_WORD (abfd, SRC (e_entry));
4a80f0
+  dst->e_phoff = H_GET_WORD (abfd, SRC (e_phoff));
4a80f0
+  dst->e_shoff = H_GET_WORD (abfd, SRC (e_shoff));
4a80f0
+  dst->e_flags = H_GET_32 (abfd, SRC (e_flags));
4a80f0
+  dst->e_ehsize = H_GET_16 (abfd, SRC (e_ehsize));
4a80f0
+  dst->e_phentsize = H_GET_16 (abfd, SRC (e_phentsize));
4a80f0
+  dst->e_phnum = H_GET_16 (abfd, SRC (e_phnum));
4a80f0
+  dst->e_shentsize = H_GET_16 (abfd, SRC (e_shentsize));
4a80f0
+  dst->e_shnum = H_GET_16 (abfd, SRC (e_shnum));
4a80f0
+  dst->e_shstrndx = H_GET_16 (abfd, SRC (e_shstrndx));
4a80f0
+
4a80f0
+#undef SRC
4a80f0
+}
4a80f0
+
4a80f0
+/* Translate an ELF program header table entry in external format into an
4a80f0
+   ELF program header table entry in internal format.  */
4a80f0
+
4a80f0
+static void
4a80f0
+elf_swap_phdr_in (bfd *abfd,
4a80f0
+		  const Elf64_External_Phdr *src64,
4a80f0
+		  Elf_Internal_Phdr *dst)
4a80f0
+{
4a80f0
+  int is64 = bfd_get_arch_size (abfd) == 64;
4a80f0
+#define SRC(field) (is64 ? src64->field					\
4a80f0
+			 : ((const Elf32_External_Phdr *) src64)->field)
4a80f0
+
4a80f0
+  int signed_vma = get_elf_backend_data (abfd)->sign_extend_vma;
4a80f0
+
4a80f0
+  dst->p_type = H_GET_32 (abfd, SRC (p_type));
4a80f0
+  dst->p_flags = H_GET_32 (abfd, SRC (p_flags));
4a80f0
+  dst->p_offset = H_GET_WORD (abfd, SRC (p_offset));
4a80f0
+  if (signed_vma)
4a80f0
+    {
4a80f0
+      dst->p_vaddr = H_GET_SIGNED_WORD (abfd, SRC (p_vaddr));
4a80f0
+      dst->p_paddr = H_GET_SIGNED_WORD (abfd, SRC (p_paddr));
4a80f0
+    }
4a80f0
+  else
4a80f0
+    {
4a80f0
+      dst->p_vaddr = H_GET_WORD (abfd, SRC (p_vaddr));
4a80f0
+      dst->p_paddr = H_GET_WORD (abfd, SRC (p_paddr));
4a80f0
+    }
4a80f0
+  dst->p_filesz = H_GET_WORD (abfd, SRC (p_filesz));
4a80f0
+  dst->p_memsz = H_GET_WORD (abfd, SRC (p_memsz));
4a80f0
+  dst->p_align = H_GET_WORD (abfd, SRC (p_align));
4a80f0
+
4a80f0
+#undef SRC
4a80f0
+}
4a80f0
+
4a80f0
+#undef H_GET_SIGNED_WORD
4a80f0
+#undef H_GET_WORD
4a80f0
+
4a80f0
+static Elf_Internal_Phdr *
4a80f0
+elf_get_phdr (bfd *templ, bfd_vma ehdr_vma, unsigned *e_phnum_pointer,
4a80f0
+              bfd_vma *loadbase_pointer)
4a80f0
+{
4a80f0
+  /* sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr)  */
4a80f0
+  Elf64_External_Ehdr x_ehdr64;	/* Elf file header, external form */
4a80f0
+  Elf_Internal_Ehdr i_ehdr;	/* Elf file header, internal form */
4a80f0
+  bfd_size_type x_phdrs_size;
4a80f0
+  gdb_byte *x_phdrs_ptr;
4a80f0
+  Elf_Internal_Phdr *i_phdrs;
4a80f0
+  int err;
4a80f0
+  unsigned int i;
4a80f0
+  bfd_vma loadbase;
4a80f0
+  int loadbase_set;
4a80f0
+
4a80f0
+  gdb_assert (templ != NULL);
4a80f0
+  gdb_assert (sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr));
4a80f0
+
4a80f0
+  /* Read in the ELF header in external format.  */
4a80f0
+  err = target_read_memory (ehdr_vma, (bfd_byte *) &x_ehdr64, sizeof x_ehdr64);
4a80f0
+  if (err)
4a80f0
+    {
4a80f0
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+        warning (_("build-id: Error reading ELF header at address 0x%lx"),
4a80f0
+		 (unsigned long) ehdr_vma);
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
+
4a80f0
+  /* Now check to see if we have a valid ELF file, and one that BFD can
4a80f0
+     make use of.  The magic number must match, the address size ('class')
4a80f0
+     and byte-swapping must match our XVEC entry.  */
4a80f0
+
4a80f0
+  if (! elf_file_p (&x_ehdr64)
4a80f0
+      || x_ehdr64.e_ident[EI_VERSION] != EV_CURRENT
4a80f0
+      || !((bfd_get_arch_size (templ) == 64
4a80f0
+            && x_ehdr64.e_ident[EI_CLASS] == ELFCLASS64)
4a80f0
+           || (bfd_get_arch_size (templ) == 32
4a80f0
+	       && x_ehdr64.e_ident[EI_CLASS] == ELFCLASS32)))
4a80f0
+    {
4a80f0
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+        warning (_("build-id: Unrecognized ELF header at address 0x%lx"),
4a80f0
+		 (unsigned long) ehdr_vma);
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
+
4a80f0
+  /* Check that file's byte order matches xvec's */
4a80f0
+  switch (x_ehdr64.e_ident[EI_DATA])
4a80f0
+    {
4a80f0
+    case ELFDATA2MSB:		/* Big-endian */
4a80f0
+      if (! bfd_header_big_endian (templ))
4a80f0
+	{
4a80f0
+	  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+	    warning (_("build-id: Unrecognized "
4a80f0
+		       "big-endian ELF header at address 0x%lx"),
4a80f0
+		     (unsigned long) ehdr_vma);
4a80f0
+	  return NULL;
4a80f0
+	}
4a80f0
+      break;
4a80f0
+    case ELFDATA2LSB:		/* Little-endian */
4a80f0
+      if (! bfd_header_little_endian (templ))
4a80f0
+	{
4a80f0
+	  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+	    warning (_("build-id: Unrecognized "
4a80f0
+		       "little-endian ELF header at address 0x%lx"),
4a80f0
+		     (unsigned long) ehdr_vma);
4a80f0
+	  return NULL;
4a80f0
+	}
4a80f0
+      break;
4a80f0
+    case ELFDATANONE:		/* No data encoding specified */
4a80f0
+    default:			/* Unknown data encoding specified */
4a80f0
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+	warning (_("build-id: Unrecognized "
4a80f0
+		   "ELF header endianity at address 0x%lx"),
4a80f0
+		 (unsigned long) ehdr_vma);
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
+
4a80f0
+  elf_swap_ehdr_in (templ, &x_ehdr64, &i_ehdr);
4a80f0
+
4a80f0
+  /* The file header tells where to find the program headers.
4a80f0
+     These are what we use to actually choose what to read.  */
4a80f0
+
4a80f0
+  if (i_ehdr.e_phentsize != (bfd_get_arch_size (templ) == 64
4a80f0
+                             ? sizeof (Elf64_External_Phdr)
4a80f0
+			     : sizeof (Elf32_External_Phdr))
4a80f0
+      || i_ehdr.e_phnum == 0)
4a80f0
+    {
4a80f0
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+	warning (_("build-id: Invalid ELF program headers from the ELF header "
4a80f0
+		   "at address 0x%lx"), (unsigned long) ehdr_vma);
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
+
4a80f0
+  x_phdrs_size = (bfd_get_arch_size (templ) == 64 ? sizeof (Elf64_External_Phdr)
4a80f0
+						: sizeof (Elf32_External_Phdr));
4a80f0
+
4a80f0
+  i_phdrs = (Elf_Internal_Phdr *) xmalloc (i_ehdr.e_phnum * (sizeof *i_phdrs + x_phdrs_size));
4a80f0
+  x_phdrs_ptr = (gdb_byte *) &i_phdrs[i_ehdr.e_phnum];
4a80f0
+  err = target_read_memory (ehdr_vma + i_ehdr.e_phoff, (bfd_byte *) x_phdrs_ptr,
4a80f0
+			    i_ehdr.e_phnum * x_phdrs_size);
4a80f0
+  if (err)
4a80f0
+    {
4a80f0
+      free (i_phdrs);
4a80f0
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+        warning (_("build-id: Error reading "
4a80f0
+		   "ELF program headers at address 0x%lx"),
4a80f0
+		 (unsigned long) (ehdr_vma + i_ehdr.e_phoff));
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
+
4a80f0
+  loadbase = ehdr_vma;
4a80f0
+  loadbase_set = 0;
4a80f0
+  for (i = 0; i < i_ehdr.e_phnum; ++i)
4a80f0
+    {
4a80f0
+      elf_swap_phdr_in (templ, (Elf64_External_Phdr *)
4a80f0
+			       (x_phdrs_ptr + i * x_phdrs_size), &i_phdrs[i]);
4a80f0
+      /* IA-64 vDSO may have two mappings for one segment, where one mapping
4a80f0
+	 is executable only, and one is read only.  We must not use the
4a80f0
+	 executable one (PF_R is the first one, PF_X the second one).  */
4a80f0
+      if (i_phdrs[i].p_type == PT_LOAD && (i_phdrs[i].p_flags & PF_R))
4a80f0
+	{
4a80f0
+	  /* Only the first PT_LOAD segment indicates the file bias.
4a80f0
+	     Next segments may have P_VADDR arbitrarily higher.
4a80f0
+	     If the first segment has P_VADDR zero any next segment must not
4a80f0
+	     confuse us, the first one sets LOADBASE certainly enough.  */
4a80f0
+	  if (!loadbase_set && i_phdrs[i].p_offset == 0)
4a80f0
+	    {
4a80f0
+	      loadbase = ehdr_vma - i_phdrs[i].p_vaddr;
4a80f0
+	      loadbase_set = 1;
4a80f0
+	    }
4a80f0
+	}
4a80f0
+    }
4a80f0
+
4a80f0
+  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4a80f0
+    warning (_("build-id: Found ELF header at address 0x%lx, loadbase 0x%lx"),
4a80f0
+	     (unsigned long) ehdr_vma, (unsigned long) loadbase);
4a80f0
+
4a80f0
+  *e_phnum_pointer = i_ehdr.e_phnum;
4a80f0
+  *loadbase_pointer = loadbase;
4a80f0
+  return i_phdrs;
4a80f0
+}
4a80f0
+
4a80f0
+/* BUILD_ID_ADDR_GET gets ADDR located somewhere in the object.
4a80f0
+   Find the first section before ADDR containing an ELF header.
4a80f0
+   We rely on the fact the sections from multiple files do not mix.
4a80f0
+   FIXME: We should check ADDR is contained _inside_ the section with possibly
4a80f0
+   missing content (P_FILESZ < P_MEMSZ).  These omitted sections are currently
4a80f0
+   hidden by _BFD_ELF_MAKE_SECTION_FROM_PHDR.  */
4a80f0
+
4a80f0
+static CORE_ADDR build_id_addr;
4a80f0
+struct build_id_addr_sect
4a80f0
+  {
4a80f0
+    struct build_id_addr_sect *next;
4a80f0
+    asection *sect;
4a80f0
+  };
4a80f0
+static struct build_id_addr_sect *build_id_addr_sect;
4a80f0
+
4a80f0
+static void build_id_addr_candidate (bfd *abfd, asection *sect, void *obj)
4a80f0
+{
4a80f0
+  if (build_id_addr >= bfd_section_vma (sect))
4a80f0
+    {
4a80f0
+      struct build_id_addr_sect *candidate;
4a80f0
+
4a80f0
+      candidate = (struct build_id_addr_sect *) xmalloc (sizeof *candidate);
4a80f0
+      candidate->next = build_id_addr_sect;
4a80f0
+      build_id_addr_sect = candidate;
4a80f0
+      candidate->sect = sect;
4a80f0
+    }
4a80f0
+}
4a80f0
+
4a80f0
+struct bfd_build_id *
4a80f0
+build_id_addr_get (CORE_ADDR addr)
4a80f0
+{
4a80f0
+  struct build_id_addr_sect *candidate;
4a80f0
+  struct bfd_build_id *retval = NULL;
4a80f0
+  Elf_Internal_Phdr *i_phdr = NULL;
4a80f0
+  bfd_vma loadbase = 0;
4a80f0
+  unsigned e_phnum = 0;
4a80f0
+
4a80f0
+  if (core_bfd == NULL)
4a80f0
+    return NULL;
4a80f0
+
4a80f0
+  build_id_addr = addr;
4a80f0
+  gdb_assert (build_id_addr_sect == NULL);
4a80f0
+  bfd_map_over_sections (core_bfd, build_id_addr_candidate, NULL);
4a80f0
+
4a80f0
+  /* Sections are sorted in the high-to-low VMAs order.
4a80f0
+     Stop the search on the first ELF header we find.
4a80f0
+     Do not continue the search even if it does not contain NT_GNU_BUILD_ID.  */
4a80f0
+
4a80f0
+  for (candidate = build_id_addr_sect; candidate != NULL;
4a80f0
+       candidate = candidate->next)
4a80f0
+    {
4a80f0
+      i_phdr = elf_get_phdr (core_bfd,
4a80f0
+			     bfd_section_vma (candidate->sect),
4a80f0
+			     &e_phnum, &loadbase);
4a80f0
+      if (i_phdr != NULL)
4a80f0
+	break;
4a80f0
+    }
4a80f0
+
4a80f0
+  if (i_phdr != NULL)
4a80f0
+    {
4a80f0
+      retval = build_id_phdr_get (core_bfd, loadbase, e_phnum, i_phdr);
4a80f0
+      xfree (i_phdr);
4a80f0
+    }
4a80f0
+
4a80f0
+  while (build_id_addr_sect != NULL)
4a80f0
+    {
4a80f0
+      candidate = build_id_addr_sect;
4a80f0
+      build_id_addr_sect = candidate->next;
4a80f0
+      xfree (candidate);
4a80f0
+    }
4a80f0
+
4a80f0
+  return retval;
4a80f0
+}
4a80f0
+
4a80f0
 /* See build-id.h.  */
4a80f0
 
4a80f0
 int
4a80f0
@@ -51,7 +450,7 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
4a80f0
   const struct bfd_build_id *found;
4a80f0
   int retval = 0;
4a80f0
 
4a80f0
-  found = build_id_bfd_get (abfd);
4a80f0
+  found = build_id_bfd_shdr_get (abfd);
4a80f0
 
4a80f0
   if (found == NULL)
4a80f0
     warning (_("File \"%s\" has no build-id, file skipped"),
4a80f0
@@ -66,56 +465,159 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
4a80f0
   return retval;
4a80f0
 }
4a80f0
 
4a80f0
+static char *
4a80f0
+link_resolve (const char *symlink, int level)
4a80f0
+{
4a80f0
+  char buf[PATH_MAX + 1], *target, *retval;
4a80f0
+  ssize_t got;
4a80f0
+
4a80f0
+  if (level > 10)
4a80f0
+    return xstrdup (symlink);
4a80f0
+
4a80f0
+  got = readlink (symlink, buf, sizeof (buf));
4a80f0
+  if (got < 0 || got >= sizeof (buf))
4a80f0
+    return xstrdup (symlink);
4a80f0
+  buf[got] = '\0';
4a80f0
+
4a80f0
+  if (IS_ABSOLUTE_PATH (buf))
4a80f0
+    target = xstrdup (buf);
4a80f0
+  else
4a80f0
+    {
4a80f0
+      const std::string dir (ldirname (symlink));
4a80f0
+
4a80f0
+      target = xstrprintf ("%s"
4a80f0
+#ifndef HAVE_DOS_BASED_FILE_SYSTEM
4a80f0
+			   "/"
4a80f0
+#else /* HAVE_DOS_BASED_FILE_SYSTEM */
4a80f0
+			   "\\"
4a80f0
+#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
4a80f0
+			   "%s", dir.c_str(), buf);
4a80f0
+    }
4a80f0
+
4a80f0
+  retval = link_resolve (target, level + 1);
4a80f0
+  xfree (target);
4a80f0
+  return retval;
4a80f0
+}
4a80f0
+
4a80f0
 /* Helper for build_id_to_debug_bfd.  LINK is a path to a potential
4a80f0
    build-id-based separate debug file, potentially a symlink to the real file.
4a80f0
    If the file exists and matches BUILD_ID, return a BFD reference to it.  */
4a80f0
 
4a80f0
 static gdb_bfd_ref_ptr
4a80f0
-build_id_to_debug_bfd_1 (const std::string &link, size_t build_id_len,
4a80f0
-			 const bfd_byte *build_id)
4a80f0
+build_id_to_debug_bfd_1 (const std::string &orig_link, size_t build_id_len,
4a80f0
+			 const bfd_byte *build_id, char **link_return)
4a80f0
 {
4a80f0
+  gdb_bfd_ref_ptr ret_bfd = {};
4a80f0
+  std::string ret_link;
4a80f0
+
4a80f0
   if (separate_debug_file_debug)
4a80f0
     {
4a80f0
-      printf_unfiltered (_("  Trying %s..."), link.c_str ());
4a80f0
+      printf_unfiltered (_("  Trying %s..."), orig_link.c_str ());
4a80f0
       gdb_flush (gdb_stdout);
4a80f0
     }
4a80f0
 
4a80f0
-  /* lrealpath() is expensive even for the usually non-existent files.  */
4a80f0
-  gdb::unique_xmalloc_ptr<char> filename;
4a80f0
-  if (access (link.c_str (), F_OK) == 0)
4a80f0
-    filename.reset (lrealpath (link.c_str ()));
4a80f0
-
4a80f0
-  if (filename == NULL)
4a80f0
+  for (unsigned seqno = 0;; seqno++)
4a80f0
     {
4a80f0
-      if (separate_debug_file_debug)
4a80f0
-	printf_unfiltered (_(" no, unable to compute real path\n"));
4a80f0
+      std::string link = orig_link;
4a80f0
 
4a80f0
-      return {};
4a80f0
-    }
4a80f0
+      if (seqno > 0)
4a80f0
+	{
4a80f0
+	  /* There can be multiple build-id symlinks pointing to real files
4a80f0
+	     with the same build-id (such as hard links).  Some of the real
4a80f0
+	     files may not be installed.  */
4a80f0
+
4a80f0
+	  string_appendf (link, ".%u", seqno);
4a80f0
+	}
4a80f0
 
4a80f0
-  /* We expect to be silent on the non-existing files.  */
4a80f0
-  gdb_bfd_ref_ptr debug_bfd = gdb_bfd_open (filename.get (), gnutarget);
4a80f0
+      ret_link = link;
4a80f0
 
4a80f0
-  if (debug_bfd == NULL)
4a80f0
-    {
4a80f0
-      if (separate_debug_file_debug)
4a80f0
-	printf_unfiltered (_(" no, unable to open.\n"));
4a80f0
+      struct stat statbuf_trash;
4a80f0
+
4a80f0
+      /* `access' automatically dereferences LINK.  */
4a80f0
+      if (lstat (link.c_str (), &statbuf_trash) != 0)
4a80f0
+	{
4a80f0
+	  /* Stop increasing SEQNO.  */
4a80f0
+	  break;
4a80f0
+	}
4a80f0
+
4a80f0
+      /* lrealpath() is expensive even for the usually non-existent files.  */
4a80f0
+      gdb::unique_xmalloc_ptr<char> filename;
4a80f0
+
4a80f0
+      if (access (link.c_str (), F_OK) == 0)
4a80f0
+	filename.reset (lrealpath (link.c_str ()));
4a80f0
+
4a80f0
+      if (filename == NULL)
4a80f0
+	{
4a80f0
+	  if (separate_debug_file_debug)
4a80f0
+	    printf_unfiltered (_(" no, unable to compute real path\n"));
4a80f0
+
4a80f0
+	  continue;
4a80f0
+	}
4a80f0
+
4a80f0
+      /* We expect to be silent on the non-existing files.  */
4a80f0
+      gdb_bfd_ref_ptr debug_bfd = gdb_bfd_open (filename.get (), gnutarget, -1);
4a80f0
 
4a80f0
-      return {};
4a80f0
+      if (debug_bfd == NULL)
4a80f0
+	{
4a80f0
+	  if (separate_debug_file_debug)
4a80f0
+	    printf_unfiltered (_(" no, unable to open.\n"));
4a80f0
+
4a80f0
+	  continue;
4a80f0
+	}
4a80f0
+
4a80f0
+      if (!build_id_verify (debug_bfd.get(), build_id_len, build_id))
4a80f0
+	{
4a80f0
+	  if (separate_debug_file_debug)
4a80f0
+	    printf_unfiltered (_(" no, build-id does not match.\n"));
4a80f0
+
4a80f0
+	  continue;
4a80f0
+	}
4a80f0
+
4a80f0
+      ret_bfd = debug_bfd;
4a80f0
+      break;
4a80f0
     }
4a80f0
 
4a80f0
-  if (!build_id_verify (debug_bfd.get(), build_id_len, build_id))
4a80f0
+  std::string link_all;
4a80f0
+
4a80f0
+  if (ret_bfd != NULL)
4a80f0
     {
4a80f0
       if (separate_debug_file_debug)
4a80f0
-	printf_unfiltered (_(" no, build-id does not match.\n"));
4a80f0
-
4a80f0
-      return {};
4a80f0
+	printf_unfiltered (_(" yes!\n"));
4a80f0
+    }
4a80f0
+  else
4a80f0
+    {
4a80f0
+      /* If none of the real files is found report as missing file
4a80f0
+	 always the non-.%u-suffixed file.  */
4a80f0
+      std::string link0 = orig_link;
4a80f0
+
4a80f0
+      /* If the symlink has target request to install the target.
4a80f0
+	 BASE-debuginfo.rpm contains the symlink but BASE.rpm may be missing.
4a80f0
+	 https://bugzilla.redhat.com/show_bug.cgi?id=981154  */
4a80f0
+      std::string link0_resolved (link_resolve (link0.c_str (), 0));
4a80f0
+
4a80f0
+      if (link_all.empty ())
4a80f0
+	link_all = link0_resolved;
4a80f0
+      else
4a80f0
+	{
4a80f0
+	  /* Use whitespace instead of DIRNAME_SEPARATOR to be compatible with
4a80f0
+	     its possible use as an argument for installation command.  */
4a80f0
+	  link_all += " " + link0_resolved;
4a80f0
+	}
4a80f0
     }
4a80f0
 
4a80f0
-  if (separate_debug_file_debug)
4a80f0
-    printf_unfiltered (_(" yes!\n"));
4a80f0
+  if (link_return != NULL)
4a80f0
+    {
4a80f0
+      if (ret_bfd != NULL)
4a80f0
+	{
4a80f0
+	  *link_return = xstrdup (ret_link.c_str ());
4a80f0
+	}
4a80f0
+      else
4a80f0
+	{
4a80f0
+	  *link_return = xstrdup (link_all.c_str ());
4a80f0
+	}
4a80f0
+    }
4a80f0
 
4a80f0
-  return debug_bfd;
4a80f0
+  return ret_bfd;
4a80f0
 }
4a80f0
 
4a80f0
 /* Common code for finding BFDs of a given build-id.  This function
4a80f0
@@ -124,7 +626,7 @@ build_id_to_debug_bfd_1 (const std::string &link, size_t build_id_len,
4a80f0
 
4a80f0
 static gdb_bfd_ref_ptr
4a80f0
 build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
4a80f0
-			const char *suffix)
4a80f0
+			const char *suffix, char **link_return)
4a80f0
 {
4a80f0
   /* Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
4a80f0
      cause "/.build-id/..." lookups.  */
4a80f0
@@ -147,16 +649,17 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
4a80f0
       if (size > 0)
4a80f0
 	{
4a80f0
 	  size--;
4a80f0
-	  string_appendf (link, "%02x/", (unsigned) *data++);
4a80f0
+	  string_appendf (link, "%02x", (unsigned) *data++);
4a80f0
 	}
4a80f0
-
4a80f0
+      if (size > 0)
4a80f0
+	link += "/";
4a80f0
       while (size-- > 0)
4a80f0
 	string_appendf (link, "%02x", (unsigned) *data++);
4a80f0
 
4a80f0
       link += suffix;
4a80f0
 
4a80f0
       gdb_bfd_ref_ptr debug_bfd
4a80f0
-	= build_id_to_debug_bfd_1 (link, build_id_len, build_id);
4a80f0
+	= build_id_to_debug_bfd_1 (link, build_id_len, build_id, link_return);
4a80f0
       if (debug_bfd != NULL)
4a80f0
 	return debug_bfd;
4a80f0
 
4a80f0
@@ -170,7 +673,8 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
4a80f0
       if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) != 0)
4a80f0
 	{
4a80f0
 	  link = gdb_sysroot + link;
4a80f0
-	  debug_bfd = build_id_to_debug_bfd_1 (link, build_id_len, build_id);
4a80f0
+	  debug_bfd = build_id_to_debug_bfd_1 (link, build_id_len, build_id,
4a80f0
+					       link_return);
4a80f0
 	  if (debug_bfd != NULL)
4a80f0
 	    return debug_bfd;
4a80f0
 	}
4a80f0
@@ -179,38 +683,208 @@ build_id_to_bfd_suffix (size_t build_id_len, const bfd_byte *build_id,
4a80f0
   return {};
4a80f0
 }
4a80f0
 
4a80f0
+char *
4a80f0
+build_id_to_filename (const struct bfd_build_id *build_id, char **link_return)
4a80f0
+{
4a80f0
+  gdb_bfd_ref_ptr abfd;
4a80f0
+  char *result;
4a80f0
+
4a80f0
+  abfd = build_id_to_exec_bfd (build_id->size, build_id->data, link_return);
4a80f0
+  if (abfd == NULL)
4a80f0
+    return NULL;
4a80f0
+
4a80f0
+  result = xstrdup (bfd_get_filename (abfd.get ()));
4a80f0
+  return result;
4a80f0
+}
4a80f0
+
4a80f0
+/* This MISSING_FILEPAIR_HASH tracker is used only for the duplicite messages
4a80f0
+     Try to install the hash file ...
4a80f0
+   avoidance.  */
4a80f0
+
4a80f0
+struct missing_filepair
4a80f0
+  {
4a80f0
+    char *binary;
4a80f0
+    char *debug;
4a80f0
+    char data[1];
4a80f0
+  };
4a80f0
+
4a80f0
+static struct htab *missing_filepair_hash;
4a80f0
+static struct obstack missing_filepair_obstack;
4a80f0
+
4a80f0
+static void *
4a80f0
+missing_filepair_xcalloc (size_t nmemb, size_t nmemb_size)
4a80f0
+{
4a80f0
+  void *retval;
4a80f0
+  size_t size = nmemb * nmemb_size;
4a80f0
+
4a80f0
+  retval = obstack_alloc (&missing_filepair_obstack, size);
4a80f0
+  memset (retval, 0, size);
4a80f0
+  return retval;
4a80f0
+}
4a80f0
+
4a80f0
+static hashval_t
4a80f0
+missing_filepair_hash_func (const struct missing_filepair *elem)
4a80f0
+{
4a80f0
+  hashval_t retval = 0;
4a80f0
+
4a80f0
+  retval ^= htab_hash_string (elem->binary);
4a80f0
+  if (elem->debug != NULL)
4a80f0
+    retval ^= htab_hash_string (elem->debug);
4a80f0
+
4a80f0
+  return retval;
4a80f0
+}
4a80f0
+
4a80f0
+static int
4a80f0
+missing_filepair_eq (const struct missing_filepair *elem1,
4a80f0
+		       const struct missing_filepair *elem2)
4a80f0
+{
4a80f0
+  return strcmp (elem1->binary, elem2->binary) == 0
4a80f0
+         && ((elem1->debug == NULL) == (elem2->debug == NULL))
4a80f0
+         && (elem1->debug == NULL || strcmp (elem1->debug, elem2->debug) == 0);
4a80f0
+}
4a80f0
+
4a80f0
+static void
4a80f0
+missing_filepair_change (void)
4a80f0
+{
4a80f0
+  if (missing_filepair_hash != NULL)
4a80f0
+    {
4a80f0
+      obstack_free (&missing_filepair_obstack, NULL);
4a80f0
+      /* All their memory came just from missing_filepair_OBSTACK.  */
4a80f0
+      missing_filepair_hash = NULL;
4a80f0
+    }
4a80f0
+}
4a80f0
+
4a80f0
+static void
4a80f0
+debug_print_executable_changed (void)
4a80f0
+{
4a80f0
+  missing_filepair_change ();
4a80f0
+}
4a80f0
+
4a80f0
+/* Notify user the file BINARY with (possibly NULL) associated separate debug
4a80f0
+   information file DEBUG is missing.  DEBUG may or may not be the build-id
4a80f0
+   file such as would be:
4a80f0
+     /usr/lib/debug/.build-id/dd/b1d2ce632721c47bb9e8679f369e2295ce71be.debug
4a80f0
+   */
4a80f0
+
4a80f0
+void
4a80f0
+debug_print_missing (const char *binary, const char *debug)
4a80f0
+{
4a80f0
+  size_t binary_len0 = strlen (binary) + 1;
4a80f0
+  size_t debug_len0 = debug ? strlen (debug) + 1 : 0;
4a80f0
+  struct missing_filepair missing_filepair_find;
4a80f0
+  struct missing_filepair *missing_filepair;
4a80f0
+  struct missing_filepair **slot;
4a80f0
+
4a80f0
+  if (build_id_verbose < BUILD_ID_VERBOSE_FILENAMES)
4a80f0
+    return;
4a80f0
+
4a80f0
+  if (missing_filepair_hash == NULL)
4a80f0
+    {
4a80f0
+      obstack_init (&missing_filepair_obstack);
4a80f0
+      missing_filepair_hash = htab_create_alloc (64,
4a80f0
+	(hashval_t (*) (const void *)) missing_filepair_hash_func,
4a80f0
+	(int (*) (const void *, const void *)) missing_filepair_eq, NULL,
4a80f0
+	missing_filepair_xcalloc, NULL);
4a80f0
+    }
4a80f0
+
4a80f0
+  /* Use MISSING_FILEPAIR_FIND first instead of calling obstack_alloc with
4a80f0
+     obstack_free in the case of a (rare) match.  The problem is ALLOC_F for
4a80f0
+     MISSING_FILEPAIR_HASH allocates from MISSING_FILEPAIR_OBSTACK maintenance
4a80f0
+     structures for MISSING_FILEPAIR_HASH.  Calling obstack_free would possibly
4a80f0
+     not to free only MISSING_FILEPAIR but also some such structures (allocated
4a80f0
+     during the htab_find_slot call).  */
4a80f0
+
4a80f0
+  missing_filepair_find.binary = (char *) binary;
4a80f0
+  missing_filepair_find.debug = (char *) debug;
4a80f0
+  slot = (struct missing_filepair **) htab_find_slot (missing_filepair_hash,
4a80f0
+						      &missing_filepair_find,
4a80f0
+						      INSERT);
4a80f0
+
4a80f0
+  /* While it may be still printed duplicitely with the missing debuginfo file
4a80f0
+   * it is due to once printing about the binary file build-id link and once
4a80f0
+   * about the .debug file build-id link as both the build-id symlinks are
4a80f0
+   * located in the debuginfo package.  */
4a80f0
+
4a80f0
+  if (*slot != NULL)
4a80f0
+    return;
4a80f0
+
4a80f0
+  missing_filepair = (struct missing_filepair *) obstack_alloc (&missing_filepair_obstack,
4a80f0
+								sizeof (*missing_filepair) - 1
4a80f0
+								+ binary_len0 + debug_len0);
4a80f0
+  missing_filepair->binary = missing_filepair->data;
4a80f0
+  memcpy (missing_filepair->binary, binary, binary_len0);
4a80f0
+  if (debug != NULL)
4a80f0
+    {
4a80f0
+      missing_filepair->debug = missing_filepair->binary + binary_len0;
4a80f0
+      memcpy (missing_filepair->debug, debug, debug_len0);
4a80f0
+    }
4a80f0
+  else
4a80f0
+    missing_filepair->debug = NULL;
4a80f0
+
4a80f0
+  *slot = missing_filepair;
4a80f0
+
4a80f0
+  /* We do not collect and flush these messages as each such message
4a80f0
+     already requires its own separate lines.  */
4a80f0
+
4a80f0
+  fprintf_unfiltered (gdb_stdlog,
4a80f0
+		      _("Missing separate debuginfo for %s\n"), binary);
4a80f0
+  if (debug != NULL)
4a80f0
+    fprintf_unfiltered (gdb_stdlog, _("Try to install the hash file %s\n"),
4a80f0
+			debug);
4a80f0
+}
4a80f0
+
4a80f0
 /* See build-id.h.  */
4a80f0
 
4a80f0
 gdb_bfd_ref_ptr
4a80f0
-build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id)
4a80f0
+build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id,
4a80f0
+		       char **link_return)
4a80f0
 {
4a80f0
-  return build_id_to_bfd_suffix (build_id_len, build_id, ".debug");
4a80f0
+  return build_id_to_bfd_suffix (build_id_len, build_id, ".debug",
4a80f0
+				 link_return);
4a80f0
 }
4a80f0
 
4a80f0
 /* See build-id.h.  */
4a80f0
 
4a80f0
 gdb_bfd_ref_ptr
4a80f0
-build_id_to_exec_bfd (size_t build_id_len, const bfd_byte *build_id)
4a80f0
+build_id_to_exec_bfd (size_t build_id_len, const bfd_byte *build_id,
4a80f0
+		      char **link_return)
4a80f0
 {
4a80f0
-  return build_id_to_bfd_suffix (build_id_len, build_id, "");
4a80f0
+  return build_id_to_bfd_suffix (build_id_len, build_id, "", link_return);
4a80f0
 }
4a80f0
 
4a80f0
 /* See build-id.h.  */
4a80f0
 
4a80f0
 std::string
4a80f0
-find_separate_debug_file_by_buildid (struct objfile *objfile)
4a80f0
+find_separate_debug_file_by_buildid (struct objfile *objfile,
4a80f0
+			gdb::unique_xmalloc_ptr<char> *build_id_filename_return)
4a80f0
 {
4a80f0
   const struct bfd_build_id *build_id;
4a80f0
 
4a80f0
-  build_id = build_id_bfd_get (objfile->obfd);
4a80f0
+  if (build_id_filename_return)
4a80f0
+    *build_id_filename_return = NULL;
4a80f0
+
4a80f0
+  build_id = build_id_bfd_shdr_get (objfile->obfd);
4a80f0
   if (build_id != NULL)
4a80f0
     {
4a80f0
       if (separate_debug_file_debug)
4a80f0
 	printf_unfiltered (_("\nLooking for separate debug info (build-id) for "
4a80f0
 			     "%s\n"), objfile_name (objfile));
4a80f0
 
4a80f0
+      char *build_id_filename_cstr = NULL;
4a80f0
       gdb_bfd_ref_ptr abfd (build_id_to_debug_bfd (build_id->size,
4a80f0
-						   build_id->data));
4a80f0
+						    build_id->data,
4a80f0
+	      (!build_id_filename_return ? NULL : &build_id_filename_cstr)));
4a80f0
+      if (build_id_filename_return)
4a80f0
+	{
4a80f0
+	  if (!build_id_filename_cstr)
4a80f0
+	    gdb_assert (!*build_id_filename_return);
4a80f0
+	  else
4a80f0
+	    {
4a80f0
+	      *build_id_filename_return = gdb::unique_xmalloc_ptr<char> (build_id_filename_cstr);
4a80f0
+	      build_id_filename_cstr = NULL;
4a80f0
+	    }
4a80f0
+	}
4a80f0
+
4a80f0
       /* Prevent looping on a stripped .debug file.  */
4a80f0
       if (abfd != NULL
4a80f0
 	  && filename_cmp (bfd_get_filename (abfd.get ()),
4a80f0
@@ -223,3 +897,21 @@ find_separate_debug_file_by_buildid (struct objfile *objfile)
4a80f0
 
4a80f0
   return std::string ();
4a80f0
 }
4a80f0
+
4a80f0
+extern void _initialize_build_id (void);
4a80f0
+
4a80f0
+void
4a80f0
+_initialize_build_id (void)
4a80f0
+{
4a80f0
+  add_setshow_zinteger_cmd ("build-id-verbose", no_class, &build_id_verbose,
4a80f0
+			    _("\
4a80f0
+Set debugging level of the build-id locator."), _("\
4a80f0
+Show debugging level of the build-id locator."), _("\
4a80f0
+Level 1 (default) enables printing the missing debug filenames,\n\
4a80f0
+level 2 also prints the parsing of binaries to find the identificators."),
4a80f0
+			    NULL,
4a80f0
+			    show_build_id_verbose,
4a80f0
+			    &setlist, &showlist);
4a80f0
+
4a80f0
+  gdb::observers::executable_changed.attach (debug_print_executable_changed);
4a80f0
+}
4a80f0
diff --git a/gdb/build-id.h b/gdb/build-id.h
4a80f0
--- a/gdb/build-id.h
4a80f0
+++ b/gdb/build-id.h
4a80f0
@@ -23,9 +23,10 @@
4a80f0
 #include "gdb_bfd.h"
4a80f0
 #include "gdbsupport/rsp-low.h"
4a80f0
 
4a80f0
-/* Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
4a80f0
+/* Separate debuginfo files have corrupted PHDR but SHDR is correct there.
4a80f0
+   Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
4a80f0
 
4a80f0
-extern const struct bfd_build_id *build_id_bfd_get (bfd *abfd);
4a80f0
+extern const struct bfd_build_id *build_id_bfd_shdr_get (bfd *abfd);
4a80f0
 
4a80f0
 /* Return true if ABFD has NT_GNU_BUILD_ID matching the CHECK value.
4a80f0
    Otherwise, issue a warning and return false.  */
4a80f0
@@ -38,21 +39,26 @@ extern int build_id_verify (bfd *abfd,
4a80f0
    can be found, return NULL.  */
4a80f0
 
4a80f0
 extern gdb_bfd_ref_ptr build_id_to_debug_bfd (size_t build_id_len,
4a80f0
-					      const bfd_byte *build_id);
4a80f0
+					      const bfd_byte *build_id,
4a80f0
+					      char **link_return);
4a80f0
+
4a80f0
+extern char *build_id_to_filename (const struct bfd_build_id *build_id,
4a80f0
+				   char **link_return);
4a80f0
 
4a80f0
 /* Find and open a BFD for an executable file given a build-id.  If no BFD
4a80f0
    can be found, return NULL.  The returned reference to the BFD must be
4a80f0
    released by the caller.  */
4a80f0
 
4a80f0
 extern gdb_bfd_ref_ptr build_id_to_exec_bfd (size_t build_id_len,
4a80f0
-					     const bfd_byte *build_id);
4a80f0
+					     const bfd_byte *build_id,
4a80f0
+					     char **link_return);
4a80f0
 
4a80f0
 /* Find the separate debug file for OBJFILE, by using the build-id
4a80f0
    associated with OBJFILE's BFD.  If successful, returns the file name for the
4a80f0
    separate debug file, otherwise, return an empty string.  */
4a80f0
 
4a80f0
-extern std::string find_separate_debug_file_by_buildid
4a80f0
-  (struct objfile *objfile);
4a80f0
+extern std::string find_separate_debug_file_by_buildid (struct objfile *objfile,
4a80f0
+		       gdb::unique_xmalloc_ptr<char> *build_id_filename_return);
4a80f0
 
4a80f0
 /* Return an hex-string representation of BUILD_ID.  */
4a80f0
 
4a80f0
diff --git a/gdb/coffread.c b/gdb/coffread.c
4a80f0
--- a/gdb/coffread.c
4a80f0
+++ b/gdb/coffread.c
4a80f0
@@ -709,7 +709,8 @@ coff_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4a80f0
   /* Try to add separate debug file if no symbols table found.   */
4a80f0
   if (!objfile_has_partial_symbols (objfile))
4a80f0
     {
4a80f0
-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
4a80f0
+      std::string debugfile = find_separate_debug_file_by_buildid (objfile,
4a80f0
+								   NULL);
4a80f0
 
4a80f0
       if (debugfile.empty ())
4a80f0
 	debugfile = find_separate_debug_file_by_debuglink (objfile);
4a80f0
diff --git a/gdb/corelow.c b/gdb/corelow.c
4a80f0
--- a/gdb/corelow.c
4a80f0
+++ b/gdb/corelow.c
4a80f0
@@ -22,6 +22,10 @@
4a80f0
 #include <signal.h>
4a80f0
 #include <fcntl.h>
4a80f0
 #include "frame.h"		/* required by inferior.h */
4a80f0
+#include "auxv.h"
4a80f0
+#include "build-id.h"
4a80f0
+#include "elf/common.h"
4a80f0
+#include "gdbcmd.h"
4a80f0
 #include "inferior.h"
4a80f0
 #include "infrun.h"
4a80f0
 #include "symtab.h"
4a80f0
@@ -362,6 +366,8 @@ add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg)
4a80f0
     switch_to_thread (thr);			/* Yes, make it current.  */
4a80f0
 }
4a80f0
 
4a80f0
+static bool build_id_core_loads = true;
4a80f0
+
4a80f0
 /* Issue a message saying we have no core to debug, if FROM_TTY.  */
4a80f0
 
4a80f0
 static void
4a80f0
@@ -398,19 +404,25 @@ core_file_command (const char *filename, int from_tty)
4a80f0
 static void
4a80f0
 locate_exec_from_corefile_build_id (bfd *abfd, int from_tty)
4a80f0
 {
4a80f0
-  const bfd_build_id *build_id = build_id_bfd_get (abfd);
4a80f0
+  const bfd_build_id *build_id = build_id_bfd_shdr_get (abfd);
4a80f0
   if (build_id == nullptr)
4a80f0
     return;
4a80f0
 
4a80f0
+  char *build_id_filename;
4a80f0
   gdb_bfd_ref_ptr execbfd
4a80f0
-    = build_id_to_exec_bfd (build_id->size, build_id->data);
4a80f0
+    = build_id_to_exec_bfd (build_id->size, build_id->data,
4a80f0
+			    &build_id_filename);
4a80f0
 
4a80f0
   if (execbfd != nullptr)
4a80f0
     {
4a80f0
       exec_file_attach (bfd_get_filename (execbfd.get ()), from_tty);
4a80f0
       symbol_file_add_main (bfd_get_filename (execbfd.get ()),
4a80f0
 			    symfile_add_flag (from_tty ? SYMFILE_VERBOSE : 0));
4a80f0
+      if (symfile_objfile != NULL)
4a80f0
+	symfile_objfile->flags |= OBJF_BUILD_ID_CORE_LOADED;
4a80f0
     }
4a80f0
+  else
4a80f0
+    debug_print_missing (BUILD_ID_MAIN_EXECUTABLE_FILENAME, build_id_filename);
4a80f0
 }
4a80f0
 
4a80f0
 /* See gdbcore.h.  */
4a80f0
@@ -1189,4 +1201,11 @@ _initialize_corelow ()
4a80f0
            maintenance_print_core_file_backed_mappings,
4a80f0
 	   _("Print core file's file-backed mappings."),
4a80f0
 	   &maintenanceprintlist);
4a80f0
+
4a80f0
+  add_setshow_boolean_cmd ("build-id-core-loads", class_files,
4a80f0
+			   &build_id_core_loads, _("\
4a80f0
+Set whether CORE-FILE loads the build-id associated files automatically."), _("\
4a80f0
+Show whether CORE-FILE loads the build-id associated files automatically."),
4a80f0
+			   NULL, NULL, NULL,
4a80f0
+			   &setlist, &showlist);
4a80f0
 }
4a80f0
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
4a80f0
--- a/gdb/doc/gdb.texinfo
4a80f0
+++ b/gdb/doc/gdb.texinfo
4a80f0
@@ -21074,6 +21074,27 @@ information files.
4a80f0
 
4a80f0
 @end table
4a80f0
 
4a80f0
+You can also adjust the current verbosity of the @dfn{build id} locating.
4a80f0
+
4a80f0
+@table @code
4a80f0
+
4a80f0
+@kindex set build-id-verbose
4a80f0
+@item set build-id-verbose 0
4a80f0
+No additional messages are printed.
4a80f0
+
4a80f0
+@item set build-id-verbose 1
4a80f0
+Missing separate debug filenames are printed.
4a80f0
+
4a80f0
+@item set build-id-verbose 2
4a80f0
+Missing separate debug filenames are printed and also all the parsing of the
4a80f0
+binaries to find their @dfn{build id} content is printed.
4a80f0
+
4a80f0
+@kindex show build-id-verbose
4a80f0
+@item show build-id-verbose
4a80f0
+Show the current verbosity value for the @dfn{build id} content locating.
4a80f0
+
4a80f0
+@end table
4a80f0
+
4a80f0
 @cindex @code{.gnu_debuglink} sections
4a80f0
 @cindex debug link sections
4a80f0
 A debug link is a special section of the executable file named
4a80f0
diff --git a/gdb/dwarf2/index-cache.c b/gdb/dwarf2/index-cache.c
4a80f0
--- a/gdb/dwarf2/index-cache.c
4a80f0
+++ b/gdb/dwarf2/index-cache.c
4a80f0
@@ -95,7 +95,7 @@ index_cache::store (dwarf2_per_objfile *per_objfile)
4a80f0
     return;
4a80f0
 
4a80f0
   /* Get build id of objfile.  */
4a80f0
-  const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
4a80f0
+  const bfd_build_id *build_id = build_id_bfd_shdr_get (obj->obfd);
4a80f0
   if (build_id == nullptr)
4a80f0
     {
4a80f0
       if (debug_index_cache)
4a80f0
@@ -113,7 +113,8 @@ index_cache::store (dwarf2_per_objfile *per_objfile)
4a80f0
 
4a80f0
   if (dwz != nullptr)
4a80f0
     {
4a80f0
-      const bfd_build_id *dwz_build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
4a80f0
+      const bfd_build_id *dwz_build_id
4a80f0
+	= build_id_bfd_shdr_get (dwz->dwz_bfd.get ());
4a80f0
 
4a80f0
       if (dwz_build_id == nullptr)
4a80f0
 	{
4a80f0
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
4a80f0
--- a/gdb/dwarf2/read.c
4a80f0
+++ b/gdb/dwarf2/read.c
4a80f0
@@ -2225,7 +2225,7 @@ dwarf2_get_dwz_file (dwarf2_per_bfd *per_bfd)
4a80f0
     }
4a80f0
 
4a80f0
   if (dwz_bfd == NULL)
4a80f0
-    dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
4a80f0
+    dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid, NULL);
4a80f0
 
4a80f0
   if (dwz_bfd == nullptr)
4a80f0
     {
4a80f0
@@ -5989,7 +5989,7 @@ get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
4a80f0
 static gdb::array_view<const gdb_byte>
4a80f0
 get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
4a80f0
 {
4a80f0
-  const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
4a80f0
+  const bfd_build_id *build_id = build_id_bfd_shdr_get (obj->obfd);
4a80f0
   if (build_id == nullptr)
4a80f0
     return {};
4a80f0
 
4a80f0
@@ -6002,7 +6002,7 @@ get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
4a80f0
 static gdb::array_view<const gdb_byte>
4a80f0
 get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
4a80f0
 {
4a80f0
-  const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
4a80f0
+  const bfd_build_id *build_id = build_id_bfd_shdr_get (dwz->dwz_bfd.get ());
4a80f0
   if (build_id == nullptr)
4a80f0
     return {};
4a80f0
 
4a80f0
diff --git a/gdb/elfread.c b/gdb/elfread.c
4a80f0
--- a/gdb/elfread.c
4a80f0
+++ b/gdb/elfread.c
4a80f0
@@ -1298,7 +1298,9 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4a80f0
 	   && objfile->separate_debug_objfile == NULL
4a80f0
 	   && objfile->separate_debug_objfile_backlink == NULL)
4a80f0
     {
4a80f0
-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
4a80f0
+      gdb::unique_xmalloc_ptr<char> build_id_filename;
4a80f0
+      std::string debugfile
4a80f0
+	= find_separate_debug_file_by_buildid (objfile, &build_id_filename);
4a80f0
 
4a80f0
       if (debugfile.empty ())
4a80f0
 	debugfile = find_separate_debug_file_by_debuglink (objfile);
4a80f0
@@ -1313,7 +1315,7 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4a80f0
       else
4a80f0
 	{
4a80f0
 	  has_dwarf2 = false;
4a80f0
-	  const struct bfd_build_id *build_id = build_id_bfd_get (objfile->obfd);
4a80f0
+	  const struct bfd_build_id *build_id = build_id_bfd_shdr_get (objfile->obfd);
4a80f0
 
4a80f0
 	  if (build_id != nullptr)
4a80f0
 	    {
4a80f0
@@ -1338,6 +1340,10 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4a80f0
 		      has_dwarf2 = true;
4a80f0
 		    }
4a80f0
 		}
4a80f0
+		/* Check if any separate debug info has been extracted out.  */
4a80f0
+		else if (bfd_get_section_by_name (objfile->obfd, ".gnu_debuglink")
4a80f0
+			 != NULL)
4a80f0
+		  debug_print_missing (objfile_name (objfile), build_id_filename.get ());
4a80f0
 	    }
4a80f0
 	}
4a80f0
     }
4a80f0
diff --git a/gdb/exec.c b/gdb/exec.c
4a80f0
--- a/gdb/exec.c
4a80f0
+++ b/gdb/exec.c
4a80f0
@@ -264,7 +264,7 @@ validate_exec_file (int from_tty)
4a80f0
   reopen_exec_file ();
4a80f0
   current_exec_file = get_exec_file (0);
4a80f0
 
4a80f0
-  const bfd_build_id *exec_file_build_id = build_id_bfd_get (exec_bfd);
4a80f0
+  const bfd_build_id *exec_file_build_id = build_id_bfd_shdr_get (exec_bfd);
4a80f0
   if (exec_file_build_id != nullptr)
4a80f0
     {
4a80f0
       /* Prepend the target prefix, to force gdb_bfd_open to open the
4a80f0
@@ -277,7 +277,7 @@ validate_exec_file (int from_tty)
4a80f0
       if (abfd != nullptr)
4a80f0
 	{
4a80f0
 	  const bfd_build_id *target_exec_file_build_id
4a80f0
-	    = build_id_bfd_get (abfd.get ());
4a80f0
+	    = build_id_bfd_shdr_get (abfd.get ());
4a80f0
 
4a80f0
 	  if (target_exec_file_build_id != nullptr)
4a80f0
 	    {
4a80f0
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
4a80f0
--- a/gdb/objfiles.h
4a80f0
+++ b/gdb/objfiles.h
4a80f0
@@ -714,6 +714,10 @@ struct objfile
4a80f0
   bool skip_jit_symbol_lookup = false;
4a80f0
 };
4a80f0
 
4a80f0
+/* This file was loaded according to the BUILD_ID_CORE_LOADS rules.  */
4a80f0
+
4a80f0
+#define OBJF_BUILD_ID_CORE_LOADED static_cast<enum objfile_flag>(1 << 12)
4a80f0
+
4a80f0
 /* A deleter for objfile.  */
4a80f0
 
4a80f0
 struct objfile_deleter
4a80f0
diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
4a80f0
--- a/gdb/python/py-objfile.c
4a80f0
+++ b/gdb/python/py-objfile.c
4a80f0
@@ -132,7 +132,7 @@ objfpy_get_build_id (PyObject *self, void *closure)
4a80f0
 
4a80f0
   try
4a80f0
     {
4a80f0
-      build_id = build_id_bfd_get (objfile->obfd);
4a80f0
+      build_id = build_id_bfd_shdr_get (objfile->obfd);
4a80f0
     }
4a80f0
   catch (const gdb_exception &except)
4a80f0
     {
4a80f0
@@ -600,7 +600,7 @@ objfpy_lookup_objfile_by_build_id (const char *build_id)
4a80f0
       /* Don't return separate debug files.  */
4a80f0
       if (objfile->separate_debug_objfile_backlink != NULL)
4a80f0
 	continue;
4a80f0
-      obfd_build_id = build_id_bfd_get (objfile->obfd);
4a80f0
+      obfd_build_id = build_id_bfd_shdr_get (objfile->obfd);
4a80f0
       if (obfd_build_id == NULL)
4a80f0
 	continue;
4a80f0
       if (objfpy_build_id_matches (obfd_build_id, build_id))
4a80f0
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c
4a80f0
--- a/gdb/solib-svr4.c
4a80f0
+++ b/gdb/solib-svr4.c
4a80f0
@@ -45,6 +45,7 @@
4a80f0
 #include "auxv.h"
4a80f0
 #include "gdb_bfd.h"
4a80f0
 #include "probe.h"
4a80f0
+#include "build-id.h"
4a80f0
 
4a80f0
 static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
4a80f0
 static int svr4_have_link_map_offsets (void);
4a80f0
@@ -1338,9 +1339,51 @@ svr4_read_so_list (svr4_info *info, CORE_ADDR lm, CORE_ADDR prev_lm,
4a80f0
 	  continue;
4a80f0
 	}
4a80f0
 
4a80f0
-      strncpy (newobj->so_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
4a80f0
-      newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4a80f0
-      strcpy (newobj->so_original_name, newobj->so_name);
4a80f0
+      {
4a80f0
+	struct bfd_build_id *build_id;
4a80f0
+
4a80f0
+	strncpy (newobj->so_original_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
4a80f0
+	newobj->so_original_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4a80f0
+	/* May get overwritten below.  */
4a80f0
+	strcpy (newobj->so_name, newobj->so_original_name);
4a80f0
+
4a80f0
+	build_id = build_id_addr_get (((lm_info_svr4 *) newobj->lm_info)->l_ld);
4a80f0
+	if (build_id != NULL)
4a80f0
+	  {
4a80f0
+	    char *name, *build_id_filename;
4a80f0
+
4a80f0
+	    /* Missing the build-id matching separate debug info file
4a80f0
+	       would be handled while SO_NAME gets loaded.  */
4a80f0
+	    name = build_id_to_filename (build_id, &build_id_filename);
4a80f0
+	    if (name != NULL)
4a80f0
+	      {
4a80f0
+		strncpy (newobj->so_name, name, SO_NAME_MAX_PATH_SIZE - 1);
4a80f0
+		newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4a80f0
+		xfree (name);
4a80f0
+	      }
4a80f0
+	    else
4a80f0
+	      {
4a80f0
+		debug_print_missing (newobj->so_name, build_id_filename);
4a80f0
+
4a80f0
+		/* In the case the main executable was found according to
4a80f0
+		   its build-id (from a core file) prevent loading
4a80f0
+		   a different build of a library with accidentally the
4a80f0
+		   same SO_NAME.
4a80f0
+
4a80f0
+		   It suppresses bogus backtraces (and prints "??" there
4a80f0
+		   instead) if the on-disk files no longer match the
4a80f0
+		   running program version.  */
4a80f0
+
4a80f0
+		if (symfile_objfile != NULL
4a80f0
+		    && (symfile_objfile->flags
4a80f0
+			& OBJF_BUILD_ID_CORE_LOADED) != 0)
4a80f0
+		  newobj->so_name[0] = 0;
4a80f0
+	      }
4a80f0
+
4a80f0
+	    xfree (build_id_filename);
4a80f0
+	    xfree (build_id);
4a80f0
+	  }
4a80f0
+      }
4a80f0
 
4a80f0
       /* If this entry has no name, or its name matches the name
4a80f0
 	 for the main executable, don't include it in the list.  */
4a80f0
diff --git a/gdb/source.c b/gdb/source.c
4a80f0
--- a/gdb/source.c
4a80f0
+++ b/gdb/source.c
4a80f0
@@ -1165,7 +1165,7 @@ open_source_file (struct symtab *s)
4a80f0
 	      srcpath += s->filename;
4a80f0
 	    }
4a80f0
 
4a80f0
-	  const struct bfd_build_id *build_id = build_id_bfd_get (ofp->obfd);
4a80f0
+	  const struct bfd_build_id *build_id = build_id_bfd_shdr_get (ofp->obfd);
4a80f0
 
4a80f0
 	  /* Query debuginfod for the source file.  */
4a80f0
 	  if (build_id != nullptr && !srcpath.empty ())
4a80f0
diff --git a/gdb/symfile.h b/gdb/symfile.h
4a80f0
--- a/gdb/symfile.h
4a80f0
+++ b/gdb/symfile.h
4a80f0
@@ -550,12 +550,18 @@ void expand_symtabs_matching
4a80f0
 void map_symbol_filenames (symbol_filename_ftype *fun, void *data,
4a80f0
 			   int need_fullname);
4a80f0
 
4a80f0
+
4a80f0
 /* Target-agnostic function to load the sections of an executable into memory.
4a80f0
 
4a80f0
    ARGS should be in the form "EXECUTABLE [OFFSET]", where OFFSET is an
4a80f0
    optional offset to apply to each section.  */
4a80f0
 extern void generic_load (const char *args, int from_tty);
4a80f0
 
4a80f0
+/* build-id support.  */
4a80f0
+extern struct bfd_build_id *build_id_addr_get (CORE_ADDR addr);
4a80f0
+extern void debug_print_missing (const char *binary, const char *debug);
4a80f0
+#define BUILD_ID_MAIN_EXECUTABLE_FILENAME _("the main executable file")
4a80f0
+
4a80f0
 /* From dwarf2read.c */
4a80f0
 
4a80f0
 /* Names for a dwarf2 debugging section.  The field NORMAL is the normal
4a80f0
diff --git a/gdb/testsuite/gdb.base/corefile.exp b/gdb/testsuite/gdb.base/corefile.exp
4a80f0
--- a/gdb/testsuite/gdb.base/corefile.exp
4a80f0
+++ b/gdb/testsuite/gdb.base/corefile.exp
4a80f0
@@ -343,3 +343,33 @@ gdb_test_multiple "core-file $corefile" $test {
4a80f0
 	pass $test
4a80f0
     }
4a80f0
 }
4a80f0
+
4a80f0
+
4a80f0
+# Test auto-loading of binary files through build-id from the core file.
4a80f0
+set buildid [build_id_debug_filename_get $binfile]
4a80f0
+set wholetest "binfile found by build-id"
4a80f0
+if {$buildid == ""} {
4a80f0
+    untested "$wholetest (binary has no build-id)"
4a80f0
+} else {
4a80f0
+    gdb_exit
4a80f0
+    gdb_start
4a80f0
+
4a80f0
+    regsub {\.debug$} $buildid {} buildid
4a80f0
+    set debugdir [standard_output_file ${testfile}-debugdir]
4a80f0
+    file delete -force -- $debugdir
4a80f0
+    file mkdir $debugdir/[file dirname $buildid]
4a80f0
+    file copy $binfile $debugdir/$buildid
4a80f0
+
4a80f0
+    set test "show debug-file-directory"
4a80f0
+    gdb_test_multiple $test $test {
4a80f0
+	-re "The directory where separate debug symbols are searched for is \"(.*)\"\\.\r\n$gdb_prompt $" {
4a80f0
+	    set debugdir_orig $expect_out(1,string)
4a80f0
+	    pass $test
4a80f0
+	}
4a80f0
+    }
4a80f0
+    gdb_test_no_output "set debug-file-directory $debugdir:$debugdir_orig" "set debug-file-directory"
4a80f0
+    gdb_test "show build-id-core-loads" {Whether CORE-FILE loads the build-id associated files automatically is on\.}
4a80f0
+    gdb_test "core-file $corefile" "\r\nProgram terminated with .*" "core-file without executable"
4a80f0
+    gdb_test "info files" "Local exec file:\r\n\[ \t\]*`[string_to_regexp $debugdir/$buildid]', file type .*"
4a80f0
+    pass $wholetest
4a80f0
+}
4a80f0
diff --git a/gdb/testsuite/gdb.base/gdbinit-history.exp b/gdb/testsuite/gdb.base/gdbinit-history.exp
4a80f0
--- a/gdb/testsuite/gdb.base/gdbinit-history.exp
4a80f0
+++ b/gdb/testsuite/gdb.base/gdbinit-history.exp
4a80f0
@@ -181,7 +181,8 @@ proc test_empty_history_filename { } {
4a80f0
     global env
4a80f0
     global gdb_prompt
4a80f0
 
4a80f0
-    set common_history [list "set height 0" "set width 0"]
4a80f0
+    set common_history [list "set height 0" "set width 0" \
4a80f0
+			    "set build-id-verbose 0"]
4a80f0
 
4a80f0
     set test_dir [standard_output_file history_test]
4a80f0
     remote_exec host "mkdir -p $test_dir"
4a80f0
diff --git a/gdb/testsuite/gdb.base/new-ui-pending-input.exp b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4a80f0
--- a/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4a80f0
+++ b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4a80f0
@@ -62,6 +62,7 @@ proc test_command_line_new_ui_pending_input {} {
4a80f0
     set options ""
4a80f0
     append options " -iex \"set height 0\""
4a80f0
     append options " -iex \"set width 0\""
4a80f0
+    append options " -iex \"set build-id-verbose 0\""
4a80f0
     append options " -iex \"new-ui console $extra_tty_name\""
4a80f0
     append options " -ex \"b $bpline\""
4a80f0
     append options " -ex \"run\""
4a80f0
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
4a80f0
--- a/gdb/testsuite/lib/gdb.exp
4a80f0
+++ b/gdb/testsuite/lib/gdb.exp
4a80f0
@@ -2011,6 +2011,17 @@ proc default_gdb_start { } {
4a80f0
 	}
4a80f0
     }
4a80f0
 
4a80f0
+    # Turn off the missing warnings as the testsuite does not expect it.
4a80f0
+    send_gdb "set build-id-verbose 0\n"
4a80f0
+    gdb_expect 10 {
4a80f0
+	-re "$gdb_prompt $" {
4a80f0
+	    verbose "Disabled the missing debug infos warnings." 2
4a80f0
+	}
4a80f0
+	timeout {
4a80f0
+	    warning "Could not disable the missing debug infos warnings.."
4a80f0
+	}
4a80f0
+    }
4a80f0
+
4a80f0
     gdb_debug_init
4a80f0
     return 0
4a80f0
 }
4a80f0
diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
4a80f0
--- a/gdb/testsuite/lib/mi-support.exp
4a80f0
+++ b/gdb/testsuite/lib/mi-support.exp
4a80f0
@@ -308,6 +308,16 @@ proc default_mi_gdb_start { args } {
4a80f0
 	    warning "Couldn't set the width to 0."
4a80f0
 	}
4a80f0
     }
4a80f0
+    # Turn off the missing warnings as the testsuite does not expect it.
4a80f0
+    send_gdb "190-gdb-set build-id-verbose 0\n"
4a80f0
+    gdb_expect 10 {
4a80f0
+	-re ".*190-gdb-set build-id-verbose 0\r\n190\\\^done\r\n$mi_gdb_prompt$" {
4a80f0
+	    verbose "Disabled the missing debug infos warnings." 2
4a80f0
+	}
4a80f0
+	timeout {
4a80f0
+	    warning "Could not disable the missing debug infos warnings.."
4a80f0
+	}
4a80f0
+    }
4a80f0
 
4a80f0
     if { $separate_inferior_pty } {
4a80f0
 	mi_create_inferior_pty